/*
    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: 610px;
	height: 270px;
	position: relative;
	float: left;
	background: transparent url(../images/slider_background.png) no-repeat 0 0;
	margin: 0 0 20px 0;
	}
	
.anythingSlider .wrapper {
	width: 560px;
	overflow: auto; 
	height: 270px; 
	position: absolute; 
	top: 16px; 
	left: 20px;
	}

	/* Width below is max for Opera */
	
.anythingSlider .wrapper ul {
	width: 32700px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	margin: 0;
	}
	
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 235px;
	width: 585px;	
	margin: 0;
	}
	
.anythingSlider .arrow  {
	display: block;
	height: 33px;
	width: 33px;
	text-indent: -9999px;
	position: absolute;
	top: 120px;
	cursor: pointer; 
	}

.anythingSlider .forward { 
	background: transparent url(../images/slider_right_arrow.png) no-repeat center center;
	right: 10px;
	z-index: 999;
}

.anythingSlider .back {
	background: transparent url(../images/slider_left_arrow.png) no-repeat center center;
	left: 0;
	z-index: 999;
	}
	
.anythingSlider .forward:hover { }
.anythingSlider .back:hover { }

#thumbNav  { 
	display: none;
}

#thumbNav a  {
	text-indent: -9999px;
	}
	
#thumbNav a:hover { }
#thumbNav a.cur { }

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

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