/* ==========================================================================
   Load Imports first
   ========================================================================== */

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v34-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v34-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-condensed-300 - latin */
@font-face {
    font-family: 'Open Sans Condensed';
    font-style:  normal;
    font-weight: 300;
    src:         url('../fonts/open-sans-condensed-v14-latin-300.eot');
    src:         local('Open Sans Condensed Light'), local('OpenSansCondensed-Light'),
                 url('../fonts/open-sans-condensed-v14-latin-300.eot?#iefix') format('embedded-opentype'),
                 url('../fonts/open-sans-condensed-v14-latin-300.woff2') format('woff2'),
                 url('../fonts/open-sans-condensed-v14-latin-300.woff') format('woff'),
                 url('../fonts/open-sans-condensed-v14-latin-300.ttf') format('truetype'),
                 url('../fonts/open-sans-condensed-v14-latin-300.svg#OpenSansCondensed') format('svg');
}
/* ==========================================================================
   Loading animation
   ========================================================================== */

#loadingScreen {
    position: fixed;
    top:      0;
    left:     0;
    width:    100%;
    height:   100%;
    z-index:  10;
    overflow: hidden;
}

.no-js #loadingScreen {
    display: none;
}

#loader {
    display:           block;
    position:          relative;
    left:              50%;
    top:               50%;
    width:             150px;
    height:            150px;
    margin:            -75px 0 0 -75px;
    border-radius:     50%;
    border:            2px solid transparent;
    border-top-color:  #9F3636;
    -webkit-animation: spin 1.7s linear infinite;
    animation:         spin 1.7s linear infinite;
    z-index:           11;
}

#loader:before {
    content:           "";
    position:          absolute;
    top:               5px;
    left:              5px;
    right:             5px;
    bottom:            5px;
    border-radius:     50%;
    border:            2px solid transparent;
    border-top-color:  #333;
    -webkit-animation: spin-reverse .6s linear infinite;
    animation:         spin-reverse .6s linear infinite;
}

#loader:after {
    content:           "";
    position:          absolute;
    top:               15px;
    left:              15px;
    right:             15px;
    bottom:            15px;
    border-radius:     50%;
    border:            2px solid transparent;
    border-top-color:  #AAA;
    -webkit-animation: spin 1s linear infinite;
    animation:         spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform:     rotate(0deg);
        transform:         rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform:     rotate(360deg);
        transform:         rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform:     rotate(0deg);
        transform:         rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform:     rotate(-360deg);
        transform:         rotate(-360deg);
    }
}

#loadingScreen .screen {
    position:   fixed;
    top:        0;
    width:      50%;
    height:     100%;
    background: #FFF;
    z-index:    10;
}

#loadingScreen .screen.left {
    left: 0;
}

#loadingScreen .screen.right {
    right: 0;
}

/* Loaded styles */
.loaded #loadingScreen .screen.left,
.loaded #loadingScreen .screen.right {
    -webkit-transform:  translateX(-100%);
    -ms-transform:      translateX(-100%);
    transform:          translateX(-100%);
    -webkit-transition: all 0.7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 0.7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loadingScreen .screen.right {
    -webkit-transform: translateX(100%);
    -ms-transform:     translateX(100%);
    transform:         translateX(100%);
}

.loaded #loader {
    opacity:            0;
    -webkit-transition: all 0.3s ease-out;
    transition:         all 0.3s ease-out;
}

.loaded #loadingScreen {
    visibility:         hidden;
    -webkit-transform:  translateY(-100%);
    -ms-transform:      translateY(-100%);
    transform:          translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition:         all 0.3s 1s ease-out;
}


#unload {
    z-index:            -1;
    background:         #FFF;
    opacity:            0;
    position:           fixed;
    top:                0;
    left:               0;
    width:              100%;
    height:             100vh;
    -webkit-transition: opacity .3s;
    transition:         opacity .3s;
}

.unload #unload {
    opacity: 1;
    z-index: 99;
}
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */

[hidden] {
    display: none;
}

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

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-size: 100%; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */

p,
pre {
    margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */

q {
    quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */

q:before,
q:after {
    content: '';
    content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */

/**
 * Address margins set differently in IE 6/7.
 */

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */

menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */

figure {
    margin: 0;
}

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

/**
 * Correct margin displayed oddly in IE 6/7.
 */

form {
    margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
    *overflow: visible;  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

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

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ==========================================================================
   Basic rules
   ========================================================================== */

body,
html {
    width:      100%;
    height:     100%;
    background: url("../../../themes/sprungmann/images/noise.png") center repeat #FFF;
    position:   relative;
    cursor:     default;
}

body:before {
    content:            "";
    position:           fixed;
    top:                -10px;
    left:               0;
    width:              100%;
    height:             10px;
    z-index:            999999;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -moz-box-shadow:    0 0 10px rgba(0, 0, 0, .3);
    box-shadow:         0 0 10px rgba(0, 0, 0, .3);
}

html,
button,
input,
select,
textarea {
    color: #333;
}

html {
    font-family: 'Open Sans', Arial, Helvetica, Verdana, sans-serif;
    font-size:   .9em;
    line-height: 1.7em;
}

@media only screen and (min-width: 768px) {
    html {
        font-size:   1em;
        line-height: 1.8em;
    }
}

::-moz-selection {
    background: #9F3636;
    color:      #FFF;
}

::selection {
    background: #9F3636;
    color:      #FFF;
}

*,
*:before,
*:after {
    box-sizing:         border-box;
    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    *behavior:          url('/themes/default/js/boxsizing.htc');
}

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

ul {
    list-style-type: none;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

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

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
    height:    auto;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear {
    clear: both;
}

a {
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
    outline:            0;
    -moz-outline-color: transparent !important;
    text-decoration:    none;
}

a:focus {
    outline:            0;
    -moz-outline-color: transparent !important;
}

i {
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    margin:      0;
    font-family: 'Open Sans', Sans-Serif;
    font-weight: 300;
    color:       #555;
    position:    relative;
}

h1 {
    margin-bottom: 1em;
    font-size:     1.6em;
    line-height:   1.2em;
}

h2 {
    margin-bottom: .8em;
    font-size:     1.4em;
    line-height:   1.2em;
}

h3 {
    margin-bottom: .5em;
    font-size:     1.3em;
    line-height:   1.2em;
}

h4 {
    margin-bottom: .3em;
    font-size:     1.2em;
    line-height:   1.2em;
}

h5 {
    margin-bottom: .3em;
    font-size:     1.1em;
    line-height:   1.2em;
}

h6 {
    margin-bottom: .3em;
    font-size:     1em;
    line-height:   1.2em;
}

@media only screen and (min-width: 500px) {

    h1 {
        font-size:   1.7em;
        line-height: 1.3em;
    }

    h2 {
        font-size:   1.6em;
        line-height: 1.3em;
    }

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

}

@media only screen and (min-width: 768px) {

    h1 {
        font-size:   1.9em;
        line-height: 1.3em;
    }

    h2 {
        font-size:   1.7em;
        line-height: 1.3em;
    }

    h3 {
        font-size:   1.5em;
        line-height: 1.2em;
    }

    h3.articleHeadline {
        font-size: 1.4em;
    }
}

@media only screen and (min-width: 1024px) {

    h1 {
        font-size:   2em;
        line-height: 1.3em;
    }

    h2 {
        font-size:   1.8em;
        line-height: 1.3em;
    }

    h3 {
        font-size:   1.6em;
        line-height: 1.2em;
    }

    h3.articleHeadline {
        font-size: 1.5em;
    }
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight:    600;
    letter-spacing: -1px;
}

p {
    margin: 0 0 1em 0;
}

strong {
    font-weight: 600;
}

abbr[title] {
    border-bottom: none;
}

.transition {
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

.orangeText {
    color: #EB690B;
}

.whiteText {
    color: #EB690B;
}

.greyText1 {
    color: #BBB;
}

.greyText2 {
    color: #777;
}

.redText {
    color: #9F3636;
}

/* ==========================================================================
   Container
   ========================================================================== */

#container {
    position: relative;
    z-index:  2;
    width:    100%;
    height:   100%;
}

.pageOverlay {
    position:   fixed;
    z-index:    3;
    width:      100%;
    height:     100%;
    background: rgba(0, 0, 0, 0.3);
    display:    none;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

#navigation {
    display: none;
}

#mobNav {
    position:           fixed;
    z-index:            3;
    top:                0;
    left:               -300px;
    width:              300px;
    height:             100%;
    background:         #333;
    overflow:           auto;
    padding-top:        100px;
    -webkit-transition: left .3s;
    -moz-transition:    left .3s;
    -ms-transition:     left .3s;
    -o-transition:      left .3s;
    transition:         left .3s;
}

body.bodyMoveRight #mobNav {
    left:       0;
    box-shadow: 0 0 3em rgba(0, 0, 0, .8);
}

#mobNavContent {
    margin-top: -2em;
}

#mobNavHeader {
    position:       absolute;
    z-index:        1;
    width:          100%;
    top:            0;
    left:           0;
    background:     #FFF;
    padding-top:    .5em;
    padding-bottom: 1.2em;
}

#mobNavHeader #closeMobNav {
    float:  left;
    margin: .7em 0 0 1.5em;
}

#mobNavHeader #closeMobNav a {
    color: #333;
}

#mobNavHeader #closeMobNav a:hover {
    color: #CCC;
}

#mobNavHeader #mobNavLogo {
    max-width:    150px;
    float:        right;
    margin-right: 1em;
    margin-top:   .5em;
}

#mobNav ul {
    margin:          1em 0 0 0;
    padding:         0;
    list-style-type: none;
}

#mobNav ul li {
    margin:   0;
    padding:  0;
    position: relative;
}

#mobNav ul li ul li {
    padding-left: 1.5em;
}

#mobNav ul > li > a {
    display:         block;
    color:           #FFF;
    text-decoration: none;
    outline:         0;
    padding:         0;
    margin-bottom:   1em;
}

#mobNav ul > li > a span {
    display: none;
}

#mobNav ul > li > a:hover {
    color: #9F3636;
}

#mobNav ul > li > .sli {
    position:           absolute;
    right:              0;
    text-align:         center;
    top:                0;
    cursor:             pointer;
    padding:            .3em .6em .5em;
    color:              #EEE;
    /*background:         rgba(255, 255, 255, .1);*/
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

