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

	/* optional styles for appearance */
	width: 100%;
	height: 50px; /* 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: 20px Verdana, Geneva, sans-serif;
	color:#900;
	padding-top:10px;
	padding-left:3px;
}
ul.marquee li a {
	text-decoration:underline;
	font:Verdana, Geneva, sans-serif;
	font-size:20px;
	color:#003;
}
ul.marquee li a:hover {
	text-decoration:none;
	color:#900;
}
