/* Mini-CSS */

/* Generelle Darstellung */
BODY
{
 color: black;
 /* "seashell" ist nicht CSS-Standard */
 background-color: #FFF5EE;
 font-family: arial, verdana, sans-serif;
 /* Blocksatz */
 text-align: justify; 
}

/* Bilder nie mit Rahmen */
IMG { border: 0px; }

/* Tabelle ohne und mit Rahmen */
TABLE.leer
{
 width: 100%;
 border-style: none;
}

TABLE.leer60
{
 width: 60%;
 border-style: none;
}

TABLE.rahmen
{
 width: 100%;
 border-style: solid;
 border-color: black;
 border-width: 1px;
}

/* Zellen in Tabellen */
/* Standardfall */
TD
{
 text-align: left; 
 vertical-align: top;
}

/* Blocksatz mit Rahmen für "normale" Felder in der Haupttabelle */
/* Feldbezeichnung */
TD.feld
{
 width: 20%;
 text-align: left;
 vertical-align: top;
 border-style: solid;
 border-color: black;
 border-width: 1px;
 padding: 3px 5px;
}

/* Feldinhalt */
TD.block
{
 width: 80%;
 text-align: justify;
 vertical-align: top;
 border-style: solid;
 border-color: black;
 border-width: 1px;
 padding: 3px 5px;
}

/* halbe Feldbreite */
TD.halbblock
{
 width: 40%;
 text-align: justify;
 vertical-align: top;
 border-style: solid;
 border-color: black;
 border-width: 1px;
 padding: 3px 5px;
}

/* oben links  und rechts, ohne Rahmen */
TD.olinks
{
 text-align: left; 
 vertical-align: top;
}

TD.orechts
{
 text-align: right; 
 vertical-align: top;
}

/* unten links  und rechts, ohne Rahmen */
TD.ulinks
{
 text-align: left; 
 vertical-align: bottom;
}

TD.urechts
{
 text-align: right; 
 vertical-align: bottom;
}

/* Unter- bzw. durchstreichen sicherstellen */
INS { text-decoration: underline; }
DEL { text-decoration: line-through; }

/*
  Links:
 "hover" nach "link" und "visited"
*/
A:link     { color: blue; }
A:visited  { color: red; }
A:hover    { color: orange; }
A:active   { color: orange; }

/* "nackter" Link für oben rechts */
A.nackt:link      { color: black; text-decoration: none; }
A.nackt:visited   { color: red;   text-decoration: none; }
A.nackt:hover     { color: black; text-decoration: none; }
A.nackt:active    { color: black; text-decoration: none; }

