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

/* prev, next, prevPage and nextPage buttons */
.scroll a.prev, .scroll a.next, .scroll a.prevPage, .scroll a.nextPage {
	display:block;
	width: 17px;
	height: 38px;
	background-image: url(../images/left.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	float:left;
	margin: 6px 0 0 0;
	cursor:pointer;
}

/* mouseover state */
.scroll a.prev:hover, .scroll a.next:hover, .scroll a.prevPage:hover, .scroll a.nextPage:hover {
	background-position: bottom left;		
}

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

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

