/*
Die Schriftgröße wird hier auf 62.5% gesetzt, damit
1em = 10px. Dadurch lässt sich unsere Typographie leichter
anpassen
*/
body {
	margin: 0;
	padding: 0;
	background: #29b59c;
	font-family: Helvetica, sans-serif;
	font-size: 62.5%;
	color: #333;
}

h1, h2, p, ul, li {
	margin: 0;
	padding: 0;
}

p {
	font-size: 1.4em;
	line-height: 1.4em;
}
p.wichtig {
	font-weight:bold;
}
ul {
	padding: 0;
	margin: 0;
	font-size: 1.2em;
	list-style-type: none;
}
ul.disc
{
	list-style-type: disc;
	list-style-position: outside;
}
ul.em
{
	margin-left: 1em; 
}
ul.em li
{
	font-size: 1.2em;
	margin-left: 1em; 
	list-style-image:url(/grafik/arrow.gif);
	list-style-position: outside;
	margin: 1em 0 0 1em;
}

a:link, a:visited {
	color: #333;
	background: #eee;
}

/*
"margin: 0 auto" mit einer Breite zentriert das Layout
im Browserfenster
*/
#impressum {
	margin: 0 auto;
	margin-top: 20px;
	width: 800px;
	color: #fff;
}

#impressum h1 {
	float: left;
}

#nav {
	float: right;
	margin: 50px 10px 0 0;
	font-size: 1.4em;
}

#nav li {
	display: inline;
	margin: 0 0 0 20px;
}

#nav li a {
	color: #fff;
	text-decoration: none;
	background: none;
}

/*
Da der Inhalt der Kopfzeile außerhalb des <div> "wrap" liegt,
zentrieren wir hier auch mit "margin: 0 auto" das Layout
*/
#wrap {
	clear: both;
	margin: 0 auto;
	padding: 10px;
	width: 780px;
	background: #fff;
	border: 10px solid #5c0505;
}

#kopfzeile {
	width: 100%;
	margin: 0 0 40px 10px;
  float: left;
}

#kopfzeile img {
	float: left;
	border: 10px solid #ccc;
}

#kopfzeile h1 {
	font-size: 2em;
	margin: 10px 0 0 0;
	padding: 10px;
	text-align: center;
}

#kopfzeile h2 {
	float: right;
	font-size: 2em;
	margin: 10px 0 0 0;
	padding: 10px;
	text-align: right;
}

#infotext {
	margin: 20px 0 20px 0;
	padding: 10px;
}

#inhalt, #seitenleiste {
	width: 360px;
	margin: 20px 0 20px 0;
	padding: 10px;
}
#inhalt {
	float: right;
}

#inhalt h2 {
	font-size: 2.4em;
	margin: 0 0 10px 0;
}

#inhalt p {
	margin: 0 0 10px 0;
}

#linkliste {
	margin: 20px 0 0 0;
	font-size: 1.4em;
}

#linkliste li {
	margin: 0 0 10px 0;
}

#seitenleiste {
	float: left;
	background: #eee;
}

#seitenleiste h2 {
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	margin: 0 0 20px 0;
	padding: 5px;
}

#fusszeile {
	clear: both;
	background: #eee;
	padding: 10px;
	border-top: 2px solid #ddd;
	text-align: center;
	color: #777;
}
