#viewport{
	width: 915px; /* 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 */
	position: relative;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0px; /* Resets default - User Agent - style */
	float:left;
	margin:0px;
}
#viewport li{
	width: 275px; /* Defines the size of inner element */
	height: 400px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	/* Cosmetic */
	background-color: #ffffff;
	margin: 0 3px;
	padding: 10px;
/*	text-align:center;*/
}

/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;
}

/*ul.viewport { margin:0px; padding-left:0px; padding-right:2px; }*/