/* this makes it possible to add next button beside scrollable */
div.scrollable {
	/*float:left;
	position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    margin-top: -100px;    // 200px/2
    width: 300px;
   margin-left: -150px;*/
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:28px;
	height:29px;
	background:url(/img/icons/prev.gif) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px;
}

a.prev, a.next{position:absolute;}

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

a.prev.disabled:hover, a.next.disabled:hover {	
	background-position:0px -96px;
	cursor: default;
}

/* disabled navigational button */
a.disabled {
	background-position:0px -96px;
	cursor: default;
	/*visibility:hidden !important;*/
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/img/icons/next.gif);
	clear:right;
}



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


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/img/icons/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

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

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