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

	/* optional styles for appearance */
	width: 100%;
	height: 30px; /* height should be included to reserve visual space for the marquee */
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	text-align:center;
	display: block;
	white-space: nowrap; /* keep all text on a single line */

	/* optional styles for appearance */
	font: 13px Arial, Helvetica, sans-serif;
	color:#006;
	padding-top:7px;
	padding-left:3px;
}
ul.marquee li a {
	text-decoration:underline;
	font:Verdana, Geneva, sans-serif;
	font-size:13px;
	color:#006;
}
ul.marquee li a:hover {
	text-decoration:none;
}