/* root element for the whole scrollable setup */
div.scrollable {

	
	/* required settings */
	position:relative;
	overflow:hidden;	 
	float: left;
	
	/* custom decoration */
	width: 273px;	
	height:67px;
	padding: 2px;	
	background-color:#efefef;	

	-moz-border-radius:5px;			
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
div.scrollable div.items {	
	position:absolute;
	width:20000px;	
	clear:both;

	
	/* decoration */
	margin-left:3px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:85px;
	padding:4px 0px;
	height:58px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:1px solid #ccc;
	background-color: #ddd;
	margin-right: 5px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {

	border:1px inset #ccc;		
	background-color:#fff;
}

a.prev, a.next {
	display:none;
	width:18px;
	height:18px;
	background:url(left.png) no-repeat;

	float:left;
	margin:43px 10px;
	cursor:pointer;
}

a.next {
	background-image:url(right.png);
	clear:right;	
}

a.prev:hover, a.next:hover {
	background-position:0px -18px;		
}


a.disabled {
	visibility:hidden !important;		
}