#carousel_inner {
	border: 0px solid red;
	width:97%; /* important (this width = width of list item(including margin) * items shown */  
	float:left; /* important for inline positioning */  
	overflow: hidden;  /* important (hide the items outside the div) */  
	/* non-important styling bellow */  
}  
  
#carousel_ul {  
	border: 0px solid red;
	position:relative;  
	width:1950px; /* important */  
	left:-185px; /* 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;  
	/* non-important styling bellow */  
	padding-bottom:10px;  
	float: left;
}  
  
#carousel_ul li{
	width:185px;  /* fixed width, important */  
	/* just styling bellow*/  
	padding:0px;    
	margin-top:10px;  
	margin-bottom:10px;
	margin-left:5px; 
	margin-right:5px;
	float: left; /* important for inline positioning of the list items */ 
}  
  
#left_scroll, #right_scroll{  
	border: 0px solid red;
	position: relative;
	z-index: 1;
	width:15px;
	float:left;
	margin-top: 80px;
	padding: 10px 0;
}  
#left_scroll img, #right_scroll img{  
	/*styling*/  
	width: 100%;
	cursor: pointer;  
	cursor: hand;  
}  