/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 
	position:relative; overflow:hidden;
	width:450px; height:400px; 
  z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:450px; height:400px; 
	clip:rect(0px, 450px, 400px, 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:relative; left:0; top:0;
  width:17px; height:400px; 
  font-size:1px; z-index:1;
  }
div#track {
	position:absolute;
	left:0;
	top:17px;
	width:17px;
	height:363px;
	background: #FFFFFF;
	z-index:1;
	border: 1px solid #395E38;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:15px; height:363px;
  background-color:#7EA880;
  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 }  

/* Styles for demo, not necessary for scrolling layers */  
.scroll_border { border: 1px solid #395E38; }
div.content {
	text-align:left;
	padding-right: 10px;
}


