ul.marquee {
	/* required styles */
	display: block;

	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 482px;
	margin:auto;
	height: 30px; /* height should be included to reserve visual space for the marquee */

	background-color: #B97070;
	
}

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

	/* optional styles for appearance */
	font: 10pt Verdana, Arial, Helvetica, sans-serif;
	color: white;
	font-weight:bold;
	padding: 5px 5px;
}

ul.marquee a {
	color: white;
	text-decoration: none;
}