/*
    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: 890px; 
	height: 310px; 
	position: relative; 
	margin-bottom: 10px; 
	}
	
.anythingSlider .wrapper { 
	width: 890px; 
	overflow: auto; 
	height: 310px; 
	margin: 0px; 
	position: absolute; 
	top: 0; 
	left: 0; 
	}

	 
.anythingSlider .wrapper ul { 
	/* Width below is max for Opera */
	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: 310px; 
	width: 890px; 
	margin: 0; 
	}
	
.anythingSlider .arrow { 
	display: none; 
	height: 200px; 
	width: 67px; 
	background: #000 url(../images/arrows.png) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	top: 65px; 
	cursor: pointer; 
	}
	
.anythingSlider .forward { 
	background-position: 0 0; right: -20px; 
	}

.anythingSlider .back { 
	background-position: -67px 0; left: -20px; 
	}

.anythingSlider .forward:hover {
	background-position: 0 -200px; 
	}

.anythingSlider .back:hover { 
	background-position: -67px -200px; 
	}

#thumbNav { 
	position: relative; 
	top: 280px;
	margin-left: 35px;
	text-align: left; 
	}
	
#thumbNav a { 
	color: #FFF; 
	display: inline-block; 
	padding: 2px 4px 2px 4px; 
	margin: 0 5px 0 0; 
	background: #none;
	border: 1px solid #FFF;
	text-align: center; 
	text-decoration: none;
	-moz-border-radius-topleft: 1px; 
	-moz-border-radius-topright: 1px;
	-moz-border-radius-bottomleft: 1px; 
	-moz-border-radius-bottomright: 1px; 
	-webkit-border-top-right-radius: 1px; 
	-webkit-border-top-left-radius: 1px;
	-webkit-border-bottom-right-radius: 1px; 
	-webkit-border-bottom-left-radius: 1px; 
	}
	
#thumbNav a:hover {
	background-image: none; 
	background: #f17500;
	border-color: #f17500;
	}

#thumbNav a.cur {
	background: #FFF;
	color: #2a2a2a;
	}
	
#thumbNav a.cur:hover {
	color: #2a2a2a;
	border: 1px solid #FFF;
	cursor: default;
	}

#start-stop {
	background: green; 
	color: white; 
	padding: 3px 5px 4px 5px; 
	width: 40px; 
	text-align: center; 
	position: absolute; 
	right: 25px; 
	top: 0px; 
	-moz-border-radius-bottomleft: 2px; 
	-moz-border-radius-bottomright: 2px; 
	-webkit-border-bottom-right-radius: 2px; 
	-webkit-border-bottom-left-radius: 2px; 
	text-decoration: none;
	}

#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; 
	}
	
	
	
	