/* root element for scrollable */ 
div.sidebar-thumbs { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 180px; 
	
} 
 
/* root element for scrollable items */ 
div.sidebar-thumbs div.sidebar-thumbs-items { 
    width:20000em; 
    position:absolute; 
    float: left;
    /* this time we have very large space for the height */ 
    
}

.disabled {
	opacity:0.4;	
}


