/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold, div#hold2, div#hold3	{ 
	position:relative; overflow:hidden;
	z-index:100; 
	}
div#wn, div#wn2, div#wn3	{ 
	position:absolute; 
	left:0px; top:0px; 
	overflow:hidden;	
	z-index:1; 
	}
div.scrollcontent { 
	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, div#scrollbar2, div#scrollbar3 { 
  position:relative; left:0; top:0;
  width:9px; 
  font-size:1px; z-index:1;
  }
div#track, div#track2, div#track3 { 
  position:absolute; left:5; top:10px;
  width:11px;
  background: url("../images/scroll-tile.gif") repeat-y 3px;
  z-index:1;
  }
div#dragBar, div#dragBar2, div#dragBar3 {
  position:absolute; left:1px; top:1px;
  width:8px; height:20px;
  background: url("../images/drag-tile.gif") repeat-y 1px;
  z-index:1;
  }  
div#up, div#up2, div#up3 { position:absolute; left:0; top:0; z-index:2 }  
div#down, div#down2, div#down3 { position:absolute; left:0; bottom:0; z-index:3 }  
