/* generelles Layout */
html 
{ 
	height: 100% 
}

body 
{
    min-height: 101%;
	font-size: 100.01%;
	background-color: #146414;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	position: relative;
}

/* gesamte Seite ohne Hintergrund */
#page
{
	width: 800px;
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}

/* Seiteninhalt */
#mainpage
{
	width: 760px;
	background-color: white;
}

/* Kopf (Bild) */
#header
{
	background-color: white;
	margin: 0px;
}

/* Menüpunkte */
#menu
{
	width: 100%;
	z-index: 10;
	margin: 0px;
	background-color: white;
}

#menu ul
{
	float: left;
	display: inline;
	list-style-type: none;
	text-decoration: none;
}

#menu ul li
{
	float: left;
	display: inline;
	margin-right: 20px;
	font-size: 14px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
  	line-height: 1em;
}

/* für Menüpunkte Hovereffekte "löschen" */
#menu ul li a 
{
	display: block;
	width: auto;
	font-size: 14px;
	font-weight: bold;
	background: white;
	text-decoration: none;
	color: black;
	line-height: 1em;
}

#menu ul li a:focus,
#menu ul li a:active,
#menu ul li a:hover
{ 
	background-color: white; 
	color: #00AE00; 
	text-decoration: none;
}

/* ausgewählter Menüpunkt */
#menu ul li#selected
{
	background-color: #146414;
	color: white; 
	padding: 3px 6px 3px 5px;
}

/* Umschlag für Inhalt */
#content
{
	margin-top: 0px;
	margin-left: 40px;
	background-color: #E2FFC3; 
}

#text ul li
{
	line-height: 2.8em;
}

/* eigentlicher Inhalt */
#text
{
	margin: 25px 15px 15px 15px;
	background-color: #E2FFC3; 
	font-weight: normal;
	font-size: 12px;
	line-height: 2em;
}


/* Footer , nicht benutzt, nur Abstandshalter */
#footer
{
	clear: both;
	font-size: 10px;
	text-align: right;
	margin-top: 1em;
	margin-left: 40px;
	height:  3em;
	background-color: white;
	color: black;
}

#fat
{
	font-weight: bold;
}

/* Abschluss für Fließspalten */
.boxing
{
	
	overflow: hidden;
}


