
#news{ background:#e2e5ef url(top_news_bg.jpg) bottom repeat-x; height:170px; display:block; overflow:hidden; top:0; clear:both }

#news_banner{width:960px; display:block; overflow:hidden; margin:0 auto; height:160px; position:relative}
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
#news div.scrollable { /* required settings */
	position: absolute; overflow:hidden; width: 920px; height:110px; /* custom decorations */
	padding:0; top:40px; left:20px }

/* 
	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.
*/
#news div.scrollable div.items { /* this cannot be too large */
	width:20000em; position:absolute; clear:both; /* decoration */
	 }

/* single scrollable item */
#news div.scrollable div.items .box { background: url(top_news_box.jpg) center top no-repeat; float:left; /* custom decoration */
	width:307px; height:110px; overflow:hidden; padding:0px; margin:0 px; position:relative}

/* active item */
div.scrollable div.items div.active {  }

