ul.marquee {
	/* required styles */
	display: block;
	padding-bottom: 0;
	padding-top: 0;
	padding-left: 0;
	padding-right:30px;
	margin-bottom: 0;
	margin-top: 0;
	margin-left: 0;
	margin-right:30px;
	list-style: none;
	line-height: 1;
	position: relative; 
	overflow: hidden; float:right;
	/* optional styles for appearance */
	width: 560px;
	height: 30px; /* height should be included to reserve visual space for the marquee */

}

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 */
	
	padding: 3px 5px;
}