/*
für den Body explizit festlegen, dass 0,0 als urspung dient (zur orientierung für die anderen div-elemente!)  

die höhe des banners ist fix. navigation und teaser werden so positioniert, dass sie zu der festen höhe des banners passen! 

es gibt also insgeasmt 4 elemente: banner (=kopf), navigation+teaser-bereich und content (frei).
*/
body, html {
	margin: 0;
	padding: 0;
}

/*------------------------------------------------------------------------------------------------------------------*/
#bannerBackground{
	height: 60px;
	background-color: rgb(21,54,144);
	border-bottom: 1px solid rgb(151,179,255);
	margin-top: 0;
}
#logo{
	position: absolute;
	top: 9px;
	left: 12px;
	font: 280% Georgia, "Times New Roman", Times, serif;
	color: rgb(255,255,255);
}
#logo img{
	border: none;
}
#languageSelection{
	position: absolute;
	top: 35px;
	right: 12px;	
	font: 80%/1.6em Arial, Helvetica, sans-serif;
	color: rgb(255,255,255);
}
#languageSelection a{
	color: #FFFFFF;
}

/*------------------------------------------------------------------------------------------------------------------*/
/*
so würde der footer leider überlagern
#posTeaserRight{
	position: absolute;
	top: 81px;
	right: 10px;
}
*/
#posTeaserRight{
	position: relative; /*soll wie content abstandsfähigkeit besitzen*/
	/*top: 81px;*/
	top: 21px;
	float: right; /*damit die boxen auch als Inhalt positioniert werden und der footer nicht überlagert*/ 
	right: 10px;
	margin-bottom: 20px;
}
/*
#posTeaserLeft{
	position: absolute;
	top: 281px;
	left: 0px;
}
*/
#teaserHead{
	color: #FFFFFF;
	font: 80%/1.6em Arial, Helvetica, sans-serif;
	width: 210px;
	padding-left: 10px;
	margin-bottom:0px;
	background-color: rgb(2,106,222);
	border: 1px solid rgb(22,106,222);
}
#teaserBox{
	font: 80%/1.6em Arial, Helvetica, sans-serif;
	width: 200px;
	padding: 10px;
	margin-bottom:20px;
	border-style: solid;
	border-collapse: collapse;
	border-color: rgb(22,106,222);
	border-width: 0px 1px 1px 1px;
}


/*------------------------------------------------------------------------------------------------------------------*/
#posNavigation{
	position: absolute;
	top: 61px;
	left: 0px;
	float: left; /*damit die boxen auch als Inhalt positioniert werden und der footer nicht überlagert*/ 
}
#navigation {
	width: 200px;
	font: 90% Arial, Helvetica, sans-serif;
}
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}
#navigation li {
	border-bottom: 1px solid rgb(151,179,255);
	margin: 0;
}
#navigation li a:link, #navigation li a:visited {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-left: 12px solid rgb(21,54,144);
	border-right: 1px solid rgb(21,54,144);
	color: #FFFFFF;
	background-color: rgb(2,106,222);
	text-decoration: none;
}
#navigation li a:hover {
	color: #FFFFFF;
	background-color: rgb(21,54,144);
}
/*------------------------------------------------------------------------------------------------------------------*/
/* 
content hat keine position sondern kommt einfach nach dem banner im textfluss
für navigation und teaser gibt es aber positionsangabe, daher völlig frei positioniert! 
*/
#content {
	margin-left: 230px;
	margin-right: 255px;
}
#content p, #content li {
	font: 80%/1.6em Arial, Helvetica, sans-serif;
}
#content p {
	margin-left: 1.5em;
}
#content h1, #content h2 {
	font: 140% Georgia, "Times New Roman", Times, serif;
	color: rgb(2,106,222);
	background-color: transparent;
}
#content h2 {
	font: 120% Georgia, "Times New Roman", Times, serif;
	padding-bottom: 3px;
	border-bottom: 1px dotted rgb(151,179,255);
}
#content h3 {
	font: 100%/1.6em Arial, Helvetica, sans-serif;
	color: rgb(2,106,222);
}

/*------------------------------------------------------------------------------------------------------------------*/

#footer {
	background-color: rgb(21,54,144);
	border-top: 1px solid rgb(151,179,255);
	color: rgb(255,255,255);
	font: 80%/1.6em Arial, Helvetica, sans-serif;
	text-align:left;
	padding-left:12px;
	margin-bottom: 0px;
}
#footer a{
	color: #FFFFFF;
	text-decoration:none;
}


