/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

 /* Colors

 blue rgb (77,120,163);
 brightblue rgb (65,131,196);

/* ==========================================================================
   Base styles
   ========================================================================== */

/* fonts: beware CMS rules or user will be see cry  */
/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../font/Metropolis-Regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../font/Metropolis-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/Metropolis-Regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/Metropolis-Regular.woff') format('woff'), /* Modern Browsers */
       url('../font/Metropolis-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../font/Metropolis-SemiBold.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../font/Metropolis-SemiBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/Metropolis-SemiBold.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/Metropolis-SemiBold.woff') format('woff'), /* Modern Browsers */
       url('../font/Metropolis-SemiBold.ttf') format('truetype'); /* Safari, Android, iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../font/Metropolis-Bold.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../font/Metropolis-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/Metropolis-Bold.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/Metropolis-Bold.woff') format('woff'), /* Modern Browsers */
       url('../font/Metropolis-Bold.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* Inter Regular 300 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: local('Inter');
    src: url('../font/Inter/Inter-Regular.ttf') format('truetype'); /* Safari, Android, iOS */;
  }

  /* Inter Regular 400 */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: local('Inter');
    src: url('../font/Inter/Inter-Regular.ttf') format('truetype');
  }

/* Inter Bold */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: local('Inter');
    src: url('../font/Inter/Inter-Bold.ttf') format('truetype'); 
  }


html,
button,
input,
select,
textarea {
    color: #222;
    font-family: 'Open Sans', sans-serif;
}

html {
    font-size: 62.5%; /* reset to 10px */
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    background-color: rgb(255,255,255);
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
}

body > .page {
    background-color: rgb(255,255,255);
    /*background-image: url(../img/bg-page.png);
    background-repeat: repeat-x;
    background-position: left top;*/
    position: relative;
    overflow: hidden;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

a {
    color: rgb(77,120,163);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p, ul, ol, h1, h2, h3, h4, h5, h6, pre, dl, dt {
    margin: 0;
}

figure {
    margin: 0;
    padding: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

strong {
    font-weight: 600;
}

figcaption {
    font-size: 0.867em;
    margin: 0.6em 0 0.2em 0;
}

figure a {
    position: relative;
    display: block;
}

figure a.fancybox:after {
    content: "+";
    position: absolute;
    font-size: 2em;
    line-height: 0.8;
    font-weight: 600;
    right: 10px;
    bottom: 10px;
    padding: 0px 4px 2px 4px;
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    background-color: rgba(0,0,0,0.5);
}

figure a.fancybox:hover:after {
    color: #aaa;
}

figure.video a:after {
    content: url("../img/video-play.png");
    position: absolute;
    padding: 0;
    background: transparent;
    right: auto;
    left: 50%;
    bottom: auto;
    top: 50%;
    margin-left: -31px;
    margin-top: -21px;
}

.vjs-default-skin .vjs-big-play-button {
    left: 50% !important;
    top: 50% !important;
    margin-left: -2em;
    margin-top: -1em;
}

.video-js {
    padding-top: 56.25% !important;
    width: auto !important;
    height: auto !important;
}

/* ==========================================================================
   Basics 1em = 15px, font-size only for p, li, a
   ========================================================================== */


.text p + p,
.text pre + p,
.text p + pre,
.text p + ul,
.text p + ol,
.text ul + ul,
.text ul + p,
.text ul + ol,
.text ol + ol,
.text ol + p,
.text ol + ul {
    margin-top: 1em;
}

.text p {
    line-height: 1.5;
}


.text ul {
    padding-left: 2em;
}

.text ul li {
    list-style-type: disc;
}

.text ul.colored li {
    color: #4d78a3;
}

.text ul li span {
    color: #222;
}

.text li + li {
    margin-top: 0.3em;
}

.text h3 + p {
    margin-top: 1em;
}

.text p + div,
.text div + p,
.text div + h4 {
    margin-top: 1em;
}

.text h2,
.text h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #222;
}

.text h2:first-child,
.text h3:first-child {
    margin-top: 0;
}

.text h3 + h4,
.text pre + h4,
.text p + h4,
.text ul + h4,
.text ol + h4,
.text + .text,
article .text div + h4 {
    margin-top: 1em;
}

.text h4 + h5,
.text pre + h5,
.text p + h5,
.text ul + h5,
.text ol + h5,
.text + .text,
article .text div + h5 {
    margin-top: 0.75em;
    }

article .text h4 + div {
    margin-top: 0.5em;
}

.text > a {
    text-decoration: underline;
}

.text > a:hover {
    text-decoration: none;
}

.heading + .text,
.accordion + .text {
    margin-top: 2em;
}

.teaser .heading + .text {
    margin-top: 1em;
}

/* Abweichungen FAQ Details */

.faq-details .text h3,
.faq-details .text h4 {
    margin-top: 0;
    margin-bottom: 0.5em;
    color: #222;
}

.text h3,
.faq-details .text h3 {
    font-size: 1.25em;
    font-weight: 200;
}

.faq-details .text h4 {
    margin-top: 1em;
    font-size: 1em;
    font-weight: bold;
}

.faq-details .text div + h3,
.faq-details .text p + h3,
.faq-details .text ul + h3,
.faq-details .text ol + h3,
.faq-details .text table + h3,
.faq-details .text p + h4,
.faq-details .text ol + h4,
.faq-details .text ul + h4,
.faq-details .text table + h4,
.faq-details .text p + table  {
    margin-top: 1em;
}

.faq-details .heading {
    min-height: 2.4em;
}

.faq-details .text + .box-highlight,
.faq-details .text + .accordion,
.faq-details .accordion + .text {
    margin-top: 2em;
}

.faq-details .box-highlight,
.faq-details p.highlight {
    background-color: #fcf8e3;
}

.faq-details figure.pull-left + .text {
    float: none;
}

.faq-details figure.pull-left {
    margin-right: 1.5em;
    margin-left: 0;
    margin-bottom: 1em;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0;
    background: #0d4170;
    color: #aaa;
    padding: 1em 20em;
    text-align: center;
    font-weight: 600;
}

.chromeframe a {
    color: #fff;
    text-decoration: underline;
}

.chromeframe a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Layout + Grids
   ========================================================================== */

.wrapper {
    width: 940px;
    margin: 0 auto;
}


.highlight {
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.35);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.35);
}

