#marquee {
	width: 132px;
	height:132px;
	text-align: center;
	color: #855BAC;
	font-size: 12px;
	font-family: "Garamond", serif;
	overflow:hidden;
}

hr {
	border: 2px dotted lightgray;
}

.mqtransform {
	transform-origin: top center;
	animation-name: spotlight;
	animation-duration: 24s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.mqsection:hover .mqtransform{
	animation-play-state:paused;
}

@keyframes spotlight {
	0% { transform: translate(0, 0);}
	100% { transform: translate(0, -512px); }
}