/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 170px;	 
	width: 100px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	text-align:center;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	font-size:12px;
	height:50px;
	margin-top:10px;
	margin-bottom:10px;
}

/* elements inside single item */
.items img {

	text-align:center;
	
}


#actions {
	width:100px;
	text-align:center;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}



