
/* 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:25px;
	height:25px;
	background:url(images/arrow_left.gif) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	width:5px;
    margin:35px 10px 0 0;
    vertical-align:middle;
}

/* 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(images/arrow_right.gif);
	clear:right;	
}
