﻿ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0 21%;
	list-style: none;
	line-height: 1;
	position:  absolute;
	overflow: hidden;

	/* optional styles for appearance */
	width: 750px;
	height: 35px; /* height should be included to reserve visual space for the marquee */
	color:white;
	
}


ul.marquee:hover {border-bottom: 1px #ff0082 solid}

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:27px "Times New Roman", Times, serif;
	font-style:italic;
	padding: 3px 5px;
	font-weight:normal;
}
ul.marquee li a, ul.marquee li a:visited, ul.marquee li a:active {
	color: #d4bcbc;
	text-decoration: none;
}
ul.marquee li a:hover {
	color: #fff;
}
