@charset "UTF-8";
/* CSS Document */
#carousel_container {
	margin-top:20px;
	margin-left:-20px;
	margin-right:-20px;
	height: 180px;
}
#carousel_inner {
	display:inline;
	position:relative;
	float:left; /* important for inline positioning */
	width:750px; /* 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-color:#fffbf2;
}
#carousel_inner ul {
	position:relative;
	left:-780px; /* important (this should be negative number of list items width(including margin) */
	list-style-type: none; /* removing the default styling for unordered list items */
	width:9999px; /* important *//* non-important styling bellow */
	height: 180px;
}
#carousel_inner ul li {
	float: left; /* important for inline positioning of the list items */
	display:inline;
	width:730px;  /* fixed width, important */
	/* just styling bellow*/
	padding-left:0px;
	padding-right:20px;
	height:180px;
}
#left_scroll, #right_scroll {
	float:left;
	height:180px;
	width:15px;
	background-color:#fffbf2;
}
#left_scroll img, #right_scroll img {
	border:0; /* remove the default border of linked image */
	/*styling*/
cursor: pointer;
}
