/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 763px;
	height:161px;

	/* custom decorations */
	border:1px solid #ccc;
	
}

.scrollable .items {
	/* this cannot be too large */
	height:20000em;
	position:absolute;
	
}




/* single scrollable item */
.scrollable img {
	
	
	background-color:#fff;
	width:763px;
	height:163px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}



/* position and dimensions of the navigator */
.navi {
	margin-left:858px;
	width:200px;
	height:20px;
}


/* items inside navigator */
.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 */
.navi a:hover {
	background-position:0 -8px;      
}

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


