/*
    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: 420px;
	position: relative;
}
.anythingSlider .wrapper                {
	width: 950px;
	overflow: auto;
	height: 420px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-image: url(../../../images/bckg-feature.png);
}

                                        /* Width below is max for Opera */
.anythingSlider .wrapper ul             {
	width: 32700px;
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0;
	background-image: url(../../../images/bckg-feature.png);
	background-repeat: no-repeat;
}
.anythingSlider .wrapper ul li          {
	display: block;
	float: left;
	padding: 0;
	width: 950px;
	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: -250px; cursor: pointer; }
.anythingSlider .forward                {
	background-position: 0 0;
	right: -70px;
	top: -300px;
	background-image: url(../images/arrows.png);
}
.anythingSlider .back                   {
	background-position: -67px 0;
	left: -70px;
	top: -300px;
	background-image: url(../images/arrows.png);
}
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

.thumbNav                               {
	position: relative;
	top: 420px;
	text-align: center;
	height: 30px;
	background-color: #000;
}
.thumbNav li                            {
	display: inline;
}
.thumbNav a                             {
	color: #FFF;
	display: inline-block;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	background-color: #003B68;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	font-weight: bold;
	text-decoration: none;
}
.thumbNav a:hover                       {
	background-image: none;
	background-color: #882124;
}
.thumbNav a.cur                         {
	font-weight: bold;
	color: #FFF;
	background-color: #882124;
}

.start-stop                             {
	z-index: 10;
	color: white;
	width: 40px;
	text-align: center;
	position: absolute;
	top: 420px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	left: 850px;
	height: 20px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-weight: bold;
	text-decoration: none;
	background-color: #882124;
	font-family: Arial, Helvetica, sans-serif;
}
.start-stop.playing                     {
}
.start-stop:hover                       {
	background-image: none;
	background-color: #005596;
}

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