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

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:absolute; left:0; top:360px;
  width:100%; height:10px;
  font-size:1px; z-index:2
  }
div#track {
	position: absolute;
	left: 16px;
	top: 2;
	width: 98%;
	height: 10px;
	z-index: 1;
	background: transparent url(scroll-track.png) repeat-y right;
	/* background: url(bg-c-o50.png); */
}
div#dragBar {
	position: absolute;
	left: 1px;
	top: 2px;
	width: 20px;
	height: 10px;
	z-index: 1;
	background: transparent url(bg-c-o75.png) repeat;
	border-top: 1px solid #5c5b5c;
	border-left: 1px solid #5c5b5c;
	border-right: 1px solid #5c5b5c;
	border-bottom: 1px solid #5c5b5c;
}  
div#left { position:absolute; left:0; top:0; z-index:2 }  
div#right { position:absolute; right:0; top:0; z-index:3 }

img.scrolll {
	background: url(scroll-l.png) no-repeat center;
	width: 16px;
	height: 16px;
	border: 0px;
}
img.scrollr {
	background: url(scroll-r.png) no-repeat center;
	width: 16px;
	height: 16px;
	border: 0px;
}
  

