/* Horizontal Carousel */
#horizontal_carousel {
  width: 750px;
  height: 100px;
  padding:5px;
  
}

#horizontal_carousel .container {
  width: 685px;
  overflow: hidden;
  float:left;
  position:relative;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: -10px;
  height: 120px;
  
}                      

#horizontal_carousel ul li {
  width: 90px;
  height: 90px;
  text-align: center; 
  list-style:none;   
  float:left;
}


#horizontal_carousel .previous_button {
  float:left;  
  width: 31px;
  height: 32px;
  background: url(img/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  
}

	
#horizontal_carousel .previous_button_disabled {
  background: url(img/but_prev_dis.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 31px;
  height: 32px;
  background: url(img/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}



#horizontal_carousel .next_button_disabled {
  background: url(img/but_next_dis.png) no-repeat;
  cursor: default;
}

#horizontal_carousel h3 a {
  color:#484848;
  font-size:11px;
}


