/* root element for scrollable */
div.scrollable.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 330px;	 
	width: 435px;	
}

/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:30000px;	
	margin: 0px;
}

/* root element for scrollable */
div.scrollableB.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 420px;	 
	width: 620px;	
	margin:5px 0px 5px 0px;
}

/* root element for scrollable items */
div.scrollableB.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:30000px;	
	margin: 0px;
}


