#carousel_inner {
	float:left; /* important for inline positioning */
	width:590px; /* important (this width = width of list item(including margin) * items shown */ 
	overflow: hidden;  /* important (hide the items outside the div) */
}

#carousel_ul {
	position:relative;
	left:-155px; /* 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 */
	/* non-important styling bellow */
	padding-bottom:10px;
}

#carousel_ul li{
	float: left; /* important for inline positioning of the list items */                                    
	width:145px;  /* fixed width, important */
	/* just styling bellow*/
	padding:0px;
	height:50px;
	margin-top:8px;
}

#carousel_ul li span{
	color:#FFFFFF;
}

#carousel_ul li img {
	.margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/
	/* styling */
	cursor:pointer;
	border:0px; 
}

#left_scroll{
	background:url(../images/tourimages/arrow-left.png) no-repeat scroll right center;
	cursor: pointer;
	float:left;
	height:48px;
	*height:54px;
	margin-top:8px;
	width:155px;
	border-top: 1px solid #9B1C1F;
	border-bottom: 1px solid #9B1C1F;
}

#right_scroll{
	background:url(../images/tourimages/arrow-right.png) no-repeat scroll left center;
	cursor: pointer;
	float:left;
	height:48px;
	*height:54px;
	margin-top:8px;
	width:155px;
	border-top: 1px solid #9B1C1F;
	border-bottom: 1px solid #9B1C1F;
}


