/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  margin-bottom: 10px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 360px;
  height: 90px;
  position: relative;    
  overflow: hidden;
  border: solid 1px #C0C0C0; 
}

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

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

#horizontal_carousel .previous_button {
  float:left;  
  width: 34px;
  height: 70px;
  background-image: url("../../../../images/left-enabled.gif");
  background-repeat: no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 3px;
}

#horizontal_carousel .previous_button_over {
  background-image: url("../../../../images/left-enabled.gif");
  background-repeat: no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background-image: url("../../../../images/left-disabled.gif");
  background-repeat: no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 34px;
  height: 70px;
  background-image: url("../../../../images/right-enabled.gif");
  background-repeat: no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 3px;
}

#horizontal_carousel .next_button_over {
  background-image: url("../../../../images/right-enabled.gif");
  background-repeat: no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background-image: url("../../../../images/right-disabled.gif");
  background-repeat: no-repeat;
  cursor: default;
}

