/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 306px;	 
	width: 620px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}


/* the action buttons above the scrollable */
#actions {
	margin-top:10px;
}

#actions a {
	font-size:12px;		
	cursor:pointer;
	color:#745129;
}

#actions a:hover {
	text-decoration:underline;
	color:#745129;
}

.disabled {
	visibility:hidden;		
}

