/* ------------------ Basic Layout: Position/Size for Head,Navigation,Content-------------------------*/

/***********************************************************************************************
			               DON't CHANGE ANYTHING IN THIS FILE !!!
***********************************************************************************************/


html { height: 100%; } 
	
body { 
	/* Vertikalen Scrollbalken im Netscape & Firefox erzwingen. Dies verhindert, dass zentrierte Layouts 
	** um 10 Pixel springen wenn der Seiteninhalt kleiner wird als die Höhe des Browserfensters. */
		min-height: 101%;	
		
	/* IE7 braucht height:100%, scheint in Firefox etc. nicht zu stören. */
		height:100%;

	/* FIX: Verhindert, dass positionierte Elemente nicht verschoben werden wenn die Größe des Browser 
			Fensters geändert wird. */
		position: relative; 
	
		background: #FFFFFF;
		text-align: left; 
		margin: 0;
		padding:0;
	} 
	
/* Standardrahmen zurücksetzen */
fieldset, img { border:0; }
	
body{
	font-family: Verdana,Arial,Helvetica,sans-serif;
	color: #000000;
	font-size: 73%;
}

table{
	font-family: Verdana,Arial,Helvetica,sans-serif;
	color: #000000;
	font-size: 100.01%;    /*Problem bei Vererbung im IE im Standards-Mode */
}

input,select,textarea{
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 99%; /* Anpassung für Safari Browser. font-size:100% ist für den Safari in Formularen zu groß */ 
	color: #000000;
}


/* ------------------ Main Content  -----------------------------------------*/


#nav  {
	/*width: 15%;*/
	width:14.2em;  /*Breite muß content margin-left entsprechen ! */
	height : 100%;
	padding:10px 0px 10px 0px;
	top: 65px;
	left: 0px;
 }

#content{
	/*background-image : url(../images/corner_EBEBEB.gif);*/
	background-repeat : no-repeat;
	background-color: #FFFFFF;
	padding:20px 10px 50px 30px;
	top: 100px; 
}


/* ------------------ Main Content for Firefox e.a, Style definition for IE Fix in fix-ie.css -----------------------------------------*/
/*
#main{
	height:100%;
}
*/
#nav{
	float:left;
	position: relative; 
}

#content{
	position: relative; 
	min-height:100%;
	width:auto;
	/*margin-left: 15%;*/
	/*margin-left:14.2em;*/
}


#content{
	/*height:100%;   */
	/*  IE6,Opera9 : height:800px  */
	/*  IE7,Firefox: ohne height  */
}





/* ------------------ Main Content for Index/Feedback windows, Style definition for IE Fix in fix-ie.css -----------------------------------------*/

#wcontent{
	background-color: #FFFFFF;
	padding:0px;
	top: 0px; 
	margin-left: 0;
	position: relative; 
	min-height:100%;
	width:auto;
}

body.wcontent{
	background-color: #FFFFFF;
	margin:3px;
}