/*
    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/
*/
#slider {
	width:973px;
	height:402px;
	position:relative;
}

#slider .wrapper {
	width:973px;
	overflow:auto;
	height:402px;
	position:absolute;
	top:0;
	left:0;
}

#slider .wrapper ul {
	width:99999px;
	list-style:none;
	position:absolute;
	top:0;
	left:0;
	margin:0;
}

#slider ul li {
	display:block;
	float:left;
	padding:0;
	height:402px;
	width:973px;
	margin:0;
}

#slider .arrow {
	display:none;
}

#slider .forward {
	display: none;
}

#slider .back {
	display: none;
}
#thumbNav {
	position:relative;
	top:392px;
	text-align:center;
}

#thumbNav a {
	display:inline-block;
	height:23px;
	width: 23px;
	margin:0 5px 0 0;
	background: url(../img/dot.png) no-repeat;
}

#thumbNav a:hover {
	background: url(../img/dotActive.png) no-repeat;
}

#thumbNav a.cur {
	background: url(../img/dotActive.png) no-repeat;
}

#start-stop {
	display: none;
}

#start-stop.playing {
	display: none;
}

#start-stop:hover {
	display: none;
}
	
/*
  Prevents
*/
#slider .wrapper ul ul {
	position:static;
	margin:0;
	background:none;
	overflow:visible;
	width:auto;
	border:0;
}

#slider .wrapper ul ul li {
	float:none;
	height:auto;
	width:auto;
	background:none;
}