#carousel
{
	float:left; /* important for inline positioning */
	position: relative;
	z-index: 10;
	margin: 5px 0px 20px 0px;
	width:950px; /* important (this width = width of list item(including margin) * items shown */ 
	overflow: hidden;  /* important (hide the items outside the div) */
	/* non-important styling bellow */
}
#carousel_ul 
{
	position:relative;
	z-index: 10;
	left:-192px; /* important (this should be negative number of list items width(including margin) */
	list-style-type: none; /* removing the default styling for unordered list items */
	margin: 0px;
	padding: 0px;
	width:9999px; /* important */
}
#carousel_ul li
{
	float: left; /* important for inline positioning of the list items */                                    
	width: 182px;  /* fixed width, important */
	padding:0px;
	height:144px;
	overflow: hidden;
	position: relative;
	margin: 0px 10px 0px 0px;
	background: url(../images/smallBox.gif) 0px 0px no-repeat;
}
#carousel_ul li A
{
	display: block;
	height: 136px;
	width: 174px;
	margin: 1px auto;
	text-align: center;

}

#carousel_ul li A img 
{
	margin: 5px auto;
	cursor:pointer;
	text-align: center;
	border:0px; 
}
#carousel_ul li A span
{
	position: absolute;
	bottom: 18px;
	left: 2px;
	line-height: 19px;
	display: block;
	height: 19px;
	width: 144px;
	overflow: hidden;
	padding: 0px 25px 0px 0px;
	margin: 0;
	font-size: 10px;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	background: url(../images/linkArrows.gif) right 0px no-repeat;
}
#carousel_ul li A:hover span
{
	background-position: right -20px;
}


#left_scroll, #right_scroll
{
	position: absolute;
	float: left;
	left: -11px;
	top: 62px;
	width: 23px;
	height: 23px;
	z-index: 100;
	border:0;
	cursor: pointer;
	text-indent: -9999em;
	background: url(../images/carouselArrows.png) 0px -23px no-repeat;
}
#right_scroll
{
	left: auto;
	right: -7px;
	background-position: 0px 0px;
}


