
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
	margin-top:7px
}

/* prev, next, prevPage and nextPage buttons */
a.next, a.nextPage {
	display:block;
	width:20px;
	height:70px;
	/*background:url(../images/subnav/rightarrow.gif) no-repeat; this was repeated below...*/
	background-image:url(../images/sprite.gif);
	background-position:-20px -207px;		
	clear:right;	
	
	float:left;
	margin:18px 0 0 10px;
	cursor:pointer;
	font-size:1px;
}
a.prev, a.prevPage {
	display:block;
	width:20px;
	height:70px;

	background:url(../images/sprite.gif) no-repeat;
	background-position:-1px -207px; /*default state is "arrow shows" [only if the state is not disabled] */	

	float:left;
	margin:18px 10px 0 0;
	cursor:pointer;
	font-size:1px;
}

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

/* disabled navigational button */
/*a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -140px;		
	
}*/

a.disabled {
	/*background-position:0px 0px;		
	visibility:hidden !important; ditch the hidden state for inactive*/
	background:none;
	cursor:default
}
/*added no click style for hover image [added darker no arrow bg to leftarrow/rightarrow gifs...]*/
a.disabled:hover, a.disabled:hover, a.disabled:hover, a.disabled:hover {
	background-position:0px -210px;		
}


a.none { /*don't show when there are no items in list @mlp*/
	visibility:hidden !important;
}

.scrollable a.active { /*snippet adds class for active nav item @mlp*/
	color:#aac33e; /*test...*/
}


/* next button uses another background image 
a.next, a.nextPage {
moved to class above: repeated...
}
*/


/*********** 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(../images/subnav/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:0 -16px;     
} 	
