﻿/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;	 
	height:490px;
}
div.navi {
	float: left;
	background-color: #000000;
	padding: 4px;
	margin-top: 30px;
	min-width: 236px;
	max-width: 550px;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(img/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;     
} 	
