
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scroll {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 664px;
    height: 140px;
    border:0px solid red;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scroll div.items {	
	/* this cannot be too large */
	width:20000px;	
	position:absolute;
	clear:both;		
	
	/* decoration
	margin-left:10px; */
}

/* single scrollable item */
div.scroll div.items div.item {
	float:left;
	
	/* custom decoration */
	padding:5px 11px 5px 20px;
    width: 136px;
    height: 130px;
    background:url('/images/home/carousel/horizontal_carouzel_sep.png') no-repeat right top;
}

/* active item */
div.scroll div.items div.active {		
	background:url('/images/home/carousel/carousel_sel_item_bg.png') no-repeat right top;
}

