/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 705px;
  height: 150px;
  margin-top: 10px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 641px;
  height: 150px;
  position: relative;    
  overflow: hidden;
}

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

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

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 150px;
  background: url(../gfx/left.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../gfx/left_over.png);
  background-position: center;
  background-repeat: no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../gfx/left_disabled.png);
  background-position: center;
  background-repeat: no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 32px;
  height: 150px;
  background: url(../gfx/right.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../gfx/right_over.png);
  background-position: center;
  background-repeat: no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../gfx/right_disabled.png);
  background-position: center;
  background-repeat: no-repeat;
  cursor: default;
}