@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: 110px;	 
	width: 560px; 
	
}

/* 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:12px;
	height:210px;
}


/* the action buttons above the scrollable */
#actions {
	width:17px;
	margin:10px 10px 0 0; float: left;
}

#actions a {

}

#actions a:hover {

}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

