/* root element for scrollable */
div.scrollable2 {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 274px;
	width: 310px;
	/* decoration */
	padding:0px 5px;
	margin-top:-5px;
}

/* root element for scrollable items */
div.scrollable2 div.items {
	position:absolute;
	height:20000em;
	margin-top:10px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable2 div.items div {
	text-align:left;
	width:295px;
	padding:5px 5px;
	background-color: #FFF;
	margin-bottom:10px;
	height:110px;
	overflow:hidden;
	border: 1px solid #CCC;
}

/* active item */
div.scrollable2 div.items div.active {	
	background-color:#fff;
}

