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

	/* vertical scrollers have typically larger height than width */	
	height: 203px;	 
	width: 280px;
}

/* 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 {
	padding-bottom:15px;
	font-size:12px;
	height:180px;
}

/* elements inside single item */


/* the action buttons above the scrollable */
#actions {
	width:272px;
	padding-top:10px;	
	border-top:1px solid #333;	
	
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.prevPage {
	float:left;
}	
.bold{
	font-weight:bold;
}


