/*
    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: 575px;
	height: 360px;
	position: relative;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	float: right;
}
.anythingSlider .sliderwrapper {
	width: 575px;
	overflow: auto;
	height: 370px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.anythingSlider .sliderwrapper ul {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFFFFF;
	margin: 0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 370px;
	width: 575px;
	margin: 0;
}
.anythingSlider .arrow {
	display: none;
	height: 105px;
	width: 35px;
	background: url(images/slideshow/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 105px;
	cursor: pointer;
}
.anythingSlider .forward { background-position: 0 0; right: -20px; }
.anythingSlider .back { background-position: -35px 0; left: -20px; }
.anythingSlider .forward:hover { background-position: 0 -105px; }
.anythingSlider .back:hover { background-position: -35px -105px; }
.anythingSlider a, .anythingSlider a img { border: 0; text-decoration: none; outline: 0; }
.anythingSlider * { margin: 0; padding: 0; }

#thumbNav {
	position: relative;
	top: 365px;
	text-align: left;
	background-color: #FFF;
	margin-right: 5px;
	display: none;
}
#thumbNav a {
	color: #FFF;
	display: inline-block;
	height: 16px;
	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: #61725C;
	background-image: url(images/slideshow/cellshade.png);
	background-repeat: repeat-x;
	font-size: 12px;
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
#thumbNav a:hover { background-image: none; }
#thumbNav a.cur {
	background-color: #50AE30;
}

#start-stop {
	background-image: url(images/slideshow/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	font: 11px;
	padding: 2px 8px;
	width: 135px;
	height:18px;
	text-align: center;
	position: absolute;
	right: 5px;
	top: 365px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	font-size:11px;
	background-color: #50AE30;
	display: none;
}
#start-stop.playing {
	background-color: #50AE30;
}
#start-stop:hover { background-image: none; }

/*
  Prevents
*/
.anythingSlider .sliderwrapper ul ul { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .sliderwrapper ul ul li { float: none; height: auto; width: auto; background: none; }

