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


.anythingSlider {
	width: 510px;
	height: 200px;
	position: relative;
	margin: 0;
	padding:0;
	border:1px solid #000;
}
.anythingSlider .wrapper {
	width: 510px;
	height: 200px;
	overflow: auto;
	padding:0;
	margin: 0;
	position: absolute;
}

.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	margin: 0;
	height:200px;
	width: 510px;	
}


/* Width below is max for Opera */
.anythingSlider .wrapper ul {
	width: 32700px; /* NEEDS TO BE LARGER THAN THE WIDTH OF ALL INCLUDED SLIDES xxxxxxxxxxxxxxxxxxxxxxxxx */
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	margin: 0;
	padding:0;
}

/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx NAVIGATION 
*/
#thumbNav {
	position: absolute;
	bottom: 1px;
	right: 45px;
	text-align: center;
}
#thumbNav a {
	color: black;
	font-family:Arial, Helvetica, sans-serif;
	display: inline-block;
	padding: 3px 5px 3px 5px;
	margin: 0 .4em 0 0;
	text-align: center;
	background-color:#406b91;
	text-decoration:none;
	color:#fff;
	font-size:.7em;
	border:1px solid #fff;
	}
#thumbNav a:hover {
	background-color:#008cff;
	color:#fff;
}
#thumbNav a.cur {
	background: #ccc;
	color:#666;
}
#start-stop {
	font-family:Arial, Helvetica, sans-serif;
	font-size:.7em;
	background:#006600;
	color: #fff;
	padding: 3px 5px 3px 5px;
	text-align: center;
	position: absolute;
	right:1px;
	bottom: 1px;
	width:2.5em;
	overflow:auto;
	text-decoration:none;
	border:1px solid #fff;
	}
	
#start-stop.playing {
	background-color:#990000;
	color:#fff;
}
#start-stop:hover {
	background-color:#00CC00;
	color:#fff;
}

#start-stop.playing:hover {
	background-color:#CC0000;
	color:#fff;
}


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


/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx NOT USED 

.anythingSlider .arrow {	
	display:none; /* display: block; CHANGE THIS TO BLOCK TO USE xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
	height: 200px;
	width: 67px;
	background: url(../images/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 65px;
	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;
}

*/