ul.marquee {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
	width: 800px;
	height: 26px; /* 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 */
	font-size: 12px;
	color: #a7a7a7;
}
ul.marquee li.first {
	top: auto;
}
ul.marquee span {
	color: #666;
	margin-right: 15px;
	width: 150px;
	display: block;
	float: left;
	text-align:right;
}
