﻿/* root element for scrollable */
.vertical {  
	
	/* required settings */
position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width 	
	height: 395px;	 
	width: 85px;
		*/
}


/* root element for scrollable items */
.items {	
	position:relative;
	
	/* this time we have very large space for height */	
	height:5000em;	
	margin: 0px;
}

/* single scrollable item */


/* elements inside single item */


.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

