/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:16px;
	height:18px;
	float:left;
	cursor:pointer;
	background-image: url(../sitefiles/left.png);
	background-repeat: no-repeat;
	margin-top: 300px;
	margin-right: 10px;
	margin-left: 10px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../sitefiles/right.png);
	clear:right;
}



/*********** navigator ***********/



