/* 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:581px; height:154px; z-index:100;
	text-align:center;
	}
div#hold2	{ 
	position:relative; overflow:hidden;
	width:581px; height:194px; z-index:100;
	text-align:center;
	}
div#holdNew	{ 
	position:relative; overflow:hidden;
	width:154px; height:451px; z-index:100;
	text-align:center;
	}
div#wnNew	{ 
	position:absolute; 
	left:5px; top:-1px; 
	width:92px; height:451px; 
	clip:rect(0px, 92px, 451px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#wn	{ 
	position:absolute; 
	left:5px; top:-1px; 
	width:581px; height:194px; 
	clip:rect(0px, 581px, 194px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyrNew	{ 
	position:absolute;
	visibility:hidden; 
	left:0px; top:0px; 
	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:70px;
  width:184px; height:11px;
  font-size:1px; z-index:2
  }
div#track { 
  position:absolute; left:12px; top:0;
  width:160px; height:11px; z-index:1;
  background: url("/images/nav/track.gif") #336 repeat
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:20px; height:9px; z-index:1;
  background-color:#ceced6
  }  
div#left { left:0; top:0; z-index:2 }  
div#right { right:0; top:0; z-index:3 }
  


