ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 630px;
	height: 16px; /* height should be included to reserve visual space for the marquee */
	text-align:right;
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap;
	
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:9px;
	text-decoration:none;
	padding: 1px 5px;
	text-align:right;
}
