/*
    anythingSlider v1.0
    
    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: 625px; 
	height: 415px; 
	position: relative; 
	margin: 0; 

}
.anythingSlider .wrapper 
{ 
	width: 625px; 
	overflow: auto; 
	height: 415px; 
	margin: 0px; 
	position: absolute; 
	top: 0; 
	left: 0; 
//	background-image: url(img/keyboards.gif);
	background-repeat: no-repeat;
	background-position: right top;	
}
.anythingSlider .wrapper ul             { 
	width: 9999px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	background: #eee; 
	margin: 0 -40px; 
	*margin: 0; 
}

.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 415px; width: 625px; margin: 0; }
.anythingSlider .arrow                  { display: block; height: 290px; width: 300px; background: url(img/arrows.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top: 100px; cursor: pointer; }
.anythingSlider .forward                { background-position: 0 0; right: 0px; }
.anythingSlider .back                   { background-position: -67px 0; left: 0px; }
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

#thumbNav                               { position: relative; top: -25px; text-align: left; left: -5px; }
#thumbNav a                             { color: #c8c8c8; font-family: Arial, Helvetica, sans-serif; font-size: 14px;  display: inline-block; padding: 2px 5px; height: 15px; margin: 0 0 0 0; font-weight:bold; text-decoration:none;}
#thumbNav a:hover                       { color: #c8c8c8; font-weight:bold; text-decoration:none; }
#thumbNav a.cur                         { color: #ff9933; font-weight:bold; text-decoration: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; }
