  /* root element for scrollable */
  
  
#actions{
	position:absolute;
	right:15px;
	top:115px;
	width:20px;
	height:60px;
}

#actions2, #actions3{
	position:absolute;
	right:15px;
	top:412px;
	width:20px;
	height:60px;
}

  .scrollable {
 
  /* required settings */
  position:relative;
  overflow:hidden;
 
  /*
  vertical scrollables have typically larger height than width but
  not now
  */
  height: 200px;
  width: 120px;
  margin:20px 0 10px 45px;
  }
 
  /* root element for scrollable items */
  .scrollable .items {
  position:absolute;
 
  /* this time we have very large space for the height */
  height:20000em;

  
  }
  
  .scrollable .items p{
	  margin:5px 0 10px 0;
	  text-align:center;
  }
  
  .scrollable2, .scrollable3 {
 
  /* required settings */
  position:relative;
  overflow:hidden;
 
  /*
  vertical scrollables have typically larger height than width but
  not now
  */
  height: 810px;
  width: 120px;
  margin:20px 0 10px 42px;
  }

 
  /* root element for scrollable items */
  .scrollable2 .items, .scrollable3 .items {
  position:absolute;
 
  /* this time we have very large space for the height */
  height:20000em;
  
  }
  
  .scrollable2 .items p, .scrollable3 .items p{
	  margin:5px 0 10px 0;
	  text-align:center;
  }