#viewport2{
	width: 700px; /* Defines the size of the visible part of the carousel
		Attention : if you only want to see plain items in the viewport2,
		the width of the viewport2 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 viewport2
	 */
    height:104px;
	overflow:hidden; /* Hides extra elements, those outside the viewport2 area */
	/* Fix for IE */
	position:relative;
	padding:10px 0 0 0px;
}
#viewport2 ul{
	position: relative; /* Enables positionning of elements inside viewport2 */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport2 li{
	width: 116px; /* Defines the size of inner element */
	height: 104px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	text-align:center;
}
#viewport2 li img{
	margin:0 auto;
	border:2px solid #000;
	width:100px;
	height:100px;
	cursor:pointer;
}


