/* 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 {
	cursor: pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	
}

/* disabled navigational button */
a.disabled {
    color: #999;
    cursor: default;
    text-decoration:none;
}




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


/* position and dimensions of the navigator */
div.navi {
	
}


/* items inside navigator */
span.navigation span {
	padding:1px 4px;
}

/* mouseover state */
div.navi a:hover {
	
}

/* active state (current page state) */
span.navigation span.active {
background-color:white;
	padding:1px 3px;
    border: solid 1px #999
}


