/* hide from incapable browsers */
div#scrollbar { 
    display:none;
    }

/* below in external file */
div#wn	{ 
    position:relative; 
    width:540px; 
    overflow:hidden;	
	}
div#scrollbar { 
    position:relative; 
    width:36px; height:400px;
    font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }

div#track { 
    position:absolute; left:0px; top:46px;
    width:36px; height:308px; 
    background: none;
  }
div#dragBar {
    margin:0px 10px 0px 10px;
    background:url('/web2009/images/scroller.jpg') no-repeat;
    position:absolute; left:1px; top:1px;
    width:16px; height:16px; 
    background-color:#ceced6;
  }  
div#up { position:absolute; left:0; top:0; width:36px; height:42px; background:url('/web2009/images/up.jpg') no-repeat}  
div#up.act { position:absolute; left:0; top:0; width:36px; height:42px; background:url('/web2009/images/up_act.jpg') no-repeat}  
div#down { position:absolute; right:0; bottom:0; width:36px; height:42px; background:url('/web2009/images/down.jpg') no-repeat}
div#down.act { position:absolute; right:0; bottom:0; width:36px; height:42px; background:url('/web2009/images/down_act.jpg') no-repeat}

/* 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; 
  
