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

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 100%;	
	
	/* decoration */
	padding:0px;
	/*border:1px outset #ccc;*/
	/*background-color:#efefef;*/
}

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

/* 	same settings as in horizontal scroller except that these items are not floated */
div.scrollable div.items div {
	text-align:center;
	width:220px;
	height: 132px;
	font-size:30px;
	background-color: #ddd;
	margin-bottom:2px;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#999;
}