@charset "utf-8";
/* CSS Document */


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:326px;
}

/*
	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 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	z-index:0;
}

.items div {
	float:left;
	width:960px;
}

/* single scrollable item */
.scrollable img {
	width:auto;
	height:auto;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* position and dimensions of the navigator */
.navi {
	position:absolute;
	margin-left:460px;
	margin-top:-35px;
	width:100px;
	height:20px;
	outline:none;
	border:0;
}


/* items inside navigator */
.navi a {
	width:24px;
	height:23px;
	float:left;
	background:url(images/slide_nav_btn_notselected.png) 0 0 no-repeat;
	display:block;
	

}

/* mouseover state */
.navi a:hover {
	background: url(images/slide_nav_btn_selected.png) no-repeat; width:24px; height:23px;      
}

/* active state (current page state) */
.navi a.active {
	background: url(images/slide_nav_btn_selected.png) no-repeat; 
	width:24px; 
	height:23px; 
	outline:none;
	border:0;    
}