/* Stylesheet in CSS */

/****************************************************** Allgemeines ********************************************************************/

/* Body-Style: Schriftart, Hintergrundfarbe, */
body { font-family:century gothic; background-color:white; margin: 0; padding: 1em; min-width: 41em;}

/* Überschriften-Style: Schriftgröße, -art, -farbe */
h1 {font-size:30pt; font-family:century gothic; color:black}
h2 {font-size:16pt; font-family:century gothic; color:black}
h4 {font-size: 12pt; font-family:century gothic; color: gray; }

#hashtag{margin: 0em 0em 0em 0em;}

/* Style für einzelne Elemente: Absatz, Aufzählung, Tabelle. Schriftgröße, -art, -farbe */
p, ul, table {font-size:12pt; font-family:century gothic; color:black}

/****************************************************** Vorgeschrieben ********************************************************************/

/* Einzelne Wörter farbig markieren: 
<span style="color: Farbe in Hex ;"> Wort </span>
*/ 
/*Einzelne Saetze Schriftgroesse: 
<span style="font-size: Groesse pt;"> Wort </span> 

<span style="font-size: 10pt;"> Wort </span>
*/ 
/****************************************************** Verweise Allgemein ********************************************************************/

/* Style der Verweise: Kein Unterstrich, Schrift fett, Schriftfarbe, Hintergrundfarbe */
a:link{text-decoration:none;}
a:visited {text-decoration:none; color: black; background-color: #d2d2d2;}
a:hover {text-decoration:none; font-weight: bold; color:black; background-color: #d2d2d2;}
a:active {text-decoration:none; color: white; background-color: gray;} 

 /********************************************* Navigationsfenster  *****************************************************************************/

/* Style für Navigations- und Inhaltsbereich */
  ul#Navigation {
    font-size: 0.9em;
    float: left; width: 17em;
    margin: 0; padding: 0;
    border: 1px solid silver;
  }
  
  /* Listen-Style */
  ul#Navigation li {
    list-style: none;
    margin: 0; padding: 0.5em;
  }
  ul#Navigation a {
    display: block;
    padding: 0.2em;
    font-weight: bold;
  }
 
  /* Style für noch nicht besuchte Links */
  ul#Navigation a:link {
    text-decoration:none; color: black; background-color: #d2d2d2; border: 1px outset;
  }
  
  /* Style für bereits besuchte Links */
  ul#Navigation a:visited {
    text-decoration:none; color: black; background-color: #d2d2d2;
  }
  
  /* Style, wenn man mit der Maus über das Feld fährt */
  ul#Navigation a:hover {
    text-decoration:none; color:white; background-color: #a10000; border: 1px inset;
  }
  
  /* Style, während man klickt */
  ul#Navigation a:active {
    text-decoration:none; color: white; background-color: gray;
  }
  
/******************************************************* Inhaltsfenster *******************************************************************/

  /* Folgende Styles gelten nur für    div#Inhalt    !!!!!!!!! */
  /* Inhaltsfenster */
  div#Inhalt {
    margin: 0em 0em 1em 16em;
    padding: 0.4em 1em;
    border: 1px solid silver;
  }
  * html div#Inhalt {
    height: 1em;
  }
  
  div#Inhalt a:link {
    text-decoration:none;
	}
  
  div#Inhalt h2 { /* Überschrift im Inhaltsfenster */
    font-size: 1.3em;
    margin: 0.2em 0;
  }
  div#Inhalt p { /* Absätze im Inhaltsfenster */
    font-size: 1em;
    margin: 1em 0;
  }

 /************************************************************* Abgrenzung *************************************************************/
  
  /* Abgrenzung des Navigations- und Inhaltsfensters zu den Links */
    div#Trennung {
    clear: both;
    font-size: 0.1em;
    margin: 0; padding: 0.1em;
	border: 1px solid white;
  }

 /******************************************************* Fusszeile  *******************************************************************/
  
/* Fusszeile mit dem Copyright */
  div#Fusszeile {
    clear: both;
    font-size: 1em;
	font-weight: bold;
    margin: 0; padding: 0.1em;
    text-align: center;
	color: #a10000;
	border: 1px solid silver;
  }
  
   div#Fusszeile a {
    padding: 0.2em;
  }
  
  div#Fusszeile a:link {
    text-decoration:none;
	color:black;
	font-weight:bold;
	}

  div#Fusszeile a:visited {
    text-decoration:none;
	color:black;
	font-weight:bold;
	}
	
/************************************************* Status *************************************************************************/
	
/* div in Status */
  div#Ueberwachung{
	font-size: 14pt;
	font-weight: bold;
	color: black;
	background-color: red;
    margin: 0em 41em 0em 0em;
    padding: 0 1em;
    border: 3px outset silver;
	}
	
  div#Bereitschaft{
	font-size: 14pt;
	font-weight: bold;
	color: black;
	background-color: green;
    margin: 0em 42.5em 0em 0em;
    padding: 0 1em;
    border: 3px outset silver;
	} 