/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 
	position:relative; overflow:hidden;
	width:300px; height:200px; 
  z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:20px; top:15px; 
	width:275px; height:175px; 
	clip:rect(0px, 300px, 180px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; 
	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;
	width:15px;
	font-size:1px;
	z-index: 2;
	height: 180;
	left: -1px;


  }
div#track { 

  position:absolute; left:0px; top:12px;
  width:11px; height:161px;
  background: #CECED6;
  z-index:1
  }
div#dragBar {
  position:absolute; left:1px; top:20px;
  width:9px; height:20px;
  background-color:#A4A9A9;
  z-index:1;
  }  
div#up { position:absolute; z-index:2 }  
div#down {
	position:absolute;
	bottom:0;
	z-index:3;
}  



/* Styles for demo, not necessary for scrolling layers */  
/*body  { overflow:hidden; text-align:center }*/
  
a img { border:none }	
div.content { text-align:left }a:hover {
	color: #33FF00;
}
