/* Horizontal Carousel */
#horizontal_carousel {
  width: 1000px;
  height: 110px;
  /*margin-bottom: 10px;*/
  position: relative;
  margin-right:auto;
  margin-left:auto;
  background-color: #000000;
}

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

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

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

#horizontal_carousel .previous_button {
  background-color: #0b0b0b;
  width: 31px;
  height: 110px;
  z-index: 100;
  cursor: pointer;
  color: #191919;
  background: url(/img/prev_button.gif);
  position: relative;
  float: left;
}

#horizontal_carousel .previous_button_over {
}

#horizontal_carousel .previous_button_disabled {
  cursor: default;
}

#horizontal_carousel .next_button {
  float: left;
  background-color: #0b0b0b;
  width: 32px;
  height: 110px;
  z-index: 100;
  background: url(/img/next_button.gif);
  cursor: pointer;
  position: relative;

}

#horizontal_carousel .next_button_over {
}

#horizontal_carousel .next_button_disabled {
  cursor: default;
}


#spinner {
      position: absolute;
      top: 0px;
      left: 50px;
      width: 100%;
      height: 110px;
      background: #000000;
      z-index: 10;
      text-align: center;
      font-size: 40px;
      line-height: 40px;
      padding-top: 50px;
      opacity: 0;
      margin-left: -50px;
}
	
/*.container {width: 1000px;
margin-right:auto;margin-left:auto;}*/
