/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollableFabric, div.scrollableLeather { 
     
    /* required settings */ 
    margin-left: 30px;
    margin-top: 5px;
    position:relative; 
    overflow:hidden;          
    width: 437px;     
    height:102px;     
} 
 
/*  
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollableFabric div.items, div.scrollableLeather div.items {     
    /* this cannot be too large */ 
    width:20000em;     
    position:absolute;         
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollableFabric div.items div, div.scrollableLeather div.items div { 
    float:left; 
    width: 78px;
    height: 78px;
    background: white;
    margin-top: 11px;
    margin-right: 9px;
    border: 1px solid #737476;  
} 
 
/* you may want to setup some decorations to active item 
div.scrollableFabric div.items div.active, div.scrollableLeather div.items div.active { 
	float:left; 
    width: 93px;
    height: 93px;
    margin-top: 0px;
    background: white;
    margin-right: 9px;
    border: 2px solid #737476;  
}*/ 
