#viewport{
	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 */
	/* Fix for IE */
	position:relative;
	height:610px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li{
	width: 210px; /* Defines the size of inner element */
	height: 100px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	margin-left:5px;
	
	/* Cosmetic */
	padding:2px 10px 0 10px;
	text-align:justify;
	margin-bottom:20px;
}

/* Cosmetic */
#previous, #next{
	cursor: pointer;
	display:block;
	height:17px;
	background-repeat:no-repeat;
	background-position:top center;
}

#next {
	background-image:url(/images/next-down.png);
	margin-top:5px;
}
#previous {
	background-image:url(/images/previous-up.png);
}
