@charset "UTF-8";
/* CSS Document */

@-webkit-keyframes marquee {
 0%   { text-indent: 100% }
 100% { text-indent: -100% }
}
@keyframes marquee {
 0%   { text-indent: 100% }
 100% { text-indent: -100% }
}
.laufband_container{
	width: 100%;
	font-size: medium;
	color: #FFF;
	background-color: #C00;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	
	}
.marquee {
	width: 90%;
	max-width: 960px;
	padding: 10px;
	overflow: hidden;
	white-space: nowrap;
	animation: marquee 24s linear infinite;
	-webkit-animation: marquee 24s linear infinite;
	margin-right: auto;
	margin-left: auto;
}

.marquee:hover {
  animation-play-state: paused;
 -webkit-animation-play-state: paused;
}
/* MOBIL SHEETS +++++++++++++++++++++++++++++*/ 
@media (max-width:650px) {
}