#viewport{
	width: 778px; /* 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;
	position: relative;
	height: 175px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 25px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0px;
}
#viewport li{
	width: 175px; /* Defines the size of inner element */
	height: 175px;
	float: left; /* Places list items side by side*/
	list-style: none;
	text-align:center;
	z-index: 1;
	position: relative;
	margin: 0;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#simpleNext {
	height: 210px;
	width: 20px;
	right: 0px;
	top: 0px;
	z-index: 500;
	position: absolute;
}
#simplePrevious {
	position: absolute;
	height: 210px;
	width: 20px;
	top: 0px;
	left: 0px;
	z-index: 500;
}
