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

div.wn1  { 
  position:relative; 
  width:220px; height:150px; 
  overflow:hidden;
  }
div.wn2	{ 
	position:relative; 
	width:166px; height:166px; 
	overflow:hidden;
	}
  
div.scrollbar1 { 
  position:relative;
  width:11px; height:150px; 
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }
div.track1 { 
  position:absolute; left:0; top:12px;
  width:11px; height:126px;
  background: #4d2901;
  }
div.dragBar1 {
  position:absolute; left:1px; top:1px;
  width:9px; height:20px;
  background-color:#f8c68e;
  z-index:1
  }  
div.up1 { position:absolute; left:0; top:0; z-index:2 }  
div.down1 { position:absolute; left:0; bottom:0; z-index:3 }  


/* for safari, to prevent selection problem  */
div.scrollbar1, div.track1, div.dragBar1, div.up1, div.down1
    {
    -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.scrollbar1 img {
    display:block; 
    } 
