/* Horizontal Carousel */


#horizontal_carousel {
  margin: 10px 0 0 22px; 
  width: 645px;
  height: 270px;
  padding:5px;
  background:#fff;
  border:solid 0px #e9e9e9;
}

#horizontal_carousel .container {
  float:left;
  position:relative;
  width: 500px;
  overflow: hidden;
  margin: 0 10px 0 10px;
  height: 320px;
}

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

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

#horizontal_carousel .buttons{
	display:block;
}
#horizontal_carousel .previous_button {
  float:left;
  width: 60px;
  height: 60px;  background: url(images/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-top: 95px;
}

#horizontal_carousel .previous_button_over {
  background: url(images/but_prev_hover.png) no-repeat;}

#horizontal_carousel .previous_button_disabled {
  background: url(images/but_prev_dis.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 60px;
  height: 60px;
  background: url(images/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-top: 95px;
}

#horizontal_carousel .next_button_over {
  background: url(images/but_next_hover.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(images/but_next_dis.png) no-repeat;
  cursor: default;
}     
