/* root element for the whole scrollable setup */
div.scrollable {
	/* two required settings */
	position:relative;
	overflow:hidden;
	/* custom decoration */
	width: 390px;
	height:131px;





	border:
	background-color:#efefef;
}

/* 
	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:5px;
	left: -0px;
	top: -0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:center;
	width:190px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:
	background-color: #ddd;
	margin-right: 3px;
	-moz-border-radius:5px;
	height: 80px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 25px;
	padding-left: 0px;
}

/* active item */
div.scrollable div.items div.active {
	border:		
	background-color:#fff;
}
