/* Horizontal Carousel */


#bestsellers .container {
  overflow: hidden;
  position:relative;
  width:640px;
  height:160px;
}

#bestsellers ul {
  margin: 0px;
  padding:0px;
  width: 100000px;
  position: relative;
  top: 0;
  left: -5px;
}                      

#bestsellers ul li {
  width: 160px;
  height: 150px;
  text-align: center; 
  list-style:none;   
  float:left;
  padding:5px 0 0 0;
}

#bestsellers ul li img {
	border:none;
}

#bestsellers .buttons{
	display:block;
 	clear:both;
}
#bestsellers .previous_button {
  float:left;  
  width: 30px;
  height: 110px;
  background: url(../../images/left.gif) no-repeat;
  /*background: url(/css/prototype/img/but_prev.png) no-repeat;*/
  z-index: 100;
  cursor: pointer;
  margin-top:40px;
  margin-left:5px;
}

#bestsellers .previous_button_over {
  background: url(../../images/left.gif) no-repeat; 	
  /*background: url(/css/prototype/img/but_prev_hover.png) no-repeat;*/
}

#bestsellers .previous_button_disabled {
  background: url(../../images/left.gif) no-repeat; 
  /*background: url(/css/prototype/img/but_prev_dis.png) no-repeat;*/
  cursor: default;
}

#bestsellers .next_button {
  float:right;  
  width: 30px;
  height: 110px;
  background: url(../../images/right.gif) no-repeat;
  /*background: url(/css/prototype/img/but_next.png) no-repeat;*/
  z-index: 100;
  cursor: pointer;
  margin-top:40px;
}

#bestsellers .next_button_over {
  background: url(../../images/right.gif) no-repeat;	
  /*background: url(/css/prototype/img/but_next_hover.png) no-repeat;*/
}

#bestsellers .next_button_disabled {
  background: url(../../images/right.gif) no-repeat;
  /*background: url(/css/prototype/img/but_next_dis.png) no-repeat;*/
  cursor: default;
}