/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold2{
	position:relative; overflow:hidden;
	width:320px; height:275px; 
	z-index:100; 
	}
div#wn2{
	position:absolute; 
	left:0px; top:0px; 
	width:320px; height:275px; 
	clip:rect(0px, 320px, 275px, 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#up2{
	position:absolute; left:15px; top:0; z-index:2
	}  
div#down2{
	position:absolute; left:15px; bottom:0px; z-index:3
	}
/* Styles for demo, not necessary for scrolling layers */  
a img{
	border:none
	}
	
	
	div#hold3{
	position:relative; overflow:hidden;
	width:320px; height:310px; 
	z-index:100; 
	}
div#wn3{
	position:absolute; 
	left:0px; top:0px; 
	width:320px; height:310px; 
	clip:rect(0px, 320px, 310px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
/* Set small font-size or size/position of div's will be off in some browsers  */
div#up3{
	position:absolute; left:15px; top:0; z-index:2
	}  
div#down3{
	position:absolute; left:15px; bottom:0px; z-index:3
	}
