ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 37px 5px 0px 3px;
	list-style: none;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	width: 283px;
	height: 300px; /* height should be included to reserve visual space for the marquee */

	background-color: #fff;
	/*border: 1px solid #08084d;*/
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: normal;
	background-color: #fff; /* keep all text on a single line */

	/* optional styles for appearance */
	font: .9em Arial, Helvetica, sans-serif;
	padding: 3px 5px;
}

ul.marquee li h3 {font-weight: bold; color:#000; font-size: 13px; margin-left: -1px;}