/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 350px;
  height: 126px;
  margin-bottom: 9px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 320px;
  height: 126px;
  position: relative;    
  overflow: hidden;
  clear: both;
  margin: 0px 15px;
}

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

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

#horizontal_carousel .previous_button {
  float:left;  
  width: 150px;
  height: 18px;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  color: #0077a4;
}

#horizontal_carousel .previous_button_disabled {
  cursor: default;
  display: none;
}

#horizontal_carousel .next_button {
  float:right;
  text-align: right;  
  width: 150px;
  height: 18px;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  color: #0077a4;
}

#horizontal_carousel .next_button_disabled {
  cursor: default;
  display: none;
}

