/* 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	{

    text-align:justify;
	margin-top:160px;
	margin-left:10px; 
	margin-top:15px;
	position:relative; overflow:hidden;
	width:430px; height:400px; z-index:1; 
	}
div#wn	{ 

	position:absolute; 
	left:0px; top:0px; 
	width:400px; height:350px; 
	clip:auto;
	/*clip:rect(0px, 400px, 1000px, 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  */
/*left position*/
div#scrollbar { 

  position:absolute; left:420px; top:160px;
  width:11px; height:80px;
  font-size:1px; z-index:2;  
  }
/*12 pixels more than left position*/
div#track { 
  position:absolute; left:0px; top:9px;
  width:11px; height:70px; z-index:10;
  background: url("/images/nav/track.gif") black repeat;
  }
/*1 pixel more than left position*/
div#dragBar {
  position:absolute; left:0px; top:9px;
  width:9px; height:70px; z-index:10;
  background-color:#ccc;
  } 
  
div#scroll_left { position:absolute; left:1px; top:0px; z-index:2; }  
div#scroll_right { position:absolute; left:1px; top:81px; z-index:3; }
  /*
  div#scroll_left { position:absolute; left:420px; top:0px; z-index:2 }  
div#scroll_right { position:absolute; left:420px; top:93px; z-index:3 }
*/


