  #scrollboxorders {  
   overflow: auto;  
 /*  padding: 0 5px;*/  
 }  
 .sttrack {  
   width: 5px;  
   background: rgba(0, 0, 0, 0);  
   margin-right: 2px;  
   border-radius: 10px;  
   -webkit-transition: background 250ms linear;  
   transition: background 250ms linear;  
   cursor:pointer;
 }  
 .sttrack:hover,  
 .sttrack.dragging {  
   background: #d9d9d9; /* Browsers without rgba support */  
   background: rgba(0, 0, 0, 0.15);  
   cursor:pointer;
 }  
 .sthandle {  
   width: 4px;  
   right: 0;  
   background: #999;  
   background: rgba(0, 0, 0, 0.4);  
   border-radius: 7px;  
   -webkit-transition: width 250ms;  
   transition: width 250ms;  
   cursor:pointer;
 }  
 .sttrack:hover .sthandle,  
 .sttrack.dragging .sthandle {  
   width: 4px;  
 }  
 
 