ul.marquee {
	/* required styles */
	display: block;
	padding: 3px;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
	border:1px solid #000000;
	/* optional styles for appearance */

	height: 26px; /* height should be included to reserve visual space for the marquee */
	color:white;
	background-color:#666666;
	-moz-border-radius:4px;
	background-image:url(../img/aaaa.png);

}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap; /* keep all text on a single line */
	padding:2px;
	/* optional styles for appearance */
	font: 20px Arial, Helvetica, sans-serif;
	
}