div#scrollbar {
    display:block; /* initially display:none; to hide from incapable */
    }

div#wn	{ 
    position:relative;
    width:555px; height:590px;
    overflow:hidden;
	}
    
		
		
/* Controls field where up-dn arrows lie */		
div#scrollbar { 
  position:relative;
  width:11px; height:560px; 
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
	  background-color:#336;/* I added this color to the bkg of the scrollbar field */
  }
	
	/* Controls Blue Track */
div#track { 
  position:absolute; left:0; top:12px;
  width:11px; height:460px;
  background: #336;
  }
	
	
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:20px;
  background-color:#ceced6;
  }    
div#up { position:absolute; left:0; top:0; }  
div#down { position:absolute; left:0; bottom:0; }

/* for safari, to prevent selection problem  */
div#scrollbar, div#track, div#dragBar, div#up, div#down {
    -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; 
    } 
