/* Horizontal Carousel */
#horizontal_carousel {
  /*float: left;*/
  margin-left: 4px;
  width: 344px;
  height: 70px;
/*  margin-bottom: 0px;
  position: relative;*/
}

#horizontal_carousel .container {
  float: left;
  width: 324px;
  height: 70px;
  position: relative;    
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: auto;
  height: 70px;
  text-align: center; 
  list-style: none;
  float: left;
}

#horizontal_carousel .previous_button {
  background-color: #bf82b7;
  line-height: 72px;
  color: #5d0068;
  float: left;
  width: 10px;
  height: 70px;
  /*background: url(prototype-ui/horizontal/left.png);*/
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  /*background: url(prototype-ui/horizontal/left_over.png);*/
  background-color: #bf82b7;
  color: #5d0068;
}

#horizontal_carousel .previous_button_disabled {
  /*background: url(prototype-ui/horizontal/left_disabled.png);*/
  cursor: default;
  color: #bf82b7;
}

#horizontal_carousel .next_button {
  float:left;  
  background-color: #bf82b7;
  line-height: 72px;
  color: #5d0068;
  width: 10px;
  height: 70px;
  /*background: url(prototype-ui/horizontal/right.png);*/
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  /*background: url(prototype-ui/horizontal/right_over.png);*/
  background-color: #bf82b7;
  color: #5d0068;
}

#horizontal_carousel .next_button_disabled {
  /*background: url(prototype-ui/horizontal/right_disabled.png);*/
  cursor: default;
  color: #bf82b7;
}