/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{
	position:relative;
	overflow:hidden;
	width:840px;
	height:220px;
	left: 0px;
	top: 0px;
	float: left;
	}


div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:840px; height:220px; 
	clip: rect(0px 840px 220px 0px); 
	overflow:hidden;	
	}

div.content { 
	position:absolute; 
	left:0px; top:0px; 
	z-index:20; 
	text-align: justify;
	color: black;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	visibility: hidden;
	}

div.content2 { 
	position:absolute; 
	left:0px; top:0px; 
	z-index:20; 
	text-align: justify;
	color: white;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	visibility: hidden;
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative;
	top: 0px; 
  width:11px; height:220px; 
  font-size:1px; z-index:1;
	float: right;
  }
div#track {
	position:absolute;
	left:0px;
	top:12px;
	width:11px;
	height:176px;
	z-index:1;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:30px;
  background-color:#ceced6;
  z-index:1;
  }  
div#up { position:absolute; left:0; top:0; z-index:2 }  
div#down { position:absolute; left:0; bottom:0; z-index:3 }  
