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

	/* vertical scrollers have typically larger height than width */	
	height: 270px;	 
	width: 210px;	
	
	/* decoration */
	padding:0px 10px;
	border:5px;
	background-color:#e5e5e5;

	
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:80px;
	height:200px;

	/* decoration */
	margin-top:0px;
	margin-left: 65px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	border-color: #3d3d3d;
	border-style: solid;
	border-width: 4px;
	
	-moz-border-radius:5px;
	margin-bottom:6px;

}

/* active item */
div.scrollable div.items div.active {
	border-color: #C36103;
	border-style: solid;
	border-width: 4px;
}

