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

#horizontal_carousel .container {
  position: absolute;
  top: 5px;
  left: 25px;  
  width: 140px;
  height: 60px;
  overflow:hidden;   
}            

#horizontal_carousel .previous_button {
  position: absolute;
  top: 15px;
  left: 0px;
  width: 27px;
  height: 64px;
  background: url(/images/photo_scroll_left.gif);
  z-index: 100;    
  cursor:pointer;
  background-repeat:no-repeat
}        

#horizontal_carousel .previous_button_disabled {
  background: url(/images/photo_scroll_left_dim.gif);
  cursor:default;
  background-repeat:no-repeat
}

#horizontal_carousel .next_button {
  position: absolute;
  top: 15px;
  right: 0px;
  width: 27px;
  height: 144px;
  background: url(/images/photo_scroll_right.gif);
  z-index: 100;
  cursor:pointer;
  background-repeat:no-repeat
}   

#horizontal_carousel .next_button_disabled {
  background: url(/images/photo_scroll_right_dim.gif);
  cursor:default;
  background-repeat:no-repeat
}

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

#horizontal_carousel ul li img {
  border:1px solid #999999;
  display:block;             
  background:#E3EDFA;
  margin:0 auto  
}                               

#horizontal_carousel ul li {
  font-family:verdana,arial,sans-serif;
  font-size:10px;
}                               

#horizontal_carousel ul li {
  border:0px solid green;
  color:#E3EDFA;
  margin:0pt;
  padding:2px;
  width:60px;
  list-style:none;   
  float:left;
}

