* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #7CF2B4;
    color: #222;
}

header, footer {
    width: 100%;
    background: #7CF2B4;
    background: -webkit-radial-gradient(#7CF2B4 50%, darkgreen);
    background: -webkit-moz-gradient(#7CF2B4 50%, darkgreen);
    background: -webkit-o-gradient(#7CF2B4 50%, darkgreen);
    background: radial-gradient(#7CF2B4 50%, darkgreen);
}

h1, h2, h3 {
    margin: 10px 5px;
    padding: 5px;
    font-family: 'IM Fell DW Pica', serif;
}

h1 {
    font-size: 44px;
}

h2 {
    font-size: 33px;
    margin-bottom: 1em;
}

h3 {
    font-size: 22px;
}

p, ul, a {
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: darkgreen;
}

a:hover {
    font-weight: bold;
}

header {
    height: 8em;
    text-align: center;
    font-size: 120%;
    margin-top: -1em;
}

#logo {
    position: relative;
    line-height: 8em;
}

header img {
  position: absolute;
  top: 10px;
  height: 7.5em;
  margin: 7px;
}

#headerimg_left {
  left: 5em;
}

#headerimg_right {
  right: 5em;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

#breadcrumbsline {
  width: 100%;
  height: 1em;
  background-color: #FFF0A5;
  border-top: 1px solid #8E2800;
  border-bottom: 5px solid #8E2800;
}

#breadcrumbs {
    margin-left: 20%;
    font-size: 12px;
    list-style: none;
}

#breadcrumbs li {
    float: left;
}

#breadcrumbs li + li:before {
    padding: 8px;
    content: ">>";
}

nav {
  float: left;
  height: 120em;
  width: 15%;
  background-color: #B64926;
  border: 1px solid #8E2800;
  margin: 5px;
}

.navigation {
    list-style-type: none;
}

.navigation li a {
    text-decoration: none;
    color: black;
    display: block;
    border: 1px solid #8E2800;
    padding: 5px;
    margin: 5px 2px;
    font-weight: 600;
}

.plus {
    float: right;
    width: 1em;
    height: 1em;
    background-color: #B64926;
    color: #8E2800;
}

.navigation .active {
    background-color: #8E2800;
    color: #FFF0A5;
}

.navigation li a:hover {
    background-color: #8E2800;
    color: #FFF0A5;
    font-weight: 700;
}

.untermenu {
    margin-left: 10px;
    list-style: none;
    display: none;
}

#main_content {
    display: block;
    width: auto;
    height: 110em;
    overflow: auto;
    border: 2px ridge #8E2800;
    background-color: #f5f5f5;
    margin: 5px;
    padding: 20px;
    margin-bottom: 2em;
}

#main_content h2 {
    text-align: center;
}

.main_pic {
    width: 45%;
    float: right;
    margin: 10px;
    border: 1px solid #8E2800;
    box-shadow: 7px 4px 4px #aaa;
}

aside {
    float: right;
    width: 20%;
    height: 120em;
    background-color: #B64926;
    border: 1px solid #8E2800;
    margin: 5px;
    text-align: center;
}

aside img {
    height: auto;
    width: 80%;
    border: 1px solid #8E2800;
    box-shadow: 7px 4px 4px #8E2800;
    margin: 10px;
}


#palmofthemonth {
    display: block;
    text-align: center;
    border: 2.5px solid #8E2800;
    color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 5px;
    font-weight: bold;
}

#palmofthemonth:hover {
    background-color: #8E2800;
    color: #FFF0A5;
}

.sidediv {
    height: auto;
    padding: 5px;
}

input {
    height: 20px;
    padding: 1px;
}

#search_term {
    position: relative;
    right: 1em;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#search_term:focus {
    border: 3px solid darkgreen;
}

#search_button {
    height: 3em;
    width: 3em;
    padding: 1px;
    border: 1px solid grey;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#search_button:hover {
    border: 3px solid darkgreen;
}

#nomatch {
    width: 80%;
    height: 50px;
    margin: 5px;
    padding: 5px;
}

hr {
    margin: 10px 5px;
    border: 1px solid #8E2800;
}

footer {
    clear: both;
    display: block;
    position: relative;
    bottom: 0;
    height: 4em;
    text-align: center;
    border-top: 1px solid #8E2800;
    padding: 1em;
}

/* Farbschema:
   #7CF2B4 hellgrün 
   #FFF0A5 sandfarben
   #FFB03B orangebraun
   #B64926 helleres braunrot
   #8E2800 dunkleres braunrot
   Links darkgreen */