*,*:before,*:after {
  box-sizing:border-box;
}
html,body {
  height:100%;
}
body {
  margin:0;
  padding:0;
  background:#5a5a5a;
}
body,table,input,textarea,button,select {
  font-family:'Open Sans',arial,sans-serif;
  font-size:1rem;
  line-height:1.3em;
  color:#222;
}
h1,h2,h3,h4,h5,h6,p,ol,ul,dl,table,form,fieldset,object {
  margin:0 0 1.3rem 0;
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  display: block;
}
audio,canvas,video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

h1,.h1 {
  font-size:1.9rem;
  line-height:1.3em;
  font-weight:800;
  text-transform:uppercase;
}
h2,.h2 {
  font-size:1.9rem;
  line-height:1.3em;
  font-weight:normal;
  text-transform:uppercase;
}
h3,.h3 {
  font-size:1.3rem;
  line-height:1.3em;
  font-weight:normal;
}
h4,.h4,
h5,.h5,
h6,.h6 {
  font-size:1rem;
  line-height:1.3em;
  font-weight:bold;
  margin:0;
}
a:link {
  text-decoration:none;
  color:#1E90FF;
}
a:visited {}
a:hover {
  text-decoration:underline;
}
a:active {}

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

table {
  border-spacing:1px;
}
table th,
table td {
  padding:.3em 1em .3em .3em;
  text-align:left;
  vertical-align:top;
  background:#fff;
}
table th {
  font-weight:600;
  vertical-align:bottom;
  background:#f5f4f2;
}

figure {
  margin:0 0 1.3em 0;
  padding:0;
}
figure img {
  display:block;
}
figure figcaption {
  background:#fff;
  margin:0;
  padding:.5em;
  font-style:italic;
  font-size:.8em;
}
figure figcaption:empty {
  display:none;
}

.highlight {
  padding:1rem;
  background:#eee;
}

/* clearfix
********************************/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1; /* ie 6/7 */
}

/* Seitenelemente (Master)
********************************/

.container {
  padding:0 1rem;
  margin:0 auto;
}
@media only screen and (min-width : 768px) {
  .container {
    width:740px;
  }
}
@media only screen and (min-width : 992px) {
  .container {
    width:940px;
  }
}
@media only screen and (min-width : 1200px) {
  html {
    font-size:20px;
  }
  .container {
    width:1140px;
  }
}

#header-container {
  background:#1e90ff;
  color:#fff;
}
#header-top {
  padding-top:.75rem;
  padding-bottom:.75rem;
  line-height:2rem;
  background:#fff;
  border-top:solid #1e90ff .3125rem;
}
#logo {
  float:left;
  padding:.2rem 0;
}
#logo img {
  height:1.6rem;
  width:auto;
  display:block;
}

#nv-toggle {
  float:right;
}
#nv-toggle button {
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  display:block;
}
#nv-toggle button img {
  height:2rem;
}

#nv {
  display:none;
  clear:both;
}
#nv ul {
  margin:0;
  padding:0;
  list-style:none;
}
#nv ul li {
  margin:0;
  padding:0;  
}
#nv ul li a {
  display:block;
  text-transform:uppercase;
  color:#222;
  text-decoration:none;
  white-space:nowrap;
}

#banner {
  height:18rem;
  background:#1e90ff;
}
#banner-image {
  height:18rem;
  background-repeat-no-repeat;
  background-position:50% 50%;
  background-size:cover;
}

#main-container {
  background:#ebebeb;
}
#main {
  padding-top:2rem;
  padding-bottom:2rem;
}

#footer-container {
  clear:both;
  color:rgba(255,255,255,.7);
}
#footer-container a {
  color:rgba(255,255,255,.85);
}
#footer {
  padding-top:2rem;
  padding-bottom:2rem;
}

@media only screen and (min-width : 768px) {
  #nv-toggle {
    display:none;
  }
  #nv {
    display:block !important;
    float:right;
    clear:none;
  }
  #nv ul {}
  #nv ul li {
    float:left;
    margin-left:1.5rem;
    line-height:1.4rem;
    padding:.3rem 0;
    position:relative;
  }
  #nv ul li a {
    border-bottom:solid transparent 4px;
    transition:border-color .2s ease;
  }
  #nv ul li a:hover,
  #nv ul li.sfHover > a {
    border-bottom:solid #ccc 4px;
  }
  #nv ul li.a1 > a,
  #nv ul li.s1 > a {
    border-bottom:solid #1e90ff 4px;
  }
  #nv ul ul {
    display:none;
    position:absolute;
    top:calc(100% + 1em - 3px);
    left:-1em;
    z-index:999;
  }
  #nv ul ul li {
    margin:0;
    padding:0;
    float:none;
    clear:both;
  }
  #nv ul ul li a {
    border:0;
    background:#fff;
    padding:.25em 1em;
    text-transform:none;
  }
  #nv ul ul li a:hover {
    border:0;
    color:#1e90ff;
  }
  #nv ul ul li.a1 a,
  #nv ul ul li.s1 a {
    border:0;
    color:#1e90ff;
  }
}

.green {
  color:#008276;
}
.orange {
  color:#f7941e;
}