/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:absolute;
	overflow:hidden;
	width: 920px;
	height: 400px;
	margin-right: auto;
	margin-left: auto;
	z-index: 9;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root 
	element and
	not for this element.
*/
.scrollable .items {
	width:20000em;
	position:absolute;
/*	clear:both; */
}
.items {
	width: 900px;
	height: 400px;
}





/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	/*position:relative;*/
	cursor:default;
}

/* ============================================================== */


/* ============================================================== */


/* position and dimensions of the navigator */
.navi {
	z-index:99;
	height:40px;
	position: absolute;
	bottom: 20px;
	width:430px;
	background-image:url(../images/OverlayBlack.png);
	padding-left:490px;
}	

/* items inside navigator */
.navi a {
	width:20px;
	height:20px;
	float:left;
	display:block;
	font-size:1px;
	margin-right: 10px;
	margin-top: 10px;
	background-image:url(../images/navi.png);
	background-position:center top;
}

/* mouseover state */
.navi a:hover {
	background-position:right top;
}

/* active state (current page state) */
.navi a.active {
	background-position:left top;
}
