
/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/

div#hold	{ 
	position:relative; overflow:hidden;
	width:720px; height:275px; 
  	z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:720px; height:275px; 
	clip:rect(0px, 720px, 275px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1;
	padding-right:20px;
	}


/* Style for scrollbar /*/
/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; 
  text-align:center;
	left:0; 
	top:0;
	width:7px; 
	height:275px;  
	z-index:1;
  }
div#track { 
  position:absolute; left:0px; top:11px;
  	margin-left:1px;
  	background-color:#5e5a54;
  width:15px; height:250px;
  z-index:1;
  }
div#dragBar {
  position:absolute;
	top:1px;
	bottom:1px;
	margin-left:-1px;
  width:15px; height:18px;
  background-color:#FFFFFF;
  z-index:10;
  }  
	
div#up { 
	position:absolute;
	text-align: left;
	left:0; 
	top:0; 
	z-index:2;
}  

div#down { 
	position:absolute;
	text-align:left;
	left:0;
	bottom:0; 
	z-index:3 
}  