#mobNav ul > li > .sli:hover {
    color: #FFF;
    /*background: rgba(0, 0, 0, .4);*/
}

#mobNav ul ul {
    display: none;
}

#buttonShowNav {
    padding-top:    1.2em;
    padding-bottom: 1.5em;
    float:          left;
}

#buttonShowNav a {
    color:     #FFF;
    font-size: 1.2em;
}

.background #buttonShowNav a {
    color: #333;
}

#buttonShowNav a:hover {
    color: #AAA;
}

.spaceX {
    padding-left:  .7em;
    padding-right: .7em;
}

.topInner {
    padding-top: 1em;
}

.botInner {
    padding-bottom: 1em;
}

.topOuter {
    margin-top: 1em;
}

.botOuter {
    margin-bottom: 1em;
}

#navLogo {
    position:           relative;
    float:              right;
    top:                1.2em;
    width:              150px;
    -webkit-transition: all .3s;
    transition:         all .3s;
}

#header .white {
    position:           absolute;
    -webkit-transition: all .3s;
    transition:         all .3s;
    opacity:            1;
}

#header .white.inv {
    opacity: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

#headerContainer {
    position: fixed;
    z-index:  2;
    width:    100%;
    margin:   0;
}

#header {
    position:           relative;
    width:              100%;
    height:             auto;
    z-index:            4;
    -webkit-transition: all .3s;
    transition:         all .3s;
}

#header.background,
.no-js #header {
    background:    rgba(255, 255, 255, .95);
    border-bottom: 3px solid #9F3636;
    box-shadow:    0 3px 40px rgba(0, 0, 0, .2);
}

.shadow {
    position:           relative;
    z-index:            999;
    -webkit-box-shadow: 0 0 120px rgba(0, 0, 0, .2);
    -moz-box-shadow:    0 0 120px rgba(0, 0, 0, .2);
    box-shadow:         0 0 120px rgba(0, 0, 0, .2);
    -webkit-transition: all .3s;
    transition:         all .3s;
}

#navigationContainer {
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

/* ==========================================================================
   Normal page content
   ========================================================================== */

.pageContent {
    width:     100%;
    max-width: 1280px;
    margin:    0 auto;
    color:     #555;
    position:  relative;
    z-index:   1;
}

.pageContent.small {
    max-width: 768px;
}

.pageContent a {
    color: #9F3636;
}

.pageContent a:hover {
    color:           #AAA;
    text-decoration: underline;
}

.pageContent h1 {
    font-size: 2em;
}

.sidebar h2 {
    font-size: 2em;
}

.sidebar ul {
    margin:  0 0 2em 0;
    padding: 0;
}

.sidebar ul li {
    margin:  0;
    padding: 0;
}

.sidebar ul li a {
    color:         #53524F;
    border-left:   2px solid transparent;
    border-bottom: 1px solid #EEEDEB;
    display:       block;
    padding:       .3em;
}

.sidebar ul li:last-child a {
    /*border-bottom: none;*/
}

.sidebar ul li.active a,
.sidebar ul li a:hover {
    color:        #FF6600;
    border-left:  2px solid #FF6600;
    padding-left: .5em;
}

.sidebar ul li a:hover {
    background: #F4F3F2;
}

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

#footerContainer {
    z-index:    0;
    width:      100%;
    height:     auto;
    background: url("../../../themes/sprungmann/images/noise.png") center repeat #AAA;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) /*, inset 0 0 2px rgba(0, 0, 0, 1)*/;
    position:   relative;
}

#footer {
    width:          100%;
    max-width:      1280px;
    padding-top:    3em;
    padding-bottom: 3em;
    margin:         0 auto;
    color:          #FFF;
}

#footer a {
    color:           #FFF;
    outline:         0;
    text-decoration: none;
}

#footer a:hover {
    color: #CCC;
}

.opening span {
    display: inline-block;
    width:   40%;
}

.opening span:nth-child(2) {
    display: inline-block;
    width:   60%;
}

.opening span.smallCol {
    width: 25%;
}

#footer h3 {
    color: #FFF;
}

#footer h4 {
    color:       #555;
    font-weight: bold;
}

#footer ul {
    margin-left:  0;
    padding-left: 0;
}

#footer ul li {
    padding: .3em 0;
}

#footer ul li:first-of-type {
    border-top: none;
}

#footer ul li:last-of-type {
    border-bottom: none;
}

#footer ul li a {
}

#footer ul li a:hover {
    background: none;
}

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

#subFooter {
    background: url("../../../themes/sprungmann/images/noise.png") center repeat #222;
    color:      #FFF;
}

#subFooter #subFooterContent {
    width:          100%;
    max-width:      1280px;
    padding-top:    2em;
    padding-bottom: 2em;
    margin:         0 auto;
    color:          #FFF;
    font-size:      .9em;
}

#subFooter #subFooterContent ul {
    margin:  0;
    padding: 0;
}

#subFooter #subFooterContent ul li {
    display:       block;
    margin-bottom: 2em;
    text-align:    center;
}

#subFooter #subFooterContent a {
    color: #DDD;
}

#subFooter #subFooterContent a:hover {
    color: #FFF;
}

@media only screen and (min-width: 600px) {
    #subFooter #subFooterContent ul li {
        display:       inline-block;
        margin-right:  1em;
        margin-bottom: 0;
        line-height:   50px;
        text-align:    left;
    }

    #subFooter #subFooterContent div:nth-of-type(2) {
        text-align: right;
    }
}

/** Social **********************************************************************************************************/

#subFooter #subFooterContent a.socialCircle {
    width:       50px;
    height:      50px;
    line-height: 50px;
    display:     inline-block;
    transition:  all .3s;
    text-align:  center;
    transform:   scale(1);
}

#subFooter #subFooterContent a.socialCircle:hover {
    transform: scale(1.1);
}

#subFooter #subFooterContent a.socialCircle i {
    font-size: 1.5em;
}

#subFooter #subFooterContent a.socialCircle.facebook,
#subFooter #subFooterContent a.socialCircle.xing {
    border:     1px solid #555;
    color:      #AAA;
    background: #555;
}

#subFooter #subFooterContent a.socialCircle.facebook:hover {
    background: #3B5998;
    color:      #FFF;
}

#subFooter #subFooterContent a.socialCircle.xing:hover {
    background: #B0D400;
    color:      #FFF;
}

/* ==========================================================================
   Scroll2Top
   ========================================================================== */

#scroll2Top a {
    color: #FFF;
}

@media only screen and (min-width: 600px) {
    #scroll2Top {
        width:       50px;
        height:      50px;
        background:  #9F3636;
        position:    fixed;
        bottom:      -50px;
        padding-top: 5px;
        left:        calc(50% - 25px);
        z-index:     99;
        transition:  all .3s;
        opacity:     .5;
        cursor:      pointer;
        text-align:  center;
        border:      1px solid #FFF;
        box-shadow:  0 0 30px rgba(0, 0, 0, .3);
    }

    #scroll2Top a {
        font-size: 1.7em;
        color:     #FFF;
    }

    #scroll2Top:hover {
        opacity: 1;
    }

    #scroll2Top.show {
        bottom: -5px;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 400px) {

    .spaceX {
        padding-left:  1em;
        padding-right: 1em;
    }

}

@media only screen and (min-width: 600px) {

    .spaceX {
        padding-left:  1.5em;
        padding-right: 1.5em;
    }

    .topInner {
        padding-top: 2em;
    }

    .botInner {
        padding-bottom: 2em;
    }

    .topOuter {
        margin-top: 2em;
    }

    .botOuter {
        margin-bottom: 2em;
    }
}

