.fl {
	float: left;
	border: 1px solid #BD9964;
	text-align: center;
	padding: 55px 0 54px 0;
	width: 10%;
}
#viewport{
	float: left;
	width: 77%; /* 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
	 */
	min-width: 110px;
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
/*
	abackground: url('carousel-bg.gif') repeat-x left top;
	abackground-color: #DEDBCE;
*/
	position: relative;
	height: 135px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	overflow:hidden;
	padding: 0; margin: 0; /* Resets default - User Agent - style */
	height: 135px;
}
#viewport li{
 	width: 140px; /* Defines the size of inner element */
	height: 135px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	margin: 0 10px;
	apadding: 0 10px 0 10px;
	text-align:center;
	font-size: 8pt;
	color: #DD9035;
}
#viewport li img {
height: 135px;
}

/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer;
}
