body {
	/*
	ganze seite grau, content-area wird mit weiss überlegt.
	muss so sein, weil die linke navigation kein height 100% verträgt.
	*/
	background-color: white;

	height: 100%;
	margin: 0px;
	padding: 0px;
}

/* header **********************************/
div#header {
	position: absolute;
	overflow: hidden;
	z-index: 50;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100px;
	min-height: 100px;
	max-height: 100px;

	padding: 0;
	background-color: rgb(243,243,243);
}
html>body div#header {
	/* nur fuer moderne Browser! */
	position: fixed;
}

div#header a.logo {
	position: absolute;
	top: 10px;
	left: 0px;
	z-index: 60;
	height: 62px;
	width: 281px;

	padding-left: 0px;
	text-decoration: none;
	background-image: url(img/base/logo.gif);
 	background-repeat: no-repeat;
    background-position: center;
}

div#header a.home {
	position: absolute;
	top: 69px;
	left: 230px;
	z-index: 60;
	height: 17px;
	width: 17px;

	padding-left: 0px;
	text-decoration: none;
	background-image: url(img/base/haus.gif);
 	background-repeat: no-repeat;
    background-position: left top ;
}
div#header a.home:hover {
    background-position: left bottom;
}

/* navigation topright ******************************/
div#navigation_topright {
	position: absolute;
	z-index: 10;
	top: 0px;
	right: 40px;
	width: 260px;
	height: 27px;
	
	padding: 0;
	padding-top: 5px;


	background-image: url(img/base/toprightbg.gif);
    background-position: top center;
    background-repeat: no-repeat;

	text-align: center;
    white-space: nowrap;
	color: black;
    font-weight: bold;
}
div#navigation_topright div {
	margin:0;
	padding:0;
}
div#navigation_topright a {
    padding: 0;
    background-image: none;
    font-size: 10px;
}

/* navigation top **********************************/
ul#nav_top {
	position: absolute;
	left: 0px;
	bottom: 0px;
	height: 36px;
	width: 100%;

	margin: 0px;
	padding: 0px;
	padding-left: 250px; /* tabs abstand von links */
	background-image: url(img/base/headerbg.jpg);
	white-space: nowrap;
}
ul#nav_top li {
	list-style: none;
	display: inline;
	padding: 0;
    text-transform: uppercase;
}

ul#nav_top a {
	float: left;
	height: 36px;
	
	margin: 0;
	padding: 5px 15px 0px 15px;
	background-image: none;

	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: black;
}

ul#nav_top li#current {
	float: left;
	padding: 0;
	background-image: url(img/base/tabbgrechts.gif);
    background-position: top right;
    background-repeat: no-repeat;
    text-transform: uppercase;
}


ul#nav_top li#current a {
	display: block;
	height: 36px;

	margin: 0;
	padding: 5px 15px 0px 15px;

	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	text-align: center;

	color: white;
	background-image: url(img/base/tabbglinks.gif);
    background-position:  top left;
    background-repeat: no-repeat;

}

ul#nav_top li:hover {
	float: left;
	background-image: url(img/base/tabbgrechts.gif);
    background-position: top right;
    background-repeat: no-repeat;
}

ul#nav_top a:hover {
	margin: 0;
	padding: 5px 15px 0px 15px;

	color: white;
	background: url(img/base/tabbglinks.gif);
    background-position: top left;
    background-repeat: no-repeat;

}


* html ul#nav_top a, * html ul#nav_top span {
	width: 1em;
	/* nur fuer IE 5.0x erforderlich */
	/* sicherheitshalber fuer IE 6 zurueckgesetzt */
	width: 150px;
}


/* navigation links ****************************************************************/
div#nav_left {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 100%;
	z-index: 30;

	padding: 0px;
	margin: 0px;
	padding-top: 120px;

	background-color: rgb(224,224,224);
	color: black;
	font-size: 12px;
}
html>body div#nav_left {
	/* nur fuer moderne Browser! */
	position: fixed;
}

a.nav1, a.nav2, a.nav3, a.nav4 {
	display: block;
	padding-left: 10px;
	line-height: 30px;
	text-align: left;
	vertical-align: middle;

	background-color: rgb(207,207,207);
	border-top: 2px solid rgb(225,225,225);
	border-bottom: 2px solid rgb(169,169,169);
	color: black;

	font-weight: bold;
	text-decoration: none;
	background-image: none;
}

a.nav1:hover, a.nav2:hover, a.nav3:hover, a.nav4:hover {
	color: black;
	border-bottom: 2px solid rgb(225,225,225);
	border-top: 2px solid rgb(169,169,169);
	text-decoration: none;
}

a.nav1#navactive, a.nav2#navactive, a.nav3#navactive, a.nav4#navactive {
	background-image: url(img/base/linkbg.gif);
    background-position: left center;
    background-repeat: no-repeat;
	padding-left: 14px;
	text-decoration: none;
}

a.nav2, a.nav3, a.nav4 {
	line-height: 14px;
	font-size: 12px;
	border-bottom: 2px solid transparent;
	border-top: 2px solid transparent;
	font-weight: normal;
}
a.nav2 {
	padding-left: 20px;
}
a.nav3 {
	padding-left: 30px;
}
a.nav4 {
	padding-left: 40px;
}

/* seiteninhalt *****************************************/
div#content {
	height: 100%;
	padding: 2px;
	margin: 0;
	padding: 0;

	margin-left: 200px;
	padding-left: 20px;
	padding-top: 130px;
	padding-right: 10px;
	padding-bottom: 40px;

	/* Mindestbreite (der Ueberschrift) verhindert   Anzeigefehler in modernen Browsern */
	min-width: 16em;

	background-color: white;
}
* html div#content {
/* Workaround gegen den 3-Pixel-Bug des   Internet Explorers */
	height: 1em;
}

/* footer **********************************/
div#footer {
	position: relative;
	z-index: 30;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 24px;

	font-size: 10px;
	font-weight: bold;
	text-align: right;

	background-image: url(img/base/footerbg.jpg);
    background-repeat: repeat-x;
	color: white;
	clear: both;
}
div#footer div {
	color: white;
	margin:0;
	padding:0;
}

html>body div#footer {
	/* nur fuer moderne Browser! */
	position: fixed;
}


div#footer a {
	font-weight: bold;
	color: white;
	font-size: 10px;
	text-decoration: none;
	background-image: none;
	padding: 0px;
}
div#footer a:hover {
	color: white;
}
div#footer td, div#footer table {
	padding: 0px;
	padding-right: 50px;
	margin: 0px;
	text-align: right;
	vertical-align: top;
	color: white;

	font-size: 10px;
	white-space: nowrap;
	line-height: 12px;
}


