/*
	Wir setzen voraus, dass die Seite Objekte mit folgenden IDs hat:
	- headbar
	- basis
	- fuss
	Die Basis unterteilt sich in 
	- navigation
	- content
	- rechtespalte

*/

/* Erst einmal die Ränder und Innenabstände auf Null setzen */

* {
	margin:0;
	padding:0;
}

body {
	min-width: 760px;
	width:100%;
	padding-bottom:15px;
	background-color: white;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	
	font-size: 12px;
	font-weight: normal;
	border-bottom: 7px solid #004b92;
}

table, tr, td, th {font-size:100%;}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	text-shadow: #000 0 0 0;  /* Erleichtert Schrift in Safari */
}#main{
/*	padding-right:15px;  */  /* kein Browser */ 
/*	margin-right:15px;   */  /* nur IE */
}

#content h1{
	margin-bottom:1em;
	font-size:140%;
}

/* margin oben rechts unten links */
#content h2{
	margin: 1em 0 .75em 0;
	font-size:119%;
}

#content h3{
	margin: 1em 0 .5em 0;
	color:#004b92;
	font-size:100%;
}

#content h4{
	margin: 1em 0 .5em 0;
	font-size:100%;
	font-weight:bold;
}

#content p{
	margin: 0 0 .5em 0;
	letter-spacing:0pt;
}

a {	color:#004b92;}
a:visited {color:#004b92;}
a:hover {color:#ff0000;}

hr {border:1px solid #555; border-width: 1px 0 0 0;}

img { border: none; text-decoration: none;}

sup { margin: 0 0 -.3em 0;}

fieldset{ border: none;}

fieldset legend {display: none;}

/* Der Block mit der ID jump enthält Sprungmarken zu Ankern in langen Seiten
	er wird nur bei Style-losen Seiten angezeigt (barrierefrei) */
#jump { display: none;}


#content {
	margin-left: 18em; /* breite der nav-spalte */
	padding-right:165px;    /* breite der rechtenspalte */
	padding-top:1em;
	padding-left:1.6em;
	vertical-align: top;
}

#content li{
	padding-bottom:0.3em;
}

#navigation{
	float:left;
	width:18em;
	padding-bottom:10px;
	padding-top:1em;
/*	margin-right:1.25em; */   /* Den Abstand setzen wir im Block content */
/*	margin-left:1em;     */   /* im IE zu breit  */
	background-color:#CDD2E6;
}

#navigation a{color:#000000;}
#navigation a:visited {color:#000000;}	


.rot{	color:#ff0000;}
.blau{	color:#004b92;}
.fett{	font-weight:bold;}
.rechts { text-align:right;}
.mittig { vertical-align:middle;}
/* Zum Seitenanfang-Links */
div.anker{
	text-align:right;
	font-size:smaller;
	
}

ol, ul{	padding-left:1.5em;margin-left:0.3em;} 
li {	padding-left:1em;
}

ol.arabisch{
	list-style-type:decimal;
}
ol.buchstabe{
	list-style-type:lower-alpha;
}
ul.ohne{
	list-style-type:none;
	list-style-image:none;
}
ul.pfeil{
	list-style-type:none;
	list-style-image:url(../images/liblue.gif);
}

.emph{
	color:#004b92;
}