article .highlight,
.faq-details .box-highlight {
    background-color: rgb(228,235,241);
    padding: 1.5em;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

article .highlight-danger,
.faq-details .box-highlight-danger {
  background-color: white;
  border: 3px solid #F44336;
}

article .highlight-warning,
.faq-details .box-highlight-warning {
  background-color: #FFFDE7;
}

.faq-details .highlight,
.faq-details .box-highlight {
    padding: 1em 1.5em;
}

.content-main.highlight {
    padding: 1.5em 2em 2.5em 2em;
}

.col-content.two-thirds {
    float: left;
    width: 64%;
}

.col-content.two-thirds + .col-marginal {
    width: 30%;
    float: right;
}

/* ==========================================================================
   Article Elements + Grids
   ========================================================================== */

.faq article .heading {
    margin-right: 220px;
}

article .heading h1 {
    font-size: 1.8em;
    line-height: 1.2;
    font-weight: 600;
}

article .heading h2 {
    font-size: 1.5em;
    line-height: 1.2;
    font-weight: 300;
}

article .heading + .group {
    margin-top: 2em;
}

article .group + .group {
    margin-top: 2em;
}

article figure,
.teaser figure {
    float: left;
     -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

/*
article .text {
    width: 64%;
}
*/

.two-thirds article .text {
    width: 100%;
}

article figure + .text {
    float: right;
}

.two-thirds article figure + .text {
    float: none;
}

article figure.pull-right + .text {
    float: left;
}

.two-thirds article figure.pull-right + .text {
    float: none;
}

article figure img {
    max-width: 100%;
}

article .one-half {
    width: 48%;
}

article .one-half + .text {
    width: 48%;
}

.two-thirds article .one-half + .text {
    width: 100%;
}

article .two-thirds  {
    width: 64%;
}

article .two-thirds + .text {
    width: 32%;
}

.two-thirds article .two-thirds + .text {
    width: 100%;
}

article .one-third  {
    width: 32%;
}

article .one-third + .text {
    width: 64%;
}

.two-thirds article .one-third + .text {
    width: 100%;
}

.two-thirds article figure {
    margin-right: 1em;
    margin-bottom: 1em;
}

.two-thirds article figure.pull-right {
    margin-right: 0;
    margin-left: 1em;
}

figure.group-of-five {
    text-align: center;
    display: block;
    width: 100%;
}

figure.group-of-five img,
figure.group-of-five a {
    display: inline-block;
    margin-right: 1.5em;
    float: none;
}

.accordion figure.one-third {
    margin-right: 0;
    margin-left: 1.5em;
    float: right;
}

.accordion .text ul {
    display: table;
}

.cta {
    position: relative;
}

.cta > .cta-bullet {
    position: absolute;
    width: 120px;
    height: 120px;
    right: 10px;
    top: 40px;
    transition: all 0.2s 0s ease;
    -webkit-transition: all 0.2s 0s ease;
    -moz-transition: all 0.2s 0s ease;
    -ms-transition: all 0.2s 0s ease;
}

.cta > .cta-bullet img {
    max-width: 100%;
}

.cta > .cta-bullet:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

/* ==========================================================================
   Intro
   ========================================================================== */

.intro p {
    font-size: 1.3em;
    font-weight: 300;
}

.intro h3 {
    font-weight: 400;
}

.intro p + p {
    margin-top: 1em;
}

.big-caption {
    text-align: center;
    font-size: inherit;
    margin: 0.5em 0 2em;
    color: #999;
}

.big-caption strong,
.big-caption span {
    display: block;
    font-size: 2em;
}

.big-caption strong {
    font-size: 2em;
}

.big-caption span {
    font-size: 1.8em;
}

.text.centered h3,
.text.centered p {
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

figure.centered {
    text-align: center;
    margin-bottom: 1em;
}

.textbox-centered {
    text-align: center;
    margin: 1em 0;
}

/* ==========================================================================
   Check List
   ========================================================================== */

.list-check li {
    background: transparent url(../img/checkbox.png) top left no-repeat;
    padding-left: 110px;
    margin-bottom: 2em;
    display: block;
    min-height: 80px;
}

.list-check h3 {
    font-size: 1.7em;
    font-weight: 600;
}

.list-check p {
    font-size: 1.5em;
}

.icon-feature {
    background: transparent url(../img/icon-feature.png) center center no-repeat;
    width: 35px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* ==========================================================================
   Errata Highlight
   ========================================================================== */

.errata-highlight {
    border: 2px solid #f0f0f0;
    padding: 1em;
}

.text + .errata-highlight {
    margin-top: 2em;
}

.errata-highlight .heading h1,
.errata-highlight .heading h2,
.errata-highlight .text h3 {
    font-size: 1.1em;
}

.errata-highlight .text h3 + p {
    margin-top: 0.5em;
}

.errata-highlight .heading h1:before {
    content: url("../img/icon_errata.png");
    display: inline-block;
    margin-right: 5px;
    vertical-align: -1px;
}

.has-errata h4:after {
    content: url("../img/icon_errata.png");
    display: inline-block;
    margin-left: 5px;
    vertical-align: -1px;
}

.header-elements {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  position: relative;
  /* box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2); */
  text-align: center;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.16); */
  padding: 25px 0;
}

@media only screen and (min-width: 1180px) {
    .header-elements {
        padding: 32px 48px;
    }
}

.header-elements .wrapper {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .header-elements .wrapper:before {
        display: none;
    }
    .header-elements .wrapper:after {
        content: '';
        width: 22px;
    }
}

@media only screen and (min-width: 769px) {
    .header-elements .wrapper {
        flex-direction: column;
    }
}

@media (min-width: 1180px) {
    .header-elements .wrapper {
        flex-direction: row;
        margin-bottom: 0;
    }
}

.header-elements .wrapper:before , .header-elements .wrapper:after {
    display: none;
}

@media only screen and (min-width: 1180px) {
    .header-elements {
        padding: 32px 48px;
    }
}


.header-elements .advice-button-wrapper {
    margin-right: 0;
    display: none;
    flex-basis: 0;
    flex-grow: 1;
    justify-content: flex-end;
}

@media only screen and (min-width: 1180px) {
    .header-elements .advice-button-wrapper {
        margin-left: 24px;
    }
}

.header-elements .advice-button-wrapper .advice-button:not(:last-child) {
    margin-right: 8px;
}

@media (min-width: 769px) {
    .header-elements .advice-button-wrapper {
        display: flex;
    }
}


*/
.header-elements .login-status {
    position: relative;
}

.header-elements .login-status .status-text {
  color: #999;
  font-size: 0.75em;
  position: absolute;
  right: 8px;
  bottom: -20px;
}

@media only screen and (max-width: 768px) {
  .header-elements {
    text-align: center;
  }
}

/* ==========================================================================
   Offsearch
   ========================================================================== */

.offsearch {
  background-color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  width: 100%;
  height: 0;
  transition: all 0.3s ease;
}

.offsearch-in .offsearch {
  height: 80px;
}

.offsearch .search {
  position: relative;
  padding: 20px 0;
}

.offsearch input[type="text"],
.offsearch input[type="search"] {
  font-size: 1.2em;
  padding: 0.4em 2em 0.4em 0.4em;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-family: "Open Sans";
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.offsearch input[type="search"]:focus {
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  outline: 0;
}

.offsearch form {
    position: relative;
    margin-right: 54px;
}

.offsearch .button-nostyle {
    position: absolute;
    right: 10px;
    top: 4px;
    margin: 0;
    padding: 0;
    width: 28px;
    height: 28px;
}

.offsearch .search-close {
    position: absolute;
    right: 0;
    top: 20px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
}

.offsearch .search-close .icon {
    background: url(../img/icon_close_big.png) no-repeat center center;
    width: 40px;
    height: 40px;
    display: inline-block;
}

/* ==========================================================================
   Offcanvas
   ========================================================================== */

.offcanvas {
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  overflow-y: scroll;
  background-color: rgb(255, 255, 255);
  transform: translateX(-280px);
  transition: transform 0.3s ease;
}

.offcanvas-in {
  overflow: hidden;
}

.offcanvas-in .offcanvas {
  transform: translateX(0px)
}

.page {
  transition: transform 0.3s ease;
}

.offcanvas-in .page {
  transform: translateX(280px);
}

.nav-mobile li {
  display: block;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.nav-mobile a {
  display: block;
  padding: 10px 20px;
  font-size: 1.5em;
}

.nav-mobile a:hover {
  text-decoration: none;
  background-color: rgb(238, 238, 238);
}

.nav-mobile li:first-child a {
  color: rgb(34, 34, 34);
  font-weight: bold;
}

/* ==========================================================================
   Bullets
   ========================================================================== */

.bullet {
  width: 66px;
  height: 66px;
  position: relative;
  display: inline-block;
  border-radius: 100%;
}

.bullet-orange {
  background-color: rgb(255, 144, 33);
}

.bullet-blue {
  background-color: rgb(15, 77, 131);
}

/* ==========================================================================
   Header Elements, Logo, Toggle
   ========================================================================== */

.logo {
  border: 0;
  display: inline-block;
  background: transparent;
  height: 56px;
  order: -1;
  flex-basis: 0;
  flex-grow: 1;
  text-align: left;
  margin-right: 24px;
}

@media only screen and (max-width: 576px) {
        .logo img {
            height: 40px !important;
            margin-top: 8px;
    }
} 

.logo:active,
.logo:focus {
  outline: none;
}

.button-mobile {
  width: 22px;
  height: 22px;
  background: transparent url('../img/menu_icon.svg') no-repeat center center;
  text-indent: -99em;
  border: 0;
  padding: 0;
  display: block;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
  overflow: hidden;
  float: left;
  order: -1;
  margin-left:0 !important;
}

.search-mobile {
  width: 22px;
  height: 22px;
  background: transparent url('../img/icon-search-button.png') no-repeat center center;
  text-indent: -99em;
  border: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  float: right;
  margin-top: 25px;
}

.offcanvas-in .button-mobile {
  /* transform: rotate(-90deg); */
  margin-right: 280px;
  background: transparent url('../img/letter-x.svg') no-repeat center center;
}

.button-mobile:focus,
.search-mobile:focus {
    outline: none;
}

@media only screen and (min-width: 1180px) {
  .button-mobile,
  .search-mobile {
    display: none;
  }
}

/* Main Navigation */

.nav-sections {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1180px) {
    .nav-sections {
        margin-left: auto;
    }
}

.nav-sections > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-sections > ul > li {
  align-self: start;
  -webkit-transition: all 0s ease 0.2s;
  -moz-transition: all 0s ease 0.2s;
  -ms-transition: all 0s ease 0.2s;
  transition: all 0s ease 0.2s;
  margin: 1rem;
}

.nav-sections > ul > li:last-child {
    margin-right: 0;
}

.nav-sections > ul > li > a {
  height: 43px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2px;
  line-height: 26px;
  text-transform: normal;
  color: white;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
  border-radius: 1rem;
  border: 3px solid transparent;
}

.nav-sections > ul > li > a:hover {
  box-sizing: border-box;
  height: auto;
  border: 3px solid white;
  color: black;
  border-radius: 21.5px;
  text-decoration: none;
  background-color: white;
}

.nav-sections > ul > li.active > a {
  box-sizing: border-box;
  height: auto;
  border: 3px solid #FFFFFF;
  border-radius: 21.5px;
}

.nav-sections > ul > li.button-login a {
  background-color: rgb(255, 128, 0);
  color: rgb(255, 255, 255);
}

.nav-sections > ul > li.button-search a {
  position: relative;
  padding-left: 18px;
  margin-left: 14px;
}

.nav-sections > ul > li.button-search a:before {
  position: absolute;
  content: '';
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url(../img/icons-search-sprites.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}

.nav-sections > ul > li > .layer {
  background-color: rgba(44, 49, 53, 0.95);
  padding: 40px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2000;
  visibility: hidden;
  transition: all 0.4s ease 0.2s;
  opacity: 0;
}

.nav-sections h2 {
  color: rgb(129, 129, 129);
  font-weight: normal;
  margin: 0 0 40px;
}

.nav-sections .layer li {
  border-bottom: 1px solid rgb(77, 77, 77);
}

.nav-sections .layer a {
  color: rgb(255, 255, 255);
}

.nav-sections > ul > li:hover > .layer {
  opacity: 1;
  visibility: visible;
}

.nav-sections .layer .row {
  margin-right: -15px;
  margin-left: -15px;
}

.nav-sections .layer .row:before,
.nav-sections .layer .row:after {
  display: table;
  content: " ";
  clear: both;
}

.nav-sections .layer .col {
  width: 33.333%;
  float: left;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-sections .layer ul a {
  padding: 10px 0 10px 22px;
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  position: relative;
}

.nav-sections .layer ul a:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  top: 50%;
  left: 0;
  border-top: 2px solid rgb(255, 128, 0);
  border-right: 2px solid rgb(255, 128, 0);
  transform: translateY(-50%) rotate(45deg);
}

.nav-sections h3 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.nav-sections a p {
  font-size: 13px;
  font-size: 1.3rem;
}

.nav-sections a:hover {
  text-decoration: underline;
}

.nav-sections a:hover h3 {
  text-decoration: underline;
}

.nav-sections a:hover p {
  text-decoration: none;
}

.nav-sections figure {
  border: 0;
}

.nav-sections .feature {
  display: block;
  position: relative;
  min-height: 66px;
  padding-left: 80px;
}

.nav-sections .feature + .feature {
  margin-top: 40px;
}

.nav-sections .feature .bullet {
  position: absolute;
  top: 0;
  left: 0;
}

.nav-sections .feature .bullet .icon {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: #0E1F33;
    padding: 5rem 0;
    border: 2px solid white;
}

.set-footer-space footer {
  margin-top: 2em;
}

footer a,
footer p {
    color: #fff;
}

footer nav > ul {
    width: 30%;
    float: left;
}


footer nav ul li {
    font-size: 0.867em;
    line-height: 1.4;
}

footer nav ul li + li {
    margin-top: 0.4em;
}

footer nav ul li:first-child {
    font-size: 0.867em;
}

footer nav:not(.footer-navi) ul li:first-child a {
    text-transform: uppercase;
    color: #aaa;
}

footer nav:not(.footer-navi) ul:last-child li {
    margin-bottom: 0.8em;
}

footer nav:not(.footer-navi) ul:last-child li:first-child a {
    text-transform: none;
    color: #fff;
}

footer nav:not(.footer-navi) ul:last-child li a {
    background-color: #545454;
    display: block;
    text-align: center;
    padding: 0.6em 1em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

footer .statement .um-logo {
    float: left;
    width: 25%;
}

footer .statement .um-logo img {
    width: 128px;
    height: auto;
}

footer .statement .csa-logo {
    float: left;
    width: 50%;
    text-align: center;
    
}

footer .statement .text {
    text-align: center;
    padding-top: 2rem;
}

footer .statement p {
    font-size: 13px;
    line-height: 1.5;
    font-family: Inter !important;
}

footer .statement .pi-logo {
    float: right;
    width: 25%;
    text-align: right;
}

footer .statement .pi-logo img {
    width: 124px;
    height: auto;
}

footer .footer-navi {
    margin-top: 2rem;
}

footer .footer-navi ul {
    width: 100%;
    text-align: center;
}

footer .footer-navi ul li {
    display: inline-block;
    margin: 0 1em;
}

footer .footer-navi ul li:first-child {
    font-size: 0.867em;
}

footer .footer-navi ul li a {
   font-size: 13px;
   text-decoration: none;
}

footer .footer-navi ul li:first-child a {
    text-transform: none;
    color: #FFF;
}

/* ==========================================================================
   Stage
   ========================================================================== */

.stage {
    margin-bottom: 4em;
    position: relative;
}

.stage > ul {
    height: 295px;
    overflow: hidden;
}

.bg-image > ul {
    height: 380px;
}

.stage ul li {
    background: #333;
    background: -moz-linear-gradient(50% 0% -90deg, #444 0%, #333 100%);
    background: -o-linear-gradient(-90deg, #444 0%, #333 100%);
    background: -webkit-gradient(linear, 50% 0%, 50% 104%, color-stop(0, #444), color-stop(1, #333));
    background: -webkit-linear-gradient(-90deg, #444 0%, #333 100%);
    background: linear-gradient(180deg, #444 0%, #333 100%);
}

.stage > ul > li {
    display: none;
}

.stage ul li > div {
    background: transparent url(../img/bg-stage-gloss.png) no-repeat center center;
    padding: 1.5em;
}

.stage ul li > div {
    height: 335px;
}

.stage figure {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.stage .text h3 {
    font-size: 2.8em;
    line-height: 1;
    font-weight: 400;
    margin-top: 0.5em;
    color: #fff;
}

.stage p.claim {
    font-weight: 300;
    font-size: 1.6em;
    line-height: 1.1;
    margin-top: 1em;
    margin-bottom: 1em;
}

.stage figure.pull-right {
    float: right;
}

.stage .text {
    width: 64%;
    color: #fff;
}

.stage figure + .text {
    float: right;
}

.stage figure.pull-right + .text {
    float: left;
}

.stage figure img {
    max-width: 100%;
}

.stage .one-half {
    width: 48%;
}

.stage .one-half + .text {
    width: 48%;
}

.stage .two-thirds  {
    width: 64%;
}

.bg-image .one-half {
    width: 54%;
}

.stage .two-thirds + .text {
    width: 32%;
}

.stage .one-third  {
    width: 32%;
}

.stage .one-third + .text {
    width: 64%;
}

.bg-image .text h3,
.bg-image .text p.claim {
    color: #222;
}

.stage-center ul li {
    background: transparent;
}

.stage-center .text,
.stage-center .text h3,
.stage-center .text p.claim,
.stage-center .text p {
    color: #222;
}

.stage-center .text {
    width: auto;
    float: none;
    text-align: center;
}

.stage-center figure,
.stage-center figure + .text {
    float: none;
}

.stage-center figure {
    box-shadow: none;
}

.stage-center ul li > div {
    height: auto;
    padding: 0;
}

.stage-center figure {
    text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
    background: #2a5881;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZzIyOSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBzdG9wLWNvbG9yPSIjNGQ3OGEzIiBvZmZzZXQ9IjAiLz48c3RvcCBzdG9wLWNvbG9yPSIjMmE1ODgxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZzIyOSkiIC8+PC9zdmc+);
    background: -moz-linear-gradient(34% 0% -90deg, #4d78a3 0%, #2a5881 100%);
    background: -o-linear-gradient(-90deg, #4d78a3 0%, #2a5881 100%);
    background: -webkit-gradient(linear, 34% 0%, 34% 110%, color-stop(0, #4d78a3), color-stop(1, #2a5881));
    background: -webkit-linear-gradient(-90deg, #4d78a3 0%, #2a5881 100%);
    background: linear-gradient(180deg, #4d78a3 0%, #2a5881 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #2a5881;
    display: inline-block;
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.35);
    padding: 0.2em 1em 0.3em 1em;
    font-size: 0.925em;
    font-weight: 600;
}

.button:hover {
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.35);
}

.button:hover span {
    text-decoration: none;
    opacity: 0.9;
}

.button span:after,
.readmore span:after {
    content: "\2002\00BB";
}

.button-orange {
    background: #d96d00;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZzIyOSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmY4MDAwIiBvZmZzZXQ9IjAiLz48c3RvcCBzdG9wLWNvbG9yPSIjZDk2ZDAwIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZzIyOSkiIC8+PC9zdmc+);
    background: -moz-linear-gradient(44% 0% -90deg, #ff8000 0%, #d96d00 100%);
    background: -o-linear-gradient(-90deg, #ff8000 0%, #d96d00 100%);
    background: -webkit-gradient(linear, 44% 0%, 44% 110%, color-stop(0, #ff8000), color-stop(1, #d96d00));
    background: -webkit-linear-gradient(-90deg, #ff8000 0%, #d96d00 100%);
    background: linear-gradient(180deg, #ff8000 0%, #d96d00 100%);
    border: 1px solid #b25900;
}


.button-nostyle {
    border: none;
    background: transparent !important;
    text-shadow: none;
    margin: 0;
    color: rgb(77,120,163);
}

.button-line {
    border: 1px solid rgb(77,120,163);
    background: transparent !important;
    text-shadow: none;
    margin: 0;
    color: rgb(77,120,163);
}

.button-nostyle:hover {
    box-shadow: none;
}

.button-big {
    font-size: 1.2em;
}

.readmore {

}

.linklist + .readmore {
    margin-top: 1em;
}

/* ==========================================================================
   Lead Heading
   ========================================================================== */

.heading-lead {
    margin-bottom: 3em;
}

.heading-lead h1 {
    text-align: center;
    line-height: 1.2;
    color: #444;
}

.heading-lead h1 strong,
.heading-lead h1 span {
    display: block;
}

.heading-lead h1 strong {
    font-size: 60px;
    font-size: 6rem;
    font-weight: 400;
}

.heading-lead h1 span {
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: 300;
}


/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs ul {
  overflow: auto;
}

.breadcrumbs li {
  float: left;
  position: relative;
  padding-right: 20px;
  margin-right: 13px;
}

.breadcrumbs li:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgb(216, 216, 216);
}

.breadcrumbs a {
  color: #999;
  font-size: 0.85em;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs li:last-child a {
  color: rgb(34, 34, 34);
}

.breadcrumbs li:last-child a:hover {
  text-decoration: none;
  cursor: default;
}

.breadcrumbs li:last-child:after {
  display: none;
}

/* ==========================================================================
   Page Navigation
   ========================================================================== */

.nav-page {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1em;
    margin-bottom: 2em;
}

.nav-page-bottom {
    border-top: 1px solid #ddd;
    border-bottom: 0;
    padding-top: 1em;
    padding-bottom: 0;
    margin-top: 2em;
    margin-bottom: 0;
}

.browse ul {
    overflow: auto;
}

.browse ul li {
    float: left;
    width: auto;
}

.browse ul li + li {
    margin-left: 1em;
}

.browse a  {
    position: relative;
    padding-left: 1.5em;
    display: block;
}

.browse a .icon {
    position: absolute;
    left: 0;
    top: 0.3em;
}

.browse a.next {
    padding-left: 0;
    padding-right: 1.5em;
}

.browse a.next .icon {
    left: auto;
    right: 0;
}

/* ==========================================================================
   Navigation Box
   ========================================================================== */

.nav-box {
    padding: 1em 1.5em 1.5em 1.5em;
    margin-bottom: 3em;
    background: #0d4170;
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -moz-linear-gradient(50% 0% -90deg, #4d78a3 0%, #0d4170 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -o-linear-gradient(-90deg, #4d78a3 0%, #0d4170 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -webkit-gradient(linear, 50% 0%, 50% 110%, color-stop(0, #4d78a3), color-stop(1, #0d4170));
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -webkit-linear-gradient(-90deg, #4d78a3 0%, #0d4170 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, linear-gradient(180deg, #4d78a3 0%, #0d4170 100%);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.35);
    box-shadow: 0 1px 3px rgba(0,0,0,.35);
}

.nav-box ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.nav-box a {
    color: #fff;
    display: block;
    padding: 0.2em 0.8em 0.2em 2.8em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
}

.nav-box li {
    margin: 0;
    padding: 0.5em 0;
    -webkit-break-inside: avoid;
    -moz-break-inside: avoid;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
    display: block;
    vertical-align: top;
}

.no-csscolumns .nav-box li {
    display: inline-block;
    width: 30%;
}

.no-csscolumns .nav-box-grey li {
    width: 24%;
}

.nav-box a:focus,
.nav-box a:active,
.nav-box li.active a {
    background-color: rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.3);
    box-shadow: inset 0px 2px 5px rgba(0,0,0,0.3);
    outline: none;
}

.nav-box .icon {
    position: absolute;
    top: 0.2em;
    left: 0.5em;
    display: block;
}

.nav-box .icon-envelope {
    top: 0.4em;
    left: 0.4em;
}

.nav-box .icon-addressbook {
    left: 0.4em;
}

.nav-box .icon-users {
    left: 0.2em;
}

.nav-box li a .link-text {
}


.nav-box h3 {
    font-weight: 300;
    font-size: 1.6em;
    color: #fff;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}


.nav-box-grey {
    background: #333;
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -moz-linear-gradient(50% 0% -90deg, #444 0%, #333 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -o-linear-gradient(-90deg, #444 0%, #333 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -webkit-gradient(linear, 50% 0%, 50% 104%, color-stop(0, #444), color-stop(1, #333));
    background: url(../img/bg-stage-gloss.png) center top no-repeat, -webkit-linear-gradient(-90deg, #444 0%, #333 100%);
    background: url(../img/bg-stage-gloss.png) center top no-repeat, linear-gradient(180deg, #444 0%, #333 100%);
    padding-top: 1.5em;
    padding-bottom: 0.5em;
}

.nav-box-grey ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

.no-csscolumns .nav-box-grey ul {
    max-height: auto;
}


.nav-box-grey ul li {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
    display: inline-block;
    vertical-align: top;
    width: 24%;
    margin-bottom: 1em;
}

/*.nav-box-grey ul li:nth-child(2n) {
    -webkit-column-break-after:always;
    -moz-column-break-after:always;
    column-break-after:always;
}*/

.nav-box-grey a {
    padding: 0.2em 0.8em 0.2em 3em;
}

.nav-box-grey .link-text {
    white-space: nowrap;
}

.nav-box-grey .link-text small {
    font-size: 0.867em;
    color: #aaa;
    font-weight: 300;
    display: block;
    white-space: nowrap;
}

.nav-box-grey a:hover .link-text  {
    text-decoration: none;
}

.nav-box-grey .icon {
    top: 50%;
    margin-top: -12px;
}

.nav-box-grey .icon-bookmark-w {
    left: 0.7em;
}


/* ==========================================================================
   Linklisten
   ========================================================================== */

.linklist {

}

.linklist li + li {
    margin-top: 0.5em;
}

.linklist a {
    position: relative;
    display: block;
    padding-left: 2em;
}


.linklist a:hover span,
.linklist a:focus span {
  text-decoration: underline;
}

.linklist a[href^="tel"] {
    display: inline-block;
    padding-left: 0;
}

.linklist p {
    padding-left: 2em;
}

.linklist .icon {
    position: absolute;
    left: 0;
}

.group + .linklist,
.linklist + .linklist,
article + .linklist {
    margin-top: 2em;
}

.heading + .linklist,
.linklist .heading + ul {
    margin-top: 1em;
}

.linklist .icon-phone-s {
    left: 0.2em;
}

.linklist .icon-keynote-s,
.linklist .icon-edit-s,
.linklist .icon-download-s {
    left: 0.1em;
}

.linklist .icon-video-s,
.linklist .icon-envelope-s {
    top: 0.3em;
}

.linklist .icon-arrow-right {
    top: 0.4em;
    left: 0.3em;
}

article > .linklist {
    padding-right: 36%;
}

.col-content.two-thirds article > .linklist {
    padding-right: 0;
}

.linklist.download a:hover span {
    text-decoration: underline;
}

.linklist.download a:hover span.meta-info {
    text-decoration: none;
}

/* innerhalb eines textblocks für Dokumentations-Links */

.text  .linklist.doc  a {
	display: inline-block;
}
.text .linklist.doc  ul ,
.text .linklist.doc ul li span span a {
    padding-left: 0;
}
.text  .linklist.doc  ul li {
    list-style-type: none;
}

.text  .linklist.doc  a.n2 {
    padding-left: 23px;
}

.text  .linklist.doc  a.n2 .icon {
    top: 2px;
    left: 1px;
}

.linklist .icon-pdf-s {
    background: transparent url(../img/icons.png) no-repeat -10px -50px;
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Edit 01.11.2017 */

.linklist-horizontal li {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
}

.linklist-horizontal li + li {
  margin-top: 0;
}

.linklist-horizontal .icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.linklist-horizontal .icon-download-s {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='%23323232' d='M17.4807692,9 C17.4807692,13.6765385 13.6765385,17.4807692 9,17.4807692 C4.32346154,17.4807692 0.519230769,13.6765385 0.519230769,9 C0.519230769,4.32346154 4.32346154,0.519230769 9,0.519230769 C13.6765385,0.519230769 17.4807692,4.32346154 17.4807692,9 Z M15.2307692,9 C15.2307692,5.56407692 12.4359231,2.76923077 9,2.76923077 C5.56407692,2.76923077 2.76923077,5.56407692 2.76923077,9 C2.76923077,12.4359231 5.56407692,15.2307692 9,15.2307692 C12.4359231,15.2307692 15.2307692,12.4359231 15.2307692,9 Z M13.0313077,8.59430769 L9.12184615,13.7367692 C9.04015385,13.842 8.90653846,13.8177692 8.82553846,13.7125385 L4.91538462,8.60746154 C4.83369231,8.50153846 4.87592308,8.30769231 5.00884615,8.30769231 L6.92307692,8.30769231 L6.92307692,5.21376923 C6.92307692,5.02338462 7.07884615,4.86761538 7.26923077,4.86761538 L10.7307692,4.86761538 C10.9211538,4.86761538 11.0769231,5.02338462 11.0769231,5.21376923 L11.0769231,8.30769231 L12.9378462,8.30769231 C13.0700769,8.30769231 13.113,8.48976923 13.0313077,8.59430769 Z'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
}

.linklist-horizontal .icon-documentation-s {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18'%3E%3Cpath fill='%23323232' d='M13.9090909,0 L2.70454545,0 L0,2.8125 L0,18 L11.5909091,18 C12.8659091,18 13.9090909,16.9875 13.9090909,15.75 L13.9090909,5.25 C13.9090909,4.0125 12.8659091,3 11.5909091,3 L2.11263636,3 L3.65809091,1.5 C3.65809091,1.5 12.3636364,1.5 13.1363636,1.5 C14.6818182,1.5 15.4545455,2.25 15.4545455,3.75 C15.4545455,4.5 15.4545455,15.75 15.4545455,15.75 L17,14.25 L17,3 C17,1.5 15.4545455,0 13.9090909,0 Z'/%3E%3C/svg%3E");
  background-position: 1px center;
  background-repeat: no-repeat;
  background-size: 17px;
  left: 1px;
}

.linklist-horizontal .icon-releasenotes-s {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17'%3E%3Cg fill='none'%3E%3Cpath fill='%23000000' d='M12 10.5523636L12 13.9090909C12 14.3340909 11.6625 14.6818182 11.25 14.6818182L2.25 14.6818182C1.8375 14.6818182 1.5 14.3340909 1.5 13.9090909L1.5 4.63636364C1.5 4.21136364 1.8375 3.86363636 2.25 3.86363636L10.008 3.86363636 11.36475 2.46422727C11.08875 2.37845455 10.803 2.31818182 10.5 2.31818182L3 2.31818182C1.34625 2.31818182 0 3.70445455 0 5.40909091L0 13.1363636C0 14.841 1.34625 16.2272727 3 16.2272727L10.5 16.2272727C12.15375 16.2272727 13.5 14.841 13.5 13.1363636L13.5 9.00768182 12 10.5523636zM17.78775 1.89395455L16.16175.217909091C16.0125.0649090909 15.76875.0649090909 15.618.217909091L14.53425 1.33527273 16.704 3.57077273 17.78775 2.45418182C17.937 2.29963636 17.937 2.04772727 17.78775 1.89395455z'/%3E%3Cpath fill='%23000000' d='M8.49975,11.9455909 L6.40575,9.75645455 L5.18175,12.9802727 C5.106,13.1835 5.20425,13.2847273 5.40225,13.2066818 L8.49975,11.9455909 Z'/%3E%3Crect width='3.068' height='9.944' x='10.018' y='1.671' fill='%23323232' transform='rotate%2845 11.552 6.643%29'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
}


/* ==========================================================================
   Checklisten
   ========================================================================== */

.text .checklist {
    padding-left: 0;
}

.text .checklist li {
    position: relative;
    display: block;
    padding-left: 2em;
}

.text .checklist .icon {
    position: absolute;
    left: 0.2em;
    top: 0.2em;
}

/* ==========================================================================
   Download Entry
   ========================================================================== */

.heading + .heading h3,
.download + .heading h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-size: 1.4em;
}

.download {
    margin-top: 2em;
}

.download h4 {
    font-weight: 600;
    font-size: 16px;
    font-size: 1.6rem;
}

.download h4 + p,
.download .text + .linklist {
    margin-top: 0.5em;
}

.download p + p {
    margin-top: 0;
}

.col-content .heading h3 {
    color: rgb(34,34,34);
}

.download .meta-info {
    color: #888;
}

.download a:hover {
    text-decoration: none;
}


/* ==========================================================================
   Release Note Entry
   ========================================================================== */

.heading + .releasenote {
    margin-top: 2em;
}

.releasenote + .releasenote {
    margin-top: 2em;
}

.releasenote h4 {
    font-weight: 600;
}

.releasenote h4 em {
    font-weight: 300;
    font-style: normal;
}

.releasenote ul {
    margin-top: 0.5em;
}

.releasenote .text p {
    margin-top: 0.5em;
    padding-left: 2em;
}

.releasenote .text p a:after {
    content: " »";
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery figure {
    width: 31%;
    float: left;
    margin-right: 3.5%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.gallery figure:nth-child(3n) {
    margin-right: 0;
}


/* ==========================================================================
   Search Box FAQ
   ========================================================================== */

.search-faq {
    padding: 1.5em 1.5em;
    margin-bottom: 2em;
}

.search-faq h3 {
    font-weight: 300;
    font-size: 1.875em;
}

.search-faq .group .group {
    margin-top: 0.3em;
}

.search-faq input[type="text"] {
    font-size: 1em;
    padding: 0.2em;
    width: 30em;
    margin-right: 0.5em;
}

.search-faq .group ul {
    column-count: 3;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    margin: 0 7em 0 4em;
}

.no-csscolumns .search-faq .group ul li {
    display: inline-block;
    width: 30%;
}

.search-faq .group ul input[type="radio"],
.search-faq .group ul input[type="checkbox"] {
    float: left;
    margin-top: 3px;
}

.search-faq ul li label:before,
.search-faq ul li label:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.search-faq ul li label:after {
    clear: both;
}

.search-faq ul li label {
    *zoom: 1;
    display: block;
}

.search-faq .group ul li span {
    display: block;
    padding-left: 20px;
}

.search-faq > .group:nth-child(2),
.search-faq > .group:nth-child(3) {
    position: relative;
}

.search-faq > .group:nth-child(1) .button-nostyle {
    margin-top: 0.5em;
}

.search-faq > .group:nth-child(2) .button,
.search-faq > .group:nth-child(3) .button {
    position: absolute;
    right: 0;
    bottom: 0;
}

.search-faq > .group:nth-child(2) h3,
.search-faq > .group:nth-child(3) h3 {
    border-top: 1px solid #ddd;
    margin-top: 0.8em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.search-faq #search-faq-themen,
.search-faq #search-faq-cms {
    display: none;
}

.search-faq.extended #search-faq-themen,
.search-faq.extended #search-faq-cms {
    display: block;
}

#toggle-search-faq:after {
    content: "\2002\00BB";
}

#toggle-search-faq em {
    font-style: normal;
}

#toggle-search-faq em.off {
    display: none;
}

#toggle-search-faq em.on {
    display: inline;
}

.extended #toggle-search-faq em.off {
    display: inline;
}

.extended #toggle-search-faq em.on {
    display: none;
}

/* ==========================================================================
   Search Global Box
   ========================================================================== */


.search-global-box {
    padding: 1.5em 1.5em;
    margin-bottom: 2em;
}

.search-global-box .SucheLabel {
    display: inline-block;
    margin-right: 2em;
    text-align: left;
}

.search-global-box .SucheLabel select {
    min-width: 10em;
}

.search-global-box .highlight {
    background-color: rgb(228,235,241);
    padding: 1em 1.5em;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: center;
    margin-top: 1.5em;
}

.search-global-box .GrauesFeld form,
.search-global-box .GrauesFeld form > div:not(.SucheLabel) {
    text-align: center;
}

.search-global-box .GrauesFeld form > div:not(.SucheLabel) {
    margin-bottom: 1.5em;
}

.SucheFeldInhalt {
    font-size: 1em;
    padding: 0.2em;
    width: 30em;
    margin-right: 0.5em;
}

label[for="Suche"] {
    font-weight: 100;
    font-size: 1.875em;
    display: inline-block;
}

label[for="Suche"] strong {
    font-weight: 200;
    vertical-align: -4px;
}

label[for="Suche"] + .SucheTextfeld {
    display: inline-block;
}

.heading + .Treffer {
    margin-top: 2em;
}

.Treffer {
    margin-bottom: 2em;
}

.Treffer_Ueberschrift a {
    text-decoration: underline;
}

.Treffer_Ueberschrift a:hover {
    text-decoration: none;
}

.Treffer_Pfad {
    font-weight: 600;
    font-size: 0.867em;
    margin-top: 0.3em;
}

.Treffer_Beschreibung {
    margin-top: 0.3em;
}

.search-link a {
    display: inline-block;
}

.search-link strong,
.search-text strong,
.Treffer strong {
    background-color: transparent;
    font-weight: 700;
}

.search-link strong em,
.search-text strong em,
.Treffer strong em {
    background-color: transparent;
    font-style: normal;
    font-weight: 700;
}

span.searchFind {
    /* font-weight: bold ; */
    background-color: rgb(255,244,203);
}


/* ==========================================================================
   Teaser
   ========================================================================== */

.teaser-group {
    margin-bottom: 2em;
}

.teaser {

}

.teaser figure {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.teaser figure img {
    max-width: 100%;
}

.teaser .heading h3 {
    font-size: 1.4em;
    line-height: 1.2;
}

.teaser .readmore {
    margin-top: 0.5em;
}

.teaser .linklist + .readmore {
    margin-top: 1em;
}

.teaser .readmore a {
    font-weight: 600;
    font-size: 14px;
    font-size: 1.4rem;
}
.group-of-three + .group-of-three {
    margin-top: 2em;
}

.group-of-three .teaser figure {
    float: none;
    margin-bottom: 1.5em;
}

.group-of-three .teaser .heading + .text {
    margin-top: 0.5em;
}

.group-of-three .teaser {
    width: 30%;
    margin-right: 5%;
    float: left;
}

.group-of-three .teaser:last-child {
    margin-right: 0;
}

.group-of-two .teaser {
    width: 48.5%;
    float: left;
}

.group-of-two .teaser.highlight {
    padding: 1.5em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.group-of-two .teaser:last-child {
    float: right;
}

.group-of-two .teaser figure {
    float: left;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    width: 36px;
    height: 36px;
    margin-top: -4px;
    margin-right: 1em;
    margin-bottom: 0;
}

.teaser-special {
    padding: 15px 20px;
    position: relative;
    margin: 2em 0 3em 0;
}

.teaser-special figure {
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.teaser-special > h2 {
    width: 25%;
    float: left;
    margin-right: 13%;
    font-weight: 300;
    line-height: 1.2;
}

.teaser-special > h2 span,
.teaser-special > h2 strong {
    display: block;
}

.teaser-special > ul {
    width: 42%;
    float: left;
    margin-top: 0.5em;
}

.teaser-special > ul li {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 9em;
    font-size: 0.875em;
}

.teaser-special > .button {
    position: absolute;
    right: 1.5em;
    top: 50%;
    margin-top: -13px;
}

.teaser-special figure {
    position: absolute;
    top: 50%;
    margin-top: -65px;
    margin-bottom: 0;
    left: 23.5%;
}

.teaser-feature {
    background-color: rgb(228,235,241);
    margin-top: 3em;
}

.teaser-feature > h2 {
    width: 50%;
    margin-right: 8%;
}
.teaser-feature > ul {
    width: 30%;
}

.teaser-feature > ul li {
    width: 12em;
}

.teaser-feature figure {
    left: 37%;
}

.left-position > h2 {
    margin-left: 17%;
    width: 63%;
    margin-right: 20%;
}

.left-position figure {
    left: 20px;
}

.teaser-wide {
    padding: 1em 1.5em;
    background-color: rgb(247,247,246);
    margin-top: 2em;
    margin-bottom: 2em;
}

.teaser-wide h3 {
    font-weight: 300;
    font-size: 1.5em;
}

.teaser-wide input[type="text"] {
    width: 22em;
    padding: 0.2em 0.6em;
}

.teaser-wide input + button {
    margin-left: 1em;
}

.teaser-group.highlight {
  padding: 1.5em 1.5em 1.5em 1.5em;
}

.teaser-products figure {
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.teaser-products .heading h3 {
    text-align: center;
    font-weight: 600;
}

.teaser-products .text {
    text-align: center;
}

.teaser-products .readmore {
    text-align: center;
}


/*Teaserboxen mit Farbmarkierung vom PiBlog*/

h3.piknowledge {
    font-weight: 600;
    margin-bottom: 1em;
}

span.pi {
    color: rgb(249,200,0);
}

span.knowledge {
    color: rgb(66,73,106);
}

.teaser.subject-one,
.teaser.subject-two,
.teaser.subject-three,
.teaser.subject-zero {
    border-left: 10px solid white;
    padding-left: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.teaser.subject-one,
.teaser.subject-one:before {
    border-color: rgb(123,182,113);
}

.teaser.subject-two,
.teaser.subject-two:before {
    border-color: rgb(93,147,190);
}

.teaser.subject-three,
.teaser.subject-three:before {
    border-color: rgb(135,96,164);
}

.teaser.subject-zero,
.teaser.subject-zero:before {
    border-color: rgb(249,200,0);
}


/* ==========================================================================
   Google Map
   ========================================================================== */

#map-canvas {
    height: 260px;
    margin-bottom: 1.5em;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Group Heading with Icons
   ========================================================================== */

.group-heading h2 {
  position: relative;
  display: block;
  padding-left: 1.7em;
  font-weight: 400;
  margin-bottom: 1em;
}

.group-heading.iconless h2,
.iconless h2 {
    padding-left: 0;
}

.group-heading h2 .icon,
.group-heading h2 .icon-list-head {
  position: absolute;
  left: 0;
}

.group-heading h2 .icon-users-l {
  top: 0.3em;
  left: -0.2em;
}

.group-heading h2 .icon-envelope-l {
  top: 0.4em;
}

.group-heading h2 .icon-config-l,
.group-heading h2 .icon-adjust-l {
  top: 0.15em;
}

.group-heading h2 .icon-pie-chart-l,
.group-heading h2 .icon-charts-l {
  top: 0.1em;
}

.group-heading h2 .icon-link-l {
  top: 0.1em;
  left: 0.1em;
}

.group-heading + .group {
    margin-top: 1em;
}

.linklist + .group-heading,
.group + .group-heading {
    margin-top: 3em;
}

.group-heading h2 .icon-rtt-l {
  top: 0.125em;
}

/* ==========================================================================
   Top Link
   ========================================================================== */

.toplink {
    border-top: 1px solid #ddd;
    padding-top: 0.5em;
    margin-bottom: 2em;
}

.toplink a {
    font-size: 0.867em;
}

.toplink i {
    display: inline-block;
    margin: 0 2em 0 0.5em;
}

/* ==========================================================================
   Accordion
   ========================================================================== */

.accordion > div + div {
    margin-top: 0.5em;
}

.accordion .inside {
    padding: 1em 0;
}

.accordion-title {
    background-color: #ebebeb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 0.3em;
}

.accordion-title a {
    position: relative;
    display: block;
    padding-left: 2em;
}

.accordion-title a i {
    position: absolute;
    left: 8px;
    top: 4px;
}

.accordion a .icon-plus,
.accordion a .icon-minus {
    background: transparent;
}

.accordion a i.icon-plus {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #888;
    left: 10px;
}

.accordion a i.icon-minus {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #888;
    top: 8px;
}

.accordion .closed a .icon-plus {
    display: block;
}

.accordion .closed a .icon-minus {
    display: none;
}

.accordion .open a .icon-plus {
    display: none;
}

.accordion .open a .icon-minus {
    display: block;
}


/* ==========================================================================
   Code Block
   ========================================================================== */

code, pre {
    font-family: Consolas, Courier, monospace;
    font-size: 13px;
}

pre {
    background-color: #ececec;
    color: #185602;
    padding: 0.8em 1em;
    font-size: 13px;
 }

p tt {
    font-size: 13px;
    background-color: #ececec;
    color: #185602;
    padding: 0 0.2em 0.2em 0.2em;
    font-family: Consolas, Courier, monospace;
}

code {
    background-color: #ececec;
    color: #185602;
    padding: 0 0.2em 0.2em 0.2em;
}


.code-title {
    display: inline-block;
    margin-left: 1em;
    background-color: #8a8a8a;
    color: #fff;
    padding: 0.3em 1em;
    font-size: 0.867em;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZzEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjOTc5Nzk3Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjODk4OTg5Ii8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2cxKSIgLz48L3N2Zz4=);
    background-image: -webkit-gradient(linear, center top, center bottom, color-stop(0%, #979797), color-stop(100%, #898989));
    background-image: -webkit-linear-gradient(top, #979797 0%, #898989 100%);
    background-image: -moz-linear-gradient(top, #979797 0%, #898989 100%);
    background-image: -ms-linear-gradient(top, #979797 0%, #898989 100%);
    background-image: -o-linear-gradient(top, #979797 0%, #898989 100%);
    background-image: linear-gradient(to bottom, #979797 0%, #898989 100%);
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.code-title + div,
.code-block {
    background-color: #f4f4f4;
    font-size: 0.867em;
}

/* Kopie aus dem alten Projekt */

.syntaxhighlighter {
    margin: 0 !important;
    width: auto !important;
    padding: 10px;
    background-color: #ececec !important;
    font-family: Consolas, Courier, monospace;
}

.syntaxhighlighter > table {
    min-width: 100%;
}

.syntaxhighlighter td.gutter div {
    color: #5c5c5c;
}

.syntaxhighlighter td.gutter .line {
    border-right: 0px !important;
}

.syntaxhighlighter td.gutter .line,
.syntaxhighlighter div.line {
    padding-top: 0.3em !important;
    padding-bottom: 0.2em !important;
}

.syntaxhighlighter div.line.alt1 {
    background-color: #fafafa !important;
}

.syntaxhighlighter div.line.alt2 {
    background-color: #eeeeee !important;
}

.syntaxhighlighter td.gutter div.line.alt1 {
    background: #dedede !important;
}

.syntaxhighlighter td.gutter div.line.alt2 {
    background: #c9c9c9 !important;
}

.syntaxhighlighter .toolbar {
    background: #F37A04 !important;
    height: 14px !important;
    width: 14px !important;
}

/* Kopie Ende */

/* ==========================================================================
   Side Info
   ========================================================================== */

.text dl {
    font-size: 0.867em;
}

.text dl + dl {
    margin-top: 0.2em;
}

.text dt {
    display: inline;
    font-weight: 600;
}

.text dt + dd {
    margin-right: 1em;
}

.text dd {
    display: inline;
    margin-left: 0.4em;
}

.text dl.definition-list {
    font-size: 1em;
}

.text dl.definition-list dt {
    float: left;
    width: 1em;
    display: block;
}

.text dl.definition-list dd {
    margin-left: 1.3em;
    display: block;
}

.text dl.definition-list dd + dt {
    margin-left: 0;
}

.text dl.definition-list + dl.definition-list {
    margin-top: 0.8em;
}

/* ==========================================================================
   FAQ Box
   ========================================================================== */

.faq-box {
    position: relative;
}

.faq-box-head {
    width: 250px;
    position: absolute;
    right: 0;
    top: 0.7em;
    color: rgb(255,255,255);
    line-height: 1.2;
}

.faq-box-head p {
    color: rgb(77,120,163);
    text-align: right;
}

.faq-box-head:hover {
    cursor: pointer;
}

.faq-box #hide-box {
    display: none;
    padding-top: 1em;
    padding-right: 2em;
}

.faq-box.is-open #hide-box {
    display: block;
}

.faq-box.is-open #show-box  {
    display: none;
}

.faq-box-head .icon {
    display: inline-block;
    vertical-align: bottom;

}

.faq-box-head .icon-info-s {
    margin-left: 0.2em;
}

.faq-box-head .icon-close {
    background-image: url(../img/icon-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 20px;
    height: 20px;
    margin-right: 0.2em;
}

.faq-box-head ul {
    padding-left: 2em;
}

.faq-box-head li {
    list-style-type: disc;
}

.faq-box-body {
    display: none;
    background-color: rgb(228,235,241);
    padding: 1.5em 2em;
    margin-bottom: 2em;
}

.faq-box-body .col {
    width: 35%;
    float: left;
    margin-right: 2em;
}

.faq-box-body .col .teaser + .teaser {
    margin-top: 2em;
}


/* ==========================================================================
   Sidebar
   ========================================================================== */

aside .teaser + .teaser {
    margin-top: 3em;
}

aside .heading + .text,
aside .heading + .linklist,
aside figure + .heading,
aside .text + .linklist,
.teaser .text + .linklist {
    margin-top: 1em;
}

aside figure {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.text h2, h3 {
    font-size: 1.5em;
    font-weight: 300;
}

.main-links ul li + li {
        margin-top: 1em;
}

.teaser .main-links ul li + li {
        margin-top: 0.5em;
}

.iconless-links a,
.iconless-links p {
    padding-left: 0;
}

.iconless-links a i,
.iconless-links a .icon {
    display: none;
}


/* ==========================================================================
   Search Results
   ========================================================================== */

.search-link a {
    text-decoration: underline;
}

.search-category {
    font-weight: 600;
    font-size: 0.867em;
    margin-top: 0.3em;
}

.search-category + .search-text {
    margin-top: 0.3em;
}

.search-filter {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.1s ease 0.1s;
    -webkit-transition: all 0.1s ease 0.1s;
    -moz-transition: all 0.1s ease 0.1s;

}

.search-filter-is-open .search-filter {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.results-info {
    margin-top: 0.3em;
}

.results-info p {
    font-size: 0.867em;
}

/* ==========================================================================
   Login
   ========================================================================== */

.login-box {
    padding: 3em 6em;
    width: 25em;
}

.login-box h1 {
    font-size: 2em;
    line-height: 1.3;
  font-weight: 400;
  margin: 0 0 1em;
}

.login-box p {
    margin-bottom: 0.5em;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    font-size: 1em;
    padding: 0.2em;
    width: 15em;
    margin-right: 1em;
}

.login-box input[type="text"] {
    margin-top: 0.5em;
}

.login-box input[type="password"] {
    margin-top: 0.5em;
    margin-bottom: 2em;
}

.login-box p {
    margin-top: 0.5em;
}

.login-box .linklist {
    margin-top: 1em;
}

.login-box a {
    font-weight: 600;
}

.login-box .auth-errors {
    color: #ff0000;
    margin-bottom: 1em;
}

/* ==========================================================================
   Forms
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    border: 1px solid #aaa;
    background-color: #fff;
}

.form {
    margin-top: 2em;
}

.form * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form textarea {
    padding: 0.2em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.form input.error,
.form textarea.error {
    background-color: #faf0f0;
    border: 1px solid #b20101;
}

.form label.error {
    width: 18px;
    height: 18px;
    font-size: 0;
    float: right;
    display: block;
    margin: 2px;
    background: url("../img/icons.png") top left no-repeat;
    background-position:-211px -10px;
}

.form fieldset {
    margin-bottom: 1em;
}

.form .label {
    width: 25%;
    display: inline-block;
    text-align: right;
    padding: 0 1%;
}

.form .object {
    width: 65%;
    display: inline-block;
    padding: 0 1%;
}

.form small {
    font-size: 0.85em;
}

.form select,
.form textarea,
.form input[type="text"] {
    width: 90%;
}

/* ==========================================================================
   Forms
   ========================================================================== */
article .videolist .text,
.two-thirds article .videolist .text {
    width: 64%;
    float: right;
}

article .videolist .linklist,
.two-thirds article .videolist .linklist {
    width: 64%;
    float: right;
    margin-top: 0.5em;
}

article .videolist figure.video {
    margin-top: 0.4em;
}

article .videolist .text p,
.two-thirds article .videolist .text p {
    margin-top: 0.5em;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.group + .table {
    margin-top: 1em;
}

.table + .group {
    margin-top: 2em;
}

.table {
    margin-bottom: 2em;
}

.table table,
.text table {
    border-collapse: collapse;
    border: 1px solid #ddd;
    width: 100%;
}

.table .icon {
    display: inline-block;
}

.table thead,
.text thead {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxsaW5lYXJHcmFkaWVudCBpZD0iZzEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZWVlZWVlIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2cxKSIgLz48L3N2Zz4=);
    background-image: -webkit-gradient(linear, center top, center bottom, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
}

.table td,
.text td {
    border-top: 1px solid #ddd;
    background-color: #fff;
}

.table th,
.text th,
.table td,
.text td {
    padding: 0.5em;
    text-align: center;
    font-weight: 600;
}

.text td {
    font-weight: 400;
}

.text th {
    background-color: #f4f4f4;
}

.table td:first-child {
    font-weight: 400;
}

.table th:first-child,
.table td:first-child {
    text-align: left;
    width: 50%;
}

.table .blue { color: #4d78a3; }
.table .red { color: #b22d00; }
.table .green { color: #468c00; }


.table .icon-endless {
    width: auto;
    background: transparent;
    font-weight: normal;
}

.table .icon-endless:after {
    content: "unbegrenzt";
}

/* ==========================================================================
   Neue Suche (nach Umstellung auf Typeahead
   ========================================================================== */

.twitter-typeahead {
	width: 80%;
}

.search .twitter-typeahead {
    width: 100%;
}

.search,
.search-input {
    position: relative;
}

.search-input input[type="text"] {
    width: 80%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0.4em 0.8em;
    vertical-align: middle;

}

.twitter-typeahead input[type="text"] {
    width: 100%;
}

.search-input input[type="submit"] {
    width: 18%;
    vertical-align: middle;
    padding-top: 0.5em;
    padding-bottom: 0.6em;
    float: right;
}

.search .tt-hint,
.search-input .tt-hint {
    color: #AAA;
}

.search .tt-dropdown-menu,
.search-input .tt-dropdown-menu {
    position: absolute;
    background: rgb(255,255,255);
    width: 100%;
    left: 0;
    top: 2.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.35);
    z-index: 2000;
    padding: 1em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.suggest-title,
.search-input .tt-dropdown-menu  a,
.search .tt-dropdown-menu  a  {
    display: block;
    padding: 0.2em 0.4em;
}

.search .tt-dropdown-menu a,
.search-input .tt-dropdown-menu a {
    color: #222;
}
.search .tt-dropdown-menu a:hover,
.search-input .tt-dropdown-menu a:hover {
    text-decoration: none;
}

.tt-is-under-cursor  {
    background-color: rgb(240,240,240);
}

.tt-dropdown-menu em,
.tt-dropdown-menu strong,
.tt-dropdown-menu mark {
    font-weight: bold;
    font-style: normal;
    background: transparent;
}

.tt-dropdown-menu .tt-dataset-instant {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid rgb(240,240,240);
}

.tt-dropdown-menu .tt-dataset-instant h4 {
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}

.tt-dropdown-menu .tt-dataset-instant p {
    margin-top: 0.2em;
}

.search .tt-dropdown-menu .tt-dataset-suggest p,
.search-input .tt-dropdown-menu .tt-dataset-suggest p {
    padding-left: 20px;
    background-image: url(../img/icon-doc-search.png);
    background-position:  2px 6px;
    background-repeat:  no-repeat;
}

.search .tt-dropdown-menu .tt-dataset-instant a,
.search-input .tt-dropdown-menu .tt-dataset-instant a,
.search-link a {
    padding-left: 20px;
    position: relative;
}

.search .tt-dropdown-menu .tt-dataset-instant a:before,
.search-input .tt-dropdown-menu .tt-dataset-instant a:before,
.search-link a:before  {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: transparent url(../img/icons-search-sprites.png) no-repeat -14px 0;
}

.search .tt-dropdown-menu .tt-dataset-instant a.doc-docu:before,
.search-input .tt-dropdown-menu .tt-dataset-instant a.doc-docu:before,
.search-link.doc-docu a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: transparent url(../img/icons-search-sprites.png) no-repeat -28px 0;
}

.search .tt-dropdown-menu .tt-dataset-instant a.doc-api:before,
.search-input .tt-dropdown-menu .tt-dataset-instant a.doc-api:before,
.search-link.doc-api a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: transparent url(../img/icons-search-sprites.png) no-repeat -42px 0;
}

.search .tt-dropdown-menu .tt-dataset-instant a.doc-faq:before,
.search-input .tt-dropdown-menu .tt-dataset-instant a.doc-faq:before,
.search-link.doc-faq a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: transparent url(../img/icons-search-sprites.png) no-repeat -56px 0;
}

.instant-title,
.instant-snippet {
    display: block;
}

.instant-snippet {
    color: #888;
    font-size: 0.8em;
}

.suggest-pages a:hover,
.suggest-pages a:hover .teaser-text {
    text-decoration: none;
}

.suggest-pages a:hover .title {
    text-decoration: underline;
}

a#toggle-search-options {
    text-decoration: none;
    color: rgb(77,120,163);
}

a#toggle-search-options:before {
    content:"";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #ff8000;
    display: inline-block;
    margin-left: 1px;
    margin-right: 5px;
}

a#toggle-search-options.is-open:before {
    content:"";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #ff8000 transparent transparent transparent;
    display: inline-block;
    margin-left: 0;
    margin-right: 4px;
}

a#toggle-search-options .text-hide {
    display: none;
}

a#toggle-search-options.is-open .text-hide {
    display: inline;
}

a#toggle-search-options.is-open .text-show {
    display: none;
}


.pagination {
    margin-top: 2em;
}

.pagination .title {
    display: block;
    margin-bottom: 0.5em;
}

.pagination a,
.pagination strong {
  display: inline-block;
  padding: 0.2em 0.5em 0.1em 0.5em;
  background-color: rgb(240,240,240);
  margin-right: 0.6em;
  border-radius: 4px;
  margin-bottom: 0.4em;
}

.pagination strong {
  background-color: rgb(77,120,163);
  color: rgb(255,255,255);
}

.pagination {
  text-align: left;
}

.cta-knowledge p {
    padding-left: 24px;
    background: transparent url('../img/cta-knowledge.png') no-repeat left center;
}

.cta-knowledge ul {
    margin-top: 2px;
    margin-left: 25px;
}

.cta-knowledge ul li {
    font-size: 13px;
    font-size: 1.3rem;
}

.cta-knowledge ul li a:before {
    content: "» ";
}

.search-link {
    font-size: 16px;
    font-size: 1.6rem;
}

.search-link a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Vor Umstellung auf Twitter Typeahead
   ========================================================================== */

.search-input .suggest {
    position: absolute;
    background: rgb(255,255,255);
    width: 80%;
    left: 0;
    top: 2.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.35);
    z-index: 2000;
    padding: 1em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.search-input .suggest ul > li > a {
    display: block;
    padding: 0.2em 0.4em;
}

.search-input .suggest a {
    color: #222;
}

.search-input .suggest ul > li > a:hover,
.search-input .suggest ul > li > a:focus  {
    background-color: rgb(240,240,240);
}

.suggest mark {
    font-weight: bold;
    background: transparent;
}

.suggest .suggest-pages {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid rgb(240,240,240);
}

.suggest .suggest-pages li + li {
    margin-top: 0.2em;
}

.search-input .suggest .suggest-words > li > a {
    padding-left: 20px;
    background-image: url(../img/icon-doc-search.png);
    background-position:  2px 6px;
    background-repeat:  no-repeat;
}

.search-input .suggest .suggest-pages > li > a {
    padding-left: 20px;
    background-image: url(../img/icon-doc-page.png);
    background-position:  4px 6px;
    background-repeat:  no-repeat;
}

.suggest-pages .title,
.suggest-pages .teaser-text {
    display: block;
}

.suggest-pages .teaser-text {
    color: #888;
    font-size: 0.8em;
}

.suggest-pages a:hover,
.suggest-pages a:hover .teaser-text {
    text-decoration: none;
}

.suggest-pages a:hover .title {
    text-decoration: underline;
}

.search-filter {

}

.form-row + .form-row {
    margin-top: 1em;
}

.form-row > h3 {
    margin-bottom: 0.5em;
}


.form-row label.checkbox,
.form-row label.radio  {
  display: inline-block;
  margin-right: 0;
  padding: 0.2em 0.8em 0.2em 0.8em;
  background-color: #E6EEF5;
  border-radius: 20px;
  margin-bottom: 0.4em;
  color: #145091;
}

.form-row .filter-sub label.checkbox,
.form-row .filter-sub label.radio {
    background-color: rgb(240,240,240);
}

.form-row label.checkbox input[type="checkbox"],
.form-row label.radio input[type="radio"] {
  display: inline-block;
}

.form-row label.checkbox > span,
.form-row label.radio > span {
  margin-left: 0.4em;
  font-weight: normal;
  font-size: 0.85em;
}

.form-row label.checkbox em,
.form-row label.radio em {
  font-style: normal;
}


/* ==========================================================================
   Sitemap
   ========================================================================== */

.sitemap {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.heading + .sitemap {
    margin-top: 2em;
}

.sitemap > ul {
    margin-bottom: 2em;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.sitemap > ul > li > ul {
    margin-top: 0.5em;
}

.sitemap > ul > li > ul li + li {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}

.sitemap > ul > li > a {
    font-weight: 600;
}

.sitemap ul ul ul {
    margin-left: 1em;
}

/* ==========================================================================
   Distribute
   ========================================================================== */

.distribute {
    background-image: url(../pic/pict_chevron-right.png);
    background-position: right center;
    background-repeat: no-repeat;
}

.distribute + .distribute {
    margin-top: 1em;
}

.distribute.highlight {

}

.distribute .square {
    width: 6em;
    height: 6em;
    margin-bottom: 0;
    margin-right: 1.5em;
}

.distribute a:hover {
    text-decoration: none;
}

.distribute a p {
    color: #222;
}

/* ==========================================================================
   Social Media
   ========================================================================== */

.social-icons{ background:url("../img/social-icons.png") top left no-repeat; }
.xing{ width:24px; height:24px; background-position:-10px -10px; }
.youtube{ width:24px; height:24px; background-position:-44px -10px; }
.twitter{ width:24px; height:24px; background-position:-78px -10px; }
.facebook{ width:24px; height:24px; background-position:-112px -10px; }

.social-media {
    margin-bottom: 2em;
}

.social-media a {
    position: relative;
    padding-left: 34px;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    display: block;
}

.social-media i {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
}

.social-media ul {
    text-align: center;
}
.social-media ul li {
    display: inline-block;
    margin-right: 2em;
}

/* ==========================================================================
   Voting
   ========================================================================== */

.voting-group {
    margin-bottom: 2em;
}

.voting-group .vote-button {
    float: left;
    margin-right: 0.6em;
}

.voting-group textarea {
    width: 100%;
    padding: 0.2em 0.4em;
    margin-bottom: 1em;
}

.vote-button input[type="radio"] {
    /*display: none;*/
}

.vote-button:hover {
    cursor: pointer;
}

.icon.icon-star {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: transparent url(../img/voting-stars.png) no-repeat -32px 0;
    background-size: 64px 32px;
}

.no-backgroundsize .icon.icon-star {
    background: transparent url(../img/voting-stars-lowres.png) no-repeat -32px 0;
}

.vote-button.active .icon.icon-star,
.vote-button.selected .icon.icon-star {
    background-position: 0 0;
}

.voting-question {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 0.2em;
}
.voting-legend {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 1em;
    color: #999;
}

/* ==========================================================================
   Subscribe
   ========================================================================== */

.social-actions {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 1em 0;
    margin: 3em 0 1em 0;
}

.social-actions-bar a {
    display: inline-block;
    margin-right: 1em;
}

.social-actions-bar .icon-subscription {
    background: url(../img/social-actions.png) no-repeat 0 -30px;
    display: inline-block;
    width: 18px;
    height: 14px;
    margin-right: 5px;
}

.social-actions-bar .icon-useful {
    background: url(../img/social-actions.png) no-repeat -30px -30px;
    display: inline-block;
    width: 18px;
    height: 14px;
    margin-right: 5px;
}

.social-actions-bar .mark-useful.marked .icon-useful {
    background: url(../img/social-actions.png) no-repeat -30px 0px;
}

.subscribe {
    display: none;
    padding-top: 1em;
}

.subscribe ul {
    margin: 1em 0;
}

.subscribe ul li {
    width: 32%;
    display: inline-block;
    padding: 0.2em 0;
}

.subscribe label span {
    margin-left: 1.4em;
    display: block;
}

.subscribe input[type="checkbox"] {
    margin-top: 0.2em;
    float: left;
}

.subscribe .form-actions {
    text-align: right;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.badge {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.1em 0.4em;
    border: 1px solid #ff8000;
    color: #ff8000;
    border-radius: 5px;
    vertical-align: 3px;
    margin-left: 0.8em;
    position: relative;
    font-weight: normal;
}

.badge-comments {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.1em 0.4em;
    border: 1px solid #ff8000;
    color: #ff8000;
    border-radius: 5px;
    vertical-align: 3px;
    margin-left: 0.8em;
    position: relative;
    font-weight: normal;
    font-weight: 600;
}

.badge-useful {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.1em 0.4em;
    border: 1px solid #ff8000;
    color: #ff8000;
    border-radius: 5px;
    vertical-align: 3px;
    margin-left: 0.8em;
    position: relative;
    font-weight: normal;
    font-weight: 600;
}

.icon-comments {
    display: inline-block;
    width: 13px;
    height: 10px;
    background: url(../img/social-actions.png) no-repeat -60px 0;
    margin-right: 3px;
}

.icon-useful {
    display: inline-block;
    width: 12px;
    height: 10px;
    background: url(../img/social-actions.png) no-repeat -90px 0;
    margin-right: 3px;
}

article + .comments {
    margin-top: 3em;
}

.comments > h3 {
    margin-bottom: 1em;
}

.commenteditor + .commentlist {
    margin-top: 3em;
}

.commentform .staytuned {
    margin: 0 0 1em 0;
}

.commentform .staytuned input[type="checkbox"] {
    margin-right: 0.5em;
}

.commentform .staytuned label {
    color: #999999;
    font-size: 13px;
    font-size: 1.3rem;
}

.commentform .staytuned label + label {
    margin-left: 1em;
    color: #999999;
    font-size: 13px;
    font-size: 1.3rem;
}

.comments .commentavatar {
    float: left;
}
.commenteditor .commentform {
    margin-left: 80px;
}

.commenteditor .commentform .commenttitle {
    width: 100%;
    display: block;
    margin-bottom: 0.5em;
    padding: 0.2em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.commenteditor .commentform .commenttext {
    width: 100%;
    display: block;
    margin-bottom: 0.5em;
    padding: 0.2em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.commentlist ol {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.commentlist ol li {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.commentlist ol li + li {
    margin-top: 2em;
}

.commentlist li > ol {
    margin-top: 2em;
    margin-left: 80px;
}

.commentitem .commentreply {
    margin-left: 80px;
}

.commentreply .commenttitle p {
    font-weight: bold;
}

.commentreply .timestamp {
    color: #999999;
}

.commentreply .timestamp:before {
    content: "- ";
}

.commentthis {
    margin-top: 0.5em;
    font-size: 13px;
    font-size: 1.3rem;
}

.commentthis a:before {
    content: url(../img/commentthis.png);
    margin-right: 5px;
}
/* ==========================================================================
   Widgets
   ========================================================================== */

.heading + .pi-contact-form-widget {
    margin-top: 2em;
}

/* ==========================================================================
   Widgets 2015
   ========================================================================== */

.pi-widget {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pi-newsletter-widget .pi-message-text {
  margin-bottom: 30px;
  padding: 10px 15px;
  background-color: rgb(238,238,238);
  font-weight: bold;
}

.pi-widget * {
  box-sizing: border-box;
}

.pi-heading p {
  margin-bottom: 15px;
  font-size: 1.25em;
}

.pi-form-control {
  margin-bottom: 15px;
  position: relative;
}

.pi-form-label {
  font-size: 0.925em;
  font-weight: bold;
  margin-bottom: 2px;
}

.pi-form-control input[type="text"],
.pi-form-control input[type="password"],
.pi-form-control select {
  width: 100%;
  height: 2em;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.10);
  border-radius: 3px;
  background-color: rgb(255,255,255);
}

.pi-form-control textarea {
  width: 100%;
  min-height: 5em;
  padding: 5px 10px;
  border-radius: 3px;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.10);
}


.pi-form-control__has-error input[type=text] {
  border-color: rgb(200,0,0);
}

.pi-form-control__has-error .pi-form-label {
  color: rgb(200,0,0);
}

.pi-status-icon {
				width: 18px;
				height: 18px;
				display: inline-block;
				background-color: transparent;
				border-radius: 0.75em;
				position: absolute;
				right: 0.5em;
				top: 27px;
}

@media only screen and (max-width: 960px) {
  .pi-status-icon {
				top: 23px;
  }
}

.pi-form-control[data-pi-id="permission"] {
  padding-right: 40px;
}

.pi-form-control[data-pi-id="permission"] .pi-checkbox-control {
  display: block;
}

.pi-form-control[data-pi-id="permission"] .pi-checkbox-control:after {
  content:"";
  display: table;
  clear: both;
}

.pi-form-control[data-pi-id="permission"] .pi-checkbox-control input[type=checkbox] {
  float: left;
  margin-top: 4px;
}

.pi-form-control[data-pi-id="permission"] .pi-checkbox-control label {
  display: block;
  padding-left: 25px;
}

.pi-form-control[data-pi-id="permission"] .pi-status-icon {
  top: 4px;
}

.pi-form-control__has-success .pi-status-icon {
				background-color: rgb(0,200,0);
				background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAKpJREFUKBWNjDEKwkAQRXerIB5A8ApKGk9h5T1srLyEnVUEc46k8QR2NoJHUFKKiM3kTRhhF0I2Hx6zmXk/3o2IiEzQaniP0J2jUIDmmiwgbTpV5MvMBwsIc2issEvJHvFics30qcLe5CdzlpJXSD8rrCOZ5QFOkOmBOYUHaI6RbML/WCFkUKpJbtD9JCqxXMILNCppPrCIxPCDY1jSwja8976tdGeeewVbtvt7x3zluyYsAAAAAElFTkSuQmCC');
				background-repeat: no-repeat;
				background-position: center center;
        background-size: auto 10px;
}

.pi-form-control__has-error .pi-status-icon {
				background-color: rgb(200,0,0);
				background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAANCAYAAACO/s+2AAAAAXNSR0IArs4c6QAAAExJREFUCB1j+P///2IghoHFTAwMDGpADANqIIHbMB6IjVXgDpKKOxgqGIDGC8GsALGRVONiApV5AfFjKPYEmQHiwMBjkC2oACiFogUAeSFQ004QGHMAAAAASUVORK5CYII=');
				background-repeat: no-repeat;
				background-position: center center;
        background-size: auto 10px;;
			}

.pi-checkbox-control + .pi-checkbox-control,
.pi-radio-control + .pi-radio-control {
  margin-left: 10px;
}

.pi-checkbox-control,
.pi-radio-control {
  position: relative;
}

.pi-checkbox-control input[type="checkbox"],
.pi-radio-control input[type="radio"] {
  margin-right: 5px;
}

.pi-checkbox-control-vertical input[type="checkbox"],
.pi-radio-control-vertical input[type="radio"] {
  position: absolute;
  left: 0;
  top: 3px;
}

.pi-checkbox-control-vertical label,
.pi-radio-control-vertical label {
  padding-left: 25px;
  display: block;
}

.pi-checkbox-control,
.pi-radio-control {

}

.pi-form-button button,
.pi-form-button input[type=submit] {
    background-color: #2a5881;
    background: linear-gradient(180deg, #4D78A3 0%, #2A5881 100%) repeat scroll 0% 0% transparent;
    border-radius: 5px;
    border: 1px solid #2A5881;
    display: inline-block;
    color: #FFF;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.35);
    height: 2.25em;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 1em;
    font-weight: 600;
}

.pi-checkbox-control-vertical,
.pi-radio-control-vertical {
  display: block;
  margin-top: 1em;
  position: relative;
}

.pi-form-actions {
  margin-top: 1em;
}

.pi-ws-label dt {
  float: none;
  display: block;
  margin: 0;
  padding: 0;
}

.pi-ws-label dd {
  float: none;
  display: block;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Tip
   ========================================================================== */

   .tip {
    text-align: center;
    padding: 0.5em 0;
    background-color: rgb(252, 249, 195);
    border-bottom: 1px solid rgb(180,180,180);
    font-weight: 600;
    z-index: 200;
    position: relative;
   }

/* ==========================================================================
   Microsite Elements
   ========================================================================== */

.bg-lightblue-transparent {
    background-color: rgba(75,97,140,0.25);
}

.bg-blue {
    background-color: rgb(210,216,226);
}

.bg-lightblue {
    background-color: rgba(182,198,215,0.25);
}

.section figure,
.section img {
    border: 0;
    box-shadow: none;
}

.section {
    padding-top: 2em;
    padding-bottom: 2em;
    overflow: hidden;
}

.section.carousel{
    padding: 0;
}

h2 {
    color: #141619;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 34px;
    text-align: left;
    margin-bottom: 16px;
}

@media only screen and (min-width: 769px) {
    h2{
        margin-bottom: 24px;
    }
}

.section.carousel .description {
    color: #141619;
    font-size: 18px !important;
    letter-spacing: 0.2px;
    line-height: 28px;
    text-align: left;
}

@media only screen and (min-width: 769px) {
    .section.carousel .description {
        font-size: 21px !important;
        line-height: 31px;
    }
}

.section.carousel .text {
    padding-top: 75px;
    padding-bottom: 75px;
}

.section.teaser-group {
    margin: 0;
}

.section .text,
.section .read-more {
    text-align: center;
}

.section .text ul,
.section .text ol,
.section .text p,
.section .read-more,
.section table  {
    font-size: 21px;
    line-height: 31px;
}

.section table {
    width: 100%;
    table-layout: fixed;
}

.section .text p + p,
.section .text p + table {
    margin-top: 20px;
}

.section .checklist ul,
.section .checklist ol {
    text-align: left;
    padding: 0 25% 0 25%;
}

.section .checklist-wide ul,
.section .checklist-wide ol {
    text-align: left;
    padding: 0 5% 0 5%;
}

.section .read-more {
    margin-top: 1em;
}

.section .text h2 {
    font-size: 32px;
}

.section .text h3 {
    font-size: 24px;
}

.section .checklist h3 + ul,
.section .checklist h3 + ol {
    margin-top: 20px;
}

.section .checklist ul {
    list-style-type: none;
}

.section .checklist li {
    position: relative;
    padding-left: 36px;
    list-style-type: none;
}

.section .checklist li + li {
    margin-top: 10px;
}

.section .checklist li:before {
    content:"";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/check_simple.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    left: 0;
    top: 2px;
}

.section .text + .checklist {
    margin-top: 30px;
}

.section .read-more a,
.section .read-more strong {
    font-size: 16px;
    display: inline-block;
    padding: 0.5em 1.5em;
    background-color: rgb(244,123,4);
    color: rgb(255,255,255);
    border-radius: 4px;
    -webkit-transition: box-shadow 0.2s ease 0s;
    -moz-transition: box-shadow 0.2s ease 0s;
    -ms-transition: box-shadow 0.2s ease 0s;
    transition: box-shadow 0.2s ease 0s;
}

.section .read-more a:hover,
.section a:hover .read-more strong {
    box-shadow: inset 0px 0px 12px rgba(0,0,0,0.2);
}

.heading-big .text h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 600;
    color: #444;
}

.heading-big .text h1 small {
    font-size: 28px;
    font-weight: 400;
    color: #444;
    display: block;
    margin-top: 10px;
}

.heading-big .wrapper {
    position: relative;
}

.heading-big .figure-intro {
    text-align: center;
    z-index: 0;
    margin-top: 20px;
    margin-bottom: -100px;
}

.heading-big .figure-intro img {
    max-width: 720px;
    opacity: 0;
    -webkit-transform: translateY(160px);
    -webkit-animation: efx-slidein 0.8s 0.2s ease forwards;
    -moz-transform: translateY(160px);
    -moz-animation: efx-slidein 0.8s 0.2s ease forwards;
    transform: translateY(160px);
    animation: efx-slidein 0.8s 0.2s ease forwards;
}

.nocssanimations .heading-big .figure-intro img {
    opacity: 1;
}

@-webkit-keyframes efx-slidein {
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes efx-slidein {
    100% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }
}

@keyframes efx-slidein {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.feature-carousel .text,
.carousel .text,
.article .text {
    padding: 0 10%;
}

.section .text h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
}

.section .text h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
}

.section .text h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
}

.group-of-two:after,
.group-of-three:after,
.group-of-four:after {
    content: "";
    display: table;
    clear: both;
}

.section.group-of-two .wrapper,
.section.group-of-three .wrapper {
    max-width: 1200px;
    width: auto;
}

.teaser-group {
    position: relative;
    z-index: 2;
}

.group-of-two .teaser-item {
    float: left;
    width: 50%;
}

.group-of-three .teaser-item {
    float: left;
    width: 33.333%;
}

.group-of-four .teaser-item {
    float: left;
    width: 25%;
    padding: 0;
}

.teaser-item {
    padding: 0 15%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.group-of-two .teaser-item,
.group-of-three .teaser-item {
    padding: 0 5%;
}

.flexslider.flex-carousel {
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    margin-bottom: 40px;
}
.flexslider.flex-carousel .flex-control-nav {
    bottom: auto;
    bottom: -45px;
}

.flexslider.flex-carousel .slides > li {
    margin: 0;
}

.flex-item a:hover {
    text-decoration: none;
}

.flex-item a p {
    color: #222;
}

.flex-item.layered {
    position: relative;
}

.flex-item .figure-wide + .text {
    margin-top: 25px;
}

.flex-item.layered .group {
    position: absolute;
    bottom: 30px;
    left: 50%;
    padding-right: 20px;
}



.flex-item.layered .text {
    padding: 0;
}

.flex-item.layered .group .text,
.flex-item.layered .group .read-more  {
    text-align: left;
}

.feature-carousel .text + .flexslider,
.carousel .text + .flexslider {
    margin-top: 30px;
}

.figure-centered {
    text-align: center;
}

.figure-centered {
    margin-bottom: 30px;
}

.figure-centered img {
    max-width: 100%;
}


@media only screen and (max-width: 768px) {
    .flex-item.layered .group {
        position: static;
        padding-right: 0;
    }

    .flex-item.layered .figure-wide + .group {
        margin-top: 20px;
    }

    .flex-item.layered .group .text,
    .flex-item.layered .group .read-more  {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {

    .heading-big .text h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .heading-big .text h1 small {
        font-size: 16px;
        line-height: 1.4;
    }

    .heading-big .figure-intro img {
        max-width: 100%;
    }

    .section .text ul,
    .section .text ol,
    .section .text p,
    .section .read-more,
    .section table  {
        font-size: 15px;
    }

    .section .text h2 {
        font-size: 20px;
    }

    .section .text h3 {
        font-size: 18px;
    }

    .section .text h4 {
        font-size: 16px;
    }

    .group-of-two .teaser-item,
    .group-of-three .teaser-item {
        float: none;
        width: auto;
    }

    .group-of-two .teaser-item + .teaser-item,
    .group-of-three .teaser-item + .teaser-item {
        margin-top: 30px;
    }

    .section .text,
    .teaser-item,
    .group-of-two .teaser-item,
    .group-of-three .teaser-item {
        padding: 0;
    }
}



/* ==========================================================================
   Compare Editions
   ========================================================================== */

.compare-editions {

}

.compare-editions .wrapper {
    width: auto;
    max-width: 1200px;
}

.compare-editions .figure-centered {
    margin-bottom: 0;
}

.compare-editions .text p {
    font-size: 16px;
}

.compare-editions .text ul {
    font-size: 14px;
}

.compare-editions .tile {
    box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}

.compare-editions .text.head {
    background-color: transparent;
    background-image: url(../img/bg-compare.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    color: rgb(255,255,255);
    padding: 1em 0.5em;
    padding-bottom: 40px;
}

.compare-editions .text.foot {
    min-height: 190px;
}

@media only screen and (max-width: 1120px) and (min-width: 1020px) {

    .compare-editions .text.head {
        min-height: 300px;
        position: relative;
    }
    .compare-editions .text.head h2 {
        padding: 0 2em;
    }

    .compare-editions .text.head .btn-cta {
        position: absolute;
        bottom: 30px;
        left: 14px;
        right: 10px;
    }

    .compare-editions .text.foot {
        min-height: 240px;
        position: relative;
    }
}

.compare-editions .text.head h2 {
    font-size: 24px;
    color: rgb(255,255,255);
}

.compare-editions .btn,
.compare-editions .btn-cta {
    background-color: rgb(255,128,0);
    padding: 0.5em 2em;
    color: rgb(255,255,255);
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 4px;
}

.compare-editions .btn-blue {
    margin-top: 40px;
    background-color: rgb(13,65,112);
}

.compare-editions .text.foot {
    background-color: rgb(255,255,255);
    padding: 1em 0.5em;
}

.compare-editions .text.foot ul {
    text-align: left;
}


.compare-editions .read-more {
    display: inline-block;
    font-weight: bold;
    margin-top: 1em;
}

.compare-editions .read-more:after {
    content: "";
}

.grid {
    font-size: 0;
    margin-left: -20px;
}

.grid > .tile {
    font-size: 16px;
    display: inline-block;
    padding-left: 20px;
    vertical-align: top;
    box-sizing: border-box;
}

.grid-4 > .tile {
    width: 25%;
}

@media only screen and (max-width: 1019px) {
    .grid-4 > .tile {
        width: 50%;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 580px) {
    .grid-4 > .tile {
        width: 100%;
        padding-bottom: 20px;
    }
}

/* grid flex */

.flexbox .grid {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flexbox .grid > .tile {
    padding-left: 20px;
}

.flexbox .compare-editions .grid-4 > .tile {
  padding-left: 0
}

.flexbox .grid-4 > .tile {
    width: auto;
    flex: 0 0 24%;
}

@media only screen and (max-width: 1019px) {
    .flexbox .grid-4 > .tile {
        width: auto;
        flex: 0 0 49%;
        padding-bottom: 20px;
    }
    .flexbox .compare-editions .grid-4 > .tile {
      padding-bottom: 0;
      margin-bottom: 2%;
    }
}

@media only screen and (max-width: 580px) {
    .flexbox .grid-4 > .tile {
        width: auto;
        flex: 0 0 100%;
        padding-bottom: 0;
    }
    .flexbox .compare-editions .grid-4 > .tile {
      padding-bottom: 0
    }
}



/* ==========================================================================
   Promo Menu and Promo Boxes 2015-06-16
   ========================================================================== */

.promo-menu {
    padding-top: 0;
}

.promo .wrapper:after,
.promo-menu .wrapper:after,
.promo-menu .item:after {
    content: '';
    display: table;
    clear: both;
}

.promo-menu-three {
  text-align: center;
}

.promo-menu-item {
    float: left;
    width: 25%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.promo-menu-three .promo-menu-item {
    float: none;
    display: inline-block;
    width: 25%;
}

.promo-menu-item p {
    font-size: 18px;
}

.promo-menu-item .figure-oval {
    margin: 0 auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.15s 0s ease-out;
    -moz-transition: -moz-transform 0.15s 0s ease-out;
    transition: transform 0.15s 0s ease-out;
}

.promo-menu .figure-oval img {
    max-width: 100%;
    height: auto;
}

.promo-menu .promo-menu-item a:hover .figure-oval {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}

.promo-menu h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
}

.promo-menu h1 strong {
    font-weight: 600;
}

.promo-menu h1 small {
    font-weight: 400;
    font-size: 32px;
    display: block;
}

.subtitle h2 {
    margin-top: 15px;
    font-size: 32px;
    text-align: center;
}

.subtitle h2 strong {
    font-weight: 600;
    display: block;
}

.subtitle h2 small {
    font-weight: 400;
    font-size: 24px;
    display: block;
}

.promo-item figure {
    width: 33%;
    padding-left: 15px;
    float: right;
}

.cssanimations.no-touch .promo-item figure {
  visibility: hidden;
}

.cssanimations.no-touch .slide-left {
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;
	animation-duration: 0.7s;
	-webkit-animation-duration: 0.7s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	visibility: visible !important;
}

.cssanimations.no-touch .slide-right {
	animation-name: slideRight;
	-webkit-animation-name: slideRight;
	animation-duration: 0.7s;
	-webkit-animation-duration: 0.7s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	visibility: visible !important;
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}
	100% {
		-webkit-transform: translateX(0%);
	}
}

@keyframes slideRight {
	0% {
		transform: translateX(-150%);
	}
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideRight {
	0% {
		-webkit-transform: translateX(-150%);
	}
	100% {
		-webkit-transform: translateX(0%);
	}
}

.promo-item .text {
    width: 66%;
    float: left;
    padding-right: 15px;
    text-align: left;
    box-sizing: border-box;
}

.promo-item .text h3 {
    margin-top: 0;
}

.promo-item.inverse figure {
    float: left;
    padding-right: 15px;
    padding-left: 0;
}

.promo-item.inverse .text {
    float: right;
    padding-left: 15px;
    padding-right: 0;
}

.bg-gradient-lightblue {
    background: rgb(238,244,248);
    background: -moz-linear-gradient(top, rgba(255,255,255,0.0) 0%, rgb(238,238,238) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.0)), color-stop(100%,rgb(238,238,238))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.0) 0%,rgb(238,238,238) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,0.0) 0%,rgb(238,238,238) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,0.0) 0%,rgb(238,238,238) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,255,255,0.0) 0%,rgb(238,238,238) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef4f8',GradientType=0 ); /* IE6-9 */
}

.section.subtitle + .section.promo {
    padding-top: 1em;
}

@media only screen and (max-width: 768px) {

    .promo-menu-item .figure-oval {
        margin: 0 auto 15px auto;
        width: 100%;
        height: auto;
    }

}

@media only screen and (max-width: 580px) {

    .promo-menu-three .promo-menu-item {
        float: none;
        display: block;
        width: 100%;
    }

    .promo-menu h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .promo-menu h1 small {
        font-size: 20px;
        display: block;
    }

    .promo-menu-item {
        float: left;
        width: 50%;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
    }

    .promo-menu-item .figure-oval {
        margin: 0 auto 15px auto;
        width: 100px;
        height: 100px;
    }

    .subtitle h2 {
        font-size: 24px;
        text-align: center;
    }

    .subtitle h2 small {
        font-size: 18px;
        display: block;
    }

    .promo-item figure {
        width: 70%;
        margin: 0 auto;
        padding-left: 0px;
        float: none;
    }

    .promo-item .text {
        width: 100%;
        float: none;
        padding-right: 0px;
        text-align: center;
        box-sizing: border-box;
    }

    .promo-item .text h3 {
        margin-top: 1em;
    }

    .section .promo-item .text h3 {
        font-size: 20px;
    }

    .section .promo-item .text p {
        font-size: 16px;
    }
    .promo-item.inverse figure {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    .promo-item.inverse .text {
        float: none;
        padding-left: 0px;
        padding-right: 0;
    }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.vh {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.vh.focusable:active,
.vh.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}


.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.pull-center {
    text-align: center;
}

/* ==========================================================================

   Media Queries for Responsive Design.
   Target tablet devices 768-980px

   ========================================================================== */

@media only screen and (max-width: 980px) and (min-width: 769px) {

    body {
        font-size: 1.3rem;
    }

    .wrapper {
        max-width: 960px;
        width: auto;
        padding: 0 10px;
    }

    .heading-lead h1 {
        line-height: 1.2;
    }

    .heading-lead h1 strong {
        font-size: 5rem;
    }

    .heading-lead h1 span {
        font-size: 4rem;
    }

    .nav-sections a {
        padding: 0.4em 0.8em;
        font-size: 1.5rem;
    }

    footer nav > ul:nth-child(1),
    footer nav > ul:nth-child(2) {
        width: 25%;
    }

    footer nav > ul:nth-child(3),
    footer nav > ul:nth-child(4) {
        width: 15%;
    }

    footer nav > ul:nth-child(5) {
        width: 20%;
    }

    footer nav.footer-navi > ul {
        width: 100%;
    }

    .teaser-wide > h3,
    .teaser-wide > form {
        width: 49%;
    }

    .teaser-wide input[type="text"] {
        width: 55%;
    }
}

/* ==========================================================================

   Media Queries for Responsive Design.
   Target mobile devices 320-768px

   ========================================================================== */

@media only screen and (max-width: 768px) {

    * {
        -webkit-box-sizing: border-box;
        -moz-box-szing: border-box;
        box-sizing: border-box;
    }

    body {
        font-size: 1.3rem;
    }

    .wrapper {
        max-width: 960px;
        width: auto;
        padding: 0 30px;
    }

    .login-status,
    .nav-sections {
        display: none;
    }

    .content-main.highlight {
        padding: 20px 10px;
    }

    .heading-lead h1 {
        line-height: 1.3;
    }

    .heading-lead h1 strong {
        font-size: 2.6rem;
    }

    .heading-lead h1 span {
        font-size: 1.8rem;
    }

    .group-heading h2 {
        font-size: 1.8rem;
        padding-left: 2em;
    }

    .group-heading h2 .icon-envelope-l {
        top: 0.2em;
    }
    .group-heading h2 .icon-users-l {
        top: 0.1em;
    }

    .group-of-two .teaser,
    .group-of-three .teaser {
        float: none;
        width: auto;
        margin-right: 0;
        margin-left: 0;
    }

    .teaser:last-child {
        float: none;
    }

    .group-of-two .teaser + .teaser,
    .group-of-three .teaser + .teaser {
        margin-top: 2em;
    }

    .group-of-two .teaser:last-child,
    .group-of-three .teaser:last-child {
        float: none;
        width: auto;
    }

    .teaser > figure,
    .group-of-three.teaser-products .teaser figure {
        width: auto;
        float: none;
    }

    .group-of-three.teaser-products .teaser:before,
    .group-of-three.teaser-products .teaser:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }

    .group-of-three.teaser-products .teaser:after {
        clear: both;
    }

    .group-of-three.teaser-products .teaser {
        *zoom: 1;
    }

    .group-of-three.teaser-products .teaser figure {
        width: 40%;
        float: left;
        margin: 0;
    }

    .group-of-three.teaser-products .teaser .heading,
    .group-of-three.teaser-products .teaser .text,
    .group-of-three.teaser-products .teaser .readmore {
        margin-left: 44%;
        text-align: left;
    }

    .group-of-three.teaser-products .teaser .heading h3 {
        margin-top: 0.5em;
        text-align: left;
    }

    .group-of-three.teaser-products .teaser + .teaser {
        border-top: 1px solid rgb(240,240,240);
        padding-top: 1em;
    }

    .teaser:last-child {
        float: none;
    }

    .teaser-wide {
        padding: 10px;
    }

    .teaser-wide h3.pull-left,
    .teaser-wide form.pull-right  {
        float: none;
        width: auto;
    }
    .teaser-wide h3 {
        margin-bottom: 0.5em;
        font-size: 1.3em;
    }

    .teaser-wide input[type="text"] {
        width: 100%;
    }

    .teaser-wide input + button {
        margin-top: 1em;
        margin-left: 0;
    }

    .teaser-special {
        padding: 1em;
    }

    .teaser-special > ul li {
        display: block;
        vertical-align: middle;
        text-align: center;
        width: auto;
        font-size: 1em;
    }

    .teaser-special h2,
    .teaser-special ul,
    .teaser-special .button {
        float: none;
        width: auto;
        position: static;
    }

    .teaser-special .button {
        width: auto;
        display: block;
        text-align: center;
        margin-top: 1em;
    }

    .teaser-special h2 {
        max-width: 65%;
    }

    .teaser-special ul {
        margin-bottom: 1em;
    }

    .teaser-special ul li {
        text-align: left;
    }

    .teaser-special figure {
        top: 10px;
        right: 10px;
        left: auto;
        margin: 0;
    }

    .faq-details .highlight,
    .faq-details .box-highlight {
        padding: 1em;
    }

    article .highlight,
    .faq-details .box-highlight {
        padding: 1em;
    }

    .nav-box h3 {
        font-size: 1.8rem;
    }

    .nav-box ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .nav-box ul li,
    .nav-box-grey ul li {
        width: 48%;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    .nav-box ul li {
        display: block;
        width: auto;
    }

    .nav-box a,
    .nav-box-grey a {
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

    .nav-box {
        padding: 1em;
    }

    .nav-box .icon-users {
        top: 0.4em;
    }

    .nav-box .icon-prefs {
        left: 0.3em;
        top: 0.3em;
    }

    .nav-box .icon-envelope {
        top: 0.6em;
    }

    .col-content.two-thirds {
        width: auto;
        float: none;
    }

    .col-content.two-thirds + .col-marginal {
        margin-top: 3em;
        width: auto;
        float: none;
    }


    footer nav > ul {
        width: auto;
        float: none;
        display: none;
    }

    footer nav > ul:last-child {
        display: block;
        width: 100%;
    }

    footer .statement .um-logo,
    footer .statement .text,
    footer .statement .pi-logo,
    footer .statement .csa-logo {
        float: none;
        width: auto;
        text-align: center;
    }

    footer .statement .csa-logo  {
        margin-top: 2em;
        margin-bottom: 1em;
    }

    figure.one-third,
    figure.one-half  {
        width: 48%;
        margin-right: 1em;
        margin-bottom: 1em;
    }

    figure.full-size img {
        width: 100%;
    }

    .group.highlight figure.one-half {
        float: none;
        width: auto;
        margin-right: 0;
        margin-left: 0;
    }

    figure.one-third + .text + .linklist,
    figure.one-third + .text {
        float: none;
        width: auto;
    }

    figure.two-thirds.pull-right,
    figure.one-third.pull-right,
    figure.one-half.pull-right {
        margin-right: 0;
        margin-left: 1em;
    }

    figure.one-third.pull-right +.text {
        float: none;
        width: auto;
    }


    figure.two-thirds {
        width: 48%;
        margin-right: 1em;
        margin-bottom: 1em;
    }

    figure.two-thirds + .text {
        width: auto;
        float: none;
    }

    figure.two-thirds.pull-right {
        width: 48%;
    }

    figure.two-thirds.pull-right +.text {
        float: none;
        width: auto;
    }
    figure.video {
        float: none;
    }

    .two-thirds article .videolist .text {
        width: auto;
        float: none;
    }

    .two-thirds article .videolist .linklist {
        width: auto;
        float: none;
    }

    article .one-half + .text {
        width: auto;
    }
    article figure + .text {
        float: none;
    }
    article figure.pull-right + .text {
        float: none;
    }

    article .heading h1 {
        font-size: 1.8rem;
    }

    article .heading h2 {
        font-size: 1.6rem;
    }

    .teaser figure {
        width: 70%;
    }
    .teaser-special figure {
        width: 80px;
    }

    .faq article .heading {
     margin-right: 30px;
    }

    .faq-box #show-box,
    .faq-box #hide-box {
        padding-top: 2px;
        padding-right: 5px;
    }

    .faq-box-head #show-box span:not(.icon),
    .faq-box-head #hide-box span:not(.icon) {
        display: none;
    }

    .faq-box-body {
        padding: 10px 10px 15px 10px;
    }

    .faq-box-body .col {
        width: 90%;
        float: none;
        margin-right: 0;
    }

    .faq-box-body .col + .col {
        margin-top: 2em;
    }

    .login-box {
        padding: 1em 1em;
        width: auto;
    }

    .stage > ul {
        height: auto;
        overflow: hidden;
    }

    .stage ul li > div {
        height: auto;
    }

    .stage figure.pull-left,
    .stage figure.pull-right {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    .stage .one-half {
        width: auto;
    }
    .stage figure {
        float: none;
    }

    .stage figure.pull-right + .text {
        float: none;
    }

    .stage .one-half + .text {
        width: auto;
    }

    .stage figure + .text {
        float: none;
    }

    .stage .text h3 {
        margin-top: 1em;
        font-size: 2rem;
        line-height: 1.1;
    }

    .stage p.claim {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .table {
        overflow-x: scroll;
        padding-bottom: 2em;
    }

    .table:after {
        content: "« nach links oder rechts bewegen »";
        padding: 0.5em 1em;
        background-color: rgb(240,240,240);
        color: rgb(160,160,160);
        display: block;
        width: auto;
        text-align: center;
        position: absolute;
        margin-top: 2px;
        right: 10px;
        left: 10px;
    }

    .social-media ul li {
        margin-left: 0.5em;
        margin-right: 0.5em;
    }

    .social-media ul li a {
        padding-top: 30px;
        padding-left: 0px;
        padding-right: 0;
        font-size: 1.2rem;
    }

    .social-media i {
        position: absolute;
        left: 50%;
        top: 0;
        margin-top: 0;
        margin-left: -12px;
    }

    .form .label {
        width: auto;
        display: block;
        text-align: left;
        padding: 0 1%;
    }
    .form .object {
        width: auto;
        display: block;
        padding: 0 1%;
    }
    .form small {
        font-size: 1em;
    }

    .cta > .cta-bullet {
        position: absolute;
        width: 80px;
        height: 80px;
        right: 0px;
        top: 20px;
    }

    .search-faq h3.pull-right,
    .search-faq .group.pull-right {
        float: none;
    }

    .search-faq input[type="text"] {
        font-size: 1em;
        padding: 0.2em;
        width: 100%;
        margin-right: 0;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .search-faq .group ul {
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        margin: 0 1em 3em 0;
    }

    .search-faq > .group:nth-child(2) .button, .search-faq > .group:nth-child(3) .button {
        position: absolute;
        right: auto;
        left: 0;
        bottom: 0;
    }

   /* Search Global Box */

    .search-global-box {
        padding: 1em;
    }

    .search-global-box .SucheLabel {
        display: block;
        margin-right: 0;
    }

    .search-global-box .SucheLabel select {
        width: 99%;
        margin-bottom: 0.5em;
    }

    .search-global-box .highlight {
        background-color: rgb(228,235,241);
        padding: 1em 1.5em;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: center;
        margin-top: 1.5em;
    }

    .search-global-box .GrauesFeld form,
    .search-global-box .GrauesFeld form > div:not(.SucheLabel) {
        text-align: left;
    }

    .search-global-box .GrauesFeld form > div:not(.SucheLabel) {
        margin-bottom: 1.5em;
    }

    .SucheFeldInhalt {
        font-size: 1em;
        padding: 0.2em;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
    label[for="Suche"] {
        font-weight: 200;
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.5em;
    }

    label[for="Suche"] strong {
        font-weight: 200;
        vertical-align: -4px;
    }

    label[for="Suche"] + .SucheTextfeld {
        display: block;
    }

    .sitemap {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    }

    .search-faq ul li + li {
        margin-top: 0.4em;
    }

    .search-faq ul li label:before,
    .search-faq ul li label:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }

    .search-faq ul li label:after {
        clear: both;
    }

    .search-faq ul li label {
        *zoom: 1;
        display: block;
    }

    .download h4 {
        font-size: 15px;
        font-size: 1.5rem;
    }

    .browse a.back span {
        display:none;
    }

    .browse a.back:after {
        content: "Übersicht";
    }

    .O2 img {
        max-width: 100%;
    }

    .search-input .instant-snippet {
    display: none;
    }

    .twitter-typeahead {
        width: 100%;
        margin-bottom: 1em;
    }

    .search-input input[type="text"] {
        width: 100%;
    }

    .search-input input[type="submit"] {
        width: 100%;
        vertical-align: middle;
        padding-top: 0.5em;
        padding-bottom: 0.6em;
        float: none;
    }

    .text.centered h3,
    .text.centered p {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }

} /* (min-width: 768px) */


/* ==========================================================================

   Media Queries for Responsive Design.
   Mobile Devices up to 480px

   ========================================================================== */

@media only screen and (max-width: 480px) {


    .wrapper {
        padding: 0 10px;
    }

}


/* ==========================================================================

   Media Queries for Responsive Design.
   Target tablet devices 768px

   ========================================================================== */

@media only screen and (width: 768px) {

    .heading-lead h1 strong {
        font-size: 4.2rem;
    }

    .heading-lead h1 span {
        font-size: 3.2rem;
    }
}

/* ==========================================================================

   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r

   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: none;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 1cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .wrapper {
        margin: 0;
        width: auto;
    }

    /* Non printable elements */
    header,
    .faq-box,
    .offsearch,
    .nav-sections,
    .nav-box,
    .login-status,
    .breadcrumbs,
    .stage,
    .teaser-special,
    .nav-page,
    .col-marginal,
    .teaser-wide,
    .social-media,
    .readmore,
    .toplink,
    .button,
    footer {
        display: none;
    }

    .col-content {
        float: none !important;
        width: auto !important;
    }

    .text > ul {
        display: table;
    }

    .heading-lead h1,
    .heading-lead h1 span {
        font-size: 1.4em;
    }

    .accordion .closed .accordion-content {
        display: block !important;
    }

    .faq-box-body {
        display: block !important;
    }

    .faq-box {
        margin-bottom: 1em;
    }

    .faq-box,
    .highlight .highlight {
        border: 1px solid rgb(230,230,230);
    }

    table .icon-ok:before {
        content: url('../img/icon-ok.png');
    }

    table .icon-endless:before {
        content: url('../img/icon-endless.png');
    }

    table .icon-x:before {
        content: url('../img/icon-x.png');
    }
} /* print */

.sup-header-headline {
    color: #FFFFFF;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center !important;
    padding-top: 32px;
    font-size: 48px;
    line-height: 56px;
}

@media only screen and (min-width: 768px) {
    .sup-header-headline {
        font-size: 64px;
        line-height: 70px;
    }
}

.sup-header-headline-2 {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 34px;
    text-align: center;
    padding-top: 16px;
  }

  @media only screen and (min-width: 768px) {
    .sup-header-headline-2 {
        padding-top: 32px;
      }
  }

.logo-pi-favicon-outline {
    height: 151px;
    width: 133px;
}

.pi-text {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

@media only screen and (min-width: 768px) {
    .pi-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
    }
}

.pi-favicon-outline {
    visibility: visible;
    width: 56.06px;
    margin-right: 16px;
}

@media only screen and (min-width: 768px) {
    .pi-favicon-outline {
        margin-bottom: 48px;
    }
}

.buttons-tertiary-default-copy {
  height: 55px;
  width: 212px;
}

.group {
    text-align: left !important;
}

.form .group {
    width: auto;
}


.button-label {
    color: #141619;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.2px;
    line-height: 26px;
    margin-right: 5px;
}

.person-name {
    color: #141619;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 36px;
    font-size: 36px;
}

@media only screen and (min-width: 768px) {
    .person-name {
        line-height: 56px;
        font-size: 48px;
    }
}

@media only screen and (min-width: 1150px) {
    .person-name {
        line-height: 70px;
        font-size: 64px;
    }
}

.person-tel {
    color: #141619;
    font-size: 21px;
    letter-spacing: 0.2px;
    line-height: 31px;
    margin-top: 16px;
}

@media only screen and (min-width: 768px) {
    .person-tel {
        margin-top: 32px;
    }
}

.person-job {
    color: #141619;
    font-size: 21px;
    letter-spacing: 0.2px;
    line-height: 31px;
    margin-top: 24px;
}

.pfeil-blue {
    height: 26px;
    width: 8px;
    color: #006DD1;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.2px;
    line-height: 26px;
}

.person-mail {
    line-height: 30px;
    text-decoration: none !important;
}

@media only screen and (min-width: 768px) {
    .person-mail {
        margin-top: 8px;
    }
}

.person-mail:hover .button-label {
    text-decoration: underline !important;
}

.mask {
    border-radius: 15px;
    background-color: #D8D8D8;
  }

.advice-button a {
    padding: 12px;
    background-color: #141619;
    white-space: nowrap;
    border: 3px solid #141619;
    display: inline-block;
    transition: .25s;
}

.advice-button a:hover {
    background-color: transparent;
    border-color: white;
    text-decoration: none;
}

.advice-button.light a {
    background-color: white;
    border-color: white;
    display: flex;
    align-items: flex-end;
}

.advice-button.light, .advice-text.dark {
    color: #141619 !important;
}


.advice-button.light a span {
    color: #141619 !important;
}

.advice-button.light a:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.advice-button.light a:hover .advice-text, .advice-button.light a:hover svg {
    color: white;
}

.advice-text {
    height: 22px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.17px;
    line-height: 22px;
    vertical-align: bottom;
    padding-left: 16px;
    font-family: 'Inter' !important;
  }

.consultation {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    width: calc(100% + 32px);
}

.consultation .col {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.consultation .text-col {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .consultation .col {
        width: 50%;
    }

    .consultation .text-col {
        padding-left: calc(48px);
    }
}

@media only screen and (min-width: 1150px) {
    .consultation .text-col {
        padding-left: calc(8.3333% + 48px);
    }
}

.line-2 {
    box-sizing: border-box;
    height: 1px;
    width: 940px;
    border: 1px solid #000000;
    opacity: 0.17;
    margin: 0 auto;
  }

.messages-bubble-information {
    height: 24px;
    width: 24px;
    color: #141619;
}
