.marqueebox{
	width: 100%;
	height: 60px; /* height should be included to reserve visual space for the marquee */
	background-color: #408401;
	}

ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	height: 60px;
	position: relative;
	overflow: hidden;
	/* optional styles for appearance */
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	display: block;
	white-space: nowrap;
	font-size: 15px;
	color: #FFF;
	line-height: 60px;
}

ul.marquee li a {
	color: #FFF;
	text-decoration: none;	
}
ul.marquee li a:hover {
	color: #DBB45D;		
}