/*
    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: 880px; 
	height: 380px; 
	position: relative; 
	margin: 0; 
	float: left;
}

.anythingSlider .wrapper { 
	width: 880px; 
	overflow: auto; 
	height: 380px; 
	margin: 0; 
	position: absolute; 
	top: 0; 
	left: 0; 
}

/* Width below is max for Opera */
.anythingSlider .wrapper ul { 
	width: 32700px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0;  
	margin: 0; 
}

.anythingSlider .wrapper ul li	{ 
	display: block; 
	float: left; 
	padding: 0; 
	height: 380px; 
	width: 880px; 
	margin: 0;
	z-index: 1;
	color: #333;
}

.anythingSlider .arrow { 
	display: block; 
	height: 30px; 
	width: 17px;  
	text-indent: -9999px; 
	position: absolute; 
	top: 20px;
	float: right; 
	cursor: pointer;
	z-index: 3;
}

.anythingSlider .forward { 
	background: url(images/rightarrow.png) no-repeat 0 0;
	right: 20px; 
}

.anythingSlider .back {  
	background: url(images/leftarrow.png) no-repeat 0 0;
	right: 48px; 
}

.anythingSlider .forward:hover { 
}

.anythingSlider .back:hover { 
}

.thumbNav {  
	text-align: left; 
	z-index: 4;
	width: 18px;
	height: 18px;
	margin-left: 50px;
	margin-top: 271px;
	clear: left;
	float: left;
}

.thumbNav ul {
	width: 18px;
	height: 18px;
}

.thumbNav li { 
	display: block;
	position: absolute; 
}

.thumbNav a { 
	color: #fff; 
	font-size: 15px; 
	display: none; 
	height: 12px; 
	margin: 0 5px 0 0;  
	text-align: center;
	position: relative;
	z-index: 5; 
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}
.thumbNav a:hover { 
	background-image: none; 
}

.thumbNav a.cur { 
	color: #000;
	position: relative;
	z-index: 6;
	display: inline-block;
}

.start-stop { 
	display: none;
}

.start-stop.playing { 
}

.start-stop:hover { 
}

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