
/* root element for the whole scrollable setup */
div.scrollable {
	
	/* two required settings */
	position:relative;
	overflow:hidden;	 
	
	/* custom decoration */
	width: 842px;	
	height:75px;
	padding:10px 0;	
	/*border:1px outset #ccc;*/
	background-color:#3E3325;				
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
div.scrollable div.items {	
	position:absolute;
	width:20000em;	
	clear:both;
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	padding:25px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:1px outset #635F54;
	background-color: #ddd;
	margin-right: 20px;	
	padding-bottom:0;
	padding-top:0;
	width:70px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #FFC900;		
	background-color:#fff;
}

