
/* this makes it possible to add next button beside scrollable */
div.scrollable {

}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage, a.prev_ex {
	margin: 0;
	padding: 0;
	width:18px;
	height:18px;
	background:url(../gfx/left.png) no-repeat;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover, a.prev_ex: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(../gfx/right.png);
}



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


/* position and dimensions of the navigator */
div.navi, div.navi_ex {
	margin: 0;
	padding: 0;
}


/* items inside navigator */
div.navi a, div.navi_ex a {
	width:8px;
	height:8px;
	margin:3px;
	float:left;
	background:url(../gfx/navigator.png) 0 -16px no-repeat;     
}

/* mouseover state */
div.navi a:hover, div.navi_ex a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active, div.navi_ex a.active  {
	background-position:0 0px;     
} 	

