/* Horizontal Carousel */
#horizontal_carousel {
  width:776px;
  height: 133px;
  margin:10px 74px 10px 103px;
  overflow: hidden;
  
  /*border:1px solid #E9E9E9;*/
}

#horizontal_carousel .container {
  width: 776px;
  overflow: hidden;
  position:relative;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 9000px;
  position: relative;
  height: 129px;
  overflow: hidden;
}                      

#horizontal_carousel ul li {
  width: 130px;
  height: 130px;
  text-align: center; 
  list-style:none;   
  float:left;
  position:relative;
  left:-15px;
}

#horizontal_carousel .buttons{

}
#horizontal_carousel .previous_button {
background:url("../images/mini_left.jpg") no-repeat scroll 0 0 transparent;
cursor:pointer;
float:left;
height:54px;
left:1px;
position:absolute;
top:79px;
width:54px;
z-index:999;
}

#horizontal_carousel .previous_button_disabled {
  background:url(../images/mini_left.jpg) no-repeat;
  cursor: default;
}
#horizontal_carousel .next_button {
background:url("../images/mini_right.jpg") no-repeat scroll 0 0 transparent;
cursor:pointer;
float:right;
height:54px;
position:absolute;
right:0px;
top:79px;
width:54px;
z-index:999;
}

#horizontal_carousel .next_button_over {
  background: url(../images/mini_right.jpg) no-repeat;
}

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