/*
    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/
*/

img#frame {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}

div#slider {
	width: 700px;
	height: 300px;
	float: left;
	position: relative;
	background: url(../images/slider/slider_frame.png) top left no-repeat;
}
.anythingSlider {
	width: 6800px;
	height: 300px;
	position: relative;
}
.anythingSlider .wrapper {
	width: 680px;
	overflow: hidden;
	height: 254px;
	position: absolute;
	top: 22px; left: 11px;
	z-index: 5;
}
/* Width below is max for Opera */
.anythingSlider .wrapper ul {
	width: 32700px;
	list-style: none;
	top: 0;
	left: 0;
	margin: 0;
	overflow: hidden;
	z-index: 5;
}
.anythingSlider .wrapper ul li {
	display: block;
	float: left;
	padding: 0;
	height: 300px;
	width: 700px;
}
.anythingSlider .arrow {
	display: none;
	/* height: 200px;
	width: 67px;
	background: url(../images/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: -250px;
	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: 240px;
	right: 80px;
	z-index: 100;
}
.thumbNav li {
	display: inline;
}
.thumbNav a {
	float: left;
	height: 25px;
	margin: 0 2px 0 0;
	text-align: center;
	line-height: 25px;
	background: #CCC;
	opacity: 0.9;
	color: #555;
	padding: 0 8px;
	text-decoration: none;
}
.thumbNav a:hover {
	background-image: none;
}
.thumbNav a.cur {
	background: #00337f;
	color: #FFF;
}
.start-stop {
	z-index: 100;
	background: green;
	color: white;
	font-weight: bold;
	padding: 0px 5px;
	line-height: 25px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 25px;
	top: 240px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.start-stop.playing {
	background-color: #00337f;
}
.start-stop:hover {
	background-color: #00337f;
	font-weight: bold;
}
/*
  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;
}
*/
