/* NOTE: container div also specifies width and height (in head of demo) */
div#wn { 
    position:absolute; /* scroll area div must be positioned */
    width:136px; height:417px; /* width and height required. adjust to suit */
    overflow:hidden; /* required! */
	}
div#scrollbar {
    position:absolute;
    /* include following if you don't want scrollbar hidden when insufficient content for scrolling */
    /* visibility:visible !important; */ 
    width:6px; height:445px;
    right:-1px; /* at right edge in container div */
	top:-1px;
    font-size:1px; /* for ie cooperation */
	border:1px solid #ccc;
    }
div#scrollbar .up {
    background-image:url('../images/btn-up.gif');
    background-repeat: no-repeat;
    width:6px; height:6px; /* specify width and height of your image */
    position:absolute; top:0;
    }
div#scrollbar .down {
    background-image:url('../images/btn-dn.gif');
    background-repeat: no-repeat;
    width:6px; height:6px; /* specify width and height of your image */
    position:absolute; bottom:0;
    }
div#scrollbar .track {
    position:absolute; /* track must be positioned */
    left:0;
    top:7px; /* equal to height of .up image plus optional 1px for gap */
    width:6px; 
    height:431px; /* height of scrollbar minus 2 X image height minus optional 2px for gap */
    }
div#scrollbar .dragBar {
    position:absolute; /* dragBar must be positioned */
    background-color:#ccc;  /*can use background-image if you like */
    width:6px; 
    height:20px; /* code auto-sizes */
    /* height:20px !important;  use !important to prevent code from sizing dragBar according to amount of content */
    top:0px; left:0px; /* optional, small gap between track and dragBar */
    }

/* for clutzy draggers */
div#scrollbar {
    -moz-user-select: none;
    -khtml-user-select: none;
    }