/* 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;
	magin-top:0px;
	width:520px; height:65px; z-index:100;
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:520px; height:56px; 
	clip:rect(0px, 520px, 56px, 0px); 
	overflow:hidden;
	z-index:1; 
	}
div#lyr1	{ 
	position:absolute; visibility:hidden; 
	left:0px; top:0px; 
	z-index:1; 
	}
#lyr1 img{padding-left:20px}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:absolute; margin-left:0px; margin-top:60px;
  width:520px; height:7px;
  font-size:1px; z-index:2;
  }
div#track { 
  position:absolute; margin-left:0px; margin-top:0px;
  width:520px; height:3px; z-index:1;
  background:#999 repeat
  }
div#dragBar {
  position:absolute; margin-left:0px; margin-top:0px;
  width:14px; height:7px; z-index:1;
  background-color:#666
  }  
div#left { position:absolute; left:0; top:0; z-index:2 }  
div#right { position:absolute; right:0; top:0; z-index:3 }
  
