/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 455px;	 
	width: 700px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	margin: 0px;
}

/* single scrollable item */
.items div {
	height: 65px;	 

}

/* elements inside single item */
.items img {
	float:left;
	margin-right:8px;
	height:60px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}


.disabled {
	visibility:hidden;		
}

