ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 2;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */

	height: 24px; /* Same as container height */
	width:100%


}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	padding-right: 2px;
	display: block;
	white-space: nowrap; /* keep all text on a single line */

	/* optional styles for appearance */


}