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

	/* vertical scrollers have typically larger height than width */	
	height: 100px;	 
	width: 900px;	
	
	/* decoration */
	padding:10px;
	border:0px outset #ccc;
	background-color:transparent;
}

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

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align:center;
	width:140px;
	padding:0px 0px;
	font-size:10px;
	font-family: 'verdana';
	border:0px outset #ccc;
	background-color: transparent;
	-moz-border-radius:5px;
	margin-bottom:10px;
	float:left;
}

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

