/*
    anythingSlider v1.0
    
    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: 1000px;
	height: 217px;
	position: relative;
	margin: 0 auto 15px;
}
.anythingSlider .wrapper {
	width: 769px;
	overflow: auto;
	height: 217px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 13px;
	margin-right: 40px;
	margin-bottom: 0px;
	margin-left: 200px;
}
.anythingSlider .wrapper ul {
	width: 9999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	margin: 0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 217px;
	width: 769px;
	margin: 0;
}
.anythingSlider .arrow                  { display: block; height: 200px; width: 67px; 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: absolute;
	top: 214px;
	text-align: center;
	left: 880px;
}
#thumbNav a {
	color: #000;
    display: inline-block;
	height: 2px;
	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-size: 0.1px;
	line-height: 18px;
	background-repeat: no-repeat;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
	padding: 5px;
	background-image: url(../../images/bull-grey.png);
}
#thumbNav a:hover                       {
	background-image: url(../../images/bull-orange.png);
	background-repeat: no-repeat;
}
#thumbNav a.cur                         {
	background-image: url(../../images/bull-orange.png);
	background-repeat: no-repeat;
}

#start-stop                             {
	background-repeat: no-repeat;
	padding: 2px 5px;
	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;
}
#start-stop.playing                     {
	height: 14px;
	width: 13px;
}
#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; }