@media only screen and (min-width: 768px) {

    #mobNav {
        display: none;
    }

    #navLogo {
        position:     relative;
        width:        280px;
        right:        auto;
        top:          auto;
        padding:      1.3em 0 1.5em;
        float:        none;
        margin-left:  auto;
        margin-right: auto;
    }

    #header.background #navLogo {
        width:   230px;
        padding: 1em 0 1em;
    }

    #navigationContainer {
        position:    relative;
        margin:      0 auto;
        max-width:   1280px;
        padding-top: 0;
    }

    #buttonShowNav {
        display: none;
    }

    #navigation {
        display:            block;
        position:           relative;
        float:              right;
        width:              100%;
        z-index:            4;
        font-size:          1em;
        margin:             0;
        padding:            0;
        background:         none;
        top:                auto;
        left:               auto;
        -webkit-transition: all .3s;
        transition:         all .3s;
        text-align:         center;
    }

    #navigation > ul {
        position:   relative;
        list-style: none;
        margin:     0;
        padding:    0;
    }

    #navigation > ul > li {
        position: relative;
        margin:   0;
        padding:  0;
        display:  inline-block;
    }

    /*
    #navigation > ul > li.hasChild:before {
        position: absolute;
        content: '\f0d7';
        font-family: 'FontAwesome';
        bottom: 10px;
        right: 5px;
        font-size: .8em;
        color: #FFF;
    }
    */
    #navigation > ul > li > a {
        text-align:    right;
        color:         #FFF;
        display:       block;
        padding:       .6em 1em .6em 1em;
        margin-bottom: 0;
        cursor:        pointer;
    }

    #header.background #navigation > ul > li > a,
    .no-js #navigation > ul > li > a {
        color: #333;
    }

    #navigation > ul > li > a:hover,
    #navigation > ul > li > a.activePage {
        color:           #333;
        text-decoration: none;
        background:      rgba(255, 255, 255, .95);
        border-radius:   .3em;
    }

    #header.background #navigation > ul > li > a:hover,
    #header.background #navigation > ul > li > a.activePage {
        color:            #FFFFFF;
        background-color: #9F3636;
    }

    #navigation ul > li > a > span {
        display: none;
    }

    #navigation ul > li > .sli {
        display: none;
    }

    #navigation > ul > li > ul {
        font-size:             .95em;
        background:            rgba(255, 255, 255, .95);
        position:              absolute;
        z-index:               1;
        opacity:               0;
        visibility:            hidden;
        top:                   50px;
        left:                  0;
        width:                 250px;
        margin:                0;
        padding:               0;
        text-align:            left;
        box-shadow:            0 .5em 2em rgba(0, 0, 0, .4);
        -webkit-box-shadow:    0 .5em 2em rgba(0, 0, 0, .4);
        -moz-box-shadow:       0 .5em 2em rgba(0, 0, 0, .4);
        -webkit-border-radius: 4px;
        -moz-border-radius:    4px;
        -ms-border-radius:     4px;
        -o-border-radius:      4px;
        border-radius:         4px;
        -webkit-transition:    all .3s;
        -moz-transition:       all .3s;
        -o-transition:         all .3s;
        transition:            all .3s;
        transform:             scale(.8);
    }

    #navigation > ul > li.menu-left > ul {
        right:      0;
        left:       auto;
        text-align: right;
    }

    #navigation > ul > li:hover > ul {
        opacity:    1;
        visibility: visible;
        transform:  scale(1);
    }

    #navigation > ul > li > ul:before {
        content:      '';
        position:     absolute;
        top:          -14px;
        left:         15%;
        border-color: transparent transparent rgba(255, 255, 255, .9) transparent;
        border-style: solid;
        border-width: 8px;
    }

    #navigation > ul > li.menu-left > ul:before {
        right: 15%;
        left:  auto;
    }

    #navigation > ul ul > li {
        position: relative;
        padding:  0;
    }

    #navigation ul ul a {
        color:              #333;
        display:            block;
        padding:            .6em 1em;
        -webkit-transition: background-color 0.3s;
        -moz-transition:    background-color 0.3s;
        -o-transition:      background-color 0.3s;
        transition:         background-color 0.3s;
        margin-bottom:      0;
        cursor:             pointer;
    }

    #navigation ul ul a > span {
        margin-top: -.5em;
        color:      #AAA;
    }

    #navigation ul ul a:hover {
        color:            #FFFFFF;
        background-color: #9F3636;
    }

    #navigation ul ul li:first-of-type > a {
        border-top-left-radius:  4px;
        border-top-right-radius: 4px;
    }

    #navigation ul ul li:last-of-type > a {
        border-bottom-left-radius:  4px;
        border-bottom-right-radius: 4px;
    }

    #navigation ul ul ul,
    #navigation ul .menu-left ul ul {
        visibility:            hidden;
        position:              absolute;
        opacity:               0;
        top:                   -1em;
        left:                  250px;
        padding:               0;
        background:            rgba(255, 255, 255, .95);
        width:                 250px;
        box-shadow:            0 .5em 2em rgba(0, 0, 0, .4);
        -webkit-box-shadow:    0 .5em 2em rgba(0, 0, 0, .4);
        -moz-box-shadow:       0 .5em 2em rgba(0, 0, 0, .4);
        -webkit-border-radius: 4px;
        -moz-border-radius:    4px;
        -ms-border-radius:     4px;
        -o-border-radius:      4px;
        border-radius:         4px;
        z-index:               1;
        transform:             scale(.8);
        -webkit-transition:    all .3s;
        -moz-transition:       all .3s;
        -ms-transition:        all .3s;
        -o-transition:         all .3s;
        transition:            all .3s;
    }

    #navigation ul .menu-left ul ul {
        left: -160px;
    }

    #navigation ul ul ul:before,
    #navigation ul .menu-left ul ul:before {
        content:      '';
        border-color: transparent rgba(255, 255, 255, .9) transparent transparent;
        border-style: solid;
        border-width: 8px;
        position:     absolute;
        top:          1em;
        left:         -1.1em;
        z-index:      0;
    }

    #navigation ul ul > li:hover > ul,
    #navigation ul .menu-left ul > li:hover > ul {
        opacity:    1;
        visibility: visible;
        transform:  scale(1);
    }

    #navigation ul .menu-left ul ul:before {
        border-style: solid;
        border-width: 7px;
        border-color: transparent transparent transparent rgba(255, 255, 255, .9);
        left:         170px;
    }

    #navigation ul .menu-left ul > li:hover > ul {
        left: -160px;
    }

    #navigation ul ul li a.activePage {
        color: #9F3636;
    }

    #navigation ul ul li a:hover.activePage {
        color: #FFF;
    }

}

@media only screen and (min-width: 1080px) {
    #navigationContainer {
        padding-top: .5em;
    }

    #navLogo {
        width:          350px;
        padding-bottom: 1em;
    }

    #navLogo {
        float:   left;
        padding: 1em 0 1.8em;
    }

    #header.background #navLogo,
    .no-js #navLogo {
        width:   270px;
        padding: .6em 0 1.3em;
    }

    #navigation {
        margin-top:   1.2em;
        width:        auto;
        margin-left:  0;
        margin-right: 0;
    }

    #header.background #navigation,
    .no-js #navigation {
        margin-top: .6em;
    }

    #navigation > ul > li > a {
        text-align: right;
    }

    #navigation > ul > li:last-of-type > a {
        /*border-right: none;*/
    }

    #navigation ul > li > a > span {
        /*display: block;*/
    }

}

@media only screen and (min-width: 1190px) {

    .spaceX {
        padding-left:  2em;
        padding-right: 2em;
    }

    .topInner {
        padding-top: 3em;
    }

    .botInner {
        padding-bottom: 3em;
    }

    .topOuter {
        margin-top: 3em;
    }

    .botOuter {
        margin-bottom: 3em;
    }
}

/* ==========================================================================
   outlineButton
   ========================================================================== */

a.outlineButton,
a.filledButton,
a.orangeButton {
    position:      relative;
    padding:       .7em 1.8em;
    font-weight:   300;
    margin-top:    1em;
    display:       inline-block;
    border-radius: 0;
    text-align:    center;
}

a.outlineButton.white {
    border: 1px solid #FFF;
    color:  #FFF;
}

a.outlineButton.white:hover {
    background: rgba(255, 255, 255, .8);
    color:      #333;
}

a.outlineButton.dark {
    border: 1px solid #333;
    color:  #333;
}

a.outlineButton.dark:hover {
    background: rgba(0, 0, 0, .1);
}

a.filledButton.white {
    border:     1px solid #FFF;
    background: #FFF;
    color:      #333;
}

a.filledButton.white:hover {
    border:     1px solid #FFF;
    background: transparent;
    color:      #FFF;
}

a.filledButton.dark {
    border:     1px solid #333;
    background: #333;
    color:      #FFF;
}

a.filledButton.dark:hover {
    border:     1px solid #333;
    background: transparent;
    color:      #333;
}

a.orangeButton {
    color:      #FFF;
    background: #EB690B;
    border:     1px solid #EB690B;
}

a.orangeButton:hover {
    color:      #EB690B;
    background: transparent;
}

/* ==========================================================================
   Lists
   ========================================================================== */

ul.list {
    margin:          0;
    padding:         0;
    list-style-type: none;
}

ul.list li {
    margin:       0;
    padding:      0;
    padding-left: 1.2em;
    position:     relative;
    line-height:  1.5em;
}

ul.list.arrow li:before {
    position:    absolute;
    left:        0;
    content:     '\f0a9';
    font-family: 'FontAwesome';
    color:       #888;
}

ul.list.check li:before {
    position:    absolute;
    left:        0;
    content:     '\f058';
    font-family: 'FontAwesome';
    color:       #589F5C;
}

ul.list.check.green li:before {
    color: #EB690B;
}

@media only screen and (min-width: 768px) {
    ul.list li {
        line-height: 1.7em;
    }
}

.innerContainer {
    width:     100%;
    margin:    0 auto;
    max-width: 1280px;
    height:    auto;
    position:  relative;
}

/* ==========================================================================
   Parallax
   ========================================================================== */

.fixedBackground {
    position:            relative;
    color:               #CCC;
    width:               100%;
    height:              auto;
    background-size:     cover;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
}

.fixedBackgroundHalf {
    position:            relative;
    color:               #CCC;
    width:               100%;
    /*min-height:          50%;*/
    background-size:     cover;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
}

#opener {
    border-bottom: 3px solid #9F3636;
}

@media only screen and (min-width: 1280px) {
    .fixedBackground {
        min-height: 100%;
    }
}

/* ==========================================================================
   images
   ========================================================================== */

.home {
    background-image: url('../../../media/header-images/nissan-autohaus-sprungmann-bielefeld.jpg');
}

.service {
    background-image: url('../../../media/header-images/nissan-suzuki-service-bielefeld.jpg');
}

.about {
    background-image: url('../../../media/header-images/ueber-uns-autohaus-sprungmann-bielefeld.jpg');
}

.verkauf {
    background-image: url('../../../media/header-images/verkauf-von-jahreswagen-neuwagen-gebrauchtfahrzeugen-in-bielefeld.jpg');
}

.mietwagen {
    background-image: url('../../../media/header-images/mietwagen-leihwagen-ersatzfarzeug-reparatur-bielefeld.jpg');
}

.werkstatt {
    background-image: url('../../../media/header-images/fachgerechte-kfz-reparatur-in-bielefeld.jpg');
}

.historie {
    background-image: url('../../../media/header-images/historie-autohaus-sprungmann.jpg');
}

.mitarbeiter {
    background-image: url('../../../media/header-images/mitarbeiter-im-autohaus-sprungmann.jpg');
}

.aktuelles {
    background-image: url('../../../media/header-images/aktuelles-im-autohaus-sprungmann.jpg');
}

.archiv {
    background-image: url('../../../media/header-images/neuigkeiten-archiv-autohaus-sprungmann.jpg');
}

.angebote {
    background-image: url('../../../media/header-images/fahrzeugangebote-nissan-suzuki-bielefeld.jpg');
}

.partner {
    background-image: url('../../../media/header-images/partner-autohaus-sprungmann-bielefeld.jpg');
}

.news {
    background-image: url('../../../media/header-images/nissan-sprungmann-aktuell.jpg');
}

.service-spacer {
    background-image: url('../../../media/header-images/service-sprungmann.jpg');
}

.werstatt-service-spacer {
    background-image: url('../../../media/header-images/werstatt-service-bielefeld.jpg');
}

.kontakt {
    background-image: url('../../../media/header-images/kontakt.jpg');
}

.anfahrt {
    background-image: url('../../../media/header-images/anfahrt-autohaus-sprungmann-bielefeld.jpg');
}

.datenschutz {
    background-image: url('../../../media/header-images/datenschutz.jpg');
}

.impressum {
    background-image: url('../../../media/header-images/impressum.jpg');
}

.werstatt-service-spacer2 {
    background-image: url('../../../media/header-images/service-sprungmann.jpg');
}

.darkLayer {
    position:   absolute;
    background: rgba(30, 30, 30, .5);
    top:        0;
    right:      0;
    bottom:     0;
    left:       0;
    display:    block;
}

.darkLayer.light {
    background: rgba(30, 30, 30, .2);
}

/* ==========================================================================
   simple page head
   ========================================================================== */

