/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 1017px;
  height: 170px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 977px;
  height: 170px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 10000px;
  position: relative;
  top: 0;
  left: 0;
  height: 170px;
}                      

#horizontal_carousel ul li {
  width: 240px;
  height: 170px;
  text-align: center; 
  list-style:none;   
  float:left;
  padding-left:2px;
  padding-right:2px;

}

#horizontal_carousel .previous_button {
  float:left;  
  width: 20px;
  height:90px;
  background: url(../images/left.gif);
  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 {
  float:left;  
  width: 20px;
  height:90px;
  background: url(../images/right.gif);
  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;
}

