ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 18px;
	position: relative;
	overflow: hidden;
	/* optional styles for appearance */
	width: 100%;
	height: 45px; /* height should be included to reserve visual space for the marquee */

}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;

	/* optional styles for appearance */
	color:#FFFFFF; 
	padding:5px; 
	font-family: Segoe Print; 
	font-size:11px;
	text-align:left;
}

