/*ul.marquee{
	display:block;
	padding:0;
	margin:0;
	list-style:none;
	line-height:1;
	position:relative;
	overflow:hidden;
	width:600px;
	height:22px;
	}

ul.marquee li{
	position:absolute;
	top:-999em;
	left:0;
	display:block;
	white-space:nowrap;
	font:14px Arial,Helvetica,sans-serif;
	padding:3px 5px;
}*/

.marqueeBlock{
	width:90%;
	max-width:900px;
	max-height:20px;
	margin:0 auto;
	overflow:hidden;
	}

.marquee{
	margin-top:0;
	margin-bottom:0;
	padding-left:0;
	}

.marquee li{
	width:100%;
	list-style:none;
	white-space:nowrap;
	animation:marquee 20s linear infinite;
	}

.marquee li a{font-size:12px; color:#ededed;}

.marquee li:hover{
	-webkit-animation-play-state:paused;
	-moz-animation-play-state:paused;
	-o-animation-play-state:paused;
	animation-play-state:paused;
	}

@keyframes marquee{
	0%{margin-left:100%; transform:translateX(0%);}
	100%{margin-left:0; transform:translateX(-100%);}
	}
