#viewport{
	width: 272px; /* 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;
	margin-left: 1px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;

}
#viewport li{
	width: 60px; /* Defines the size of inner element */
	height: 80px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	background-color: #7990B3;
	margin: 0 1px;
	padding: 3px;
	text-align:center;
}

/* Cosmetic */
#simplePrevious, #simpleNext{text-decoration: none; font-family:  Arial, Verdana, Tahoma; font-size: 16px; font-weight: bold; color: #666; cursor: pointer;}
#pub_links {padding-top: 30px; padding-left: 13px; padding-right: 3px;}
