#viewport{
  width:100%;
	/*width: 240px;*/ /* Defines the size of the visible part of the carousel
		Attention : if you only want to see plain items in the viewport,
		the width of the viewport should take into account of :
		- the items width
		- the right and left padding of items
		- the number of items you want to see in the viewport
	 */
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
  height:235px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
}
#viewport li{
	width: 350px; /* Defines the size of inner element */
  overflow:hidden;
	height:200px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	background-color: #FFF;
  background:#FFF url(../../backy.jpg) repeat-x;
  border:1px solid #333;
	margin: 0 1px;
	padding: 10px;
	text-align:justify;
  font-size:10px;
}

/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer;
	font-size: 12px;
	text-decoration: underline;
  padding:15px;
}

