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

	/* optional styles for appearance */
	/*width: 100%;*/
	/*height: 24px;*/ /* height should be included to reserve visual space for the marquee */
	/*background-color: #000;
	border: 1px solid #08084d;
	margin-left: 1px;*/
/*}*/


ul.marquee {
    background-color: #345225;
    border: 1px solid : #345225;
    display: block;
    height: 31px;
    line-height: 1;
    list-style: none outside none;
    margin: 16px auto 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 1013px;
}

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

	/* optional styles for appearance */

	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
}