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

	/* vertical scrollers have typically larger height than width */	
	height: 670px;	 
	width: 290px;
	background-color:#ffffff;
}

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

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

.newstitle{background-color:#dddddd; }

/* the action buttons below the scrollable */
#actions {
	width:290px;
	margin:10px 0px 0px 0px;	
}

#actions a {
	font-size:10px;		
	cursor:pointer;
	color:#000000;
}

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	font-size:10px;		
	float:right;
}	

.prevPage {
	font-size:10px;		
}	
