/*
    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;
	min-height: 400px;
	position: relative;
	margin: 0 auto 20px;
}
.anythingSlider .wrapper                {
	width: 700px;
	overflow: auto;
	min-height: 400px;
	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 ul li                   {
	display: block;
	float: left;
	padding: 0;
	min-height: 400px;
	width: 700px;
	margin: 0;
}
.anythingSlider .arrow                  {
	display: none;
	height: 200px;
	width: 67px;
	text-indent: -9999px;
	position: absolute;
	top: 65px;
	cursor: pointer;
}
.anythingSlider .forward                {
	right: -20px;
}
.anythingSlider .back                   {
	left: -20px;
}
.anythingSlider .forward:hover          {
}
.anythingSlider .back:hover             {
}

#thumbNav                               { 
	position: relative; 
	top: 240px; 
	text-align: right; 
}
#thumbNav a                             {
	display: inline-block;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
	border:none 0;
}
#thumbNav a:hover                       {
}
#thumbNav a.cur                         {  }

#start-stop                             {
	display:none;
	background-repeat: repeat-x;
	color: black;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 230px;
}
#start-stop.playing                     {  }
#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; }

