/* 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:absolute; overflow:hidden; top:18px; left:24px;
	width:640px; height:248px; z-index:1000;
	border-width: 1px ;
	border-style:dashed;
	border-color: transparent;
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:639px; height:237px; 
	clip:rect(0px, 640px, 238px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1	{ 
	position:absolute; visibility:hidden; 
	left:0px; top:0px; 
	z-index:1; 
	border: none;
	}
.content {
	background-color: transparent;
}
/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar div { font-size:1px }
div#scrollbar { 
  position:absolute; left:0; top:237px;
  width:640px; height:11px;
  font-size:1px; z-index:2
  }
div#track { 
  position:absolute; left:12px; top:0;
  width:616px; height:11px; z-index:1;
  background-color:transparent;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:0px; height:9px; z-index:1;
  background-color:  #eef
  }  
div#left { position:absolute; left:0; top:0; z-index:2 }  
div#right { position:absolute; right:0; top:0; z-index:3 }
 
