/*
    anythingSlider v1.2
    
    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: 960px;
	height: 290px;
	position: relative;
	z-index: 11;
}
	
	
.anythingSlider .wrapper {
	width: 960px;
	overflow: auto;
	height: 290px;
	position: absolute;
	top: 0;
	left: 0;
}

/* Width below is max for Opera */

.anythingSlider .wrapper ul	{
	width: 32700px;
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	background: #eee; 
	margin: 0;
}

.anythingSlider ul li { 
	display: block;
	float: left; 
	padding: 0; 
	height: 290px; 
	width: 960px; 
	margin: 0; 
}

.anythingSlider .arrow { 
	display: block;
	height: 41px;
	width: 24px;
	background: url(../images/arrows.png) repeat 0 0;
	text-indent: -9999px; 
	position: absolute; 
	top: 155px; 
	cursor: pointer; 
	}
	
.anythingSlider .forward {
	background-position: left top; 
	right: -24px; 
	}
	
.anythingSlider .back {
	background-position: right top;
	margin-left: -24px;
	}
	
.anythingSlider .forward:hover {
	background-position: left bottom;
	}
	
.anythingSlider .back:hover {
	background-position: right bottom;
	}

#thumbNav { 
	display: block;
	right: 7px;
	bottom: 13px;
	position: absolute;
	padding:0;
	height:28px;
	font-size: 0.9em;
	z-index: 2000;
}
	
#thumbNav a {
	font-size: 1em;
	margin:0 6px 0 0; 
	padding:0;
	float:left;
	list-style:none;
	line-height:20px;
	background:#a9aaab;
	color:#27272f;
	padding:0 6px;
	text-decoration:none;
	z-index:1000;
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 
	}
	
#thumbNav a:hover {
	background-image: none;
	}
	
#thumbNav a.cur {
	background: #B6C900;
	}

#start-stop {
	display: none;
	/*
	background: green; background-image: url(../images/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 323px;
	-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;
	}

*/

/*
  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; 
	}