#wrapper-marquee {
	height: 230px;
	position: relative;
	line-height: 20px;
	overflow: hidden;
	margin-top: 0px;
}
div.marquee {
	position: absolute;
	max-width: 100%;
	text-align: center;
	animation-name: marquee;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@keyframes marquee {
from {
	top: 100%;
}
to {
	top: -45em;
}
@-webkit-keyframes marquee{
	from {
		top: 100%;
	}
	to {
		top: -45em;
	}
}

@-moz-keyframes
marquee {from {
	top: 100%;
}
to {
	top: -45em;
}
}
}