@charset "utf-8";

.banner {
	position:relative;
	margin:0px auto;
	width:960px;
}
.scrollable {
	/* required settings */
	position:relative;
	margin:0px auto;
	overflow:hidden;
	width: 960px;
	height:240px;
}

.scrollable .items {
	/* this cannot be too large */
	height:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px;
	cursor:pointer;
	width:960px;
	height:240px;
	
	/*-moz-border-radius:4px;*/
	/*-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

/* position and dimensions of the navigator */ 
.navi {
	position:absolute;
	top:12px; left:852px;
	margin:10px auto;
	width:100px;
	height:20px;
}

/* items inside navigator */
.navi a {
	width:12px;
	height:10px;
	float:left;
	margin:3px;
	background:url(../img/btn_dot.png) no-repeat left -10px ;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 0px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 0px;     
}


