/* root element for scrollable */
  .ver-scrollable {
 
  /* required settings */
  position:relative;
  overflow:hidden;
  margin: 29px 0 0 0;
 
  /*
  vertical scrollables have typically larger height than width but
  not now
  */
  height: 486px;
  width: 240px;
  }

  .ver-scrollable.noscrolls {
	  margin:10px 0 0 0;
  }
 
  /* root element for scrollable items */
  .ver-scrollable .items {
  position:absolute;
 
  /* this time we have very large space for the height */
  height:20000em;
  }
.item{
  width: 240px;
  height: 240px;
  /*margin: 0 0 20px 0;*/
  padding: 7px 0 0 7px;
}
.item:hover{
  /*border: 1px solid #f35a23;*/
  /*box-shadow: 3px 3px 11px #888888;*/
}
.right-block-product .next, .right-block-product .prev{
  display: block;
  width: 63px;
  height: 20px;
  position: absolute;
  background:  url(../images/arrows_all.png) no-repeat;
  cursor: pointer;
}
.right-block-product .prev{
  top: 34px;
  left: 86px;
  background-position: 0 -360px;
}
.right-block-product .prev:hover{
  background-position: 0 -400px;
}
.right-block-product .next{
  top: 538px;
  left: 86px;
  background-position: 0 -380px;
}
.right-block-product .next:hover{
  background-position: 0 -420px;
}