/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 565px;	 
	width: 158px;
	border-top:0px solid #e4e4e4;	
	border-bottom:solid 0px #e4e4e4;
}

/* root element for scrollable items */
.items {	
	position:relative;
	
	/* this time we have very large space for height */	
	height:20000em; 
	text-align:left;
	padding-left:10px;
}

/* single scrollable item */
.items div {
	border-bottom:0px solid #ddd;
}



/* the action buttons above the scrollable */
#actions {
	width:100%;
	background-color:#fff;
	/*border:solid 0px #e4e4e4;
	margin: 0 auto;	*/
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	




	


