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


/*the container*/
#slider {
	position: relative; /*important for ie bugfix*/
	width:230px;
	height:290px; /*the width of the slider is important but could be everything in pixels*/
	overflow: hidden;
	z-index: 10;
	}

#nav { /*hides the inline text with textindent*/
		width:230px;
		height:20px;
		
	}
#nav div { /*hides the inline text with textindent*/
		float:left;
		
	}
/*the for and back buttons*/
#right { /*hides the inline text with textindent*/
	font-weight:bold;
	font-size:16px;
	width: 50px;
	margin: 0px 10px;
	cursor: pointer;
	}
	
#left {
	font-weight:bold;
	font-size:16px;
	width: 50px;
	margin: 0px 30px;
	cursor: pointer;
	margin-left:30px;
	}

	
#slider ul { /*the width of the ul and the li will be set automaticly by the javascript!*/
	position: relative; 
	}
	
#slider ul li { /*the width of the ul and the li will be set automaticly by the javascript!*/
	float: left;
	list-style:none;
	margin:0px;padding:0px;
	}