.actualPage {
    padding: 12em 0 6em;
}

.actualPage h1 {
    color:      #FFF;
    text-align: center;
    margin:     0;
}

.actualPage h3 {
    color:      #DDD;
    text-align: center;
    margin:     0;
}

.headlineBorder {
    margin:     2em auto;
    height:     2px;
    width:      50px;
    background: #EB690B;
}

@media only screen and (min-width: 768px) {

}

.centeredArticle,
.centeredArticle.wide {
    position:  relative;
    max-width: 1024px;
    margin:    0;
}

.centeredArticle.wide {
    max-width: 1200px;
}

.centeredArticle.flexbox {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    align-items:     center;
}

.simpleBox h3 {
    margin-bottom: 1em;
}

.simpleBox h3 .sep {
    display: none;
}

.simpleBox h3 .item {
    display: block;
}

.centeredArticle.flexbox div:nth-of-type(1) {
    width:         45%;
    margin-bottom: 2em;
}

.centeredArticle.flexbox div:nth-of-type(2) {
    margin-bottom: 1.5em;
}

.centeredArticle.flexbox div:nth-of-type(3) {

}

@media only screen and (min-width: 768px) {

    .simpleBox h3 .sep {
        display: inline-block;
        padding: 0 1em;
    }

    .simpleBox h3 .item {
        display: inline-block;
    }

    .centeredArticle.flexbox {
        display:         flex;
        flex-direction:  row;
        justify-content: center;
        align-items:     center;
    }

    .centeredArticle.flexbox div:nth-of-type(1) {
        width:         20%;
        margin-bottom: 0;
    }

    .centeredArticle.flexbox div:nth-of-type(2) {
        padding-top: 10px;
        width:       40%;
    }

    .centeredArticle.flexbox div:nth-of-type(3) {
        width: 28%;
    }
}

@media only screen and (min-width: 1150px) {
    .centeredArticle,
    .centeredArticle.wide {
        margin: 0 auto;
    }
}

.textLeft {
    text-align: left;
}

.textRight {
    text-align: right;
}

.textCenter {
    text-align: center;
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

/* ==========================================================================
   Hinweis auf veralteten Browser
   ========================================================================== */

#outdated {
    display:    block;
    top:        0;
    left:       0;
    width:      100%;
    height:     auto;
    background: #BB5E5E;
    border:     1px solid #820000;
    color:      #FFF;
    padding:    10px;
    text-align: center;
}

#outdated a {
    color:           #000000;
    text-decoration: none;
}

/* ==========================================================================
   Images
   ========================================================================== */

.imgFltLeft {
    float:  left;
    margin: .3em 1em .5em 0;
    border: 1px solid #DDD;
}

.imgFltRight {
    float:  right;
    margin: .2em 0 .5em 1em;
    border: 1px solid #DDD;
}

.imgNoFlt {
    display: inline-block;
    border:  1px solid #DDD;
}

.imgFltLeft.noBorder,
.imgFltRight.noBorder,
.imgNoFlt.noBorder {
    border: none;
}

.zoom {
    background: #EEE;
    position:   relative;
    display:    inline-block;
    z-index:    1;
}

.zoom a {
    display: block;
}

.zoom img {
    margin:  0;
    padding: 0;
    display: block;
}

.zoom span {
    background:         url('../images/zoom.png') center center no-repeat;
    background-color:   rgba(0, 0, 0, 0);
    background-size:    40px;
    position:           absolute;
    width:              100%;
    height:             100%;
    top:                0;
    left:               0;
    opacity:            0;
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -ms-transition:     all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
}

.zoom:hover span {
    background-color: rgba(0, 0, 0, .6);
    opacity:          .8;
    background-size:  60px;
}

/* ==========================================================================
   Suchmaske
   ========================================================================== */

.searchOverlay {
    position:   fixed;
    z-index:    99;
    width:      100%;
    height:     100%;
    background: rgba(0, 0, 0, 0.8);
    display:    none;
}

.searchOverlay h3 {
    font-size:  1.5em;
    color:      #FFF;
    text-align: center;
    padding:    3em .5em 1.5em;
}

a.closeSearch {
    color:         #FFF;
    position:      absolute;
    top:           0;
    right:         0;
    background:    rgba(255, 255, 255, .1);
    padding:       .5em .8em;
    font-size:     1.5em;
    border-radius: 2px;
    z-index:       1;
}

a.closeSearch:hover {
    background: rgba(255, 255, 255, .3);
}

#searchContainer {
    margin:        0 1em;
    max-width:     500px;
    height:        auto;
    padding:       2em;
    background:    rgba(255, 255, 255, 1);
    border-radius: .4em;
    box-shadow:    0 0 30px rgba(0, 0, 0, 0.5);
}

#searchContainer p {
    margin: 0;
}

#searchContainer input[type=text],
#searchContainer button {
    /*border: 1px solid #000;*/
    border:             0;
    padding:            .5em;
    margin:             0;
    float:              left;
    height:             50px;
    display:            block;
    font-family:        'Open Sans', Arial, Helvetica, Verdana, sans-serif;
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
    outline:            0;
}

#searchContainer button {
    font-size:     .8em;
    border-left:   none;
    padding:       .1em 1.4em .3em;
    color:         #FFF;
    width:         30%;
    background:    #9F3636;
    border-radius: 0 3px 3px 0;
}

#searchContainer button:hover {
    background: #999;
    color:      #333;
}

#searchContainer input[type=text] {
    background:    #EEE;
    color:         #333333;
    width:         70%;
    border-radius: 3px 0 0 3px;
    border:        1px solid #AAA;
    border-right:  none;
}

#searchContainer input[type=text]:hover {
    background: #FFF;
}

#searchContainer input[type=text]:focus {
    background:   #FFF;
    border-color: #0082FF;
}

@media only screen and (min-width: 500px) {
    #searchContainer {
        margin:  0 auto;
        padding: 3em;
    }

    .searchOverlay h3 {
        font-size: 2em;
    }

    #searchContainer input[type=text] {
        width: 80%;
    }

    #searchContainer button {
        width: 20%;
    }
}

@media only screen and (min-width: 768px) {
    #searchContainer {
        margin:  0 auto;
        padding: 4em;
    }

    .searchOverlay h3 {
        font-size: 3em;
    }

    a.closeSearch {
        top:       1em;
        right:     1em;
        padding:   .7em 1em;
        font-size: 2em;
    }
}

.showSearch {
    cursor: pointer;
}

/* ==========================================================================
   Suchergebnisse
   ========================================================================== */

.searchResult {
    background:    #FFF;
    padding:       1em;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
    border-radius: 5px;
    line-height:   1.4em;
    margin-bottom: 2em;
}

.searchResult a {
    color: #888;
}

.searchResult a:hover {
    color:           #9F3636;
    text-decoration: none;
}

.searchResult:last-child {
}

.searchResult .resultContent img {
    position:      relative;
    display:       block;
    margin-bottom: 1em;
}

.searchResult .resultContent a {
    border:          1px solid #9F3636;
    color:           #FFF;
    padding:         .6em 1em;
    display:         inline-block;
    margin-top:      1em;
    text-decoration: none;
    outline:         0;
}

.searchResult .resultContent a:hover {
    color:           #9F3636;
    background:      transparent;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .searchResult .resultContent img {
        float:     left;
        max-width: 300px;
        margin:    0 2em 0 0;
    }
}

/** suchergebnisse keyword highlight */

.searchKeyword {
    background: rgba(255, 180, 0, 0.55);
    padding:    2px 4px;
    color:      #FFF;
}

/* ==========================================================================
   Einfaches Login Formular für geschützte Inhalte
   ========================================================================== */

form.simpleLogin label {
    display: none;
}

form.simpleLogin input[type=text],
form.simpleLogin input[type=submit] {
    border:             1px solid #555;
    background:         #EEE;
    color:              #555;
    padding:            .7em;
    margin-right:       .5em;
    width:              20em;
    font-family:        "Open Sans", Helvetica, Arial, sans-serif;
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

form.simpleLogin input[type=text]:hover {
    border:     1px solid #222;
    background: #DDD;
}

form.simpleLogin input[type=text]:focus {
    border:     1px solid #0082FF;
    background: #FFF;
}

form.simpleLogin input[type=text].fieldError {
    border: 1px solid #9F3636;
}

form.simpleLogin input[type=submit] {
    border:         1px solid #555;
    background:     #555;
    color:          #FFF;
    width:          auto;
    cursor:         pointer;
    text-transform: uppercase;
    padding-left:   2em;
    padding-right:  2em;
}

form.simpleLogin input[type=submit]:hover {
    border:     1px solid #111;
    background: #111;
    color:      #FFF;
    width:      auto;
}

/* ==========================================================================
   Messages
   ========================================================================== */

#messageContainer {
    position: fixed;
    top:      0;
    right:    0;
    z-index:  999999;
    width:    100%;
    cursor:   pointer;
}

@media only screen and (min-width: 768px) {
    #messageContainer {
        top:   1em;
        right: 1em;
        width: auto;
    }

    .messageOk,
    .messageError,
    .messageErrorFix,
    .messageInfo,
    .messageTip {
        border-radius: .4em;
    }
}

.messageOk li,
.messageError li,
.messageErrorFix li,
.messageInfo li,
.messageTip li {
    padding: .1em 1em .1em 1.5em;
}

.messageOk,
.messageError,
.messageErrorFix,
.messageInfo,
.messageTip {
    display:         none;
    position:        relative;
    background:      url('../../../layout/images/messages/ok.png') no-repeat 20px center rgba(0, 0, 0, .8);
    list-style-type: none;
    width:           auto;
    height:          auto;
    margin:          0 0 10px 0;
    padding:         5px 20px 5px 5px;
    line-height:     150%;
    z-index:         99999;
    color:           #FFF;
    text-shadow:     1px 1px 0 #000;
}

.messageOk a,
.messageError a,
.messageErrorFix a,
.messageInfo a,
.messageTip a {
    color:           #C8925B;
    text-decoration: none;
    outline:         0;
}

.messageOk {
    background-image: url('../../../layout/images/messages/ok.png');
}

.messageInfo {
    background-image: url('../../../layout/images/messages/info.png');
}

.messageError,
.messageErrorFix {
    background-image: url('../../../layout/images/messages/error.png');
}

.messageTip {
    background-image: url('../../../layout/images/messages/tip.png');
}

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

