ul.marquee_news{
	/* required styles */
	float:left;
	display: block;
	margin-top:-6px;
	margin-left:0px;
	list-style: none;
	position: relative;
	overflow: hidden;
	/* optional styles for appearance */
	min-width:600px;
	width:98%;
	height:20px; /* height should be included to reserve visual space for the marquee */
	line-height:20px;
	/*border:1px solid white;*/
	/*background:gold;*/
}

ul.marquee_news li {
	/* required styles */
	position: absolute;
	float:left;
	top: -999em;
	display: block;
	white-space: nowrap; /* keep all text on a single line */
	
	/* optional styles for appearance */
	height:20px; 
	line-height:20px;
	overflow:hidden;
}
