@charset "UTF-8";

/* CSS Document */
/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 180px;	 
	width: 225px; 
	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	margin:10px 0;
	padding:0 15px 0 0;
	font-size:11px;
}


/* the action buttons above the scrollable */
#actions {
	width:31px;	margin: 0 0 0 0; float: right;
}

#actions a {}

#actions a:hover {}

.disabled {
	visibility:hidden;		
}

.nextPage {float:right;}


