/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 470px;
  height: 115px;
  position: relative;
}

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

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

#horizontal_carousel ul li {
  width: 104px;
  height: 50px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 21px;
  height: 110px;
  background: url(/images/prev.png);
  z-index: 100;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

#horizontal_carousel .previous_button_over {
  background: url(/images/prev_hover.png);
  background-repeat: no-repeat;
  background-position: center;
}

#horizontal_carousel .previous_button_disabled {
  background: url(/images/prev_null.png);
  cursor: default;
  background-repeat: no-repeat;
  background-position: center;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 21px;
  height: 110px;
  background: url(/images/next.png);
  z-index: 100;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

#horizontal_carousel .next_button_over {
  background: url(/images/next_hover.png);
  background-repeat: no-repeat;
  background-position: center;
}

#horizontal_carousel .next_button_disabled {
  background: url(/images/next_null.png);
  cursor: default;
  background-repeat: no-repeat;
  background-position: center;
}

img.boats-carousel-image {
	padding: 2px;
	border: 1px solid #888888
	}

