/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 650px;
  height: 150px;
  margin-bottom: 10px;
  position: relative;
  z-index:100;
}

#horizontal_carousel .container {
  float: left;
  width: 570px;
  height: 150px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 20px;
  left: 0;
  height: 150px;
}                      

#horizontal_carousel ul li {
  width: 190px;
  height: 150px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  padding-top:20px;
  float:left;  
  width: 32px;
  height: 75px;
  background: url(../images/left.png);
  background-repeat:no-repeat;
  background-position:bottom;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/left_over.png);
  background-repeat:no-repeat;
  background-position:bottom;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/left_disabled.png);
  background-repeat:no-repeat;
  background-position:bottom;
  cursor: default;
}

#horizontal_carousel .next_button {
  padding-top:20px;
  float:left;  
  width: 32px;
  height: 75px;
  background: url(../images/right.png);
  background-repeat:no-repeat;
  background-position:bottom;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/right_over.png);
  background-repeat:no-repeat;
  background-position:bottom;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/right_disabled.png);
  background-repeat:no-repeat;
  background-position:bottom;
  cursor: default;
}
