@charset "UTF-8";

/* reset BOX-SIZING to have Border, Margin and Padding really inside the BOX */
html, * {
	-webkit-box-sizing: border-box;
	/* for older versions of chrome & safari */
	-moz-box-sizing: border-box;
	/* for older versions of firefox */
	box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: inherit;
	/* for older versions of chrome & safari */
	-moz-box-sizing: inherit;
	/* for older versions of firefox */
	box-sizing: inherit;
}

body {
	background-color: #F0F5F7;
	color: #035A85;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ Element-/Tag-Selektoren ~~ */
ul, ol, dl {
	/*	Aufgrund von Abweichungen zwischen verschiedenen Browsern empfiehlt es sich,
		die Auffüllung und den Rand in Listen auf 0 einzustellen.
		Zu Konsistenzzwecken können Sie die gewünschten Werte entweder hier oder in den enthaltenen Listenelementen
		(LI, DT, DD) eingeben. Beachten Sie, dass die hier eingegebenen Werte hierarchisch auf die .nav-Liste
		angewendet werden, sofern Sie keinen spezifischeren Selektor festlegen.
	*/
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 6px;
	margin-bottom: 3px;
}

p {
	font-size: 100%;
	margin-top: 12px;
	margin-bottom: 3px;
}

h1 {
	font-size: 150%;
	font-weight: bold;
	margin-top: 48px;
	margin-bottom: 6px;
}

h2 {
	font-size: 132%;
	font-weight: bold;
	margin-top: 36px;
	margin-bottom: 6px;
}

h3 {
	font-size: 120%;
	font-weight: bold;
	margin-top: 24px;
	margin-bottom: 6px;
}

img {
	/*	Dieser Selektor entfernt den standardmäßigen blauen Rahmen,
		der in einigen Browsern um ein Bild angezeigt wird,
		wenn es von einem Hyperlink umschlossen ist.
	*/
	border: none;
}


table, td {
	border: none;
}

.w30 {
	width: 30%;
}
.w50 {
	width: 50%;
}
.w70 {
	width: 70%;
}
.w100 {
	width: 100%;
}


/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ Die Reihenfolge der Stildefinitionen für die Hyperlinks der Site,
	einschließlich der Gruppe der Selektoren zum Erzeugen des Hover-Effekts, muss erhalten bleiben. ~~ */
a:link {
	color: #414958;
	text-decoration: underline;
	/* Sofern Ihre Hyperlinks nicht besonders hervorgehoben werden sollen, empfiehlt es sich, zur schnellen visuellen Erkennung Unterstreichungen zu verwenden. */
}

a:visited {
	color: #4E5869;
	text-decoration: underline;
}

a:hover, a:active, a:focus {
	/* Durch diese Gruppe von Selektoren wird bei Verwendung der Tastatur der gleiche Hover-Effekt wie beim Verwenden der Maus erzielt. */
	text-decoration: none;
}

/* ~~ Dieser Container umschließt alle anderen div-Tags
	und weist ihnen ihre als Prozentwert definierte Breite zu. ~~ */
.container {
	clear: both;
	width: 80%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	overflow: hidden;
	bottom: 75px;
	max-width: 1200px;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* -- ~~ HEADER ~~ -- */
.header {
	position: relative;
	height: auto;
	width: 100%;
	left: 0px;
	top: 0px;
}

.logo_head {
	visibility: visible;
	width: 100%;
	margin: auto;
	height: auto;
	overflow: hidden;
}

hr {
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #005A84;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* -- ~~ MENUES ~~ -- */
.sidebar_le {
	float: left !important;
	width: 24%;
	min-width: 150px;
	background-color: #E1EBF1;
	padding-bottom: 10000px;
	margin-bottom: -10000px;
}

/* ~~ Stile für die Navigationslisten (können entfernt werden,
			wenn Sie ein vordefiniertes Ausklappmenü wie Spry verwenden) ~~ */
ul.nav {
	list-style: none;
	/* Hiermit wird die Listenmarkierung entfernt. */
	margin-bottom: 15px;
	/* Hiermit wird der Abstand zwischen den Navigationselementen und den Inhalten unten erstellt. */
	margin-left: 6px;
}

ul.nav li {
	padding: 6px;
	border-radius: 12px 1px 1px 12px;
}

ul.nav a, ul.nav a:visited {
	/* Durch Gruppieren dieser Selektoren wird sichergestellt, dass die Hyperlinks auch nach dem Aufrufen die Form einer Schaltfläche beibehalten. */
	padding: 5px 5px 5px 15px;
	display: block;
	/* Hiermit werden die Blockeigenschaften für den Hyperlink angegeben,
		sodass das gesamte umschließende LI-Element aufgefüllt wird.
		Hiermit wird angegeben, dass der gesamte Bereich auf einen Mausklick reagiert. */
	text-decoration: none;
	color: #035A85;
	border-radius: 6px;
	/* Animation */
	width: 78%;
	opacity: 0.84;
	transition: all 0.3s;
	transition-delay: 10ms;
	/* explorer 10 */
	transition-timing-function: cubic-bezier(0, 2, 0.5, 2);
	/* chrome & safari */
	-webkit-transition: all 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0, 2, 0.5, 2);
	/* firefox */
	-moz-transition: all 0.3s;
	-moz-transition-timing-function: cubic-bezier(0, 2, 0.5, 2);
	/* opera */
	-o-transition: all 0.3s;
	-o-transition-timing-function: cubic-bezier(0, 2, 0.5, 2);
}

ul.nav a:hover, ul.nav a:focus {
	/* Hiermit wird der Hintergrund und die Textfarbe bei der Navigation mit der Maus und der Tastatur geändert. */
	font-weight: bold;
	background-color: #F0F5F7;
	/* 4 Animation */
	width: 100%;
	opacity: 1;
}

ul.nav a:active {
	font-weight: lighter;
}

.nav-a, .nav-a a, .nav-a a:hover, .nav-a a:focus, .nav-a a:active {
	/* Hintergrund des Buttons der angezeigten Seite wird geändert. */
	font-weight: bold;
	text-shadow: none;
	background-color: #F0F5F7;
	opacity: 1;
	/* Animation - switch off, you should be already here */
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* -- ~~ PICTURE ABOVE AND CONTENT ~~ -- */
.content, .c_img_head {
	width: 72%;
	float: right;
	background-color: #FFF;
	background-position: left top;
	margin: 0;
	padding: 0;
}

.c_img_head {
	max-width: 100%;
	height: auto;
	vertical-align: 0px;
	display: block;
	margin: auto;
}

/* -- ~~ CONTENT ~~ -- */
.content {
	padding-right: 18px;
	padding-left: 18px;
	padding-bottom: 360px;
	margin-bottom: -300px;
	background-color: #FFF;
	background-image: url(../images/bg-Adler-weiss-1200x900.png);
	background-repeat: no-repeat;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ Dieser gruppierte Selektor gibt die Listen im .content-Bereich an. ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px;
	/*	Diese Auffüllung setzt die rechte Auffüllung in der obigen Regel für Überschriften und Absätze fort.
			Die Auffüllung wurde unten für den Abstand zwischen anderen Elementen in den Listen
			und links für den Einzug platziert. Sie können die Werte nach Bedarf ändern.
	*/
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ FOOTER ~~ */
#footer {
	z-index: 100;
	color: #035A85;
	position: fixed;
	bottom: 0;
	height: 54px;
	width: 80%;
	max-width: 1200px;
	overflow: hidden;
	font-size: 90%;
	margin-top: 1px;
	margin-bottom: 0;
	padding-bottom: 6px;
	background-color: #E1EBF1;
	border-top: 1px solid #F0F5F7;
	transition: height 0.6s ease-in-out;						/* explorer 10 */
	-webkit-transition: height 0.6s ease-in-out;		/* chrome & safari */
	-moz-transition: height 0.6s ease-in-out;				/* firefox */
	-o-transition: height 0.6s ease-in-out;					/* opera */
}

#footer:hover, #footer:active {
	color: #035A85;
	background-color: #E1EBF1;
	height: auto;
	transition: height 0.6s ease-in-out;						/* explorer 10 */
	-webkit-transition: height 0.6s ease-in-out;		/* chrome & safari */
	-moz-transition: height 0.6s ease-in-out;				/* firefox */
	-o-transition: height 0.6s ease-in-out;					/* opera */
}

#footer table {
	padding: 3px 18px;
	width: 100%;
}

#footer td {
	padding: 2px 6px;
	color: #035A85;
	line-height: 1.4;
}

