BODY 
{
  background-color: black;
}

BODY.Suite
{  background-image: url(http://www.rgcontrol.de/medien/suite_medien/back.gif);
  background-repeat: repeat-y;
}

/* randeinstellungen im body würden dazu führen, dass die tabellenbreite in % nur vom IE auf den   verbleibenden bildschirmbereich angepasst wird. zur verschiebung einer tabelle muß daher der   div verwednet werden. */ 

div 
{
  margin-left: 12%; 			/* Ränder für div Tag im html-Dokument */
  margin-right: 3%;
}

p, h1, h2, h3, h4, h5, h6, ol, ul 	/* font gängiger Text-Tags einstellen */ 
{
  font-family: Arial;
  color: yellow;
}

a 
{
  text-decoration: none; 		/* entfernt unterstreichung bei link´s (anchor) */
} 

a:link 
{
  color: blue; 				/* a mit Pseudo-Element link auf blau - blaue Link´s - */
}

a:visited 
{
  color: blue; 				/* besuchte Link´s sind auch blau */
}

h1 
{
  font-size: 2em; 			/* Größe der Überschrift H1 anpassen */
}

h2 
{
  font-size: 1.2em; 			/* Größe der Überschrift H2 anpassen */
}

p 
{
  font-size: 1em; 			/* Größe p-Tag anpassen */
}

h1.kopf 
{
  font-size: 1.6em; 			/* H1 mit class-Attribut kopf - in html einsetzbar - */
  margin-top: 0pt;
  margin-left: 0pt;
  margin-right: 0pt;
  margin-bottom: 0pt;
}

h1.inhalt 				/* H1 mit class-Attribut inhalt - in html einsetzbar - */
{
  font-size: 1.3em;
  background-color: blue;
}

p.tab 					/* p mit class-Attribut tab - in html einsetzbar - */
{
  font-size: 1em;
  margin-left: 15px;
  margin-top: 1px;
  margin-right: 1px;
  margin-bottom: 1px;
} 
