/* 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:136px;
	height:28px;
	background:url(graphics/left.png) no-repeat;
	position: absolute;
	left: 0;
	top: 447px;
	cursor:pointer;
}

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

/* disabled navigational button */
a.disabled {
	
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(graphics/right.png);
	width: 83px;
	margin-left: 750px;	
}



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


/* position and dimensions of the navigator */
div.navi {
	margin-left:398px;
	width:200px;
	height:20px;
	clear: both;
	position: absolute;
	left: 0;
	top: 457px;
	z-index: 999;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	margin:3px;
	background: url(graphics/navigator.png) left top no-repeat;     
	cursor:pointer;	
	display: block;
	float: left;
}

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

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

