/* 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#hold	{ 
	position:relative; overflow:hidden;
	width:839px; height:220px; z-index:100
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:839px; height:193px; 
	clip:rect(0px, 839px, 193px, 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:absolute; left:0; top:204px;
  width:859px; height:10px;
  font-size:1px; z-index:2
  }
div#track { 
  position:absolute; left:20px; top:0px;
  width:799px; height:8px; z-index:1;
  }
div#dragBar {
  position:absolute; left:0px; top:0px;
  width:20px; height:10px; z-index:1;
  background: url("images/track.gif") #336 repeat
  }  
div#left { position:absolute; left:0; top:0; z-index:2 }  
div#right { position:absolute; right:19px; top:0px; z-index:3 }
  
/* Styles for demo, not necessary for scrolling layers */  
