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

#slider-box {
	width: 890px; 
	height: 460px;
	position:relative;
	font-family:"Lucida Grande","Hiragino Kaku Gothic Pro","ƒqƒ‰ƒMƒmŠpƒS Pro W3","‚l‚r ‚oƒSƒVƒbƒN",Geneva,Arial,Verdana,sans-serif;
	}

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

#slider p{
	margin:7px;
	font-size:12px;
	color:#333;
	line-height:1.5em;
}

/*the for and back buttons*/
#right { /*hides the inline text with textindent*/
	background: url(../img/111221-sbtn-right.gif) no-repeat;
	width: 47px;
	height:47px;
	margin:0;
	cursor: pointer;
	position: absolute;
	text-indent:-9999px;
	top:138px;
	right:0;
}

#right:hover { 
	background: url(../img/111221-sbtn-right-h.gif) no-repeat;
}
	
#left {
	background: url(../img/111221-sbtn-left.gif) no-repeat;
	width: 47px;
	height:47px;
	margin:0;
	cursor: pointer;
	position: absolute;
	text-indent:-9999px;
	top:138px;
	left:0;
}

#left:hover { 
	background: url(../img/111221-sbtn-left-h.gif) no-repeat;
}
	
#slider ul { /*the width of the ul and the li will be set automaticly by the javascript!*/
	position: relative;
	list-style:none;
	margin:0;
	padding:0;
	}
	
#slider ul li { /*the width of the ul and the li will be set automaticly by the javascript!*/
	float: left;
	margin:0;
	padding:0;
	}


/*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;
	}	
	
#numbers li {
	position: relative;
	float: left;
	width: 15px; height: 15px; 
	margin: 0 5px; 
	border: 1px solid #ccc;
	}
	
.activenum { /*marks the current sliderposition*/

	}
	
.slider-innner{
	float: left;
	margin:0;
	padding:0;
	width:652px;
}

.slider-innner dl{ 
	float: left;
	margin:0;
	padding:0;
	width:145px;
	height:460px;
	background: url(../img/111221-simg02_bg.jpg) no-repeat;
	padding:52px 0px 0 10px;
	margin-right:8px;
}

.slider-innner dl.sright-none{ 
	margin-right:0px;
}


.slider-innner dl dt{
	padding-bottom:13px;
}

.slider-innner dl dd{
	font-size:12px;
	color:#444444;
	margin:0;
	padding:0 10px 0 0px;
	line-height:1.6em;
}

.wide{
	width:732px!important;
}