#sitemapList ul {
    margin:          0 0 0 1.5em;
    padding:         0;
    color:           #333;
    list-style-type: square;
}

#sitemapList > ul {
}

#sitemapList ul li {
    margin:      0;
    padding:     0;
    line-height: 1.8em;
}

#sitemapList ul li a {
    color:           #9F3636;
    text-decoration: none;
    outline:         0;
}

#sitemapList ul li a:hover {
    color: #AAA;
}

#sitemapList ul li a span {
    display: none;
}

#opener .lightLayer {
    background: rgba(0, 0, 0, .1);
    width:      100%;
    height:     100%;
}

#opener .introBlock {
    position:       relative;
    color:          #FFF;
    text-align:     center;
    padding-top:    10em;
    padding-bottom: 10em;
    font-size:      1.3em;
}


#opener .introBlock h2 span {
    color:     #CCC;
    font-size: .9em;
}

#opener .introBlock .headlineActions a {
    width: 100%;
}

#opener .introBlock .headlineActions a:nth-of-type(1) {
    margin-bottom: 1em;
}

@media only screen and (min-width: 640px) {
    #opener .introBlock.textRight {
        text-align: right;
    }

    #opener .introBlock.textLeft {
        text-align: left;
    }

    #opener .introBlock .headlineActions a {
        width: 48%;
    }

    #opener .introBlock .headlineActions a:nth-of-type(1) {
        margin-right:  4%;
        margin-bottom: 0;
    }

    #opener .introBlock .headlineActions a:nth-of-type(2) {
        float: right;
    }
}

@media only screen and (min-width: 768px) {

    #opener .introBlock {
        padding-top:    16em;
        padding-bottom: 10em;
    }
}

#opener .introBlock p.headlineOpener {
    font-weight: 300;
    font-size:   1.4em;
}

#opener .introBlock p.headlineSubtext {
    color: #BBB;
}

#opener .introBlock h2 {
    color:       #FFF;
    margin:      0 0 .4em;
    line-height: 1.4em;
    font-size:   1.7em;
}

#opener .breadCrump {
    font-size:   .9em;
    color:       #DDD;
    margin-left: -.4em;
}

#opener .breadCrump a {
    color:         #EEE;
    padding:       .2em .4em;
    border-radius: .2em;
    background:    rgba(255, 255, 255, .1);
}

#opener .breadCrump a:hover {
    background: rgba(255, 255, 255, .4);
    color:      #FFF;
}

@media only screen and (min-width: 640px) {
    #opener .introBlock h2 {
        margin:      0 0 .4em;
        line-height: 1.3em;
        font-size:   2em;
    }

    #opener .introBlock p.headlineOpener {
        font-size: 1.6em;
    }
}

@media only screen and (min-width: 1024px) {
    #opener .introBlock h2 {
        margin:      0 0 .4em;
        line-height: 1.3em;
        font-size:   2.1em;
    }

    #opener .introBlock p.headlineOpener {
        font-size: 1.8em;
    }
}

@media only screen and (min-width: 768px) {
    .flexContainer {
        flex-direction: row;
    }

    .flexContainer .twoCol {
        margin-bottom: 0;
        margin-right:  2em;
    }

    .flexContainer .twoCol:last-of-type {
        margin-right: 0;
    }

}

.simpleBox {
    background: url("../../../themes/sprungmann/images/noise.png") center repeat #EEE;
    padding:    1.5em 1em;
}

.imgSizeLimiter img {
    max-width: 300px;
}

.imgSizeLimiter div:nth-child(3) img {
    margin-top: 1em;
    max-width:  270px;
}

.spaceBottom {
    margin-bottom: 2em;
}

@media only screen and (min-width: 1024px) {
    .extraSpaceBottom {
        padding-bottom: 2em;
    }
}

.spaceTop {
    margin-top: 3em;
}

.bordered {
    border-left:  2px solid #9F3636;
    padding-left: 10px;
}

/** News Section **********************************************************************************************************/

.newsContainer {
    background: #FFFFFF;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, .1) 0%, rgba(0, 0, 0, .04) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, .1) 0%, rgba(0, 0, 0, .04) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, .1) 0%, rgba(0, 0, 0, .04) 100%);
    filter:     progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#EEE', GradientType=0);
}

.newsContainer h2 {
    text-align: center;
    color:      #9F3636;
}

.newsContainer .newsContent {
    max-width:    800px;
    margin-left:  auto;
    margin-right: auto;
}

.newsContainer .newsContent img {
    margin-bottom: 1em;
}

a.more {
    margin-top:      2em;
    display:         inline-block;
    background:      #9F3636;
    border:          1px solid #9F3636;
    color:           #FFF;
    text-decoration: none;
    padding:         .5em 2em;
}

a.more:hover {
    background:      transparent;
    color:           #9F3636;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .newsContainer .newsContent div:first-child {
        text-align: right;
    }
}

/** Blickfang **********************************************************************************************************/

.blickfang {
    position:              relative;
    width:                 100%;
    height:                auto;
    background-size:       cover;
    background-position:   50% 50%;
    background-repeat:     no-repeat;
    background-attachment: fixed;
    text-align:            center;
}

.blickfang:before {
    position:   absolute;
    top:        0;
    left:       0;
    width:      100%;
    height:     100%;
    content:    '';
    background: rgba(0, 0, 0, .6);
}

.blickfang.no:before {
    position:   absolute;
    top:        0;
    left:       0;
    width:      100%;
    height:     100%;
    content:    '';
    background: rgba(0, 0, 0, .3);
}

.blickfang h1 {
    margin: 2em 0;
    color:  #FFF;
}

/* ==========================================================================
   Show-Hide
   ========================================================================== */

.showDesk {
    display: none;
}

@media only screen and (min-width: 768px) {
    .hideMob {
        display: none;
    }

    .showDesk {
        display: block;
    }
}

.pagesIntro {
    color:      #FFF;
    padding:    10em 1em 8em;
    text-align: center;
    font-size:  1.3em;
}

.pagesIntro h1 {
    color:         #FFF;
    margin-bottom: 5px;
}

.pagesIntro a {
    color: #AAA;
}

@media only screen and (min-width: 768px) {
    .pagesIntro {
        padding: 13em 1em 8em;
    }

    .imgSizeLimiter div:nth-child(3) img {
        margin-top: 0;
    }
}

/* ==========================================================================
   ServiceBox
   ========================================================================== */

.serviceBox {
    color:         #333;
    background:    #FFF;
    margin-bottom: 1em;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
}

.serviceBox h3 {
    padding: .1em 0 .5em;
    margin:  0;
    color:   #9F3636;
}

.serviceBox .content {
    padding: 1em;
}

/* ==========================================================================
   AboutBox
   ========================================================================== */

.aboutBox,
.aboutBox.fixed {
    position:      relative;
    background:    #DDD;
    margin-bottom: 2em;
}

.aboutBox img {
    /*margin-bottom: 2%;*/
}

.aboutText,
.aboutBox.fixed .aboutText {
    height:     auto;
    padding:    0 3% 1% 3%;
    overflow:   hidden;
    background: #DDD;
    width:      100%;
}

.aboutText h3 {
    color:      #333;
    margin-top: 10px;
}

.aboutText a {
    color:           #333;
    text-decoration: none;
    outline:         0;
}

.aboutText img {
    max-width: 120px;
}

.aboutText a:hover {
    color: #9F3636;
}

@media screen and (min-width: 768px) {
    .aboutBox {
        min-height:    18em;
        border-bottom: 0.8em solid #DDDDDD;
    }

    .aboutText {
        padding:            3% 5% 0;
        height:             3.7em;
        position:           absolute;
        line-height:        1.4em;
        bottom:             0;
        color:              #666;
        -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0, 1.0);
        transition:         all 0.5s cubic-bezier(0.5, 0, 0, 1.0);
        border-top:         2px solid #9F3636;
    }

    .aboutText h3 {
        margin-top: 0;
    }

    .aboutBox {
        margin-bottom: 3em;
    }

    .aboutBox:hover > .aboutText {
        height: 80%;
    }

    .aboutBox.fixed > .aboutText {
        position:    relative;
        border-top:  none;
        padding-top: 1em;
    }

    .aboutBox.fixed:hover > .aboutText {
        height: auto;
    }

}

@media screen and (min-width: 900px) {
    .aboutBox {
        min-height: 20.5em;
    }
}

/* ==========================================================================
   TimeLine
   ========================================================================== */

.timeLineBody {
    position:       relative;
    width:          100%;
    height:         auto;
    padding-top:    4em;
    padding-bottom: 4em;
}

.timeLineBody h2 {
    margin-bottom: .4em;
    font-size:     1.6em;
    color:         #9F3636;
}

.timeLineBody h3 {
    margin-bottom: .4em;
    font-size:     1.4em;
    color:         #888;
    font-weight:   400;
}

@media only screen and (min-width: 768px) {

    .timeLineBody h2 {
        font-size: 1.7em;
    }
}

.timeLineBody:before {
    position:   absolute;
    content:    ' ';
    left:       8px;
    top:        0;
    bottom:     0;
    width:      3px;
    background: #555;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(90, 90, 90, 1) 7%, rgba(90, 90, 90, 1) 50%, rgba(90, 90, 90, 1) 93%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(90, 90, 90, 1) 7%, rgba(90, 90, 90, 1) 50%, rgba(90, 90, 90, 1) 93%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(90, 90, 90, 1) 7%, rgba(90, 90, 90, 1) 50%, rgba(90, 90, 90, 1) 93%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(90, 90, 90, 1) 7%, rgba(90, 90, 90, 1) 50%, rgba(90, 90, 90, 1) 93%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(90, 90, 90, 1) 7%, rgba(90, 90, 90, 1) 50%, rgba(90, 90, 90, 1) 93%, rgba(255, 255, 255, 0) 100%);
    z-index:    -1;
}

.timeLineElement {
    width:         100%;
    clear:         both;
    margin-bottom: 2em;
    position:      relative;
}

.timeLineElement:after {
    width:         20px;
    height:        20px;
    background:    #9F3636;
    border:        4px solid #FFF;
    border-radius: 50%;
    position:      absolute;
    content:       ' ';
    top:           6px;
    box-shadow:    0 0 0 1px rgba(0, 0, 0, .2);
}

.timeLineContent {
    position:           relative;
    margin-top:         -1em;
    background:         #FFF;
    padding:            1em 1em .2em;
    line-height:        1.5em;
    border-radius:      5px;
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
    box-shadow:         0 2px 4px rgba(0, 0, 0, .05);
}

