/* Horizontal Carousel */
#carousel {
  float: left;
  width:675px; 
  height:175px;
  position: relative;
}

#carousel .container {
  float: left;
  width:675px; 
  height:175px;
  position: relative;    
  overflow: hidden;
}

#carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 175px;
}                      

#carousel ul li {
  width: 225px;
  height: 175px;
  float:left;  
}
.previous_button, .next_button, .SlideItMoo_forward, .SlideItMoo_back {
    cursor:pointer;               
    width:16px; height:17px;
    position:absolute;
    margin:-45px 0 0 635px;
}
.next_button, .SlideItMoo_forward { margin-left:660px; }
.previous_button, .SlideItMoo_back {
  background: url(../img/arrow-prev.png);
}
.previous_button_over {
  background: url(../img/arrow-prev-over.png);
}
.previous_button_disabled {
  background: url(../img/arrow-prev-disabled.png);
  cursor: default;
}
.next_button, .SlideItMoo_forward {
    background: url(../img/arrow-next.png);
}
.next_button_over {
    background: url(../img/arrow-next-over.png);
}
.next_button_disabled {
  background: url(../img/arrow-next-disabled.png);
  cursor: default;
}