/*
 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: 660px;
	height: 300px;
	}
	.anythingSlider .wrapper {
		width: 660px;
		overflow: auto;
		height: 300px;
		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: 300px;
				width: 660px;
				margin: 0;
				}
	.anythingSlider .arrow {
		visibility: hidden;
		left: 630px;
		display: block;
		height: 300px;
		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 -435px;
		}
	.anythingSlider .back {
		left: -10px;
		background-position: -30px -435px;
		}
	.anythingSlider .forward:hover {
		background-position: 0 0px;
		}
	.anythingSlider .back:hover {
		background-position: -30px 0px;
		}

#thumbNav {
	font-size: 10px;
	font-family: sans-serif;
	border-top-color: #8b8e8d;
	border-top-style: solid;
	border-top-width: 1px;
	position: relative;
	top: 300px;
	text-align: right;
	background: transparent url(../img/80_black.png) repeat-x;
	}
	#thumbNav a {
		text-decoration: none;
		color: #ffbb00;
		width: 16px;
		margin-left: 0px;
		margin-bottom: 5px;
		margin-right: 5px;
		margin-top: 5px;
		background-repeat: no-repeat;
		padding: 0px;
		font-size: 4px;
		display: inline-block;
		height: 16px;
		background: url(../img/this-page.png) 0px -16px;
		text-align: center;
		}
		#thumbNav a:hover {
			height: 16px;
			width: 16px;
			background-position: 0px 0px;
			background-image: url(../img/this-page.png);
			}
		#thumbNav a.cur {
				height: 16px;
				width: 16px;
				background: 0px 0px no-repeat url(../img/this-page.png);
			}

#start-stop {
	font-family: sans-serif;
	font-size: 10px;
	background-color: #023822;
	padding-left: 5px;
	padding-bottom: 1px;
	padding-right: 5px;
	padding-top: 0px;
	left: 10px;
	background: #006800 url(../img/images/cellshade.png) repeat-x;
	color: white;
	width: 50px;
	text-align: center;
	position: absolute;
	top: 301px;
	}
	#start-stop.playing {
		font-family: sans-serif;
		font-size: 10px;
		color: white;
		background-color: #5d151a;
		}
	#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 {
	visibility: hidden;
	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);
	margin-top: 2em;
	width: 50%;
	bottom: 250px;
	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;
		}
