/* Version: 05.03.2018 */


@font-face {
	font-family: "Open Sans";
	src: url('https://fonts.pwrk.dev/ofl/opensans/OpenSans[wdth,wght].woff2') format('woff2');
	font-weight: 300, 400, 500, 600, 700, 800;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url('https://fonts.pwrk.dev/ofl/opensans/OpenSans-Italic[wdth,wght].woff2') format('woff2');
	font-weight: 300, 400, 500, 600, 700, 800;
	font-style: italic;
}
 /* ------------------- NICHT VERÄNDERN ------------------------- */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	 line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

 /* ----------------------------------------------------------- */

body {
	font-family: 'Open Sans', sans-serif;
	/* ------------------- NICHT VERÄNDERN ------------------------- */
	font-size: 100%;
	/* ------------------------------------------------------------ */
	color: #000;
	text-decoration: none;
	font-weight: normal;
	word-spacing: normal;
	line-height: 1.3;
	background-color: #f1f1f1;
	/*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
	-webkit-print-color-adjust:exact;
}

p {
	margin: 0 0 0.2rem 0;
}

h1 {
	line-height: 1.5;
	font-size: 2rem;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

h2 {
	margin: 0;
	line-height: 1.5;
	font-size: 1rem;
	font-weight: normal;
}

.frame-outer {
	position: relative;
	padding: 0;
	width: 740px;
	margin: 1.3rem auto;
	background-color: #fff;
	border: 0.02rem solid #A7A9A4;
	box-shadow: -0.1rem 0.1rem 1rem #999;
	font-size: 0.8rem;
}

.frame-outer::after {
	content: "";
	display: block;
	clear: both;
}

.content {
	padding: 1.1rem 5%;
}

.content::after {
	content: "";
	display: block;
	clear: both;
}

.header{
	position: relative;
}

.logo {
	background-color: #052342 !important;
	padding: 1rem 5%;
}

#logo{
	float: right;
	width: 48%;
	text-align: right;
}

#button{
	float: left;
	width: 48%;
}

#logo-unten{
	float: left;
	width: 48%;
}

#button-unten{
	float: right;
	width: 48%;
	text-align: center;
}

#title-block {
	position: absolute;
	bottom: 8%;
	right: 0;
	padding: 0.5rem 3%;
	/* -- FALLBACK FÜR BROWSER DIE RGBA-WERTE NICHT UNTERSTÜTZEN -- */
	background: rgb(255, 255, 255);
	/* -------------------------------------------------------------- */
	background: rgba(255, 255, 255, 0.8);
	color: #95c11f;
	width: 100%;
	text-align: center;
}

.green{
	color: #95c11f!important;
}

.blue{
	color: #052342;
}

#box-left {
	float: left;
	width: 48%;
}

#box-right {
	float: right;
	width: 48%;
	text-align: right;
}

#footer {
	background-color: #052342 !important;
	padding: 1rem 5%;
	color: #fff;
}

#footer::after {
	content: "";
	display: block;
	clear: both;
}

.dots{
	background-image: linear-gradient(to right,#d8e5ed 33%,rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 5px 2px;
	background-repeat: repeat-x;
	color: #fff;
	margin: 5px 0 25px 0;
}

img {
	max-width: 100%;
	height: auto;
	width: auto9;
	border: 0;
	vertical-align: middle;
}

a:link {
	color: #fff;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: #fff;
}

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

a:active {
	text-decoration: none;
	color: #fff;
}

ul {
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 0.5rem;
	padding-left: 0.5rem;
	list-style-type: disc;
}

li {
	/*-- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT --*/
	/* position: relative; */
	/* --------------------------------------------------------------------- */
	margin: auto;
	padding: 0.2rem 0;
}

/* -- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT --  */

/* 
li::before {
	position: absolute;
	top: 0;
	left: -0.8rem;
	content: "■";
	font-size: 0.8rem;
	color: red;
} 
*/

/*
_______________________

KAPITÄLCHEN, BULLETPOINT
_______________________

<span class="capital" style="float: left; width: 43px; height: 20px; line-height: 47px; background: transparent; font-size: 38px; margin-top: -5px; margin-right: -32px; margin-bottom: 5px; background-color: transparent;">I</span>

ul li {
background: url(bp.jpg) no-repeat 2px 5px; padding-left:8px;
}
*/

.flex {
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0;
}

.left {
	width: 100%;
	margin-right: 1rem;
	padding: 0.5rem 0;
	border-top: 0.1rem solid #d8e5ed;
	border-bottom: 0.1rem solid #d8e5ed;
}

.right {
	width: 100%;
	margin-left: 1rem;
	padding: 0.5rem 0;
	border-top: 0.1rem solid #d8e5ed;
	border-bottom: 0.1rem solid #d8e5ed;
}

/* -------------- FLEXBOX EIGENSCHAFTEN -------------------- */
/* -----GENERELL: FLEXBOX STATT FLOAT NEHMEN, DA SIE BESSERE OPTIONEN ZUR GESTALTUNG BIETEN, 
JEDOCH DARAUF ACHTEN, DASS FLEXBOXEN NICHT VOM INTERNET EXPLORER 9 UND ABWÄRTS UNTERSTÜTZT WERDEN. => IN DEM FALL FLOATEN --------------------- */
/* 
.flex {
	display: table;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 1rem 0;
} 
*/
/* -- FLEXBOX EIGENSCHAFTEN FÜR GLEICHE HOHE BOXEN MIT "PLATZ ZWISCHEN DEN BOXEN" (siehe "justify-content: space-between;") -- */

p:empty {
	height: 0.625rem;
}

.clear {
	clear: both;
	font-size: 0;
	line-height: 0;
}

.hide {
	display: none;
}

.refnr {}

.justifier {
	text-align: justify;
	text-align-last: justify;
}

.justifier:after {
	content: "";
	display: inline-block;
	width: 100%;
}

.button_box {
	text-align: left;
}

.button_box2 {
	text-align: right;
}

.button_box::after {
	clear: both;
	content: "";
	display: block;
}

/*_______________________

BUTTON MIT ANIMATION
_______________________
*/

.button a {
	display: inline-block;
	padding: 0.6rem 2.5rem 0.6rem 2.5rem;
	margin: 1.3rem auto;
	cursor: pointer;
	-webkit-border-radius: 0.2rem;
	border-radius: 0.2rem;
	transition: all 140ms ease 0s;
	-moz-transition: all 140ms ease 0s;
	-webkit-transition: all 140ms ease 0s;
	color: #fff;
	border: 0.1rem solid #052342;
	font-size: 1rem;
}
.button a:hover {
	background-position: 15px center;
	text-decoration: none;
	color: #95c11f;
	border: 0.1rem solid #95c11f;
}

.button2 a {
	display: inline-block;
	padding: 0.6rem 2.5rem 0.6rem 2.5rem;
	margin: 1.3rem auto;
	cursor: pointer;
	-webkit-border-radius: 0.2rem;
	border-radius: 0.2rem;
	transition: all 140ms ease 0s;
	-moz-transition: all 140ms ease 0s;
	-webkit-transition: all 140ms ease 0s;
	color: #052342 !important;
	border: 0.1rem solid #d8e5ed;
	font-size: 1rem;
}
.button2 a:hover {
	background-position: 15px center;
	text-decoration: none;
	color: #95c11f !important;
	border: 0.1rem solid #95c11f;
}


/*
_______________________

MARKIERTER TEXT
_______________________

::selection {
background: #ffb7b7;
}
::-moz-selection {
background: #ffb7b7;
}

*/
.apply {}
