ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
float:right; margin-top:0px; margin-right:7px;
	/* optional styles for appearance */
	width: 278px;
	height: 20px; /* height should be included to reserve visual space for the marquee */

	background-color: #5A2458;
	border: 1px solid #D6C8D5;
}

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-family:Tahoma,Arial,Helvetica,sans-serif;
	font-size:10px; font-weight:bold;
	color:#FFFFFF;
	padding: 4px 5px 0px 5px;
}



.marquee a:link {   color:#FFF; text-decoration:underline;}
.marquee a:visited {  color:#FFF; text-decoration:underline;}
.marquee a:active {   color:#FFF; text-decoration:underline;}
.marquee a:hover {  color:#FFF; text-decoration:none;}


