/*text class to apply to the scroller*/
#scroller a:hover { text-decoration:none; }
#scroller a:link { color: #FFFFFF; }
#scroller a:visited { color: #FFFFFF; }

/*CSS for the scroller box and text*/

#scroller
{
	position:relative;
	top:155px; 
	left:275px;
	width: 195px;
	height: 75px;
	border: none;
	padding: 5px;
	/*background-color: 000066;*/
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;

}

.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

.items div {
	height:150px;
}

/* the action buttons below the scrollable */
#actions {
	position:relative;
	top:75px; 
	left:275px;
	width:195px;
	margin:60px 0 10px 0;
	z-index:100;
}

#actions a {
	font-size:22px;		
	cursor:pointer;
	color:#fff;
}

#actions a:hover {
	text-decoration:none;
	color:#fff;
}

.disabled {
	visibility:hidden;		
}

.prevPage {
	float:left;
}
.nextPage {
	float:right;
}	

