/* Horizontal Carousel */
#horizontal_carousel {
  z-index: 1000;
  width: 859px;
  height: 360px;
  margin: 0px 10px 0 0px;
  padding: 10px 0 10px 80px;
  position: absolute;
  border: solid 1px #666;
  background: #fff;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-box-shadow: 0 0 6px #666;
  -webkit-box-shadow: 0 0 6px #666;
}

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

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

#horizontal_carousel ul li {
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 48px;
  height: 90px;
  margin: 140px 10px 0 10px;
  background: url(../images/prototype-ui/horizontal/left.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/prototype-ui/horizontal/left_over.jpg) no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/prototype-ui/horizontal/empty.jpg) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 48px;
  height: 90px;
  margin: 140px 10px 0 10px;
  background: url(../images/prototype-ui/horizontal/right.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/prototype-ui/horizontal/right_over.jpg) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/prototype-ui/horizontal/empty.jpg) no-repeat;
  cursor: default;
}