.timeLineContent:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.timeLineContent:before {
    position:          absolute;
    content:           '';
    width:             0;
    height:            0;
    -webkit-transform: rotate(360deg);
    transform:         rotate(360deg);
    border-style:      solid;
    border-width:      10px 15px 10px 0;
    border-color:      transparent #FFFFFF transparent transparent;
    left:              -12px;
    top:               10px;
}

.timeLineElement:nth-of-type(even) > .timeLineContent {
    margin-left: 50px;
}

.timeLineElement:nth-of-type(odd) > .timeLineContent {
    margin-left: 50px;
}

@media only screen and (min-width: 920px) {
    .timeLineBody:before {
        left:        50%;
        margin-left: -2px;
    }

    .timeLineElement {
        width:         50%;
        margin-bottom: -1em;
    }

    .timeLineElement:after {
        top: -8px;
    }

    .timeLineElement:nth-of-type(even) {
        float: left;
    }

    .timeLineElement:nth-of-type(even) .timeLineContent:before {
        display: none;
    }

    .timeLineElement:nth-of-type(even) .timeLineContent:after {
        position:          absolute;
        content:           '';
        width:             0;
        height:            0;
        -webkit-transform: rotate(360deg);
        transform:         rotate(360deg);
        border-style:      solid;
        border-width:      10px 0 10px 15px;
        border-color:      transparent transparent transparent #FFFFFF;
        right:             -12px;
        top:               10px;
    }

    .timeLineElement:nth-of-type(odd) {
        float: right;
        top:   -8px;
    }

    .timeLineElement:nth-of-type(odd):after {
        left: -10px;
    }

    .timeLineElement:nth-of-type(even):after {
        right: -10px;
    }

    .timeLineElement:nth-of-type(even) > .timeLineContent {
        margin-right: 40px;
        margin-left:  auto;
        text-align:   right;
    }

    .timeLineElement:nth-of-type(odd) > .timeLineContent {
        margin-left:  40px;
        margin-right: auto;
        text-align:   left;
    }
}

blockquote {
    background:  #F9F9F9;
    border-left: 4px solid #9F3636;
    margin:      1.5em 0;
    padding:     0.5em 10px;
}

blockquote p {
    display: inline;
}

blockquote cite {
    display:   block;
    font-size: .8em;
    color:     #AAA;
}

/* ==========================================================================
   Contacts
   ========================================================================== */

#mitarbeiter h2 {
    margin-top:    .5em;
    margin-bottom: 1.5em;
    font-size:     2em;
}

.memberArea .member:nth-child(even) {
    margin-right: 0;
}

.member {
    background:    #FFF;
    padding:       1em;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
    border-radius: 5px;
    line-height:   1.4em;
    margin-bottom: 2em;
}

.member .image {
    margin-bottom: 1.5em;
}

.member h3 {
    color:        #333;
    font-size:    1.4em;
    border-left:  3px solid #9F3636;
    padding-left: 10px;
}

.member.noBorder h3 {
    font-size:    1.5em;
    border-left:  none;
    padding-left: 0;
}

.member .position {
    color: #9F3636;
}

.member p.contact {
    margin-bottom: .4em;
    clear:         left;
}

.member p.contact i {
    color:       #9F3636;
    display:     block;
    float:       left;
    margin:      0 8px 1em 0;
    padding-top: 4px;
}

.member p.contact a {
    color: #333;
}

.member p.contact a:hover {
    color:           #AAA;
    text-decoration: none;
}

.member p span {
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    #mitarbeiter h2 {
        margin-top:    .8em;
        margin-bottom: 1.8em;
        font-size:     1.8em;
    }

    .member .image {
        margin-bottom: 0;
    }

    .member h3 {
        font-size: 1.5em;
    }
}

@media only screen and (min-width: 1024px) {
    #mitarbeiter h2 {
        font-size: 2em;
    }

    .member h3 {
        font-size: 1.6em;
    }
}

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

.sidebar {
    background:    #FFF;
    padding:       1em;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
    border-radius: 5px;
    line-height:   1.4em;
    margin-bottom: 2em;
}

.googleMapContainer {
    margin: 0;
    width:  100%;
    height: auto;
}

.googleMap {
    height:     400px;
    width:      100%;
    border-top: 3px solid #9F3636;
    /*border-bottom: 3px solid #9F3636;*/
}

.mapsInfoContent {
    min-width:   400px;
    width:       100%;
    line-height: 1.4em;
    font-size:   1.1em;
}

.mapsInfoContent h2 {
    color:         #9F3636;
    margin-bottom: .2em;
    font-weight:   400;
}

.mapsInfoContent i {
    color: #9F3636;
}

.mapsInfoContent a {
    color: #9F3636;
}

.mapsInfoContent a:hover {
    color: #333;
}

.mapsInfoContent p:last-child {
    margin-bottom: 0;
}

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

.faq-box {
    position:      relative;
    padding:       1em;
    border-radius: .3em;
    margin-bottom: 1em;
    background:    #FFF;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
}

.faq-box h3 {
    position:     relative;
    cursor:       pointer;
    margin:       0;
    color:        #9F3636;
    padding-left: 1.2em;
}

.faq-box h3:before {
    position:           absolute;
    left:               0;
    font-family:        FontAwesome;
    content:            "\f021";
    color:              #C3C6C7;
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

.faq-box h3:hover:before {
    color:             #555;
    -webkit-transform: rotate(180deg);
    -moz-transform:    rotate(180deg);
    -o-transform:      rotate(180deg);
}

.faq-content {
    padding-top:        .5em;
    -webkit-transition: all .3s;
    -moz-transition:    all .3s;
    -ms-transition:     all .3s;
    -o-transition:      all .3s;
    transition:         all .3s;
}

.faq-box h2 {
    font-size: 1.5em;
}

.faq-box h2:first-of-type {
    margin-top: 1em;
}

.serviceBlock {
    display:        flex;
    flex-direction: column;
}

.serviceBlockItem {
    background:    #FFF;
    box-shadow:    0 2px 4px rgba(0, 0, 0, .05);
    width:         100%;
    margin-bottom: 2.5em;
}

@media only screen and (min-width: 768px) {
    .serviceBlock {
        flex-direction:  row;
        justify-content: space-between;
    }

    .serviceBlockItem {
        width:         47.5%;
        margin-bottom: 3em;
    }
}

.newsArticle {
    margin-bottom: 2em;
}

.newsArticle h2 {
    border-left:  5px solid #9F3636;
    padding-left: 8px;
}

.newsArticleContent {
}

ul.autoMenu {
    margin:  0 0 2em 0;
    padding: 0;
}

ul.autoMenu li {
    margin:  0;
    padding: 0;
}

ul.autoMenu li a {
    color:        #53524F;
    display:      block;
    padding:      .3em;
    padding-left: 1em;
}

ul.autoMenu li:last-child a {
    /*border-bottom: none;*/
}

ul.autoMenu li.active a,
ul.autoMenu li a:hover {
    color:           #9F3636;
    background:      #EEE;
    text-decoration: none;
}

ul.autoMenu li a:hover {
    background:      #F4F3F2;
    text-decoration: none;
}

#showCookieInfo {
    position:   fixed;
    width:      100%;
    bottom:     0;
    background: rgba(0, 0, 0, .7);
    padding:    1em;
    color:      #FFF;
    text-align: center;
    z-index:    999;
    margin:     0;
}

#showCookieInfo p {
    margin-bottom: 0;
}

#showCookieInfo p a {
    color:           #EEE;
    text-decoration: underline;
}

#showCookieInfoClose {
    display:       inline-block;
    background:    #FFF;
    color:         #333;
    padding:       .3em .8em;
    cursor:        pointer;
    border-radius: 3px;
    margin-left:   1em;
}

.advertise {
    margin-bottom: 1em;
}

body.showAnnouncer {
    position: fixed;
}

.announceOverlay {
    width:              100%;
    height:             100vh;
    position:           fixed;
    overflow:           auto;
    top:                0;
    left:               0;
    display:            flex;
    align-items:        center;
    justify-content:    center;
    background:         rgba(255, 255, 255, .94);
    z-index:            9;
    -webkit-transition: transform 1s;
    transition:         transform 1s;
    transform:          translateY(0);
    padding-top:        2em;
}

.announcerAccept .announceOverlay {
    transform: translateY(-100vh);
}

.announcerAccepted .announceOverlay {
    display: none;
}

.announceOverlay .announcer {
    text-align: center;
    padding:    1em;
}

.announceOverlay .announcer h2 {
    margin:  0;
    padding: 2em 0;
    color:   #9F3636;
}

.announceOverlay .announcer #announceLogo {
    width:     50%;
    max-width: 280px;
}

a.niceButton,
input[type="button"],
input[type="submit"],
button[type="button"]:not([class]) {
    color:              #FFF;
    border:             1px solid #9F3636;
    background:         #9F3636;
    padding:            1rem 3rem;
    display:            inline-block;
    -webkit-transition: all .3s;
    transition:         all .3s;
    margin-bottom:      4em;
    text-decoration:    none;
    text-transform:     uppercase;
}

a.niceButton:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button[type="button"]:not([class]):hover {
    color:           #9F3636;
    background:      transparent;
    text-decoration: none;
}

a.niceButton i {
    display:      inline-block;
    margin-right: .5em;
}

#whatsApp {
    width:           200px;
    height:          auto;
    background:      transparent;
    position:        fixed;
    bottom:          2em;
    right:           -300px;
    z-index:         99;
    transition:      all .3s;
    text-align:      center;
    display:         flex;
    justify-content: center;
    align-items:     center;
    padding-right:   10px;
    padding-bottom:  5px;
}

#whatsApp > a {
    display: block;
    width:   25%;
}

#whatsApp span {
    display:      block;
    width:        70%;
    color:        #FFF;
    padding-left: 1em;
    line-height:  1.1rem;
    font-size:    .9rem;
}

#whatsApp span a {
    text-decoration: underline;
    color:           #FFF;
}

.showWhatsApp #whatsApp {
    right: -135px;
}

#whatsApp:hover {
    right:      0;
    background: #25D366;
}

#whatsApp:hover > a {
    width: 30%;
}

#whatsApp img {
    border: none;
}

.adds {
    position:         relative;
    display:          flex;
    flex-direction:   row;
    flex-wrap:        wrap;
    width:            100%;
    justify-content:  center;
    background-color: #9F3636;
}

