@media screen  /* other media: use standards */
{
  body,a,p,li,b,table,h3,h4,h5 { font-family:Arial,sans-serif; font-style:normal; } 

  /* normal text outside any block (do not use, but instead always in paragraph or other block */
  body { font-size:11px; background-image:url(bilder/gleis1.gif); color:#90FF90; } 

  /* paragraph+bold+italics+list */
  p,b,i,li,table { font-size:11px; color:#90FF90; } 

  /* img always without frame (border) and vertically middle */
  img { border-style:none; vertical-align:middle; }

  /* something centered (ex <center> or align="center") 
     Anm.: Dies ist nicht korrekt um eine darin liegende tabelle zu zentrieren 
     (MSIE6 macht es dennoch und es wird im WWW oft -falsch- als korrektes Beispiel genannt) 
     Korrekt ist die Definition mit den margins fuer table. 
     Dann kann das div um die Tabelle wegfallen. 
     Es wird aber hier weiterhin genutzt zum zentrieren in den Tabellenzellen. */
  div.center { text-align:center; }
  table { margin-left:auto; margin-right:auto }

  /* a (links) */
  a:link { font-size:11px; color:#FFFFFF; } 
  a:visited { font-size:11px; color:#FFFF00; } 
  a:hover { font-size:11px; color:#C82222; } 
  a:active { font-size:11px; color:#FF6060; } 
  a:focus { font-size:11px; color:#F01111; } 
}
