/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	/*height: 495px;	*/ 
	width: 85px;
	/*border-top:1px solid #ddd;	*/
}

/* root element for scrollable items */
/*.items {	
	position:absolute;
	
	height:20000em;	
	margin: 0px;
}*/

/* single scrollable item */
.items div {
	/*height:180px;*/
}

/* the action buttons above the scrollable */
#actions {
	width:40px;
	/*margin:30px 0 10px 0;	*/
}

#actions a {
	cursor:pointer;
	/*font-size:11px;
	color:#666;*/
}

#actions a:hover {
	/*text-decoration:underline;
	color:#000;*/
}

.disabled {
	/*visibility:hidden;		*/
	cursor: default;
}

.nextPage {
	/*float:right;*/
}	


