/*
    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: 900px; 
	height: 310px; 
	position: relative; 
	margin-left:auto;
	margin-right:auto;
	background-image:url(../images/contentBig.png);
	background-position:center;
	background-repeat:repeat-y;

	}
	
.anythingSlider .wrapper { 
	width: 880px; 
	overflow: auto; 
	height: 310px;
	margin-left:10px;
	position: absolute; 
	top: 0; 
	left: 0;
	}
.anythingSlider .wrapper img{ 
	float:left;
	}

.anythingSlider .wrapper ul{ 
	width: 32700px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	margin: 0; 
	}
	
	
.anythingSlider .wrapper ul li{ 
	display: block; 
	float: left; 
	padding: 0; 
	height: 310px; 
	width: 880px; 
	margin: 0; 
	}
	
.anythingSlider .arrow{ 
	display: block; 
	height: 75px; 
	width: 30px; 
	background: url(../images/arrows.png) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	top: -210px; 
	cursor: pointer;
	}
	
.anythingSlider .forward { 
	background-position: 0 0; 
	right: -85px; 
	}
	
.anythingSlider .back { 	
	background-position: -30px 0; 
	left: -30px; 
	}
	
.anythingSlider .forward:hover { 
	background-position: 0 -75px; 
	}
	
.anythingSlider .back:hover { 
	background-position: -30px -75px; 
	}

.thumbNav {
	position: relative; 
	top: 324px;
	text-align:center;
	margin-right:55px;
	}
	
.thumbNav li {
	display: inline; 
		
	}
	
.thumbNav a {
	font-weight:normal;
	padding: 6.7px 11px;  
	background-image:url(../images/tabs.png);
	color:#000;
	}
	
.thumbNav a:hover { 
	background-image:url(../images/tabs.png);
	background-position: -30px 0;
	color:#70afbc;
	}
	
.thumbNav a.cur{
	background-image:url(../images/tabs.png);
	background-position: -30px 0;; 
	color:#70afbc;
	}

.start-stop {
	z-index: 10; 
	background-image:url(../images/tabs.png); 
	background-position: 0 -30px;
	width: 60px;
	height:30px;
	position: absolute; 
	right: 345px; 
	top: 319px;
	}

.start-stop:hover{ 
	background-position: 0 -90px;
	}
	
.start-stop.playing { 
	background-position: 0 -60px;
	}

.start-stop.playing:hover { 
	background-position: 0 -120px;
	}


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