/*
    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 { 
	height: 400px;
	width: 930px;
  margin: 0; 
  padding: 15px 14px; 
  background: white; 
  position: relative; 
  border-left:1px solid #c0c1c5;
  border-right:1px solid #c0c1c5;
  border-top:0px solid #c0c1c5;
  border-bottom:0px solid #c0c1c5;
}

.anythingSlider .wrapper-any { 
  width: 930px; 
  height: 375px; 
  overflow: auto; 
  margin: 0; 
  position: absolute; 
  top: 15px; 
  left: auto; 
}

                                       /* Width below is max for Opera */
.anythingSlider .wrapper-any ul { 
  height: 375px; 
  width: 32700px; 
  list-style: none; 
  position: absolute; 
  top: 0; 
  left: 0; 
  background: white; 
  margin: 0; 
}
.anythingSlider ul li { 
  display: block; 
  float: left; 
  padding: 0; 
  height: 375px; 
  width: 940px; 
  margin: 0; 
}

.anythingSlider .arrow { 
  display: block; 
  z-index:9; 
  width: 38px; 
  height: 41px; 
  background: url(../images/group-button9.png) no-repeat 0 0; 
  text-indent: -9999px; 
  position: absolute; 
  top: 390px; 
  cursor: pointer; 
}
.anythingSlider .forward { 
  background-position: -38px -41px; 
  right: 10px; 
}

.anythingSlider .back { 
  background-position: 0px -41px; 
  right: 48px; 
}

.anythingSlider .forward:hover          { background-position: -38px 0; }
.anythingSlider .back:hover             { background-position: 0 0; }

#thumbNav { 
  position: relative; 
  top: 385px; 
  text-align: center; 
}

#thumbNav a { 
  color: #666666; 
  font: bold 12px Arial; 
  display: inline-block; 
  padding: 4px 8px; 
  height: 18px; 
  margin: 0 5px 0 0; 
  background: url(../images/rectang.png) no-repeat; 
  text-align: center; 
}

#thumbNav a:hover,                      
#thumbNav a.cur { 
  background: url(../images/rectang_seclect.png) no-repeat; 
  color: white; 
}

/*
  Prevents
*/
.anythingSlider .wrapper-any ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .wrapper-any ul ul li       { float: none; height: auto; width: auto; background: none; }

