@charset "utf-8";
/* CSS Document */

/* ==================================================================
Stylesheet für das Projekt Abenteuer Wald
Stand: 05.03.2010
Datei: wald.css
Autor: Margrit Ammann-Eichholzer
Aufbau: 1.a) Kalibrierung
		1.b) Allgemeine Definitionen (Standardformatierungen)
		1.c) Anchors / Link-Formatierungen (A Tag)
		2.   Screendesign (Layout)
		3.   Navigation 
		4.   Form (Formular-Tags)
	
====================================================================== */


* {margin: 0; padding: 0;
}
/* ==== 1.a) Kalibrierung =============================================*/

*   { margin: 0;
	padding: 0;
	}
	
body {
	background-image: url(../bilder/hintergrundbild.jpg);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	}
/* ==== 1.b) Allgemeine Definitionen (Standardformatierungen) =======*/	

h1, h2, h3 {
	color: #093;
}

h1 { font-size: 40px;
	margin-bottom: 15px;
}

h2 { font-size: 19px;
	margin-bottom: 4px;
	margin-top: 8px;
	text-align: center;
}

h3 { font-size: 16px;
	margin-bottom: 3px;
	margin-top: 7px;
}

p { margin-bottom: 10px;
	margin-top: 0px;
}

	
/* ==== 1.c) Anchors / Link-Formatierungen (A Tag) ==================*/
a {color:#363; text-decoration: none; }
a:visited { color: #990000; }
a:hover { color: #0000FF; text-decoration: underline; }
a:active { color: #FF00FF; text-decoration: underline; }

#footer a, #footer a:visited { color: #FC0; text-decoration: none; font-size: 11px; }
#footer a:hover, #footer a:active { color: #F60; text-decoration: underline; }

/* ==== 2. Screendesign (Layout) ====================================*/

#wrapper {
	width: 960px;
	height: 680px;
	border: 1px solid #999;
	background-color: #B1FF64;
	margin: 20px auto 0 auto;
	}
	
#navi {
	background-color: #B1FF64;
	width: 130px;
	float: left;
	}	

#header	{
	width: 900px;
	padding: 20px 30px;
	height: 60px;
	}	

#metanavi {
	float: right;
	width: 900px;
	padding: 0px 30px;
	line-height: 30px;
	text-align: right;
	}	
	
#content {
	color: #093;
	float: right;
	width: 770px;	/* Gesamt 780px   */
	padding: 25px 30px 20px 30px;
	background-color: #fff;
	height: 480px;
	height: auto !important;
	min-height: 480px;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	}
	
#footer	{
	float: right;
	width: 720px;	/* Gesamt 780px   */
	padding: 0px 30px;
	line-height: 30px;
	}		

#copyright {
	float: right;
	color: #093;
	font-size: 11px;
}	
	
/* ==== 3. Navigation ===============================================*/	
#metanavi a, #metanavi a:visited { color: #093; text-decoration: none; }
#metanavi a:hover, #metanavi a:active { color: #CCC; text-decoration: underline; }

#navi a, #navi a:visited {
	display: block;
	line-height: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #093;
	text-indent: 30px;
	text-decoration: none;
	border-bottom: 1px solid #336699;
}

#navi a:hover, #navi a:active {
	color: #009933;
}

.bildrechts {
	float: right;
	margin: 10px 0px 10px 10px;
}

.bildlinks {
	float: left;
	margin: 10px 10px 10px 0px;
}

.bildmitte {
	margin-left: 120px;
}


/* ==== 4. Form (Formular-Tags) ======================================*/	
	
	
	