#footer-all {
	background-color: #E1EBF1;
	color: #035A85;
	visibility: hidden;
	z-index: 90;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ Verschiedene float/clear-Klassen ~~ */
.fltrt {
	/* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das fließende 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. Das fließende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: left;
	margin-right: 8px;
}

.clearfloat {
	/* Diese Klasse kann in einem <br />-Tag oder leeren div-Tag als letztes Element nach dem letzten fließenden div-Tag (im #container) platziert werden, wenn #footer entfernt oder aus dem #container herausgenommen wird. */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ TEXTDEFINITIONS ~~ */
.f_address {
	font-size: 72%;
	margin-top: 6px;
	margin-bottom: 0px;
}

.f_address_title {
	font-size: 84%;
	font-weight: bold;
	padding-top: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.txt-right-align {
	text-align: right !important;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ optionaler Bereich ~~ */
.toptop, #toptop {
	visibility: visible;
	min-height: 18px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* ~~ Browserbreite max 1200 px ~~ */
@media screen and (max-width: 1200px) {
	.container {
		width: 96%;
	}

	.sidebar_le, .container {
		font-size: 0.87em;
	}

	hr {
		border-bottom-width: 3px;
		border-bottom-style: solid;
		border-bottom-color: #005A84;
	}

	#footer {
		height: 48px;
		width: 96%;
		font-size: 0.85em;
	}
	#footer:hover {
		height: auto;
	}
}

/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
@media screen and (max-width: 950px) {

	#footer {
		height: 42px;
		font-size: 0.78em
	}
}


