ul.marquee {
	/* required styles */
	
	padding: 0px;
	margin-top: 30px;
	margin-left: 0px;
	list-style: none;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 1180px;
	height: 80px; /* height should be included to reserve visual space for the marquee */

	background-color: none;
	border: none;
	z-index: 5;
}

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