/* Horizontal Carousel */
#horizontal_carousel {
  width: 800px;
  height: 260px;
  position: relative;  
}         

#horizontal_carousel .container {
  position: absolute;
  left: 32px;  
  width: 736px;
  height: 260px;
  overflow:hidden;   
  background: transparent;
}            

#horizontal_carousel .previous_button {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 220px;
  background: url("/images/layout/carousel-left-active.png");
  z-index: 100;    
  cursor:pointer;
}        

#horizontal_carousel .previous_button_disabled {
  background: url("/images/layout/carousel-left-inactive.png");
  cursor:default;
}

#horizontal_carousel .next_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 220px;
  background: url("/images/layout/carousel-right-active.png");
  z-index: 100;
  cursor:pointer;
}   

#horizontal_carousel .next_button_disabled {
  background: url("/images/layout/carousel-right-inactive.png");
  cursor:default;
}

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

#horizontal_carousel ul li img {
  border: 0;
  display:block;             
  background:#E3EDFA;  
}                               

#horizontal_carousel ul li {
  float: left;
  font-family:verdana,arial,sans-serif;
  font-size:10px;
  height: 260px;
  list-style: none;   
  margin: 0;
  padding: 0 4px;
  position: relative;
  width:176px;
}