a:hover {
 text-decoration: underline;
}
.arot {
 font-family: Arial;
 font-size: 20px;
 color: #990000;
 text-decoration:none;
}
.ablau {
 font-family: Arial;
 font-size: 26px;
 font-weight: bold;
 color: #3366ff;
 text-decoration:none;
}
.agrau {
 font-family: Arial;
 font-size: 12px;
 color: #646464;
 text-decoration:none;
}
.agraus {
 font-family: Arial;
 font-size: 10px;
 color: #646464;
 text-decoration:none;
}
.agraum {
 font-family: Arial;
 font-size: 13px;
 color: #0000cc;
 text-decoration:none;
}
.aschw {
 font-family: Arial;
 font-size: 12px;
 color: #000000;
 text-decoration:none;
}
.aschws {
 font-family: Arial;
 font-size: 10px;
 color: #000000;
 text-decoration:none;
}
.aschwg {
 font-family: Arial;
 font-size: 11px;
 color: #000000;
 text-decoration:none;
}
.acyan {
	font-family: Arial;
	font-size: 12px;
	color: #339999;
	text-decoration:none;
}
.textrot {
 font-family: Arial;
 font-size: 12px;
 color: #990000;
}
p {
 font-family: Arial;
 font-size: 12px;
 color: #000000;
}
.text {
 font-family: Arial;
 font-size: 12px;
 color: #000000;
}
.txtgb {
	font-family: Arial;
	font-size: 12px;
	color: #646464;
	text-decoration:none;
	font-weight : bold;
}
.p_text {
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	line-height : 160%;
}
.arotb {
 font-family: Arial;
 font-size: 12px;
 font-weight: bold;
 color: #990000;
 text-decoration: none;
}
.textl {
 font-family: Arial;
 font-size: 14px;
 color: #000000;
}
.texts {
 font-family: Arial;
 font-size: 10px;
 color: #000000;
}
.textg {
 font-family: Arial;
 font-size: 16px;
 color: #000000;
}
.textgrau {
 font-family: Arial;
 font-size: 12px;
 color: #646464;
}
.textrotm {
 font-family: Arial;
 font-size: 11px;
 color: #990000;
}
.agr {
 font-family: Arial;
 font-size: 16px;
 color: #339999;
}
.asw {
 font-family: Arial;
 font-size: 16px;
 color: #000000;
}
.asv {
 font-family: Arial;
 font-size: 20px;
 color: #000000;
}
.asz {
 font-family: Arial;
 font-size: 20px;
 font-weight: bold;
 color: #000000;
}
.arotg {
 font-family: Arial;
 font-size: 30px;
 font-weight: bold;
 color: #ff0000;
 text-decoration:none;
}
.marquee {
		max-width: 100vw; /* iOS braucht das */
		white-space: nowrap;
		overflow: hidden;
		/* hier evtl. noch font-size, color usw. */
	}

.marquee span {
		display: inline-block;
		padding-left: 100%;
		animation: marquee 10s linear infinite;
	}

	/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
	.marquee span:hover {
		animation-play-state: paused 
	}

	/* Make it move */
	@keyframes marquee {
		0%   { transform: translateX(0); }
		100% { transform: translateX(-100%); }
	}