/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 
	position:relative; overflow:hidden;
	width:390px; height:440px;
	left:0px; top:0px;  
  	z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:390px; height:440px; 
	clip:rect(0px, 390px, 440px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
	color: #7E6766;
	padding-left: 10px;
}

/* 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:14px; height:485px; 
  z-index:1;
}
div#track { 
  position:absolute; left:0; top:15px;
  width:7px; height:440px;
  z-index:1;
  /*background-image: url(../images/core/scroll-bg.jpg);
  background-position: center top;
  background-repeat: repeat-y;*/
  background-color: #BFAEB4;
}
div#dragBar {
  position:absolute; left:0; top:0px;
  width:5px; height:20px;
  /*background-color:#A31929;   RED */
  background-color:#ffffff;
  z-index:1;
}  
div#up { position:absolute; left:-4px; top:0; z-index:2 }  
div#down { position:absolute; left:-4px; bottom:0; z-index:3; top: 455px; }  
