ul.marquee {
	/* required styles */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
	display:block;
	width:650px;
	float:left;

	height: 28px; /* 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 */
	padding:5px 5px;
}
ul.marquee li a{
	text-decoration:none;
	font-size:14px;
	color:#cd0000;
}
ul.marquee li strong{
	color:#000;
	padding:0 5px;
	margin:0 5px 0 0;
	font-weight:normal;
	border-right:1px solid #ccc;
}