/* Horizontal Carousel */
.carousel {

  width: 900px;
  height: 170px;
  margin-bottom: 10px;
  position: relative;
}

.carousel .container {

  width: 900;
  height: 170px;
  position: relative;    
  overflow: hidden;
}

.carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 170px;
}                      

.carousel ul li {
  width: 290px;
  height: 150px;
  text-align: center; 
  list-style:none;   

}

.carousel .previous_button {
 position:absolute;
  width: 7px;
  height: 14px;
  background: url(../images/c-arrow-left.png);
  bottom:0;
  left:0;
  z-index: 100;
  cursor: pointer;
}

.carousel .previous_button_over {
  background: url(../images/c-arrow-left.png);
}

.carousel .previous_button_disabled {
  background: url(../images/c-arrow-disabled-left.png);
  cursor: default;
}

.carousel .next_button {
  position:absolute;
  width: 7px;
  height: 14px;
  background: url(../images/c-arrow-right.png);
  bottom:0;
  right:10px;
  z-index: 100;
  cursor: pointer;
}

.carousel .next_button_over {
  background: url(../images/c-arrow-right.png);
}

.carousel .next_button_disabled {
  background: url(../images/c-arrow-disabled-right.png);
  cursor: default;
}




