div#scrollbar {
    display:block; /* initially display:none; to hide from incapable */
    }

div#wn	{
	position:relative;
	width:740px;
	height:425px;
	overflow:hidden;
	/* [disabled]margin-left: 40px; */
	/* [disabled]margin-bottom: -50px; */
	}
    
div#scrollbar {
	position:absolute;
	width:7px;
	height:425px;
	/* [disabled]margin-bottom: -50px; */
	font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
	right: 0px;
  }
div#track {
	position:absolute;
	left:7px;
	top:12px;
	width:7px;
	height:380px;
	/* [disabled]margin-bottom: -50px; */
	margin-top: 20px;
  }
div#dragBar {
	position:absolute;
	left:1px;
	top:1px;
	width:7px;
	height:20px;
	background-color:#666;
  }  
div#up {
	position:absolute;
	left:6px;
	top:0;
	width: 12px;
	margin-top: 20px;
}  
div#down {
	position:absolute;
	left:6px;
	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; 
    } 
