
/* root element for scrollable */
div.scrollableB.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	width: 435px;	
	height: 260px;	 
	margin:5px 0px 10px 0px;
}

/* root element for scrollable items */
div.scrollableB.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:2000px;	
	margin: 0px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin:0px 0px;
}

/* single scrollable item */
div.scrollable div.items div {
	
	/* text/font settings */
	width:435px;
	height:260px;
}


