/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 
	position:relative; overflow:hidden;
	width:283px; height:111px; 
	z-index:100;
	background-color:#EDEDED;
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:283px; height:111px; 
	clip:rect(0px, 283px, 111px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
}

/* Styles for demo, not necessary for scrolling layers */  
a img { border:none }

/* style for news scrolling layers*/
div#holdnews	{ 
	position:relative; overflow:hidden;
	width:283px; height:221px; 
	z-index:200;
	background-color:#EDEDED;
	}
div#wnnews	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:283px; height:221px; 
	clip:rect(0px, 283px, 221px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.contentnews { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:2; 
}


/* style for breaking news scrolling layers*/
div#holdforums	{ 
	position:relative; overflow:hidden;
	width:320px; height:100px; 
	z-index:200;

	}
div#wnforums	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:320px; height:100px; 
	clip:rect(0px, 320px, 100px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.contentforums { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:2; 
}

 