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