#carousel_container {
	height:160px;
}
#carousel_inner {
	float:left; /* important for inline positioning */
	width:720px; /* important (this width = width of list item(including margin) * items shown */
	height:160px;
	overflow: hidden;  /* important (hide the items outside the div) */
}
#carousel_ul {
	position:relative;
	left:-240px; /* 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 */
	height: 160px;
}
#carousel_ul li {
	float: left; /* important for inline positioning of the list items */
	width:240px;  /* fixed width, important */
	padding:0px;
	height:160px;
	margin:0;
}
#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*/
	cursor:pointer;
	cursor: hand;
	border:0px;
}

