#viewport{
	width: 328px; /* 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;
	margin-left: 648px;
	position: relative;
	height: 184px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0px;
}
#viewport li{
	width: 160px; /* Defines the size of inner element */
	height: 200px;
	float: left; /* Places list items side by side*/
	list-style: none;
	text-align:center;
	margin: 0;
	padding-top: 20px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-left: 0px;
	z-index: 1;
	position: relative;
}
#header #slide_buttons{
	height: 36px;
	width: 110px;
	position: absolute;
	top: 190px;
	left: 773px;
	z-index: 3;
}
#viewport ul li .before {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	padding: 2px;
	width: 156px;
	background-color: #B7B73C;
	height: 15px;
	color: #000;
	display: block;
	z-index: 2;
	left: 0px;
	top: 0px;
	position: absolute;
}
#viewport ul li .after {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	padding: 2px;
	width: 156px;
	background-color: #752A7E;
	height: 15px;
	color: #FFF;
	display: block;
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 0px;
}