.adds .item p {
    margin-bottom: 0;
}

@media only screen and (min-width: 568px) {

    .adds .item {
        width: 50%;
    }
}

@media only screen and (min-width: 620px) {
    .adds .item {
        width: 33.3333333%;
    }
}

/*@media only screen and (min-width: 880px) {*/
/*    .adds .item {*/
/*        width: 25%;*/
/*    }*/
/*}*/

@media only screen and (min-width: 1024px) {
    .adds .item {
        width: 20%;
    }
}

.adds .item img {
    max-width: 100%;
}


a.external {
    position:      relative;
    padding-right: 1.2rem;
    display:       inline-block;
}

a.external:before {
    position:    absolute;
    content:     '\f08e';
    font-family: 'FontAwesome';
    font-weight: 400;
    width:       15px;
    height:      15px;
    font-size:   .75rem;
    right:       -.1rem;
    top:         2px;
    color:       #888;
}* {
    box-sizing: border-box;
}

:root {
    --btn-youtube: #9F3636;
    --btn-maps:    #9F3636;
}

#cookieConsent {
    --btn-green:              #3A9430;
    --switch-active:          #1D8100;
    --switch-active-disabled: rgba(29, 129, 0, 0.5);
    --switch-inactive:        #555;
    --switch-disabled:        #AAA;
    --cookie:                 #9F3636;
    font-family:              sans-serif;
    width:                    100%;
    position:                 relative;
}

#cookieConsent p {
    margin:      0 0 1em;
    font-size:   .9rem;
    line-height: 1.3rem;
}

#cookieConsent h3 {
    margin:  0 0 .7em;
    padding: 0;
    color:   #FFF;
}

#cookieConsent a {
    text-decoration:    none;
    -webkit-transition: all .3s;
    transition:         all .3s;
}

#cookieConsent #init {
    position:           fixed;
    width:              100%;
    height:             auto;
    padding:            1em;
    bottom:             0;
    left:               0;
    color:              #FFF;
    background:         #333;
    -webkit-transition: all .3s;
    transition:         all .3s;
    opacity:            0;
    visibility:         hidden;
    z-index:            999;
}

.showCookieInit #cookieConsent #init {
    opacity:    1;
    visibility: visible;
}

.showCookieSettings #cookieConsent #init {
    opacity:    0;
    visibility: hidden;
}

#cookieConsent #init a#closeInitContainer {
    display: none;
}

.showCookieGet #cookieConsent #init a#closeInitContainer {
    position:         absolute;
    top:              0;
    right:            0;
    display:          flex;
    justify-content:  center;
    align-items:      center;
    background-color: #DC0707;
    width:            35px;
    height:           35px;
    font-size:        1em;
    font-weight:      300;
    color:            #FFF;
}

.showCookieGet #cookieConsent #init a#closeInitContainer:hover {
    background-color: #7C0404;
}

#cookieConsent .legalContainer {
    margin-bottom: 1.5em;
    font-size:     .9rem;
}

#cookieConsent .legalContainer a {
    display:      inline-block;
    margin-right: 1em;
    color:        #CCC;
}

#cookieConsent .legalContainer a:hover {
    color: #FFF;
}

#cookieConsent .btnContainer {
    display:        flex;
    flex-direction: column;
}

#cookieConsent .btnContainer a {
    width: 100%;
}

#cookieConsent a.hc-btn {
    padding:       1em 2em;
    border:        1px solid var(--btn-green);
    background:    var(--btn-green);
    color:         #FFF;
    text-align:    center;
    margin-bottom: .5em;
}

#cookieConsent a.hc-btn:last-of-type {
    margin-bottom: 0;
}

#cookieConsent a.hc-btn:hover {
    background: transparent;
    border:     1px solid #FFF;
    color:      #FFF;
}

#cookieConsent #setContainer a.hc-btn:hover {
    background: transparent;
    border:     1px solid var(--btn-green);
    color:      var(--btn-green);
}

@media only screen and (min-width: 560px) {
    #cookieConsent .btnContainer {
        display:         flex;
        flex-direction:  row;
        justify-content: space-between;
    }

    #cookieConsent .btnContainer.right {
        display:        flex;
        flex-direction: column;
        align-items:    flex-end;
    }

    #cookieConsent #init {
        bottom:    1em;
        left:      1em;
        max-width: 500px;
    }

    #cookieConsent .btnContainer a {
        width:         31%;
        margin-bottom: 0;
    }
}

/**************************************************************************
/** Overlay / Einstellungen
/**************************************************************************/

#cookieConsent #setOverlay {
    position:           fixed;
    width:              100%;
    height:             100vh;
    top:                0;
    left:               0;
    display:            flex;
    justify-content:    center;
    align-items:        center;
    background-color:   rgba(0, 0, 0, .7);
    -webkit-transition: all .3s;
    transition:         all .3s;
    opacity:            0;
    z-index:            -1;
}

.showCookieSettings #cookieConsent #setOverlay {
    opacity: 1;
    z-index: 999;
}

#cookieConsent #setOverlay a#closeSetContainer {
    position:         absolute;
    top:              0;
    right:            0;
    display:          flex;
    justify-content:  center;
    align-items:      center;
    background-color: #DC0707;
    width:            35px;
    height:           35px;
    font-size:        1em;
    font-weight:      300;
    color:            #FFF;
}

#cookieConsent #setOverlay a#closeSetContainer:hover {
    background-color: #7C0404;
}

#cookieConsent #setOverlay #setContainer {
    position:         relative;
    background-color: #FFF;
    width:            100%;
    max-width:        800px;
    padding:          1em;
    max-height:       90vh;
    overflow-y:       auto;
    font-size:        .9rem;
    line-height:      1.4rem;
    color:            #333;
    scrollbar-color:  #AAA #FFF;
    scrollbar-width:  thin;
}

#cookieConsent #setOverlay #setContainer h3 {
    color: #333;
}

#cookieConsent #setOverlay #setContainer::-webkit-scrollbar {
    width: 5px;
}

#cookieConsent #setOverlay #setContainer::-webkit-scrollbar-track {
    background: #FFF;
}

#cookieConsent #setOverlay #setContainer::-webkit-scrollbar-thumb {
    background-color: #AAA;
}

@media only screen and (min-width: 1024px) {
    #cookieConsent #setOverlay #setContainer {
        padding: 2em;
    }
}


#cookieConsent #setContainer .niceCheckbox input[type="checkbox"] {
    position: absolute;
    width:    1px;
    height:   1px;
    overflow: hidden;
    clip:     rect(0, 0, 0, 0);
    bottom:   0;
}

#cookieConsent #setContainer .niceCheckbox label {
    line-height:      44px;
    vertical-align:   middle;
    cursor:           pointer;
    font-size:        0;
    color:            transparent;
    border-radius:    12px;
    transition:       background-color 500ms ease;
    display:          inline-block;
    position:         relative;
    height:           24px;
    width:            50px;
    background-color: var(--switch-inactive);
}

#cookieConsent #setContainer .niceCheckbox label:after {
    content:           "";
    display:           block;
    height:            20px;
    width:             20px;
    position:          absolute;
    top:               2px;
    right:             28px;
    border-radius:     50%;
    background-color:  #FFF;
    box-shadow:        2px 0 0 rgba(0, 0, 0, .2);
    transition:        right 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
    transform:         none;
    -webkit-transform: none;
}

#cookieConsent #setContainer .niceCheckbox input[type="checkbox"]:disabled + label {
    background: var(--switch-disabled);
}

#cookieConsent #setContainer .niceCheckbox input[type="checkbox"]:checked + label {
    background: var(--switch-active);
}

#cookieConsent #setContainer .niceCheckbox input[type="checkbox"]:checked:disabled + label {
    background: var(--switch-active-disabled);
}

#cookieConsent #setContainer .niceCheckbox input[type="checkbox"]:checked + label:after {
    right:            2px;
    background-color: #FFF;
    box-shadow:       -2px 0 0 rgba(0, 0, 0, .2);
}

/**************************************************************************
/** Cookies gesetzt
/**************************************************************************/

#cookieConsent #get {
    position:           fixed;
    bottom:             2em;
    left:               -20em;
    width:              50px;
    height:             50px;
    border-radius:      50%;
    background-color:   var(--cookie);
    -webkit-transition: all .3s;
    transition:         all .3s;
    opacity:            0;
    visibility:         hidden;
    z-index:            999;
}

.showWhatsApp #cookieConsent #get {
    left:               1em;

}
.showCookieInit #cookieConsent #get {
    opacity:    0 !important;
    visibility: hidden !important;
}

.showCookieGet #cookieConsent #get {
    opacity:    .8;
    visibility: visible;
}

.showCookieGet #cookieConsent #get:hover {
    opacity: 1;
}

#cookieConsent #get a#showInit {
    display: inline-block;
}

#cookieConsent #get a#showInit img {
    width: 100%;
}

/* ==========================================================================
   Toggle Box
   ========================================================================== */

#cookieConsent .cookieBox {
    position:      relative;
    margin-bottom: 1em;
    border:        1px solid #CCC;
    padding:       1em;
}

#cookieConsent .cookieBox .cookieBoxHeader {
    display:         flex;
    justify-content: space-between;
    width:           100%;
}

#cookieConsent .cookieBox h3 {
    position:       relative;
    cursor:         pointer;
    display:        inline-block;
    margin:         0;
    color:          #333;
    font-size:      1.1rem !important;
    padding-bottom: 0;
    text-transform: inherit;
    letter-spacing: 1px;
    padding-left:   20px;
}


#cookieConsent .cookieBox h3:before {
    position:     absolute;
    top:          40%;
    left:         0;
    content:      '';
    border:       solid #1D8100;
    border-width: 0 2px 2px 0;
    width:        6px;
    height:       6px;
    display:      inline-block;
    transform:    translateY(-50%) rotate(45deg);
}

#cookieConsent .cookieBox.show h3:before {
    transform: translateY(-20%) rotate(225deg);
}

#cookieConsent .cookieBox.show h3 {
    color: #333;
}

#cookieConsent .cookieBox .cookieBoxContent {
    -webkit-transition: all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}

#cookieConsent .cookieBox .cookieBoxContent a {
    color:              #AAA;
    -webkit-transition: all .3s;
    transition:         all .3s;
}

#cookieConsent .cookieBox .cookieBoxContent a:hover {
    color: #333;
}

