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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:220px;
	height:40px;
	float:left;
	margin:0;
	cursor:pointer;
	background-image: url(../../images/site/nav_up.jpg);
	background-repeat: no-repeat;
}

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

/* disabled navigational button */
a.disabled, a.disabled:hover {
	background-position:0px -80px;		
}

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