body, p a{
        background-color:black;
        color: #A8A8A8;
        font-family: Verdana;
        font-size: small;
        min-width: 10em; /* Mindestbreite verhindert Umbruch und Anzeigefehler in modernen Browsern */
}

html>body h1 {
        /*border-color: gray;  Farbangleichung an den Internet Explorer */
}

html>body img{
         width:99.8%;
         
    -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
   border-radius: 18px;
}

#fotoslider{
  animation: slider ease-in-out 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: slider ease-in-out 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: slider ease-in-out 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: slider ease-in-out 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: slider ease-in-out 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;

}

@keyframes slider{
  0% {
    transform:  translate(0px,-600px)  scaleX(0.10) scaleY(0.10) ;
  }
  100% {
    transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes slider{
  0% {
    -moz-transform:  translate(0px,-600px)  scaleX(0.10) scaleY(0.10) ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes slider {
  0% {
    -webkit-transform:  translate(0px,-600px)  scaleX(0.10) scaleY(0.10) ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes slider {
  0% {
    -o-transform:  translate(0px,-600px)  scaleX(0.10) scaleY(0.10) ;
  }
  100% {
    -o-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes slider {
  0% {
    -ms-transform:  translate(0px,-600px)  scaleX(0.10) scaleY(0.10) ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}