/*
    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: 700px;
	height: 200px;
	position: relative;
	margin: 0 auto 15px;
	font-size: 14px;
}
.anythingSlider h1, .anythingSlider p {
	color: #FFF;
	margin-left: 25px;
	width: 450px;
}
.anythingSlider p {
	line-height: 18px;
}
a.slider-link {
	color: #FFF;
	font-weight: bold;
	margin-left: 25px;
	display: block;
	padding-top: 10px;
	font-size: 14px;
}
.anythingSlider .wrapper
{
	width: 700px;
	overflow: hidden;
	height: 200px;
	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;
	background: #eee;
	margin: 0;
}

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

.anythingSlider .arrow
{
	display: block;
	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; }

#thumbNav
{
	margin-left: 40px;
	position: relative;
	top: 200px;
	text-align: left;
	background: #9C8AA5;
}

#thumbNav a
{
	color: black;
	display: inline-block;
	padding: 4px 8px 2px 8px;
	height: 14px;
	margin: 0 1px 0 0;
	background: #E3DEE5 url(../images/cellshade.png) repeat-x;
	text-align: center;
}

#thumbNav a:hover { background-image: none; text-decoration: none; background: #9C8AA5; color: #FFF; }
#thumbNav a.cur { background: #9C8AA5; color: #FFF; }

#start-stop
{
	background: #E3DEE5;
	background-image: url(../images/cellshade.png);
	background-repeat: repeat-x;
	color: #000;
	padding: 4px 5px 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 40px;
	top: 200px;
	height: 14px;
}

#start-stop.playing { background-color: #421C52; color: #FFF;}
#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;
}
.slide-bg
{
	height: 200px;
	padding: 40px 20px 20px 20px;
}

