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

div#wn1	{ 
	position:relative;
	width:225px !important; width:213px; height: 350px; 
	overflow:hidden;
	}
div.content { /* hide content to be swapped in */
	position:absolute; visibility:hidden;
	left:0px; top:0px;
	}
div#lyr1 { /* show first div */
    visibility:visible;
    width: 100%;
    }
div#scrollbar1 { 
  position:relative;
  width:11px; height:380px;
  float:left; margin-top: -20px;
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }
div#track1 { 
  position:absolute; left:0; top:14px;
  width:11px; height:372px;
  }
div#dragBar1 {
  position:absolute; left:1px; top:1px;
  width:14px; height:0px; display: none;
  background-image: url(../img/scroller/scroller.png)  
  }  
div#up1 { position:absolute; left:0; top:0; }  
div#down1 { position:absolute; left:0; bottom:0; }

/* so no gap or misplacement due to image vertical alignment
font-size:1px in scrollbar1 has same effect (less likely to be removed, resulting in sup1port issues) */
div#scrollbar1 img {
    display:block; 
    } 
    
/* for safari, to prevent selection problem */
div#scrollbar1, div#track1, div#dragBar1, div#up1, div#down1 {
    -moz-user-select: none;
    -khtml-user-select: none;
}
