/* "Dies ist das CSS für die Gallery"    					 		   */

/* " Farben :     #  R  G  B										  " */
/* " 			  # FF FF FF 	->	white							  " */
/* "			  # 00 00 00	->	black							  " */
/* "			  # D9 E6 FF	->	hintergrund hellblau   			  " */

/* ------------------------ */
/* Generelle Formatierungen */
/* ------------------------ */




/* Generelle Gestaltung des "Body" zB. Hintergrund, Ränder */
body       {
			background-color: #D9E6FF;
			 }


/* Aufzählungen */
ul         {  font-weight: normal; 
			    font-family: Arial;
			    font-face: Arial, Helvetica, Sans-Serif;
			    line-height: 160%; 
			    margin-left: 5%;
			 }


/* Link-Formatierungen */
a          {
			 color: #003399;
			 font-family: Arial;
			 font-face: Arial, Helvetica, Sans-Serif;
			 font-size: 10 pt;										/* relativ zum Absatz */
			 font-weight: bold;
			 text-decoration: none

			 }
/* Hover bewirkt Stiländerung, wenn Maus über Link fährt */
a:hover    {
			 color: black; 
			 font-weight: bold;
			 font-size: 10 pt;
			 text-decoration: underline
			 text-decoration: overline
			 }


/* Trennlinie   */
hr         {
			 text-align: center;
			 }




/* statt % kann auch 18 pt geschrieben werden */
/* Überschrift 1   */
h1         {
			 font-family: Arial;
			 font-face: Arial, Helvetica, Sans-Serif; 
			 font-size: 18 pt; 
			 color: #ff3300; 
			 font-weight: bold; 
			 margin-bottom: 1;
			 text-align: center;
			 
			 }


/* Überschrift 2. Ordnung   */
h2         {
			 font-family: Arial;
			 font-face: Arial, Helvetica, Sans-Serif; 
			 font-size: 14pt; 
			 color: #FF3300; 
			 font-weight: bold; 
			 margin-top: 0;
			 margin-bottom: 30;
			 text-align: center;
			 
			 }


/* Überschrift 3. Ordnung */
h3         {
			 font-family: Arial;
			 font-face: Arial, Helvetica, Sans-Serif; 
			 font-size: 110%; 
			 color: #FF3300; 
			 font-weight: bold; 
			 margin-bottom: 14; 
			 }
/* Überschrift 4. Ordnung */
h4         {
			 font-family: Arial;
			 font-face: Arial, Helvetica, Sans-Serif; 
			 font-size: 100%; 
			 color: #FF3300; 
			 font-weight: bold; 
			 margin-bottom: 8;
			 }





/* Absatzformatierungen */
p          {
	font-weight: normal;
	font-family: Arial;
	font-face: Arial, Helvetica, Sans-Serif;
	line-height: 120%;
	margin-left: 3%;
	word-spacing: 0;
	margin-right: 3px;

			 }
/* Standard-Formatierung für normalen Text */
.text_normal {
			 font-family: Arial; 
			 font-face: Arial, Helvetica, Sans-Serif;
			 line-height: 120%; 
			 text-align: justify; 
			 word-spacing: 0; 
			 margin-left: 0; 
			 margin-right: 0; 
			 margin-top: 6; 
			 margin-bottom: 6; 
			 }








/* ------------------------ */
/* Spezielle Formatierungen */
/* ------------------------ */



/* Zusatzinformationen unterhalb der Leiste - E-Mail */
.footnote {
			 font-size: 8 pt;
			 font-face: Arial, Helvetica, Sans-Serif;
			 font-weight: bold; 
			 line-height: 120%; 
			 text-align: center; 
			 word-spacing: 0;
			 margin-top: 40;
			 margin-bottom: 6;
			 }
			 
.footnote_link {
			 font-size: 6 pt;
			 font-face: Arial, Helvetica, Sans-Serif;
			 font-weight: normal; 
			 line-height: 120%; 
			 margin: 0;
			 text-align: center; 
			 word-spacing: 0;
			 }

			 
/* Tabellenformatierung */
			 

.tr1 {
	background : #B7D0FF;
	text-align: center;
}
.tr2 {
	background : #888888;
}
.tr3 {  }
.tr4 { text-align: left; }
.tr5 { text-align: right; }
.tr6 { border: 1px solid purple;background : silver }
.tr7 { border: 2px solid silver; }
.tr8 { border: 5px dashed black; }
.tr9 { border: 3px solid blue; padding: 3em;}
.tr10 { border: 5px double green; }
.tr11 { border: 1px solid orange; background : red}
.tr12 { border: 2px dotted red; }
.tr13 { border: 2px dotted blue; }
.tr14 { border: 2px dotted red; background : yellow}
.tr15 { border: 2px solid orange; }
.tr16 { border: 2px ridge red; }
