/*
 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 {
	position: relative;
	margin-left: auto;
	margin-bottom: 4em;
	margin-right: auto;
	margin-top: 0;
	width: 900px;
	height: 400px;
	}
	.anythingSlider .wrapper {
		width: 900px;
		overflow: auto;
		height: 400px;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		}
		.anythingSlider .wrapper ul {
			width: 99999px;
			list-style: none;
			position: absolute;
			top: 0;
			left: 0;
			background: #eee;
			margin: 0;
			}
			.anythingSlider ul li {
				display: block;
				float: left;
				padding: 0;
				height: 400px;
				width: 940px;
				margin: 0;
				}
	.anythingSlider .arrow {
		left: 890px;
		display: block;
		height: 400px;
		width: 40px;
		background: url(../img/images/arrows.png) no-repeat 0 0;
		text-indent: -9999px;
		position: absolute;
		top: 0px;
		cursor: pointer;
		}
	.anythingSlider .forward {
		background-position: 0 -400px;
		}
	.anythingSlider .back {
		left: -30px;
		background-position: -30px -400px;
		}
	.anythingSlider .forward:hover {
		background-position: 0 0px;
		}
	.anythingSlider .back:hover {
		background-position: -30px 0px;
		}

#thumbNav {
	font-size: 10px;
	left: 35px;
	position: relative;
	top: 400px;
	text-align: left;
	}
	#thumbNav a {
		line-height: 12px;
		font-weight: bold;
		padding-left: 4px;
		padding-bottom: 2px;
		padding-right: 4px;
		padding-top: 1px;
		color: #3b322d;
		font: 10px/18px;
		display: inline-block;
		height: 12px;
		margin: 0 5px 0 0;
		background: #c58b04 url(../img/images/cellshade.png) repeat-x;
		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;
		}
		#thumbNav a:hover {
			background-image: none;
			}
		#thumbNav a.cur {
			background: #ffbb00;
			}

#start-stop {
	padding-left: 5px;
	padding-bottom: 1px;
	padding-right: 5px;
	padding-top: 0px;
	left: -20px;
	background: #006800;
	background-image: url(../img/images/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	width: 40px;
	text-align: center;
	position: absolute;
	top: 400px;
	-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 {
		color: white;
		background-color: #a60000;
		}
	#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;
		}
.anythingSlider .info {
	font-weight: bold;
	border-bottom-style: solid;
	border-right-color: black;
	border-bottom-color: black;
	border-top-color: #ebebeb;
	border-right-style: solid;
	border-top-style: solid;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	color: #ffbb00;
	padding: 1em;
	background-repeat: repeat;
	background-image: url(../img/50_black.png);
	text-shadow: 0px 0px 5px black;
	margin-top: 2em;
	width: 40%;
	bottom: 400px;
	left: 0px;
	position: relative;
	}
	.anythingSlider .info h4 {
		margin-top: 1em;
		margin-bottom: 1em;
		position: relative;
		font-size: 1.5em;
		}
	.anythingSlider .info p {
		position: relative;
		font-size: 1em;
		}

