/* this makes it possible to add next button beside scrollable */

div.scrollable {
	float:left;	
}
/* prev, next, prevPage and nextPage buttons */
a.next, a.nextPage   {
	display:block;
	width:200px;
	height:18px;
	float:right;
	cursor:pointer;
	background-image: url(../images_core/left.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	background-position: right top;
}
a.prev, a.prevPage {
	display:block;
	width:200px;
	height:18px;
	float:left;
	cursor:pointer;
	background-image: url(../images_core/left.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	background-position: left top;
	text-align: right;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:right -18px;
	background-image: url(../images_core/right_dark.png);
	background-repeat: no-repeat;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images_core/right.png);
	clear:right;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:none;
	font-size:1px;
	background-image: url(../images_core/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
