@charset "utf-8";
/**
 * Website Privatunterricht Netzer
 * Version 1.2 vom 31. August 2010
 * @link http://www.privatunterricht-netzer.de
 */ 


/*
 * ### Allgemeine Einstellungen ###
 */

/* (Innen- und Außen-) Abstände zurücksetzen */
* {
	margin: 0;
	padding: 0;
}
 
/* Generelle Einstellungen zur Schriftgröße  */
body, td, th { 
 	font: normal 101%/130% Garamond, "Liberation Serif", serif; 
}
 td, th { 
 	font-size: 100% 
}

/* Setze Farben und Hintergrundfarben */ 
html, body {
	color: #111111;
	background-color: #b8e2a0;  
}



/*
 * ### Allgemeine Elemente ###
 */

/* Überschriften */
h1 {
	color: #111111;
	background-color: transparent;
	font-size: 3em;
	line-height: 1.2;
	margin: 0;
}

h2{
	color: #111111;
	background-color: transparent;
	font-size: 1.5em;
	line-height: 1.2;
	margin: 0.8em 0;
}

/* Absätze */
p{
	margin: 0.8em 0; 
}

/* Bilder ohne Rahmen darstellen, auch wenn sie als Anker dienen */
img { 
	border:none 
}


/*
 * ### Anker (ugs. "Links") ###
 */

/* Standard, wird nur im Bereich "navi" verwendet */
a:link, a:visited{
	color: #186008;
	background-color: #efefef;
	text-decoration: none;
	font-size: 1.4em;
	padding: 2px 10px;
	border-style: solid;
	border-width: 1px;
	border-color: #e8b591;
}

a:hover, a:focus, a:active{
	color: #111111;
	background-color: #b8e2a0; /* #aee2b2; */
	text-decoration: none;
	font-size: 1.4em;
	padding: 2px 10px;;
	border-style: solid;
	border-width: 1px;
	border-color: #e8b591;
}

/* Hervorhebung des Eltes der Navi, das der aktuellen Seite entspricht */
/* und daher _kein_ Anker ist (hbss: "H_ier B_efinden S_ie S_ich" */
span#hbss{
	color: #111111;
	background-color: #b8e2a0;
	font-size: 1.4em;
	padding: 2px 10px;;
	border-style: solid;
	border-width: 1px;
	border-color: #b88f73;
}

/* Anker, die sich im Text befinden (Klasse "imtext") */
a.imtext:link, a.imtext:visited{
	white-space: nowrap;
	font-size: 1em;
	color: #116622;
	font-weight: bold;
	background-color: transparent;
	padding: 0;
	border-style: none;
}

a.imtext:hover,a.imtext:focus, a.imtext:active{
	white-space: nowrap;
	color: #002A11;
	background-color: transparent;
	text-decoration: underline;
	font-size: 1em;	
	font-weight: bold;
	padding: 0;
	border-style: none;
}

/* Für die W3C-Links */
a.w3c:link, a.w3c:visited{
	text-decoration: none;
	font-size: 1em;
	font-weight: normal;
	background-color: transparent;
	padding: 0;
	border-style: none;
}

a.w3c:hover, a.w3c:focus, a.w3c:active{
	text-decoration: none;
	font-size: 1em;
	font-weight: normal;
	background-color: transparent;
	padding: 0;
	border-style: none;
}


/*
 * ### Positionierung der Elemente ###
 */

/* zentrierter Container für (fast) alle Elemente der Seite */
div#huelle{
    position: static;
    width: 840px;
    margin:5px auto;
	border-style: solid;
	border-width: 1px;
	border-color:#b88f73;
    padding: 10px;
    background-color: #fefffc;
}

/* Formatierung und Positionierung des Hauptmenüs */

div#navi{
	margin-bottom: 70px;
	margin-top: 20px;
}

div#navi ul{
	position: absolute;	
}

div#navi ul li{
	float: left;
	list-style: none;
	margin: 0 8px 0 0;

}

/* Postitionierung und Erscheinung von Zusatzinfos */
p.zusatzinfo{
	margin-right: 3px;
	text-align: right;
}

span.sk{
 	font-size: small;
}

/* Positionierung für die W3C-Validierung-Buttons */
div#w3c{
	margin-right: 3px;
	text-align: right;
}


/* Formatierung für Abbildungen, vom Text umflossen */

img.abbildungl{
	float:left;
	margin-top:2px;
	margin-right: 5px;
	margin-bottom: 0;
}

img.abbildungr{
	float:right;
	margin-top:2px;
	margin-left: 5px;
	margin-bottom: 0;
}


