div#mqq ul.marquee {
	/* required styles */
	display: block;
	padding: 1;
	margin: 0 0 15px;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;

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

	background-color: #f5f5f5;
	border: 0px;
}

div#mqq 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 Arial, Helvetica, sans-serif;
	padding: 8px 0 0 15px;
	margin: 0 0 0 10px;
	border-left: solid 15px #cbf01c;
}