/*
    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:771px;
	height:368px;
	position:relative;
	margin:0 auto 1.4em;
}
.anythingSlider .wrapper {
	width:771px;
	height:368px;
	overflow:auto;
	margin:0;
	position:absolute;
	top:0;
	left:0;
}
/* Width below is max for Opera */
.anythingSlider .wrapper ul {
	padding:0;
	width: 32700px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	margin: 0;
}
.anythingSlider ul li {
	width: 771px;
	height: 368px;
	display: block;
	float: left;
	padding: 0;
	margin: 0;
}
.anythingSlider .arrow {
	display: block;
	height: 200px;
	width: 67px;
	background: url(/js/jQuery/plugins/anythingSlider/graphics/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 84px;
	cursor: pointer;
}
.anythingSlider .forward {
	background-position: 0 0;
	right: -55px;
}
.anythingSlider .back {
	background-position: -67px 0;
	left: -55px;
}
.anythingSlider .forward:hover {
	background-position: 0 -200px;
}
.anythingSlider .back:hover {
	background-position: -67px -200px;
}
#thumbNav {
	position:relative;
	top:365px;
	text-align:center;
}
#thumbNav a,
#thumbNav a:hover
#thumbNav a.cur,
#start-stop{
	background-image:url(/js/jQuery/plugins/anythingSlider/graphics/cellshade.png);
}
#thumbNav a {
	color: #FFF;
	display: inline-block;
	padding: 2px 15px;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	background-color: #76A135;
	background-repeat: repeat-x;
}
#thumbNav a:hover {
	background: #4C7311;
	text-decoration: none;
}
#thumbNav a.cur {
	background: #41351D;
	text-decoration: none;
}
#start-stop {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	background: #76A135;
	background-repeat: repeat-x;
	color: white;
	padding: 2px 10px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 40px;
	top: 365px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
#start-stop.playing {
	background-color: #A50F0F;
}
#start-stop:hover {
	background-color: #D6191E;
	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;
}
