/* Horizontal Carousel */
#horizontal_carousel {
  width: 590px;
  height: 112px;
  margin-bottom: 10px;
}

#horizontal_carousel .container {
  float: left;
  width: 500px;
  height: 112px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 96px;
}                      

#horizontal_carousel ul li {
  z-index: 600;
  width: 110px;
  height: 96px;
  text-align: center;
  padding: 7px; 
  list-style:none;   
  float:left;
  border: 1px solid #ccc;
  margin-right: 3px;
}

#horizontal_carousel ul li:hover {
  border: 1px solid #333;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 112px;
  background: url(../img/horizontal/left.png);
  background-position: center;
  z-index: 100;
  cursor: pointer;
  margin-left: 15px;
}

#horizontal_carousel .previous_button_over {
  background: url(../img/horizontal/left_over.png);
  background-position: center;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../img/horizontal/left_disabled.png);
  background-position: center;
  cursor: default;
}

#horizontal_carousel .next_button {
	float:left;
	width: 32px;
	height: 112px;
	z-index: 100;
	cursor: pointer;
	background-image: url(../img/horizontal/right.png);
	background-position: center;
}

#horizontal_carousel .next_button_over {
  background: url(../img/horizontal/right_over.png);
  background-position: center;
}

#horizontal_carousel .next_button_disabled {
  background: url(../img/horizontal/right_disabled.png);
  cursor: default;
  background-position: center;
}

