/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 175px;	 
	width: 450px;
	border:1px solid #ddd;	
	margin-top: 80px;
	margin-left: 540px;
}

/* root element for scrollable items */
.items {	
	position:absolute; 
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #ddd;
	padding:15px;
	font-size: 0.75em;
	color: #5b5a5a;
	height:175px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:5px;
}

.item h1 {
	font-size: 1.2em;
	color: #236452;
	font-weight: bold;
	margin-top: -10px;
	margin-left: -30px;
}

.disabled {
	visibility:hidden;		
}

