/* Formatierung von Tabellen-Zellen */
/* wird eingebunden mit <link rel=stylesheet type="text/css" href="formate.css"> */

td {font-size:9pt; font-family:Arial,sans-serif; }

/* font-family = Schriftart */
/* Arial,sans-serif = Schriftarten, Wert aenderbar */
/* font-size = Schriftgroesse */
/* 9pt = 9 Punkt, Wert aenderbar */

/* ------------------------------------------------------------------------------- */

/* Formatierung der Navigationsleiste in Blau */

div.nav {color: white; background-color: #0000FF; font-family: Times; } 

/* .nav ist im HTML-Text class="nav"                        */
/* color: white = Farbe des Textes ist weiß             */
/* background-color: #0000FF = blue = Hindergrund ist blau  */
/* font-family: Times = Schriftart                                 */
/* text-decoration:underline = Text unterstrichen */

table.nav { background-color: #0000FF;}
/* Hintergrund der Tabelle ist blau */

a.nav:link { font-size:10pt; color:white; text-decoration:none; background-color: #0000FF; font-weight:bold;}
a.nav:visited { font-size:10pt; color:white;  text-decoration:none; background-color: #0000FF;font-weight:bold;}
a.nav:active { font-size:10pt; color:white;  text-decoration:none; background-color: #0000FF;font-weight:bold;}

/* :link, :visited, :active = hiermit werden Sonderformate definiert */
/* der Unterstrich wurde jeweils ausgeschaltet  */

a.menu:link { text-decoration:none; }
a.menu:visited { text-decoration:none; }
a.menu:active { text-decoration:none; }



/*________________________________________________________*/

/* Formatierung der Navigationsleiste in Grün */

div.nav2 {color: white; background-color: #2e8b57; font-family: Times; } 

/* .nav2 ist im HTML-Text class="nav_g"                        */
/* color: white = Farbe des Textes ist weiß             */
/* background-color: #2e8b57 = seegreen = Hindergrund ist grün  */
/* font-family: Times = Schriftart                                 */
/* text-decoration:underline = Text unterstrichen */

table.nav2 { background-color: #2e8b57;}
/* Hintergrund der Tabelle ist grün */

a.nav2:link { font-size:10pt; color:white; text-decoration:none; background-color: #2e8b57; font-weight:bold;}
a.nav2:visited { font-size:10pt; color:white;  text-decoration:none; background-color: #2e8b57;font-weight:bold;}
a.nav2:active { font-size:10pt; color:white;  text-decoration:none; background-color: #2e8b57;font-weight:bold;}

/* :link, :visited, :active = hiermit werden Sonderformate definiert */
/* der Unterstrich wurde jeweils ausgeschaltet  */


/*________________________________________________________*/


/* Formatierung von Tabellen-Zellen */

td.training {font-size:12pt; font-family:Arial,sans-serif; }
/* .training ist im HTML-Text class="training"                        */
/* font-family = Schriftart */
/* Arial,sans-serif = Schriftarten, Wert aenderbar */
/* font-size = Schriftgroesse */
/* 12pt = 12 Punkt, Wert aenderbar */



/* ------------------------------------------------------------------------------- */

/* Formatierung von "schwarzen Links" */

a.black:link { color:black;  }
a.black:visited { color:black;  }
a.black:active { color:black;   }

/* --------------------------------------------------------------------------------- */
