/* hide from incapable browsers */
div#scrollbar { 
    display:none;
}

/* below in external file */
div#wn	{ 
    position:relative; 
    width:370px; height:400px; 
    overflow:hidden;
	float: left; 
}
div#scrollbar { 
    position:relative; 
    width:12px; height:400px;
    display:block; /* display:none initially */
    font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
    padding-top: 12px;  
}
div#track { 
    position:absolute; left:380px; top:2px;
    width:12px; height:400px; 
	background: url('../gfx/trackBg_v.gif') repeat-y;	
}	 
div#dragBar {
    position:absolute; left:0px; top:0px;
    width:12px; min-height:30px; height: 416px;
	background: url('../gfx/dragBg_v_t.png') no-repeat center top;
}
div#dragBar:hover {
	cursor: n-resize;
}
div#dragBar div {
	height: 100%;
	background: url('../gfx/dragBg_b.png') no-repeat center bottom;
}	
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; 
}