/*
    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: 650px;*/
	width: 95%;
	height: 340px;
	position: relative;
	left: 0px;
	/*background-color: rgba(0, 0, 0, 0.4);*/
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.anythingSlider .wrapper {
	width: 100%;
	/*width: 645px;*/
	overflow: auto;
	height: 320px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
}
.wrapper {
	/*background-color: #CC9999;*/
}

/* 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: 317px; width: 650px; margin: 0; }
.anythingSlider .arrow                  {
	display: block;
	height: 200px;
	width: 37px;
	text-indent: -9999px;
	position: absolute;
	top: -250px;
	cursor: pointer;
	/*background-color: #00FFCC;*/
	background-image: url(./imgs/arrows.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.anythingSlider .forward                {
	background-position: 0 0;
	right: 0px;
	text-decoration: none;
	z-index:10;
	width:42px;
}
.anythingSlider .back                   {
	background-position: -92px 0;
	left: -0px;
	text-decoration: none;
	z-index:10;
	width:42px;
	/*background-color: #993399;*/
}
.anythingSlider .forward:hover          { background-position: 0 -201px; }
.anythingSlider .back:hover             { background-position: -92px -201px; }

.thumbNav                               { position: relative; top: 323px; text-align: center; }
.thumbNav li                            { display: inline; }
.thumbNav a                             { display:none; }
.thumbNav a:hover                       { background-image: none; }
.thumbNav a.cur                         { background: #e0a213; }

.start-stop                             { display:none; }
.start-stop.playing                     { background-color: red; }
.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; }