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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

a {
  color: #085894;
}

.flexcontainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

header {
  min-height: 200px;
  background: url(../grafiken/header.webp);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

nav {
  background: #858F9E
}

nav a {
  color: #f4f4f4
}

nav span {
  display: flex
}

nav ul {
  list-style: none;
  overflow: hidden;
}

nav ul.mainmenu ul.detailmenu {
  margin-left: 20px
}

nav li a {
  display: -webkit-flex;
  display: flex;
  padding: 20px 20px;
  border-bottom: 1px solid #f4f4f4;
  text-decoration: none;
}

nav li a:last-child {
border-bottom: none
}

nav li a:hover,
nav ul.mainmenu-btn:hover {
  background-color: #f4f4f4;
  color: #085894
}

nav .logo {
  padding: 10px 20px;
  text-decoration: none;
  font-family: "Bookman Old Style", Garamond, serif;
  font-style: italic;
  font-size: xx-large;
  align-items: center;
  display: flex
}

nav ul.mainmenu {
  max-height: 0;
  transition: max-height .2s ease-out;
}

nav .menu-icon {
  cursor: pointer;
  margin-left: auto;
  padding: 32px 20px;
}

nav .menu-icon .navicon {
  background: #f4f4f4;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

nav .menu-icon .navicon:before,
nav .menu-icon .navicon:after {
  background: #f4f4f4;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

nav .menu-icon .navicon:before {
  top: 5px;
}

nav .menu-icon .navicon:after {
  top: -5px;
}

nav .menu-btn {
  display: none;
}

nav .menu-btn:checked~ul.mainmenu {
  max-height: 600px;
}

nav .menu-btn:checked~.nav-wrapper .menu-icon .navicon {
  background: transparent;
}

nav .menu-btn:checked~.nav-wrapper .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

nav .menu-btn:checked~.nav-wrapper .menu-icon .navicon:after {
  transform: rotate(45deg);
}

nav .menu-btn:checked~.nav-wrapper .menu-icon:not(.steps) .navicon:before,
nav .menu-btn:checked~.nav-wrapper .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

main {
  padding: 0 1rem 1rem
}

footer {
  padding: 1rem 0;
  text-align: center;
  border-top: 2px solid #858F9E
}

/*Allgemein*/
h1,
h2,
h3 {
  color: #858F9E;
  margin: 20px 0
}

h1 {
  font-size: 2.5em
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em
}

a:hover {
  text-decoration: none
}

ul,
ol {
  list-style-position: inside
}

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



/*mozilo*/

.listitem {
  list-style-position: inside
}

.alignright {
  text-align: right
}

.alignleft {
  text-align: left
}

.aligncenter {
  text-align: center
}

table.contenttable {
  width: 100%;
  text-align: center;
  padding: .625em 0
}

th.contenttable {
  background: #858F9E;
  color: #fff;
  border-right: 1px solid;
  padding: 7px
}

th.contenttable:last-child {
  border-right: none
}

td {
  padding: 7px;
  border-bottom: 1px solid #858F9E
}

.leftcontentimage {
  float: left;
}

.rightcontentimage {
  float: right;
}

.horizontalrule {
  margin: .625em 0
}

@media (min-width: 48em) {

  header {
    min-height: 400px;

  }

  nav {
    display: -webkit-flex;
    display: flex;
      position: sticky;
  top: 0
  }

  nav li {
    position: relative
  }

  nav li a {
    padding: 22px 30px;
    border-bottom: none;
    white-space: nowrap
  }

  nav li a:hover {
    background-color: #f4f4f4;

  }

  nav ul.mainmenu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    max-height: none;
    margin-left: 0;
    overflow: inherit
  }

  nav ul.mainmenu ul.detailmenu {
    max-height: 0;
    transition: max-height .2s ease-out;
    position: absolute;
    min-width: 100%;
    margin-left: 0;
    background: #858F9E;
    white-space: nowrap;
  }

  nav ul.mainmenu li:hover ul {
    max-height: 500px;
  }

  nav ul ul li a {
    border-right: none
  }

  nav .menu-icon {
    display: none;
  }

  .fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0
  }

  main {
    width: 70%;
    margin: 0 auto
  }

  footer {
    width: 70%;
    margin: 0 auto
  }
}

/* Selbst hinzugefügt */
/* ----------------------- */
div.newsbox {
width:200px;
float:right;
border:2px solid #009900;
padding:5px;
margin:5px 10px;
color:#009900;
background-color:#DDFFDD;
}