/*
    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: 950px; 
	height: 300px; 
	position: relative; 
	margin: 0; 
	background: #fff;
	float: left;
}

.anythingSlider .wrapper { 
	width: 950px; 
	overflow: auto; 
	height: 300px; 
	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: 300px; 
	width: 950px; 
	margin: 0;
	z-index: 1;
	color: #333;
}

.anythingSlider h2.entry-title,
.anythingSlider #subt,
.anythingSlider p {
	margin-left: 0;
}

#leftsl {
	width: 250px;
	float: left;
	margin: 20px;
}

#rightsl {
	width: 650px;
	height: 280px;
	margin-right: 10px;
	margin-top: 10px;
	float: right;
}

.slidethumb {
	width: 650px;
	height: 280px;
	position: relative;
	z-index: 1;
	margin-top: -260px;
}

#excsl {
	width: 535px;
	height: 70px;
	//background: url(images/excslbg.png) no-repeat;
	background-color: #fff;
	margin-top: 180px;
	float: right;
	padding: 5px 0 5px 20px;
	font-style: italic;
	line-height: 140%;
	font-size: 16px;
	position: relative;
	z-index: 2;
	clear: both;
	display: block;
}

.anythingSlider .arrow { 
	display: block; 
	height: 12px; 
	width: 20px; 
	background: url(images/arrows.png) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	top: 275px; 
	cursor: pointer;
	z-index: 3;
}

.anythingSlider .forward { 
	background-position: 0 0; 
	right: 845px; 
}

.anythingSlider .back { 
	background-position: -20px 0; 
	left: 20px; 
}

.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 { 
	z-index: 7; 
	background: url(images/play.png) no-repeat; 
	color: white; 
	height: 12px;
	width: 10px;
	text-indent: -9999px; 
	position: absolute; 
	right: 875px; 
	top: 275px; 
	color: #454545;
}

.start-stop.playing { 
	background: url(images/pause.png) no-repeat; 
}

.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; 
}