/* Version: 05.03.2018 */


 /* ------------------- 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: DINWebPro, sans-serif;
/* ------------------- NICHT VERÄNDERN ------------------------- */
  font-size: 100%;
 /* ------------------------------------------------------------ */
  color: #000;
  text-decoration: none;
  font-weight: normal;
  word-spacing: normal;
  line-height: 1.5;
  background-color: #f1f1f1;
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust:exact;
}


p:empty {
  height: 1rem;
} 





@font-face {
  font-family: DINWebPro;
  src: url(DINWebPro.woff) format("woff");
}


@font-face {
  font-family: DINWebPro-Bold;
  src: url(DINWebPro-Bold.woff) format("woff");
}

@font-face {
  font-family: DINWebPro-Light;
  src: url(DINWebPro-Light.woff) format("woff");
}

@font-face {
  font-family: DINWebPro-Medium;
  src: url(DINWebPro-Medium.woff) format("woff");
}






.dinBOLD{font-family: DINWebPro-Bold;}
.dinLIGHT{font-family: DINWebPro-Light;}



p {
  margin: 0 0 0rem 0;
}

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

h2 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: normal;
}

.frame-outer {
  position: relative;
  padding: 0;
  width: 800px;
  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;
}



.title-block {
  position: absolute;
  bottom: 5rem;
  left: 17.5rem;
} 

.tuerkis{color:#00d7c4;}
.dunkelblau{color:#000f9f;}
.upp{text-transform:uppercase;}
.weiss{color:#fff;}
.tuerkis-bg{background-color:#00d7c4; padding:0.5rem 1rem; color:#fff;}
.hellblau{color: #238dc1;}
.hellblau-bg {background-color:#238dc1; padding:0.5rem 1rem; color:#fce200;}
.dunkelblau-bg {background-color:#000f9f; padding:0.5rem 1rem; color:#fff;}

.header {
  position: relative;
}


.content {
  padding: 2rem 7rem 0.5rem 2rem;
	position: relative;
}

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


.logos{position: absolute; right:1.5rem; top:2rem; width:3.2rem;}

.benjerry{position:absolute; right:2.5rem; bottom: 7.5rem; width:12rem;}



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

.box-right {
  float: right;
  width: 48%;
}

.footer {
padding: 0 2rem 0 0;
}

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

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

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

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

a:hover {
  text-decoration: underline;
  color: #000f9f;
}

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

ul {
  margin: 1rem auto 1rem 0.5rem;
  padding-left: 0.5rem;
  list-style-type: disc;
  /* ------------- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT ----------------  */
  /* list-style-type: none; */
  /* DANN MUSS "list-style-type: disc;" GELÖSCHT WERDEN.
  /* ------------------------------------------------------------------------------------------------- */
}

li {
  /* ------------- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT ----------------  */
  /* position: relative; */
  /* ------------------------------------------------------------------------------------------------- */
  margin: auto;
  padding: 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;
} 
*/


.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%;
}

p:empty {
  height: 1rem;
}



/* -------------- 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;") -------------------- */

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

.left {
  width: 48%;
}

.right {
  width: 48%;
}


.mitte {
  width: 18%;
}




/*
_______________________

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;
}


/*
_______________________

MARKIERTER TEXT
_______________________

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

*/
.apply {}
