@charset "UTF-8";
#carousel_inner {
	position: relative;
	float:left; /* important for inline positioning */
	width:240px; /* important (this width = width of list item(including margin) * items shown */
	overflow: hidden;  /* important (hide the items outside the div) */
	/* non-important styling bellow */
	background: none;
	margin-left: 4px;
	margin-top: 5px;
}
#carousel_ul {
	position:relative;
	left:-32px; /* 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:30px;  /* fixed width, important */
	
	/* just styling bellow*/
	padding:0px;
	height: 30px;
	margin: 2px;
}

#left_scroll, #right_scroll {
	float:left;
	height:20px;
	width:20px;
	margin-top: 12px;
	margin-left: 5px;
	background: none;
}
#left_scroll img, #right_scroll img {
	/*styling*/
	cursor: pointer;
	cursor: hand;
}
#right_scroll {
	float: right;
	margin-right: 5px;
}

