/*
 * allgemein.css
 * css style fuer allgemeine html tags
 */


/* gesamtes dokument */
html, body
{
	background-color: rgb(100%, 100%, 100%);
	color: rgb(0%, 0%, 0%);
	font-family: sans-serif;
	font-style: normal;
	font-weight: normal;
}


/* absaetze */
p
{
	font-size: small;
}


/* ueberschriften aller ordnungen */
h1, h2, h3, h4, h5, h6
{
	color: rgb(20%, 40%, 60%);
	background-color: rgb(100%, 100%, 100%);
	text-decoration: underline;
	font-weight: bold;
}


/* ueberschriften erster ordnung */
h1
{
	font-size: large;
}


/* ueberschriften zweiter ordnung */
h2
{
	font-size: medium;
}


/* verweise */
	/* neue verweise */
	a:link
	{
		color: rgb(0%, 0%, 100%);
		background-color: rgb(100%, 100%, 100%);
	}
	
	/* besuchte verweise */
	a:visited
	{
		color: rgb(100%, 0%, 0%);
		background-color: rgb(100%, 100%, 100%);
	}
	
	/* im moment geklickte verweise */
	a:hover
	{
		text-decoration:  none;
		color:            rgb(0%, 0%, 0%); /* paint it black */
		background-color: rgb(100%, 100%, 70%); /* gelb */
	}


/* adressen angabe */
address
{
	font-size: small;
	font-style: normal;
	font-family: monospace;
	color: rgb(20%, 40%, 60%);
	background-color: rgb(100%, 100%, 100%);
	/*
	position: relative;
	top: 10em;
	bottom: 5em;
	*/
}


/* tabellen kram */
table, tr, td, th
{
	border: thin solid rgb(20%, 40%, 60%);
	border-collapse: collapse;
	font-family: sans-serif;
	font-style: normal;
}

table, tr, td
{
	font-weight: normal;
}

th, caption
{
	color: rgb(20%, 40%, 60%);
	background-color: rgb(100%, 100%, 100%);
	font-weight: bold;
}

caption
{
	caption-side: bottom;
}

td.datum
{
	font-family: monospace;
}
