@charset "utf-8";

*{
margin:0px;
padding:0px;
}

html{
	
	height:101%;
}

body  {
	font: 12px Arial, Helvetica, sans-serif;
	background: #0f2245;
	margin: 0; /* Es empfiehlt sich, margin (Rand) und padding (Auffüllung) des Body-Elements auf 0 einzustellen, um unterschiedlichen Browser-Standardeinstellungen Rechnung zu tragen. */
	padding: 0;
	text-align: center; /* Hierdurch wird der Container in IE 5*-Browsern zentriert. Dem Text wird dann im #container-Selektor die Standardausrichtung left (links) zugewiesen. */
	color: #FFF;
}
.twoColFixLtHdr #container {
	width: 900px;  /* Mit einer Breite, die 20 Pixel unter der vollen Breite von 800 Pixel liegt, können Sie dem Browser-Chrome Rechnung tragen und gleichzeitig eine horizontale Bildlaufleiste vermeiden. */
	background: #0f2245;
	margin: 0 auto;
	text-align: left; /* Hierdurch wird die Einstellung text-align: center im Body-Element überschrieben. */
	background-image: url(../img/sidebar_body.png);
	background-repeat: repeat-y;
	background-position: left;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
} 

 #header {
	position:relative;
	height: 232px;
	
} 


#header #headlogo {
	position:relative;
	width: 170px;
	height: 232px;
	float: left;
	background-image: url(../img/sidebar_body.png);
	background-repeat: repeat-y;
}



#header #headerpic {
	position:relative;
	display:block;
	float:right;
	width:730px;
	height: 232px;
}

#header #headerpic #headertext {
	position: absolute;
	height: 75px;
	width: 150px;
	
	top:10px;
	right:10px;
	z-index:auto;
	text-align:right;
	
}

#header #headertext h1{
	font-size:12px;
	color:#bf1923;
	text-transform: uppercase;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* Da es sich hier um ein floatendes Element handelt, muss eine Breite angegeben werden. */
	width: 170px;
	background-image: url(../img/sidebar_body.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #sidebar2{
	float: right; /* Da es sich hier um ein floatendes Element handelt, muss eine Breite angegeben werden. */
	width: 350px;
	
	text-align:center;
	overflow:hidden;
}
#sidebar2 img{
	display:block;
	margin-bottom:10px;
	border: 2px solid #FFF;
}

#sidebar1 ul{
	list-style-type: none;	
	
}

#sidebar1 ul li{
	display:block;
	margin-left:15px;
	height:20px;
	
	
}

#sidebar1 ul li a { color: #fff; font-size: 10px; font-weight: bold; text-decoration: none; text-transform: uppercase }

#sidebar1 ul li a:hover{
	
	text-decoration:underline;
}


.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 350px;
	margin-bottom: 0;
	margin-left: 160px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 

#mainContent h1{
	font-size:14px;
	color:#ffd400;
}

#mainContent h2{
	font-size:12px;
	color:#ffd400;
}

#mainContent strong{
	color:#ffd400;
}

#mainContent a{
	color:#ffd400;
	text-decoration:none;
}

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

#mainContent p{
	margin-bottom:10px;	
	text-align:justify;
}

#mainContent ul{
	list-style-type: square;	
}

#mainContent ul li{
	margin-left:35px;
}


.twoColFixLtHdr #footer  { font-size: 8px; background-image: url("../img/sidebar_body.png"); background-repeat: repeat-y; background-position: left 50%; padding: 0 10px 0 20px } 
#footer a{
color:#ffd400;
text-decoration:none;
}

#header #headpic {
	float: right;
}

.twoColFixLtHdr #footer p {
	margin: 0; /* Wenn Sie die Ränder des ersten Elements in der Fußzeile auf 0 einstellen, können Sie unerwartete Abstände zwischen divs vermeiden. */
	padding: 10px 0; /* Durch die Verwendung der Auffüllung bei diesem Element entsteht genau wie bei einem Rand ein Leerraum, aber ohne die potenziellen Abstandsprobleme. */
}
.fltrt { /* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das floatende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* Mit dieser Klasse können Sie ein Element auf der Seite nach links fließen lassen. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* Diese Klasse sollte in einem div- oder break-Element platziert werden und das letzte Element vor dem Schließen eines Containers sein, der wiederum einen vollständigen Float enthalten sollte. */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
