/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
/* style for breaking news scrolling layers*/
div#holdnews	{ 
	position:relative; overflow:hidden;
	width:560px; height:203px; 
	z-index:200;
	
	}
div#wnnews	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:560px; height:203px; 
	clip:rect(0px, 560px, 203px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.contentnews { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:2; 
}

 