/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 

div#hold	{ 
	position:relative; overflow:hidden;
	width:280px; height:200px; 
  z-index:100; 
	}
*/
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:267px; height:337px; 
	clip:rect(0px, 267px, 350px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	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:427px; top:94px;
  width:12px; height:337px; 
  font-size:1px; z-index:1;
	display: none;
  }
div#track { 
  position:absolute; left:0; top:0;
  width:12px; height:337px;
  background: url("../_common.images/scroll.gif") #BAC2B6 repeat;
  z-index:1;
  }
div#dragBar {
  position:absolute; left:0; top:0;
  width:12px; height:26px;
  background: url(../_common.images/track.gif) no-repeat;
  z-index:1;
  } 