/* Horizontal Carousel */
#horizontal_carousel {
  
  width: 980px;
  height: 150px;
  margin:0 auto;
  margin-top:3px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 860px;
  height: 123px;
  position: relative;    
  overflow: hidden;  
  padding:25px 30px 0 30px;
  border:1px solid #e4ebf1;
  background: url(images/slidebg.jpg) repeat-x;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
 left: 0;
  height: 180px;
}                      

#horizontal_carousel ul li {
  text-align:left;
width:320px;
 height: 150px;
  list-style:none;   
  float:left;
  margin:0;
  padding:0;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 29px;
  height: 150px;
  background: url(images/left_bn.jpg);
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(images/left_bn.jpg);
}

#horizontal_carousel .previous_button_disabled {
  background: url(images/left_bn_d.jpg);
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 29px;
  height: 150px;
  background: url(images/right_bn.jpg);
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(images/right_bn.jpg);
}

#horizontal_carousel .next_button_disabled {
  background: url(images/right_bn_d.jpg);
  cursor: default;
}


