/* 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:556px;top: 5px; height:123px; z-index:100;
	border : 0px solid #BFBFBF;
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:5px; 
	width:556px; height:105px; 
	clip:rect(0px, 556px, 105px, 0px); 
	overflow:hidden;	
	z-index:1; 
	border : 0px solid #ff0000;
	}
div#lyr1	{ 
	position:absolute; visibility:hidden; 
	left:0px; top:0px; 
	height: 100px;
	z-index:1; 
        border : 0px solid #000000;
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; left:0; top:0px;
/*  width:435px; height:11px;*/
  font-size:1px; z-index:2
  }
div#track { 
  position:absolute; left:52px; top:0;
  width:30px; height:11px; z-index:1;border: 0px;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:40px; height:9px; z-index:1;
  }  

div#left  { position:relative; left:0px; top:0; z-index:2 }  
div#left1 { position:absolute; left:188px; top: 0px;; z-index:2 }  
div#left2 { position:absolute; left:200px; top: 0px;; z-index:2 }  
div#left3 { position:absolute; left:110px; top:0; z-index:2 }  

div#right  { position:relative; right:0px; top:0; z-index:3 }
div#right1 { position:absolute; right:172px; top: 0px; z-index:4 }
div#right2 { position:absolute; right:184px; top: 0px; z-index:4 }
div#right3 { position:absolute; right:200px; top:0; z-index:4 }
  
/* Styles for demo, not necessary for scrolling layers */  


