/* Horizontal Carousel START */
#horizontal_carousel {
  float: left;
  width: 570px;
  height: 220px;
  margin-bottom: 0px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 520px;
  padding: 0px;
  height: 220px;
  position: relative;    
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: 125px;
  height: 220px;
  margin: 0 2px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 25px;
  height: 220px;
  background: url(prototype-ui/horizontal/start_left.gif) no-repeat 0 30px;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(prototype-ui/horizontal/start_left_over.gif) no-repeat 0 30px;
}

#horizontal_carousel .previous_button_disabled {
  background: url(prototype-ui/horizontal/start_left_disabled.gif) no-repeat 0 30px;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 25px;
  height: 220px;
  background: url(prototype-ui/horizontal/start_right.gif) no-repeat 0 30px;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(prototype-ui/horizontal/start_right_over.gif) no-repeat 0 30px;
}

#horizontal_carousel .next_button_disabled {
  background: url(prototype-ui/horizontal/start_right_disabled.gif) no-repeat 0 30px;
  cursor: default;
}

