/* DATEI: formate.css */

/* Es folgen die Style-Definitionen */
/* Unterhalb jedes Befehls steht eine Kurzerklaerung */



body 
{ 
  margin-top:10px; 
  margin-bottom:10px; 
  background-image:url(./images/strand.gif);  
  background-attachment:fixed;  
}
  /* margin-top = Abstand zwischen Fensterrand und Inhalt oben */
  /* margin-bottom = Abstand zwischen Fensterrand und Inhalt unten */
  /* 10px = 10 Pixel */
  /* background-image = Hintergrundbild des sichtbaren Bereichs */
  /* url(../images/background.gif) = Pfad und Name der Bilddatei */
  /* background-attachment = Eigenschaft des Hintergrundes */
  /* fixed = fest, scrollt nicht mit */

p,h1,h2,h3,h4,ul,ol,li,div,td,th,address,blockquote,nobr,b,i
{ 
  font-family:Verdana,sans-serif; 
  color:black; 
}
  /* font-family = Schriftart fuer Textelemente */
  /* Verdana,sans-serif = Verdana und serifenlose Schrift */
  /* color = Schriftfarbe */
  /* black = schwarz */

p,blockquote 
{ 
  alignment:justify 
}
  /* alignment = Ausrichtung von Textelemente */
  /* justify = als Blocksatz ausrichten */
  
p,blockquote 
{ 
  text-align:justify 
}  
  /* text-align = Ausrichtung von Textelemente */
  /* justify = als Blocksatz ausrichten */

p,div,td,li,caption,ul,ol 
{ 
  font-size:12px;
  font-weight:500; 
 	line-height:16px;
}
  /* font-size = Schriftgröße */
  /* 12px = 12 Pixel */
  /* font-weight = Schriftgewicht/Fettigkeitsgrad der Schrift */
  /* 500 = mittel */
  /* line-height = Zeilenhöhe */
  /* 14px = 14 Pixel */


h1
{
  font-size:20px;
  font-weight:700; 
} 
  /* font-size = Schriftgröße */
  /* 20px = 20 Pixel */
  /* font-weight = Schriftgewicht/Fettigkeitsgrad der Schrift */
  /* 700 = mittel dick */


h2,th
{
  font-size:14px;
  font-weight:600; 
} 
  /* font-size = Schriftgröße */
  /* 14px = 14 Pixel */
  /* font-weight = Schriftgewicht/Fettigkeitsgrad der Schrift */
  /* 600 = mittel dick */
 
h3
{
  font-size:12px;
  font-weight:600; 
} 
  /* font-size = Schriftgröße */
  /* 12px = 12 Pixel */
  /* font-weight = Schriftgewicht/Fettigkeitsgrad der Schrift */
  /* 600 = mittel dick */
 
/*a {   text-decoration:none; }*/
  /* text-decoration = Textdekoration */
  /* none = normal ( keine Textdekoration ) */
  
  
a:link 
{ 
  color:#000080;
}
  /* Pseudo-Format für einen Verweis */
  /* color = Farbe */
  /* #000080 = dunkelblau */ 
  
a:visited 
{ 
  color:#000080; 
}
  /* Pseudo-Format für einen schon mal angeklickten (besuchten) Verweis */
  /* color = Farbe */
  /* #000080 = dunkelblau */ 
  
a:active 
{ 
  color:#F21122;
} 
  /* Pseudo-Format für einen gerade angeklickten (aktiven) Verweis */
  /* color = Farbe */
  /* #F21122 = samtrot */  
  
th,td
{
  vertical-align:top;
  alignment:left;
}
  /* vertical-align = Vertikale Ausrichtung */
  /* top = obenbündig */
  /* alignment = Horizontale Ausrichtung */
  /* left = linksbündig */
  
.imagetitle 
{
  font-size:x-small;
}  
  /* Format-Unterklasse für Bildunterschriften */
  /* font-size = Schriftgröße */
  /* x-small = sehr klein */
 
.tablepoint
{
  font-weight:600; 
} 
  /* Format-Unterklasse für wichtige Tabelleneinträge */
  /* font-weight = Schriftgewicht/Fettigkeitsgrad der Schrift */
  /* 600 = mittel dick */
