@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: #636363;
   /* 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: 100%;
    margin-right: auto; 
    margin-left: auto;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    -webkit-animation: marquee 30s linear infinite;
    padding-bottom: 5px;
    padding-top: 5px;
}

.marquee:hover {
  animation-play-state: paused;
 -webkit-animation-play-state: paused;
}


