/* Laufschriftdefinition über "@keyframes" wird nicht von allen alten Browsern unterstützt. Achtung auch IE11 will speziellen Code*/
@keyframes marquee       {
                         from   {text-indent: 100%}                          /*Es darf nicht 0% statt from verwendet werden*/
                         to     {text-indent: 0%}                            /*dito für 100% für to. IE11 wertet dann animation falsch aus. Rest funktioniert trotzdem*/
                         }
@-webkit-keyframes marquee{
                         from   {text-indent: 100%}
                         to     {text-indent: 0%}
                         }
.marquee                 {
                         position:fixed;
                         left:1px;
                         right:1px;
                         bottom:5%;
                         width: 100%;
                         margin: auto;
                         padding: 2px;
                         overflow: hidden;
                         white-space: nowrap;
                         border: none 1px #CCCCCC;
                         background-color:transparent;
                         z-index:+5;
                         -webkit-animation: marquee 10s linear infinite;
                         animation:marquee 10s linear infinite;2;

                         }
.marquee:hover           {animation-play-state: paused; -webkit-animation-play-state: paused; }
/* bugfix für ältere Webkit-Browser */
@-webkit-keyframes bugfix {from { padding: 0;}to {padding: 0;}}
/* Ende Laufschriftdefinition */