/*Dimensions of the Scrolling area here*/

div#wn	{ 
    position:relative;
	float:left;
    width:435px; height:558px;
    overflow:hidden;
	}
/*bc col of BAR*/
div#scrollbar {
	 position:relative;
	float:left;
    display:block; /* initially display:none; to hide from incapable */
	background-color:#C5D2DA;
    }
/*Dimensions of the SLIDER */    
div#scrollbar { 
  position:relative;
  width:11px; height:558px; 
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }
  /*The SLIDER Track Parameters*/
div#track { 
  position:absolute; left:0; top:0px;
  width:11px; height:546px;
  background-color:#C5D2DA;
  }
 /*The SLIDER attributes - SET HEIGHT etc in lws_SCOLLER.js*/
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:20px;
  background-color:#8DA7B4;
  }  
div#up { position:absolute; left:0; top:0; }  
div#down { position:absolute; left:0; 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; 
    } 
