/*
    anythingSlider v1.0
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
	äÖüß
*/


.anythingSlider {
	width: 997px;
	height: 350px;
	position: relative;
	margin: 0 auto 0px;
	overflow: hidden;
}
.anythingSlider .wrapper                {
	width: 967px;
	overflow: hidden;
	height: 330px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 15px;
}
.anythingSlider .wrapper ul             {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	border: 0px;
	margin: 0px;
	}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 347px;
	width: 967px;
	margin: 0;
}

.anythingSlider .arrow  {
	display: block;
	height: 330px;
	width: 30px;
	text-indent: -9999px;
	position: absolute;
	top: 140px;
	cursor: pointer;
}
.anythingSlider .forward,.anythingSlider .back {
	width:15px;
	height:30px;
	
	/*
	opacity: 0.6;
	filter:alpha(opacity=60);
	*/
	/*
	visibility: hidden;
	display: none;
	*/
}
.anythingSlider .back  {
	background-position: center center;
	left: 0px;
	background:url(images/back_button.gif) no-repeat 0 0;	
	background-position: 0px 0px;
}
.anythingSlider .forward                   {
	background-position: center center;
	right: 0px;
	background:url(images/forward_button.gif) no-repeat 0 0;	
	background-position: 0px 0px;
}
.anythingSlider .back:hover  {
	/*
	opacity: 1;
	filter:alpha(opacity=100);
	*/
	background-position: 0px -30px;
}
.anythingSlider .forward:hover {
	/*
	opacity: 1;
	filter:alpha(opacity=100);
	*/
	background-position: 0px -30px;
}

#thumbNav                               {
	position: relative;
	top: 330px;
	text-align: center;
	/* background-image: url(images/thumbNav.png); */
}
#thumbNav a                             {
	color: #b1c800;
	font: 10px Arial;
	line-height: 18px;
	display: inline-block;
	padding: 1px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	background-color: #eeeeee;
	text-align: center;
	text-decoration: none;
	/* opacity: 0.6; filter:alpha(opacity=60); */
	min-width: 10px;
	max-width: 10px;
	width: 10px;
}
#thumbNav a:hover                       {
	background-image: url(images/cellshade.png);
	background-repeat: repeat-x;
	text-decoration: none;
	background:#fcc300;
	color:#151515;
}
#thumbNav a.cur                         { background: #b1c800; color: #eeeeee; }

#start-stop                             {
	background: #b1c800;
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 15px;
	top: 330px;
	text-decoration: none;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	}
#start-stop.playing                     { background-color: red; }
#start-stop:hover                       { background-image: none; background:#fcc300; color:#151515; }

/*
  Prevents
*/
.anythingSlider .wrapper ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }