﻿/* hide from incapable browsers */
div#scrollbar { 
    display:none;
    }
 
/* below in external file */
div#wn	{ 
    position:relative; 
    width:761px; height:140px; 
    overflow:hidden;	
	}
div#scrollbar { 
    position:relative; 
    width:761px; height:11px;
    display:block; /* display:none initially */
    font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }
 
div#track { 
    position:absolute; left:15px; top:0;    /*RAJ.left is the width of left arrow*/
    width:731px; height:15px;               /*RAJ width is total minus width of both arrows*/
    /*background: #000000; */                   /*RAJ main track bg col*/
    background-image:url('/javascript/baseselector/track_bg.gif');
    background-repeat:repeat-x;
  }
div#dragBar {
    position:absolute; left:1px; top:1px;
    /*width:20px; height:13px;
    background-color:#f17c0e; */
    background-image:url('/javascript/baseselector/block.png');
    background-repeat:no-repeat;
    width:67px;
    height:15px;
  }  
div#left { position:absolute; left:0; top:0; }  
div#right { position:absolute; right:0; top:0;  }
 
/* for safari, to prevent selection problem  */
div#scrollbar, div#track, div#dragBar, div#left, div#right {
    -moz-user-select: none;
    -khtml-user-select: none;
}
 
/* so no gap or misplacement due to image vertical alignment
font-size:1px in scrollbar has same effect (less likely to be removed, resulting in support issues) */
div#scrollbar img {
    display:block; 
    } 