/* root element for scrollable */ 
div.scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width */     
    height: 115px;      
    width: 238px;     
} 
 
/* root element for scrollable items */ 
div.scrollable div.items {     
    position:absolute; 
         
    /* this time we have very large space for height */     
    height:20000em;
}
div.scrollable div.items div {
/*font-size:20px;*/
height: 115px;
overflow:hidden;


margin-left:22px;
margin-right:15px; 
margin-bottom-10px;
}

.mask {
    height: 115px;  
    overflow: hidden;   
}
