/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
float:right;
	/* vertical scrollers have typically larger height than width */	
	height: 77px;	 
	width: 130px;
		
}

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

/* single scrollable item */
.items div {
	height:77px;
}


/* the action buttons above the scrollable */
#actions {
	
	width:7px;
	float:left;
	position:relative;
}

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

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

.disabled {
	/*visibility:hidden;		*/
}

.nextPage {
	float:right;
}	

