/* CSS Document */

/* Note: overflow:hidden prevents showing of scrollbars, 
	 necessary to prevent jump in Netscape 6 when scrollbars 
	 appear and disappear. Remove that spec if you need scrollbars. */

/* specs for scrolling layers  */
#hold	{
	position:relative;
	overflow:hidden;
	width:460px;
	height:55px;
	z-index:100;
	left: 0px;
	}
	
#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:460px; height:55px; 
	clip:rect(0px, 460px, 55px, 0px); 
	overflow:hidden;
	z-index:1; 
	}
	
/* for scrolling content */	
#lyr1	{ 
	position:absolute; 
	left:0; top:0; 
	z-index:1; 
	}	
