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

	/* vertical scrollers have typically larger height than width */	
	height: 665px;	 
	width: 900px;
}

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

/* single scrollable item */



/* the action buttons above the scrollable */
#actions {
	width:900px;
	height: 20px;	
}

#actions a {
	font-size:14px;	
	font-weight: bold;	
	cursor:pointer;
	color:#01675a;
}

#actions a:hover {
	text-decoration:none;
	color:#990000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}
