/*	-------------------------------------------------------------
	1. RESET + STRUKTUR
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
               
* {					/*alle Abstände zurücksetzen*/
	margin: 0;
	padding: 0;}

body {				/* Grundlagen für alle Inhalte */
	background: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
	}
               
#container{			/*äußerster Rahmen*/
	overflow:hidden;
	padding:0;
	border: 1px solid #999999;
	margin: 10px 40px;
	}


/*	-------------------------------------------------------------
	2. HEADER
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#header {			/*äußerer Rahmen vom Kopf*/
	margin:0;
	padding:0;
	width:100%;
	height:100px;
	background-image: url(images/bg-header.gif);
	background-repeat: repeat-x;
	background-position: center bottom;
}

#header img {
	margin-left:10px;
	margin-top:10px;
}


/*---------------------------------------------------------------------------------------------------
	3. NAVIGATION
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#navbar{			/*äußerer Rahmen der Hauptnavigation*/
	margin:0;
	padding-left:20;
	width:100%;
	height:50px;
	background-image: url(images/bg-menu.gif);
	background-repeat: x-repeat;
	border-top:solid 2px #FFFFFF;
	border-bottom:solid 2px #FFFFFF;
}

#navbar ul {list-style:none;}

#navbar li {
	background:url(images/menu-trenner.gif) no-repeat;
	height:50px;
	float:left;
	width:auto;
	padding:15px 0 0 50px;
}

#navbar a {
	text-decoration: none;
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:1.2em;
	color:#FFFFFF;
}

#navbar a:hover {color:#000000;}


/*	-------------------------------------------------------------
	4. INHALTSFENSTER
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#content {
	background-color:#eff1f4;
	padding-top:20px;
}

#title {
	width:auto;
	height:46px;
	background-image: url(images/title-center.gif);
	background-repeat: repeat-x;
	background-position: right top;
	margin: 0 40px 0 40px;
}

#titletext {
	width:auto;
	height:46px;
	padding:10px 0 0 30px;
	font-weight:bold;
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	background-image: url(images/title-left.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#maincontent {
	width:auto;
	background-color:#FFFFFF;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	border-top: 1px solid #f0f0f0;
	margin: 0 40px 0 40px;
}

#maincontent td {
	vertical-align:top;
	padding:30px 40px 30px 0;
	font-size: 0.75em;
}

p.buttonheading {
    display:none;
}

/*	-------------------------------------------------------------
	5. INHALT
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#layoutbild {
	margin:0 0 30px 30px;
	border: 1px solid #eff1f4;
}

#leftcontent ul {border-bottom: 1px solid #f0f0f0;}

#leftcontent li {
	border-top: 1px solid #f0f0f0;
	padding:5px 0;
	list-style:none;
}

#leftcontent a {
	padding-left:30px;
	text-decoration: none;
	font-weight:bold;
	color:#d40018;
}

#leftcontent a:hover {color:#000000;}

#rightcontent p {		/*obere und untere Abstände der Absätze*/
	padding: 0.8em 0;
	line-height: 1.4em;
	color:#333333;
}

#rightcontent h1 {		/*Seitenüberschriften*/
	font-size: 1.2em;
}

#rightcontent a {
	text-decoration:none;
	color:#d40018;
	font-weight:bold;
}

#rightcontent a:hover {text-decoration:underline; color:#d40018;}
	
	
/*	-------------------------------------------------------------
	6. FOOTER
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#footer {			/*äußerer Rahmen des Fußes*/
	margin:0;
	clear:both;
	padding-left:40px;
	width:100%;
	height:40px;
	background-image: url(images/bg-menu.gif);
	background-repeat: repeat-x;
	border-top:solid 1px #FFFFFF;
	border-bottom:solid 1px #FFFFFF;
}

#footer ul {list-style:none;}

#footer li {
	height:40px;
	float:left;
	padding-top:10px;
}

#footer a {
	text-decoration: none;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	font-size:smaller;
	padding-right:20px;
}

#copyright {
	background-color:#eff1f4;
	padding: 10px 0 10px 40px;
	font-size:smaller;
}

