/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 340px;
  height: 20px;
  margin-bottom: 10px;
  position: absolute;
  left:10px;
  top:5px;
}

#horizontal_carousel .container {
  float: left;
  width: 274px;
  height: 40px;
  overflow: hidden;
  position: relative;
  left:0;
  top:0;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 240px;
}                      

#horizontal_carousel ul li {
  width: 250px;
  height: 240px;
  text-align: center; 
  list-style:none;   
  float:left;
  font-family:Verdana;
  font-size:11px;
  font-weight:normal;
  color:#1A68B0;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 20px;
  background: url(prototype-ui/horizontal/left.gif) no-repeat;
  vertical-align:center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(prototype-ui/horizontal/left_over.gif) no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(prototype-ui/horizontal/left_disabled.gif) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 32px;
  height: 20px;
  background: url(prototype-ui/horizontal/right.gif) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(prototype-ui/horizontal/right_over.gif) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(prototype-ui/horizontal/right_disabled.gif) no-repeat;
  cursor: default;
}