@charset "UTF-8";
/* CSS Document */

/* this makes it possible to add next button beside scrollable  #1 */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:76px;
	height:32px;
	background:url(../images/prev.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px; position:absolute; top:160px; left:620px;
}

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

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/next.png); position:absolute; top:160px; left:710px;
	clear:right;	
}



/* this makes it possible to add next button beside scrollable # 2 */
div.scrollable2 {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev2, a.next2, a.prevPage2, a.nextPage2 {
	display:block;
	width:76px;
	height:32px;
	background:url(../images/prev.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px; position:absolute; top:160px; left:620px;
}

/* mouseover state */
a.prev2:hover, a.next2:hover, a.prevPage2:hover, a.nextPage2:hover {
	background-position:0px -32px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next2, a.nextPage2 {
	background-image:url(../images/next.png); position:absolute; top:160px; left:710px;
	clear:right;	
}

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


/* position and dimensions of the navigator 1 */
div.navi {
	left:50%; top:-40px; z-index:999; position:absolute; margin-left:-100px
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/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;     
} 	


/* position and dimensions of the navigator 2 */
div.navi2 {
	left:50%; top:-40px; z-index:999; position:absolute; margin-left:-100px
	width:200px;
	height:20px;
}


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

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

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