/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
@media screen and (max-width: 640px) {
	h1, h2, h3, h4, h5, h6, p {
		font-size: 1em;
		line-height: 1.3;
		margin-top: 6px;
		margin-bottom: 3px;
	}

	h1 {
		margin-top: 18px;
	}
	h2 {
		margin-top: 15px;
	}
	h3 {
		margin-top: 12px;
	}

	.header, .logo_head, #footer {
		visibility: hidden;
		height: 0;
		padding: 0;
		margin: 0;
	}

	.container, .content, .sidebar_le, .img_head, .c_img_head, #footer-all {
		clear: both;
		visibility: visible;
		width: 100%;
		margin: auto;
		height: auto;
		padding: 0;
	}
	.container {
		width: 90%;
	}
	.content {
		font-size: 0.8em;
		background-size: 150%;
		min-height: 0;
		padding-left: 12px;
		padding-right: 12px;
	}
	.nav {
		margin: 0;
		padding: 0;
		border: 3px;
	}
	ul.nav {
		margin: 0;
		padding: 0 30px 0 0;
		list-style-type: none;
	}
	ul.nav li {
		float: left;
		margin: 0;
		padding: 3px 12px 3px 0px;
		width: 50%;
	}
	.nav-a {
		padding: 0 50px 0 0;
	}
		#footer {
		height: 42px;
		font-size: 0.7em
	}
	#footer-all {
		padding: 6px 12px;
	}
	#footer-all p {
		font-size: 0.7em;
		margin-top: 3px;
		margin-bottom: 3px;
		line-height: 1.2;
	}

	.toptop, #toptop {
		height: 0;
		min-height: 0;
		max-height: 0;
		overflow: hidden;
		margin: 0;
		padding: 0;
	}
}



/* ***** ------ ~~ ++++++++++++++++++++++++++++++++ ~~ ------ ***** */
/* Portrait and Landscape for iPhone(s) */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {

	body {
    -webkit-text-size-adjust: 100%;
	}

	.container, .content, .sidebar_le, .img_head, .c_img_head, #footer-all {
		clear: both;
		visibility: visible;
		width: 100%;
		margin: auto;
		height: auto;
		padding: 0;
	}

	.container {
		width: 90%;
	}

	.content {
		font-size: 1.5em;
		background-size: 150%;
		min-height: 0;
		padding-left: 12px;
		padding-right: 12px;
	}

	h1, h2, h3, h4, h5, h6, p, table, th, td {
		font-size: 1.5em;
		line-height: 1.3;
		margin-top: 6px;
		margin-bottom: 3px;
	}

	h1 {
		margin-top: 18px;
		font-size: 2.4em;
	}
	h2 {
		margin-top: 15px;
		font-size: 2.1em;
	}
	h3 {
		font-size: 1.8em;
		margin-top: 12px;
	}

	.header, .logo_head, #footer {
		visibility: hidden;
		height: 0;
		padding: 0;
		margin: 0;
	}

	.nav {
		font-size: 1.5em;
		margin: 0;
		padding: 0;
		border: 3px;
	}
	ul.nav {
		margin: 0;
		padding: 0 30px 0 0;
		list-style-type: none;
	}
	ul.nav li {
		float: left;
		margin: 0;
		padding: 3px 12px 3px 0px;
		width: 50%;
		font-size: 2em;
	}
	.nav-a {
		padding: 0 50px 0 0;
	}

	table, td {
		font-size: 1.2em;
	}
	.w30 {
		font-size: 1.2em;
		width: 40%;
	}
	.w50 {
		font-size: 1.2em;
	}
	.w70 {
		font-size: 1.2em;
		width: 60%;
	}

	#footer-all {
		font-size: 1.5em;
		padding: 6px 12px;
	}
	#footer-all p {
		font-size: 1.2em;
		margin-top: 3px;
		margin-bottom: 3px;
		line-height: 1.5;
	}

	.toptop, #toptop {
		height: 0;
		min-height: 0;
		max-height: 0;
		overflow: hidden;
		margin: 0;
		padding: 0;
	}
}
