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

	/* vertical scrollers have typically larger height than width */	
	height: 580px;	 
	width: 435px;
}

/* 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:25px;
	height:74px;
	float:right;
	margin-top:150px;
	margin-right:35px;
	
}

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

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

.disabled {
	visibility:hidden;
	float:left;
}

.nextPage {
	float:right;
	margin-top:20px;
}	


