
/* 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 {
	position:relative;
	width:11px;
	height:11px;
	background:url(/images/scrollable/leftarrowscroller.png) no-repeat;
	float:left;
	margin-top:75px;
	margin-left: 8px;
	cursor:pointer;
	font-size:1px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/images/scrollable/rightarrowscroller.png);
	clear:right;	
}






