/*
    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: 610px;
	height: 325px;
	position: relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(../images/slideshow/bg_slider.jpg);
	background-position: bottom;
}

.anythingSlider .wrapper                {
	width: 610px;
	overflow: auto;
	height: 285px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	background-color: #000000;	
}
.anythingSlider .wrapper ul             {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}
.anythingSlider ul li                   {
	display: block;
	float: left;
	padding: 0;
	height: 285px;
	width: 610px;
	margin: 0;
}

.anythingSlider .arrow                  {
	visibility: hidden;
	display: block;
	height: 200px;
	width: 67px;
	text-indent: -9999px;
	position: absolute;
	top: 65px;
	cursor: pointer;
	background-color: #FF0000;
}


#thumbNav                               {
	position: relative;
	top: 285px;
	text-align: center;
	background-image: url(../images/slideshow/bg_slider.jpg);
}
#thumbNav a                             {
	color: black;
	display: inline-block;
	height: 20px;
	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;*/
	background-color: #c2c2c2;
	font-size: 11px;
	line-height: 18px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 8px;
	width: 10px;
	border: 1px solid #FFFFFF;
	text-decoration: none;
}
#thumbNav a:hover                       { background-image: none; }
#thumbNav a.cur                         {
	background-color: #c4a006;
}

#start-stop                             {
	color: #000000;
	width: 40px;
	text-align: center;
	right: 35px;
	top: 291px;
	/*-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;*/
	background-color: c2c2c2;
	font-size: 11px;
	text-decoration: none;
	padding-top: 6px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border: 1px solid #FFFFFF;
	height: 17px;
	position: absolute;
}
#start-stop.playing                     {
	background-color: #c2c2c2;
}
#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; }*/

