/*--------------------------------------------------------------------------------------------------------------------------------------- */
/* Stylesheet - header */

/**{margin:0;padding:0;}					/* Alles erstmal Reset */

#hdr{										/* Container für Kopf */
	position: relativ;						/* relativ = daran richten sich alle Kindelemente aus */
	width:100%;
	min-height:370px;
	overflow: hidden;						/* schneided alles ab, was ausserhalb des Bereiches liegt! */	
	/*border:thin solid yellow;				/* für Debug */
}

/********************************************************************************************************************/
/* Style - Logo (incl. Link) */

#hdr #logo_container {
	position: absolute;						/* absolute = relativ zu Eltern Element (hier DIV) */
	overflow: hidden;						/* schneided alles ab, was ausserhalb des Bereiches liegt! */	
	width:100%;
	text-align:center;						/* Logo zentrieren */
	margin-top:35px;						/* Platz für oberes Menue beim verkleinern */
	/*border:thin solid green;				/* für Debug */	
}

#hdr #logo_container img{
	width: 600px;
	height:auto;
	/*border:thin solid white;				/* für Debug */	
}

#hdr #logo_container > a{
	font-weight:bolder;
	font-size:28px;
	white-space:nowrap;						/* kein Zeilenumbruch! */
	color:#FFF;
	/*border:thin solid lightblue;			/* für Debug */
}

#hdr #logo_container > a > span{
	font-size:28px;
	color: #F60;
}

/********************************************************************************************************************/
/* Style - Menue oben rechts */

#hdr #menue-header-container {
	position: absolut;						/* absolute = relativ zu Eltern Element (hier DIV) */
	float: right;
	width:100%;
	margin: 10px 15px 10px 10px;
	clear:both;
	/*border: 1px green solid;				/* für Debug */
}

#hdr .menue-header-link {
	float: right;
	list-style-type: none;
	margin: 0 10px 0 10px;
}

#hdr .menue-header-link > a{
	font-size:12px;
	color:#FFF;
	/*border: 1px yellow solid;				/* für Debug */
}

#hdr .menue-header-link > a > img{
	margin-bottom:2px;
	vertical-align:middle;
	/*border: 1px red solid;				/* für Debug */
}

/********************************************************************************************************************/
/* Style - Counter - Besucherzahl unten rechts */

#hdr #counter {
	position: absolut;						/* absolute = relativ zu Eltern Element (hier DIV) */
	float: right;
	margin: 300px 15px 5px 0;
	font-size:1.5em;
	color:#ccc;
	/*clear:both;*/
	/*border: 1px green solid;				/* für Debug */
}

/********************************************************************************************************************/
/* Style - Hauptmenue */

#hdr #menue-main-container {
	position: absolut;						/* absolute = relativ zu Eltern Element (hier DIV) */
	float: right;
	margin: 30px 10px 10px 10px;
	clear:both;
	text-align:center;
	
	/*border: 1px green solid;				/* für Debug */
}

/*--------------------------------------------------------------------------------------------------------------------------------------- */
/* CSS3 Stylesheet E N D E  */