/* Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn. 
   hold div height accommodates scrollbar in this example    
*/
/* hide from incapable browsers */
div#scrollbar { 
    display:none; /*new*/
    }
div#hold	{ 
	position:relative; 
	overflow:hidden;
	width:780px; 
	height:356px; 
	z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; 
	top:0px; 
	width:780px; 
	height:356px; 
	clip:rect(0px, 780px, 356px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1 { 
	position:absolute; 
	visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; 
  left:0px; 
  top:0px;
  width:201px; 
  height:16px; 
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */ 
  z-index:1;
  display:block; /*display:none initially*/
  /*background-color:#999999;*/
  }
div#track { 
  position:absolute; 
  left:25px; 
  top:5px;
  width:166px; 
  height:5px;
  /*background: url("track.gif") #336 repeat;*/
  z-index:1;
  }
div#dragBar {
  position:absolute; 
  left:1px; 
  top:1px;
  width:50px; 
  height:4px;
  background-color:#52699f;
  z-index:1;
  }  
div#left { 
    position:absolute; 
    left:0; 
    top:0;
    width: 19px; 
    height: 20px;
    z-index:3; 
    } 
div#right { 
    position:absolute; 
    left:202px; 
    top:0;
    width: 19px; 
    height: 20px;
    z-index:4; 
    }  
    
    /* 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; 
    }
