/*// hashslider v0.9 by manuel huegel, copyright 2010
// mgoys.com*/


/*the container*/
#slider {
	position: relative; /*important for ie bugfix*/
	width: 800px; height: 616px; /*the width of the slider is important but could be everything in pixels*/
	overflow: hidden;
	z-index: 10;
	margin-bottom:10px;
}


/*the for and back buttons*/
#right { /*hides the inline text with textindent*/
width: 104px;
cursor: pointer;
float:right;
}
	
#left {
width: 104px;
cursor: pointer;
float:left;
}

	
#slider ul { /*the width of the ul and the li will be set automaticly by the javascript!*/
	position: relative;
	left:-8800px;
	}
	
#slider ul li { /*the width of the ul and the li will be set automaticly by the javascript!*/
	float: left;
	}


/*the numbered navigation*/
#numbers { /*also the width of the number-wrapper will be set automaticly, delete line 33-35 in the js to avoid this*/
	text-align: center;
	list-style: none;
	width: 105px;
	display:none;
	}	
	
#numbers li {
	position: relative;
	float: left;
	
	width: 15px; height: 15px; 
	margin: 0 5px; 
	border: 1px solid #ccc;
	}
	
.activenum { /*marks the current sliderposition*/

	}