/* Horizontal Carousel */

.horizontal_carousel {
  float: left;
  width: 430px;
  height: 100px;
  position: relative;
  margin-left: 5px;
}

.horizontal_carousel .container {
  float: left;
  width: 395px;
  padding-top: 5px;
  height: 90px;
  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 {
  width: 127px;
  height: 95px;
  text-align: center; 
  list-style:none;   
  float:left;

  margin-bottom: 0px;
  margin-top: 0px;

  margin-left: 0px;
  margin-right: 0px;
}

.horizontal_carousel ul li img {
	width: 119px;
	height: 89px;
	text-align: center;

	margin: auto;
}

.horizontal_carousel .previous_button {
  float:left;
  width: 16px;
  height: 95px;
  background: url(../image/carousel/left.gif);
  z-index: 100;
  cursor: pointer;
}

.horizontal_carousel .previous_button_over {
  background: url(../image/carousel/leftOver.gif);
}

.horizontal_carousel .previous_button_disabled {
  background: url(../image/carousel/leftDisabled.gif);
  cursor: default;
}

.horizontal_carousel .next_button {
  float:left;  
  width: 16px;
  height: 95px;
  background: url(../image/carousel/right.gif);
  z-index: 100;
  cursor: pointer;
  margin-left: 3px;
}

.horizontal_carousel .next_button_over {
  background: url(../image/carousel/rightOver.gif);
}

.horizontal_carousel .next_button_disabled {
  background: url(../image/carousel/rightDisabled.gif);
  cursor: default;
}
