ul.marquee {
	/* required styles */
	display: block;
	padding:0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
	border:1px solid #DDD;
	/* optional styles for appearance  */
	width: 680px; 
	height:60px; /*height should be included to reserve visual space for the marquee */

	background-color: #FFFFFF;
}

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

	/* optional styles for appearance */
	color:#333333;
	font: 11px Verdana, Geneva, sans-serif;
}

ul.marquee li a {
	color:#333333;
	font: 11px Verdana, Geneva, sans-serif;
	text-decoration:none;
}

ul.marquee li a:hover {
	color:#F60;
}

