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

/* position and dimensions of the navigator */
.navi {
	width:120px;
	height:12px;
	top: 15px;
	position: relative;
	left: 0px;
	background-color: #FFFFFF;
	padding-top: 1px;
	padding-left: 2px;
	margin: 0px;
}


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

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

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

