/* prev, next, prevPage and nextPage buttons */
div.paging a.prev, div.paging a.next, div.paging a.prevPage, div.paging a.nextPage {
	display:block;
	float:left;
	width:9px;
	height:9px;
	background:url(img/scrollable/arrows.png) no-repeat 0px 0px;
	cursor:pointer;
	line-height: 0px;
	font-size: 0px;
}

/* next button uses another background image */
div.paging a.next, div.paging a.nextPage {
	background:url(img/scrollable/arrows.png) no-repeat -9px 0px;
}


/* mouseover state */
div.paging a.next:hover {
	background-position:-9px -9px; 
}

div.paging a.prev:hover {
	background-position:0px -9px; 
}

/* disabled navigational button */
div.paging a.disabled.next { background-position:-9px -18px; cursor: pointer;}
div.paging a.disabled.prev { background-position:0px -18px; cursor: pointer;}

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:50%;
	margin-top: 5px;
	width:40px;
	height:20px;
}


/* items inside navigator */
div.paging a {
	width:9px;
	height:9px;
	line-height: 9px;
	font-size: 0px;
	float:left;
	margin: 0 4px 0 4px;
	background:url(img/scrollable/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.paging a.page:hover {
	background-position:0 -9px;      
}

/* active state (current page state) */
div.paging a.active {
	background-position:0 -9px;     
} 	

