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

