<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul.marquee {
	/* required styles */
	display: block;
	display: block;
	padding: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 755px;
	height: 41px; /* height should be included to reserve visual space for the marquee */
	margin: 1px auto 0px auto;

	/*background-color: #f9f9f9;
	border: 1px solid #eeeeee;*/
}

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 */
	color: white;
	padding: 15px 5px 0px 5px;
}

ul.marquee a:link, ul.marquee a:visited, ul.marquee a:active {
  color: white;
  text-decoration: none;
  font-weight: bold;
  }

ul.marquee a:hover {
  color: #666666;
  text-decoration: underline;
  }
</pre></body></html>