/*
    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:950px;
  height:220px;
  position:relative;
  margin:0 auto 0;
  border-bottom: 2px solid #eeeeee;
}
.anythingSlider .wrapper {
  width:950px;
  overflow:auto;
  height:220px;
  margin:0 0;
  position:absolute;
  top:0;
  left:0; 
}
.anythingSlider .wrapper ul { 
  color:#0000a0;
  width:32700px;
  list-style:none;
  position:absolute;
  top:0;
  left:0;
  border-top:0;
  border-bottom:0;
  margin:0; 
}
.anythingSlider ul li {
  display:block;
  float:left;
  padding:0;
  height:220px;
  width:950px;
  margin:0; 
}
.anythingSlider .arrow {
  display:block;
  height:64px;
  width:33px;
  position:absolute;
  font-size:0px;
  top:78px;
  cursor:pointer;
}
.anythingSlider .back {
  background: transparent url('../graphics/arrow-forward.png') no-repeat;
  left:0;
}
.anythingSlider .forward {
  background:transparent url('../graphics/arrow-back.png') no-repeat;
  right:0;
}
a.arrow {
 border-bottom: 1px solid transparent;
}
.anythingSlider .arrow:hover {
  background-position: 0 -65px;
}
.anythingSlider .arrow:active {
  background-position: 0 -130px;
}
.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; 
}

