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

	/* vertical scrollers have typically larger height than width */	
	height: 450px;	 
	/*width: 150px;
	border-top:1px solid #ddd;	*/
}
.rn_vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 300px;	 
	/*width: 150px;
	border-top:1px solid #ddd;	*/
}

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

/* single scrollable item */
.items div,.rn_items div {
	/*border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;*/
	font-size:13px;
	/*height:180px;*/
}


/* the action buttons above the scrollable */
#actions,#rn_actions {
	margin:0 0 5px 0;
	padding-bottom:5px;
	border-bottom:1px dashed #006699;
}

#actions a,#rn_actions a {
	font-size:11px;		
	cursor:pointer;
	color:#CD0000;
	text-decoration:none;
}

#actions a:hover,#rn_actions a:hover {
	text-decoration:none;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


