/* CSS FÜR THOMASTIK-INFELD
	- soweit möglich auf die Modifikation von HTML-Elementen aufgebaut
	- in NS4 und IE4 tragbar
	- funktioniert auf dunkelgrauem Hintergrund, für helle Hintergründe 
	müssen die Farben geändert werden */
/* STANDARD */
P	{
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #CCCCCC;
	margin: 0px;
	}
/* ÜBERSCHRIFTEN */
H1, H2, H3, H4, H5, H6 {			/* global für überschriften (tags) */ 
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	color: #66CCFF;			/* Blau (153,204,255) */
	margin: 0pt;
	margin-top: 25px;
	margin-left: 0px; 
	margin-right: 5%;			/* wird von NS4 ignoriert */ 
	letter-spacing: 1pt; 		/* wird von NS4 ignoriert, IE4 untersützt keine prozentwerte */ 
	}
H1, H2	{
	font-weight: 800;
	}
H3, H5	{
	font-weight: bold;
	}
H1	{
	font-size: 18px;
	text-transform: uppercase;
	}
H2	{
	font-size: 16px;
	text-transform: uppercase;
	}
H3	{
	font-size: 16px;
	}
H4	{
	font-size: 13px;
	color: #FFFFFF;
	}
H5	{
	font-size: 11px;
	color: #FFFFFF; 	
	}
H6	{
	font-size: 11px;
	color: #FFFFFF;
	}
/* BESONDERE ANWENDUNGEN */
.tabelle	{				/* ohne Abstand oben, für tabellen */
	margin-top: 0pt;
	margin-bottom:0pt;
	}
.tabellewhite	{	
	color: #FFFFFF;			/* ohne Abstand oben, für tabellen */
	margin-top: 0pt;
	margin-bottom:0pt;
	}
.colortabelle	
	{				/* ohne Abstand oben, für tabellen */
	color: #66CCFF;
	margin-top: 0pt;
	margin-bottom:0pt;
	letter-spacing: 1pt; 
	}
.color 	{
	color: #66CCFF;
	letter-spacing: 1pt; 
	}
.colorsmall{
	font-size:12px;
	color: #CCCCCC;
	font-weight: normal;
	margin-bottom:0pt;
	letter-spacing: 0pt; 
	}
.colorbold{
	color: #66CCFF;
	font-weight: bold;
	margin-bottom:0pt;
	letter-spacing: 1pt; 
	}
.boldwhite{
	color: #FFFFFF;
	font-weight: bold;
	margin-bottom:0pt;
	letter-spacing: 1pt; 
	}
.colorboldpic{
	color: #66CCFF;
	font-weight: bold;
	margin-top:0pt;
	margin-bottom:0pt;
	margin-left:1%;
	letter-spacing: 1pt; 
	}
.colorboldtabelle{
	color: #66CCFF;
	margin-top: 0pt;
	margin-bottom:0pt;
	letter-spacing: 1pt; 
	}
.colorboldtabellebold
	{
	color: #66CCFF;
	font-weight: bold;
	margin-top: 0pt;
	margin-bottom:0pt;
	letter-spacing: 1pt; 
	}
.note 	{				/*kurze zeilen*/
	margin-right: 20%;
	color:#66CCFF;
	}
.italic 	{
	font-style: italic;
	color:#FFFFFF;			/*alles andere als weiss ist kursiv unleserlich*/
	}
.q	{
	margin: 0pt;
	margin-top: 0pt;
	margin-left: 0pt; 
	margin-bottom: 0pt;
	}
.bold	{
	font-weight:800;
	}
.standardfont	{
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
		}
.standardsize	{
	font-size: 12px;
	margin: 0pt;
	margin-left:2%;
		}
		/* DEKORATIONEN */
big	{				/*hier keine Größen definieren, da sie in den beiden Browsern exakt das Gegeteil bewirken*/
	font-weight: 600;
	}
small 	{				/*hier keine Größen definieren, da sie in den beiden Browsern exakt das Gegeteil bewirken*/
	color: #FFFFFF;
	}
