
/* position and dimensions of the navigator */

.navi {
	height:20px;
	margin-left: 330px;
}


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

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

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



/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/fileadmin/libs/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }






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

#naviwrapper {
	position: absolute;
	top: 225px;
	left: 5px;
	z-index: 1000;
}

#prevwrapper {
	position: absolute;
	top: 175px;
	left: 20px;
	z-index: 1000;
}

#nextwrapper {
	position: absolute;
	top: 175px;
	right: 20px;
	z-index: 1000;
}


