
/* Achtung: immer auch auf Windows das Aussehen testen!
 * Das kann wesentlich anders sein! :-(
 * style.css
 */

BODY
{
	font-family: lucida grande, lucida sans unicode, 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
	margin-left: 3%;
	margin-right: 3%;
	line-height: 125%;
	color: black;
}

/* Fuer Gedichte */
BLOCKQUOTE
{
	line-height: 120%;
}

/* warum muss man fuer die folgenden Elemente
 * auch die font-family definieren ?? */

SMALL, TD
{
	font-family: lucida grande, lucida sans unicode, 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
}

/* Headings sehen anders aus */

H1, H2, H3, H4, H5, H6
{
	font-family: lucida grande, lucida sans unicode, 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
	/* font-family: Utopia, Palatino; */
	line-height: 100%;
	/* font-style: italic; */
    /* text-shadow: 4px 4px 5px rgba(40,40,40,0.5); */
}
/*	background-color: #eeeecc; */

H1, H2
{
	text-indent: -3px;		/* um kursiv auszugrleichen */
}

H3, H4
{
	text-indent: -2px;		/* um kursiv auszugrleichen */
}

H5, H6
{
	text-indent: -1px;		/* um kursiv auszugrleichen */
	font-size: small;
}

H2 { margin-top: 5ex; }
H3 { margin-top: 4ex; margin-bottom: 2ex; }
H6 { margin-top: 2ex; margin-bottom: 1ex; }

H1, H2 { color: rgb(0,70,70); }
H3, H4 { color: rgb(0,102,102); }
/* H5, H6 { color: rgb(102,102,102); } */
H5, H6 { color: rgb(0,150,150); }

A:link    { text-decoration: none; color: rgb(170,0,0); }
A:visited { text-decoration: none; color: rgb(135,12,12); }
A:hover   { text-decoration: underline; color: rgb(200,0,0); }

/* mit font-size Angaben funktioniert Utopia nicht mehr :-( */
/*H1 { font-size:230%; }*/
/*H2 { font-size:150%; }*/
/*H3 { font-size:133%; }*/
/*H4 { font-size:115%; }*/

UL { margin-left: -2.5ex; }
OL { margin-left: -1.5ex; }
UL UL { margin-left: -2.5ex; }
/* kein OL UL hier */

P { margin-top: 1.2ex; }
UL P { margin-top: 0.5ex; }
LI { margin-top: 1.5ex; }

PRE, TT, CODE
{
	font-family: "Monaco", "Andale Mono", "Courier New", "Courier", "monospace";

}

PRE.code
{
    font-size: 1.6ex;
	font-weight: bold;
	line-height: 120%;
    margin-left: 30px;
    margin-top: 1.0ex;
    margin-bottom: 1.0ex;
}

SPAN.code
{
	font-family: "Monaco", "Andale Mono", "Courier New", "Courier", "monospace";
    font-size: 1.6ex;
	font-weight: bold;
}

PRE.bibtex
{
    font-size: small;
	line-height: 100%;
    margin-left: 30px;
}


ADDRESS
{
	text-align: right;
	font-family: cursive;
    font-size: 87%;
    color: olive;
}

/* Tables sollten so aussehen:
    <TABLE CELLPADDING=8 CELLSPACING=0 ALIGN=center>
		<THEAD>
			<TR> <TH> XXX </TH> 
		</THEAD>
		<TR> <TD> XXX </TD> <TD> XXX </TD> </TR>
		<TR> <TD> XXX </TD> <TD> XXX </TD> </TR>
	</TABLE>
*/


TABLE
{
	border-right-style: none;
	border-left-style: none;
	border-top-style: solid;
	border-top-width: 2pt;
	border-top-color: rgb(20,20,20);
	border-bottom-style: solid;
	border-bottom-width: 2pt;
	border-bottom-color: rgb(20,20,20);
}

TABLE TH
{
	border: none;
	border-bottom: solid 0.75pt;
}
/* tables sollten deswegen cellspacing=0 haben */

TABLE TD
{
	border: none;
}