em	{				/* der einzige tag, der vorhergehende verläßlich ausschaltet*/
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;	
	margin-left: 2%;
	margin: 0pt;
	color: #FFFFFF;			/*alles andere als weiss ist kursiv unleserlich*/
	font-style: normal;
	}
address	{
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;			/*italic ist default*/
	font-weight: 700;
	font-size: 10px;
	color: #CCCCCC;
	}
/* LISTEN */
		/* 
		UL	* HTML-Tag; enthält LI, muß abgeschlossen sein; Zuweisungen möglich z.B. UL.pfeil -> in diesem Fall sollen die Eigenschaften (font-size, color etc.) in UL und .pfeil selbst definiert sein und nicht in uL.pfeil);
			*CSS-Zuweisungen fürUL werden von NS4 und IE4 unterschiedlich interpretiert 
			**UL - Eigenschaften wirken sich vor allem im IE4 aus; 
			**NS4 erkennt nur die Tatsache, daß UL im CSS-file steht und verändert die Punktfarbe auf den Wert der Default-Einstellung (im Body-Tag).
		LI	*enthält den Text bzw. zusätzliche Formatinfos, muß abgeschlossen sein;
			*Font Sizes in LI  führen zu Verwirrungen
			*CSS-Zuweisungen für LI gelten in 
			**IE4 fürdie Farbe von Schrift und Bullets, außer man verwendet UL.pfeil, (dann ist das Bullet ein Bild)
			**in NS4 nur für die Bullets, (siehe oben) solange UL nicht eigens definiert ist
		-->vorliegender Fall: 
			*UL ist auskommentiert, weil ich die Buttos in NS rot färben will
			*list-style, list-style-type müssen i LI nicht definiert sein weil UL.pfeil (siehe oben)
			*die Eigenschaften in .pfeil werden von beiden Browsern interpretiert
			**trotzdem werden in .pfeil nur die für die Listendarstellungen relevanten Eigenschaften definiert.
			**die Eigenschaften der Type in <em>, das im vorliegenden Fall in LI enthalten ist (<li><em>)
		*/
		/*UL	{		
			} */
LI	{
					/* Font Sizes hier führen zu Verwirrungen*/		
	color: #66CCFF;			/*rot*/				
					/*gilt in IE4 fürdie Farbe von Schrift und Bullets, außer man verwendet UL.pfeil, in NS4 nur für die Bullets, solange UL nicht eigens definiert ist*/	
	}
.square	{
	font-size:11px;
	list-style-type: square;		/*Ersatz für das IMG in NS4*/
	list-style: square outside;
	}
.list	{				/* ohne anzeige von bullets */
	font-size: 14px;
	margin: 0pt;
	list-style: square outside;
	display: block;
	}
.pfeil 	{
	list-style-image: url("f1.jpg");	/*nicht interpretiert durch NS4*/
	list-style-type: square;		/*Ersatz für das IMG in NS4*/
	list-style: square outside;
	}
	/* LINKS */
A	{
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	text-decoration: none;
				/*font-size: 12px;
				color: #FF0000;
				margin:0pt;
				margin-left: 2%;
				margin-top: 25px;*/
	}
A:link 	{ 
				/*text-decoration: none;*/
	color: #FF0000;
	font-weight:bold;
	}
A:visited 	{ 
				/*text-decoration: none;*/
	color: #CC0000;
	font-weight:bold;
	}
/* SPEZIAL */
HR, .hide {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 60%;
	display: none;
	}

.marquee 	{		/* angepaßt auf laufschrift_include.htm */
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: 600;
	/* border: 10pt; 	wirkungslos */	
	font-style: normal;
	letter-spacing: 2pt;
	color: #CCCCCC;
	margin: 0pt;
	margin-top: 3pt;
	margin-left: 0pt; 
	margin-bottom: 0pt; 
		}


	/* KOMMENTARE */

/* margin: 0pt; 			dieser wert setzt alle margins auf null, 
					außer denjenigen, die nachfolgend 
					explizit definiert werden. */

/* margin-bottom: 0; 			wird von IE4 ignoriert, 
					NS4 macht ein bischen etwas, 
					egal welcher wert eingetragen ist */

