/* Horizontal Carousel */
#faq_carousel {
  float: left;
  margin-bottom: 10px;
  position: relative;
  height: 132px;
}

#faq_carousel .container {
  float: left;
  width: 700px;
  position: relative;    
  overflow: hidden;
}

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

#faq_carousel ul li {
  width: 140px;
  list-style:none;   
  float:left;
}

#faq_carousel .previous_button {
  margin-top: 55px;
  float:left;  
  width: 24px;
  height: 24px;
  background: url(/resources/faq/images/previous_button.gif);
  z-index: 100;
  cursor: pointer;
  margin-left:7px;
  margin-right:5px;
}

#faq_carousel .previous_button_over {
  background: url(/resources/faq/images/previous_button.gif);
  
}

#faq_carousel .previous_button_disabled {
  background: url(/resources/faq/images/previous_button.gif);
  cursor: default;
}

#faq_carousel .next_button {
  float:left; 
  margin-top: 55px; 
  width: 24px;
  height: 24px;
  background: url(/resources/faq/images/next_button.gif);
  z-index: 100;
  cursor: pointer;
  margin-left:5px;
}

#faq_carousel .next_button_over {
  background: url(/resources/faq/images/next_button.gif);
}

#faq_carousel .next_button_disabled {
  background: url(/resources/faq/images/next_button.gif);
  cursor: default;
}


