/* root element for scrollable */
.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 238px;	 
}

/* 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 {
	border-bottom: 1px solid #FFFFFF;
	border-right: 1px solid #3B80B8;
	border-left: 1px solid #3B80B8;
	padding:1px;
	height:76px;
}

/* the action buttons above the scrollable */
#actions {
}

#actions a {
	cursor:pointer;
	color:#FFFFFF;
}

#actions a:hover {
	text-decoration:none;
	color:#FBD201;
}

.disabled {
}

.nextPage {
	float:right;
}	

