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

	/* vertical scrollers have typically larger height than width */	
	height: 500px;	 
	/*width: 700px;*/	
}

/* 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 {
	width: 294px;
	margin: 10px 0 10px 0;
	border-bottom:2px solid #ddd;
	border-top:2px solid #ddd;
}

#actions a {
	font-size:18px;		
	cursor:pointer;
	color:#666;
}

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


