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

	/* vertical scrollers have typically larger height than width */	
	height: 455px;	 
	width: 261px;
	
	border-top:1px solid #ddd;	
}

/* 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:261px;
	margin:10px 0 0px 0;	
}


#actions a {
	font-size:11px;		
	cursor:pointer;

}

#actions a:hover {
	text-decoration:underline;

}


.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
