/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
#hold	{ 
	position:relative; overflow:hidden;
	width:380px; height:300px; 


	}
#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:380px; height:300px; 
	clip:rect(0px, 380px, 300px, 0px); 
	overflow:hidden;
	
 
	}
.content { 
	 position:absolute; visibility:hidden;
	left:0px; top:0px; 
	font-size: 9pt; 
	font-family: Times New Roman, Times, serif;
	
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; left:0; top:0;
  width:11px; height:310px; 
  font-size:1px;

  
  }
div#track { 
  position:absolute; left:0; top:12px;
  width:11px; height:286px;
  /*background: url("/images/track.gif") repeat;*/
  background-color: #a2a3a7;

  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:20px;
  background-color: #dfdfdf;

  }  
div#up { position:absolute; left:0; top:0; }  
div#down { position:absolute; left:0; bottom:0; }  


