/*// hashslider v0.9 by manuel huegel, copyright 2010
// mgoys.com*/


.box-slider{
	width:100%; height: 467px;
	position:relative;
	}
/*the container*/
#slider {
	position: relative; /*important for ie bugfix*/
	width: 850px; height: 467px; /*the width of the slider is important but could be everything in pixels*/
	overflow: hidden;
	z-index: 10;
	left:57px;
	}

/*the numbered navigation*/
#slider #numbers { /*also the width of the number-wrapper will be set automaticly, delete line 33-35 in the js to avoid this*/
	margin: 0px;
	padding: 0px;
	width: 454px!important;
	height:210px;
	list-style:none;
	top:124px;
	left:198px!important;
	position: absolute;
	background: url(../img/top/none.gif)!important;
	}	
	
#slider #numbers li {
	width: 454px;
	height: 30px;
	float:left;
	text-indent:-9999px;
	cursor: pointer;
	margin-bottom:17px;
}




/*the for and back buttons*/
#right { /*hides the inline text with textindent*/
	background: url(../img/top/top_nex-btn.gif);
	width: 30px;
	height:69px;
	margin:0;
	cursor: pointer;
	position: absolute;
	top:195px;
	left:907px;
	text-indent:-9999px;
	}
	
	#right.on { /*hides the inline text with textindent*/
	background: url(../img/top/top_nex-btn-h.gif);
	}
	
#left {
	background: url(../img/top/top_pre-btn.gif);
	width: 30px;
	height:69px;
	margin: 0px;
	cursor: pointer;
	position: absolute;
	top:195px;
	left:27px;
	text-indent:-9999px;
	}
	
	#left.on {
	background: url(../img/top/top_pre-btn-h.gif);
	}
	
#slider ul { /*the width of the ul and the li will be set automaticly by the javascript!*/
	position: relative;
	background-color: #FCF;
	list-style:none;
	}
	
#slider ul li { /*the width of the ul and the li will be set automaticly by the javascript!*/
	float: left;
	}


