
ul.marquee2 {
	/* required styles */
	display: block;
	margin-top:0px;
	margin-left:0px;
	list-style: none;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width:730px;
	height:40px; /* height should be included to reserve visual space for the marquee */	

}

ul.marquee2 li {
	/* required styles */
	position: absolute;
	top: -999em;
	display: block;
	white-space: nowrap; /* keep all text on a single line */
	
	/* optional styles for appearance */
	font-family:Verdana;
	color:#FFF;
	font-size:20px;
	
}