/*
    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: 600px; 
	height: 360px; 
	position: relative; 
	margin: 0 auto 10px;
}

.anythingSlider .wrapper {
	width: 600px; 
	overflow: auto; 
	height: 340px; 
	margin: 0px; 
	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: #FFFFFF; 
	margin: 0;
}

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

.anythingSlider .arrow {
	display: block; 
	height: 200px; 
	width: 67px; 
	background: 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: 320px; 
	text-align: center;
}

#thumbNav a {
	color: #666666;
	background: #666666;
	font-size: 10px;
	text-decoration: none;
	display: inline-block;
	padding: 0px;
	width: 20px;
	height: 20px;
	margin: 0px 5px 0px 0px;
	text-align: center;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
}

#thumbNav a.cur, #thumbNav a:hover {
	color: #CCCCCC;
	background: #CCCCCC;
}

#start-stop {
	display: none;
	background: #F47C31;
	color: white;
	font-size: 10px;
	text-decoration: none;
	padding: 0px;
	height: 20px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 320px;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
}

#start-stop.playing { background-color: #F47C31; }
#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; }
