/* Horizontal Carousel */
/*#horizontal_carousel {
  float: left;
  width: 576px;
  height: 208px; 
  margin-bottom: 20px;
  position: relative;
}
*/

#horizontal_carousel {
  float: left;
  width: 577px;
  height: 208px; /* height of carousel + height of buttons + 2 pixel padding top & bottom */
  margin-bottom: 20px;
  position: relative;
}

#display, #display2, #display3, #display4 {
  float: left;
  width: 576px;
  margin-bottom: 20px;
  position: relative;
}

/*#horizontal_carousel .container {
  float: left;
  width: 576px;
  height: 208px;
  position: relative;    
  overflow: hidden;
}*/

#horizontal_carousel .container {
  float: left;
  width: 577px;
  height: 208px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 150px;
} 

#display ul, #display2 ul, #display3 ul, #display4 ul {
  margin: 0;
  padding:0;
  position: relative;
  top: 0;
  left: 0;
}                      

/*#horizontal_carousel ul li {
  width: 144px;
  height: 180px;
  text-align: center; 
  list-style:none;   
  float:left;
  margin:10px 0 0 0;
}*/

#horizontal_carousel ul li {
  width: 577px;
  height: 180px;
  text-align: center; 
  list-style:none;   
  float:left;
  margin:0;
  padding:0;
}

#display ul li, #display2 ul li, #display3 ul li, #display4 ul li {
  width: 144px;
  height: 180px;
  text-align: center; 
  list-style:none;   
  float:left;
  margin:10px 0 0 0;
}

#horizontal_carousel .previous_button {
  float:right;  
  width: 66px;
  height: 24px;
  background: url(../../img/left.png);
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../../img/left_over.png);
}

#horizontal_carousel .previous_button_disabled {
  background: url(../../img/left_disabled.png);
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 66px;
  height: 24px;
  background: url(../../img/right.png);
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../../img/right_over.png);
}

#horizontal_carousel .next_button_disabled {
  background: url(../../img/right_disabled.png);
  cursor: default;
}


