/*
    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: 646px; height: 175px; position: relative; margin-top: 0; margin-bottom: 15px; }
.anythingSlider .wrapper                { width: 562px; overflow: auto; height: 175px; position: absolute; top: 0; left: 4px; margin: 0 45px 0 37px; }
.anythingSlider .holiday_wrapper 		{ width: 562px; overflow: auto; height: 175px; position: absolute; top: 0; left: 4px; margin: 0 45px 0 37px; }
.anythingSlider .wrapper ul             { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; margin: 0; padding: 0px; }
.anythingSlider .holiday_wrapper ul     { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; margin: 0; padding: 0px; }

.anythingSlider ul li                   {
	display: block;
	float: left;
	padding: 0;
	height: 150px;
	width: 600px;
	margin: 0;
}
.anythingSlider .arrow                  {
	display: block;
	height: 110px;
	width: 67px;
	text-indent: -9999px;
	position: absolute;
	top: 25px;
	cursor: pointer;
	background-image: url(../images/arrows.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.anythingSlider .forward                {
	background-position: 0 0;
	right: -25px;
}
.anythingSlider .back                   {
	background-position: -67px 0;
	left: -10px;
}
.anythingSlider .forward:hover          { background-position: 0 -180px; }
.anythingSlider .back:hover             { background-position: -67px -180px; }

#thumbNav                               { position: relative; top: 146px; margin-left: 53px; color: #FFFFFF; 
}
#thumbNav a {color: #999999; display: inline-block;
	height: 18px;
	background: #E9E9D2;
	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;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 7px;
	padding-left: 7px;
	font-size: 11px;
	padding-top: 2px;
}
#thumbNav a:hover                       {
	color: #FFFFFF;
	background-color: #E4AF24;
}
#thumbNav a.cur                         { background: #e0a213; color: #FFFFFF; }

#start-stop                             { background: #E9E9D2; color: #999999; width: 40px; text-align: center; position: absolute; right: 427px; top: 146px; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; padding: 3px 5px; 
}
#start-stop.playing                     {
	background-color: #E4AF24;
	color: #FFFFFF;
}
#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; }

