/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 600px;
  height: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
  
}

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

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

#horizontal_carousel ul li {
  height: 60px;
  text-align: center; 
  list-style:none;   
  background-color: #FFFFFF;
  float:left;
  
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 16px;
  height: 60px;
  background: url(/img/dg/lefta.png);
  
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(/img/dg/leftaover.png);
}

#horizontal_carousel .previous_button_disabled {
  background: url(/img/dg/lefta.png);
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 16px;
  height: 60px;
  background: url(/img/dg/righta.png);
  
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(/img/dg/rightaover.png);
}

#horizontal_carousel .next_button_disabled {
  background: url(/img/dg/righta.png);
  cursor: default;
}



