/*
    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: 620px; height: 236px; position: relative; margin: 0px; }
.anythingSlider .wrapper                { width: 620px; overflow: auto; height: 236px; margin: 0px; position: absolute; top: 0px; left: 0px; }

                                        /* Width below is max for Opera */
.anythingSlider .wrapper ul             { width: 32700px; list-style-type: none; position: absolute; top: 0; left: 0; margin: 0; padding: 0px;  }
.anythingSlider .wrapper ul li          { display: block; float: left; padding: 0px; height: 236px; width: 620px; margin: 0px; position: relative; }

.anythingSlider .arrow                  {
	display: block;
	height: 20px;
	width: 21px;
	text-indent: -9999px;
	position: absolute;
	bottom: 8px;
	cursor: pointer;
	background-image: url(Graphics/arrows.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.anythingSlider .forward                {
	background-position: right top;
	left: 590px;
}
.anythingSlider .back                   {
	background-position: left top;
	left: 560px;
}
.anythingSlider .forward:hover          { background-position: right top; }
.anythingSlider .back:hover             { background-position: left top; }

.anythingSlider .wrapper ul li h2 {
	position: absolute;
	right: 40px;
	bottom: 110px;	
	width: 350px;
	color: #FFF;
	font-size: 32px;
	text-transform: uppercase;
	font-weight: normal;
}
.anythingSlider .wrapper ul li p {
	position: absolute;
	right: 40px;
	top: 260px;	
	width: 350px;
	color: #FFF;
	font-size: 18px;
}
.anythingSlider .wrapper ul li a {
	position: absolute;
	left: 30px;
	top: 30px;	
	 width: 700px; 
	 height: 300px;
	display: block;
}

.thumbNav                               {
	position: absolute;
	bottom: 0px;
	left: 0px;
	text-align: left;
	/*background-image: url(Slider/bg_nav.png);*/
	background-repeat: no-repeat;
	background-position: right top;
	overflow: visible;
	z-index: 20;
	height: 18px;
	padding-left: 5px;
}
.thumbNav li, .thumbNav ul                            { display: inline; margin: 0px; padding: 0px; list-style: none; }
.thumbNav a                             {
	color: #CCC;
	display: inline-block;
	padding: 0px;
	height: 15px;
	text-align: center;
	/*background-image: url(Slider/slide_nav.png);*/
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
	margin-top: 4px;
	margin-right: 7px;
	margin-bottom: 0;
	text-decoration: none;
	font-size: 1px;
}
.thumbNav a:hover                       {  }
.thumbNav a.cur                         {
	/*background-image: url(Slider/slide_current.png);*/
}

.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; }

