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