/* Hiermit werden die Randabstände und border aller HTML-Elemente auf Null gesetzt. Damit wird das       
	** Aussehen der Webseite in unterschiedlichen Browsern vereinheitlicht. 
	*/
	
	* { margin:0; padding: 0; } 

	/* Das zurücksetzen der Innen- und Außenabstände verursacht zu kleine Selectboxen. Dies wird korrigiert */
	option {padding-left: 0.4em}
	
	/*
	** Die nachfolgenden Angaben entstammen dem Artikel 'Useful Code Snippets' von Mike Foskett
	** [http://www.websemantics.co.uk/tutorials/useful_css_snippets/]
	*/
	
	/* 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. */
	html { height: 101% } 
	body { 
  height:101%;
	/* Beseitigung des Rundungsfehlers bei Schriftgrößen im Opera sowie Standardformatierungen */
		font-size: 100.01%; 
	/* FIX: Verhindert, dass positionierte Elemente nicht verschoben werden when die Größe des Browser 
			Fensters geändert wird. */
		position: relative; 
	
	/* Vorgabe der Standardfarben und Textausrichtung*/     
		color: #000;        
		background: #fff;
text-align: center; /* Für IE 5.01 & 5.5, um die Box #wrapper horizontal zu zentrieren */
	} 
	
	div {
text-align: left; /* text-align:center wieder aufheben, damit DIV-Inhalte linksbündig ausgerichtet sind */
}
	/* Standardrahmen zurücksetzen */
	fieldset, img { border:0; }
	
	/* Anpassung für Safari Browser. font-size:100% ist für den Safari in Formularen zu groß */ 
	select, input, textarea { font-size: 99% }
	

body {
margin: 0 auto;
padding: 0;
font: 80.25% Helvetica,Arial,sans-serif;
}




div#wrap {
position: relative;
	color: #000;
	margin: 0 auto;
	width: 1105px;
 min-height: 100%; /* Mindesthöhe in modernen Browsern */
height: auto !important; /* !important-Regel für moderne Browser */
height: 100%; /* Mindesthöhe in IE (<7) */
	padding: 0;
background: #fff url(/files/media/bg_main.gif) top center repeat-y;

}
div#container {
position: relative;
	color: #000;
	margin: 0 auto;
	width: 1025px;
	padding: 0;
	padding-left:40px;
	float:left;
}

#header {
	margin: 0;
	padding: 0;
	width:810px;
	height:175px;
}


#header h1 {
	display:none;
}

#contentcontainer {
float:left;
	width:800px;

}

#content {
	padding:25px 35px 15px 0px;
	font-size: 1.2em;
	line-height: 1.5em;
	text-align: left;
	width:500px;
	float:right;
}

#content img {
margin: 0px 0px 0px 0px;
border: none;
}
#content p, #content ul {
	color: #333;
	margin-bottom:10px;
}
#content li {
	margin-left:15px;
	list-style-position: outside;
}


#extra {
float:right;
width:200px;
font-size:0.85em;
line-height:1.5em;
margin-top:32px;
}
#extra p{
	color: #004F9A;
	padding: 0  15px 0 0px;

}
#xtraimage {
margin:250px 0 0 0;}
 ul {
	font-size: 1.0em;
			padding:0 0 15px 0;
			list-style:bullet;
			list-style-position:inside;
}
p {
	font-size: 1.0em;
}
h1 {
	font-size: 1em;
	color: #6BAE2C;
	font-weight: bold;
}
h2 {
font-size: 1.0em;
	color: #004F9A;
	font-weight: bold;
		margin: 0 0 10px 0;
}
h3 {
font-size: 1.5em;
	color: #6BAE2C;
	font-weight: bold;
	padding-bottom:10px;
}
h4 {
font-size: 1.5em;
	color: #004F9A;
	font-weight: bold;
	padding-bottom:10px;
}
h5 {
font-size: 1.0em;
	color: #666;
	font-weight: bold;
		margin: 0 0 10px 0;
}
h6 {
font-size: 1.5em;
	color: #666;
	font-weight: bold;
	padding-bottom:10px;
}

a  { cursor: pointer; outline: none; /* avoid firefox bug dotted lines */}

a {
text-decoration: none;
color: #FF6633;
}

a:hover {
text-decoration: underline;
color: #000000;
}

a img {
border: 0;
}

#footer {
clear: both;
position:static;
bottom:0px;
margin: 0 auto;
padding: 10px 0 20px 305px;
border-top: 0px solid #f0f0f0;
text-align: left;
color: #808080;
font-size: 0.9em;
}

#footer a {
color: #808080;
text-decoration: none;
}

#footer a:hover {
text-decoration: underline;
}

img.headerImage  {
float:none;
margin-left:-3px;
}

img.floatLeft  {
float:left;
padding:5px 10px 25px 0;
}

img.floatRight  {
float:right;
margin:5px -100px 0 15px;

}
#ImgLeft  {
	float:none;
	padding:5px 10px 5px 0;
}

#ImgRight  {
float:none;
margin:5px -100px 5px 15px;

}

.hide {
display: none;
}

div.teaser {
border-top:dotted 1px #6BAE2C;
padding:1em 0 0 0;
}


/* clearfix zum Aufheben der Floatumgebung */

.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