#cookieConsent .cookieBox .cookieBoxContent p {
    margin-bottom: 0;
}

#cookieConsent .cookieBox .cookieBoxContent table {
    margin-top: .5em;
    border:     none;
    font-size:  .9rem;
    width:      100%;
}

#cookieConsent .cookieBox .cookieBoxContent table td:nth-of-type(1) {
    font-weight:  bold;
    padding-left: 0;
}

#cookieConsent .cookieBox.hide .cookieBoxContent {
    opacity:    0;
    max-height: 0;
    overflow:   hidden;
    transform:  scale(0);
}

#cookieConsent .cookieBox.show .cookieBoxContent {
    opacity:     1;
    transform:   scale(1);
    max-height:  900px;
    padding-top: 1em;
}

#cookieConsent .cookieBox.show .cookieBoxContent ul:last-of-type {
    margin-bottom: 0;
}

/* ==========================================================================
   Youtube
   ========================================================================== */

.youTubeVideo {
    width:     100%;
    max-width: 40%;
    height:    500px;
    border:    1px solid #CCC;
    position:  relative;
}

.youTubeVideo iframe {
    width:  100%;
    height: 100%;
}

.youtubeBlocker {
    display:         flex;
    justify-content: center;
    align-items:     center;
    width:           100%;
    height:          100%;
    position:        absolute;
    background:      rgba(0, 0, 0, .7);
    top:             0;
    left:            0;
}

.blockerContent {
    text-align: center;
    background: #FFF;
    width:      100%;
    padding:    1em;
}

.blockerContent img.videoIcon {
    max-width: 180px;
    width:     100%;
}

a.loadYoutube,
a.loadMaps {
    padding:            1em 2em;
    border:             1px solid var(--btn-youtube);
    background:         var(--btn-youtube);
    color:              #FFF !important;
    text-align:         center;
    text-decoration:    none;
    display:            inline-block;
    -webkit-transition: all .3s;
    transition:         all .3s;
}

a.loadYoutube:hover,
a.loadMaps:hover {
    background: transparent;
    color:      var(--btn-youtube);
}

a.loadMaps {
    border:     1px solid var(--btn-maps);
    background: var(--btn-maps);
    color:      #FFF;
}

a.loadMaps:hover {
    background: transparent;
    color:      var(--btn-maps) !important;
}

/* ==========================================================================
   Maps
   ========================================================================== */

.googleMapContainer {
    margin:              0;
    width:               100%;
    height:              auto;
    background-image:    url("../../../media/pages/kontakt/standorte/google-maps.png");
    background-size:     cover;
    background-position: center;
    position:            relative;
}

.googleMap {
    height:   500px;
    width:    100%;
    position: relative;
}

.mapsBlocker {
    display:         flex;
    justify-content: center;
    align-items:     center;
    width:           100%;
    height:          100%;
    position:        absolute;
    background:      rgba(0, 0, 0, .7);
    top:             0;
    left:            0;
    backdrop-filter: blur(3px);
}

.mapsBlocker a {
    color: #AAA;
}

.mapsBlocker a:hover {
    color: var(--btn-maps);
}

.blockerContent.maps {
    text-align: center;
    background: transparent;
    width:      100%;
    padding:    1em;
    color:      #FFF;
}
@font-face{font-family:'FontAwesome';src:url(../fonts/fontawesome-webfont.eot?v=4.2.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0) format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff?v=4.2.0) format("woff"),url(../fonts/fontawesome-webfont.ttf?v=4.2.0) format("truetype"),url(../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul > li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #EEE;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#FFF}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}
                @media screen and (min-width:100px){
                    .xs-1{ width: 4.312865497076%; }.xs-2{ width: 13.011695906433%; }.xs-3{ width: 21.710526315789%; }.xs-4{ width: 30.409356725146%; }.xs-5{ width: 39.108187134503%; }.xs-6{ width: 47.80701754386%; }.xs-7{ width: 56.505847953216%; }.xs-8{ width: 65.204678362573%; }.xs-9{ width: 73.90350877193%; }.xs-10{ width: 82.602339181287%; }.xs-11{ width: 91.301169590643%; }.xs-12{ width: 100%; }
                    .xs-1,.xs-2,.xs-3,.xs-4,.xs-5,.xs-6,.xs-7,.xs-8,.xs-9,.xs-10,.xs-11,.xs-12 {float:left;margin-right:4.3859649122807%;}
                    .xs-flt-rgt { float: right; margin-right: 0; }
                    .xs-last {margin-right: 0;}
                    .xs-bottom {margin-bottom: 1em;}
                    .xs-bottom-no {margin-bottom: 0;}
                    .xs-top {margin-bottom: 1em;}
                    .xs-top-no {margin-bottom: 1em;}
                    .xs-txt-cnt {text-align: center;}
                    .xs-txt-lft {text-align: left;}
                    .xs-txt-rgt {text-align: right;}
                    .xs-hide {display:none;}
                    .xs-block {display:block;}
                    .xs-iblock {display:inline-block;}
                }
                @media screen and (min-width:480px){
                    .s-1{ width: 4.312865497076%; }.s-2{ width: 13.011695906433%; }.s-3{ width: 21.710526315789%; }.s-4{ width: 30.409356725146%; }.s-5{ width: 39.108187134503%; }.s-6{ width: 47.80701754386%; }.s-7{ width: 56.505847953216%; }.s-8{ width: 65.204678362573%; }.s-9{ width: 73.90350877193%; }.s-10{ width: 82.602339181287%; }.s-11{ width: 91.301169590643%; }.s-12{ width: 100%; }
                    .s-1,.s-2,.s-3,.s-4,.s-5,.s-6,.s-7,.s-8,.s-9,.s-10,.s-11,.s-12 {float:left;margin-right:4.3859649122807%;}
                    .s-flt-rgt { float: right; margin-right: 0; }
                    .s-last {margin-right: 0;}
                    .s-bottom {margin-bottom: 1em;}
                    .s-bottom-no {margin-bottom: 0;}
                    .s-top {margin-bottom: 1em;}
                    .s-top-no {margin-bottom: 1em;}
                    .s-txt-cnt {text-align: center;}
                    .s-txt-lft {text-align: left;}
                    .s-txt-rgt {text-align: right;}
                    .s-hide {display:none;}
                    .s-block {display:block;}
                    .s-iblock {display:inline-block;}
                }
                @media screen and (min-width:768px){
                    .m-1{ width: 4.312865497076%; }.m-2{ width: 13.011695906433%; }.m-3{ width: 21.710526315789%; }.m-4{ width: 30.409356725146%; }.m-5{ width: 39.108187134503%; }.m-6{ width: 47.80701754386%; }.m-7{ width: 56.505847953216%; }.m-8{ width: 65.204678362573%; }.m-9{ width: 73.90350877193%; }.m-10{ width: 82.602339181287%; }.m-11{ width: 91.301169590643%; }.m-12{ width: 100%; }
                    .m-1,.m-2,.m-3,.m-4,.m-5,.m-6,.m-7,.m-8,.m-9,.m-10,.m-11,.m-12 {float:left;margin-right:4.3859649122807%;}
                    .m-flt-rgt { float: right; margin-right: 0; }
                    .m-last {margin-right: 0;}
                    .m-bottom {margin-bottom: 1em;}
                    .m-bottom-no {margin-bottom: 0;}
                    .m-top {margin-bottom: 1em;}
                    .m-top-no {margin-bottom: 1em;}
                    .m-txt-cnt {text-align: center;}
                    .m-txt-lft {text-align: left;}
                    .m-txt-rgt {text-align: right;}
                    .m-hide {display:none;}
                    .m-block {display:block;}
                    .m-iblock {display:inline-block;}
                }
                @media screen and (min-width:920px){
                    .l-1{ width: 4.312865497076%; }.l-2{ width: 13.011695906433%; }.l-3{ width: 21.710526315789%; }.l-4{ width: 30.409356725146%; }.l-5{ width: 39.108187134503%; }.l-6{ width: 47.80701754386%; }.l-7{ width: 56.505847953216%; }.l-8{ width: 65.204678362573%; }.l-9{ width: 73.90350877193%; }.l-10{ width: 82.602339181287%; }.l-11{ width: 91.301169590643%; }.l-12{ width: 100%; }
                    .l-1,.l-2,.l-3,.l-4,.l-5,.l-6,.l-7,.l-8,.l-9,.l-10,.l-11,.l-12 {float:left;margin-right:4.3859649122807%;}
                    .l-flt-rgt { float: right; margin-right: 0; }
                    .l-last {margin-right: 0;}
                    .l-bottom {margin-bottom: 1em;}
                    .l-bottom-no {margin-bottom: 0;}
                    .l-top {margin-bottom: 1em;}
                    .l-top-no {margin-bottom: 1em;}
                    .l-txt-cnt {text-align: center;}
                    .l-txt-lft {text-align: left;}
                    .l-txt-rgt {text-align: right;}
                    .l-hide {display:none;}
                    .l-block {display:block;}
                    .l-iblock {display:inline-block;}
                }
                @media screen and (min-width:1140px){
                    .xl-1{ width: 4.312865497076%; }.xl-2{ width: 13.011695906433%; }.xl-3{ width: 21.710526315789%; }.xl-4{ width: 30.409356725146%; }.xl-5{ width: 39.108187134503%; }.xl-6{ width: 47.80701754386%; }.xl-7{ width: 56.505847953216%; }.xl-8{ width: 65.204678362573%; }.xl-9{ width: 73.90350877193%; }.xl-10{ width: 82.602339181287%; }.xl-11{ width: 91.301169590643%; }.xl-12{ width: 100%; }
                    .xl-1,.xl-2,.xl-3,.xl-4,.xl-5,.xl-6,.xl-7,.xl-8,.xl-9,.xl-10,.xl-11,.xl-12 {float:left;margin-right:4.3859649122807%;}
                    .xl-flt-rgt { float: right; margin-right: 0; }
                    .xl-last {margin-right: 0;}
                    .xl-bottom {margin-bottom: 1em;}
                    .xl-bottom-no {margin-bottom: 0;}
                    .xl-top {margin-bottom: 1em;}
                    .xl-top-no {margin-bottom: 1em;}
                    .xl-txt-cnt {text-align: center;}
                    .xl-txt-lft {text-align: left;}
                    .xl-txt-rgt {text-align: right;}
                    .xl-hide {display:none;}
                    .xl-block {display:block;}
                    .xl-iblock {display:inline-block;}
                }