/*
    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: 780px; 
	height: 245px; 
	position: relative;
}
.anythingSlider .wrapper { 
	width: 780px; 
	overflow: auto; 
	height: 245px; 
	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:#fff;
}
.anythingSlider ul li { 
	display: block;
	float: left;
	height: 245px;
	width: 780px;
}
.anythingSlider .arrow { 
	display: block; 
	height: 50px; 
	width: 37px; 
	background: url(../images/arrows.png) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	top: 82px; 
	cursor: pointer; 
}
.anythingSlider .forward {
	background-position: -41px 0;
	right: 0;
}
.anythingSlider .back {
	background-position: 0 0;
	left: 0;
}
.anythingSlider .forward:hover {
	background-position: -41px -53px;
}
.anythingSlider .back:hover {
	background-position: 0 -53px;
}

#thumbNav { 
	position: relative; 
	top: 225px; 
	left:20px
}
#thumbNav a { 
	color:#ff7c00;
	display:inline-block;
	width:16px;
	height:17px;
	line-height:17px;
	text-align:center;
	margin:0 5px 0 0; 
}
#thumbNav a:hover {
	color:#fff;
	text-decoration:none;
}
#thumbNav a.cur {
	background:url(../images/selectslide.png) left top no-repeat;
	color:#000;
}
#start-stop { 
	background: #000; 
	background-image: url(../images/cellshade.png); 
	background-repeat: repeat-x; 
	color: #f9a816; 
	padding: 2px 5px; 
	width: 40px; 
	text-align: center; 
	position: absolute; 
	right: 0px; 
	top: 227px; 
	-moz-border-radius-topleft: 5px; 
	-moz-border-radius-topright: 5px; 
	-webkit-border-top-right-radius: 5px; 
	-webkit-border-top-left-radius: 5px; ;
}
#start-stop.playing { 
	background-color: #000;
}
#start-stop:hover {
	background-image: none;
	text-decoration: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;
}