
/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 436px;	 
	width: 143px;
	# width: 154px;
	# height: 437px;	
	
	/* decoration */
	padding:0px 0px 0px 10px;
	background-color:#393939;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}

/* 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:6px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align:center;
	width:130px;
	height: 96px;
	font-size:11px;
	color: #BD0000;
	border:1px outset #ccc;
	background-color: #ddd;
	-moz-border-radius:5px;
	margin-bottom:11px;
}

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