/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 

	position:absolute; overflow:hidden;
	width:390px; height:380px; 
	border:0px;
 
	}
div#wn	{
	position:absolute;
	left:2px;
	top:1px;
	width:390px;
	height:380px;
	/* clip:rect(0px, 390px, 0px, 390px);*/
	overflow:hidden;
	z-index:1;
	border:0px
	}
div.content {
	position:absolute;
	visibility:visible;
	left:0px;
	top:-4px;
	z-index:1;
	width: 360px;
	}

/* 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:378px; 
  font-size:2px; z-index:1;
  background-color: #cccccc;
  }
div#track { 

  position:absolute; left:2; top:2px;
  width:10px; height:380px;
  background: url("/images/buttons/track.gif") #ffffff repeat;
  z-index:1;

  }
div#dragBar {
	position:absolute;
	left:0px;
	top:0px;
	width:9px;
	height:-2px;
	background-color:#666666;
	z-index:1;
	
  }  
div#up { position:absolute; left:0px; top:-9px; z-index:1; }  
div#down {
	position:absolute;
	left:0px;
	bottom:1px;
	z-index:2;
	height: 0px;
	width: 10px;
}  
