
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 894px;	
	height:450px;			
}

div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	width:288px;
	padding:0px 0px;
	margin-right: 5px;
	margin-left:5px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {	
	background-color:#181818;
}

