
/* 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    
*/
div#holder1	{ 
	position:relative; overflow:hidden;
	width:682px; height:120px; z-index:100
	}
div#wn1	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:682px; height:99px; 
	clip:rect(0px, 682px, 99px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1	{ 
	position:absolute; 
	left:0px; top:0px; 
	z-index:1; 
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar1 { 
  position:absolute; left:0; top:105px;
  width:682px; height:12px;
  font-size:1px; z-index:2
  }
div#track1 { 
  position:absolute; left:14px; top:0px;
  width:654px; height:12px; z-index:1;
  }
div#dragBar1 {
  position:absolute; left:0px; top:0px;
  width:20px; height:12px; z-index:1;
  background-color:#CCCCCC;
  }  
div#left { position:absolute; left:0; top:1px; z-index:2 }  
div#right { position:absolute; right:0; top:1px; z-index:3 }
