/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 352px;	 
	width: 90px;
	
	/* decoration */
	padding:0;
	border:0;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	
	/* decoration */
	margin-top:0px;
	margin-bottom:0px;
	left:0px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items li {
	text-align:center;
	width:90px;
	padding:0;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:0;
	background-color: #fff;
	margin-bottom:0px;
	float:left;
}

/* active item */
div.scrollable div.items li.active {
	border:0;		
	background-color:#ddd;
}
