<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {margin:0; padding:0;}
ul.marquee {
	/* required styles */
	
	padding: 0px;
	margin-top: 30px;
	margin-left: 0px;
	list-style: none;
	position: relative;
	overflow: hidden;

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

	background-color: none;
	border: none;
}

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: 13px Tahoma, Helvetica, sans-serif;
	
}</pre></body></html>