/* Menü */
nav,  .dialog-active {
  background-color: #22317E;
}

/* Blättern */
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #22317E;
  border: 1px solid #22317E;
}

/* Reiter */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  background-color: #22317E;
}

/* Footer */
/* Neue Variante mit dem Effekt: Container im Footer steht oben über den Footer heraus */

footer {
  min-height: 230px;
  background: #fff;
  background: -moz-linear-gradient(top,#fff 0%,#fff 33%, #22317E 33%, #22317E 100%);
  background: -webkit-linear-gradient(top,#fff 0%,#fff 33%,#22317Ea 33%,#22317E 100%);
  background: linear-gradient(top bottom,#fff 0%,#fff 33%,#22317E33%,#22317E 100%);
  padding-bottom: 0px;
}

/** Container  im Footer */
footer > .container{
  padding-top: 10px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: #E6E6E6;
  color: #505050;
  min-height: 200px;
  magin-right: auto;
  margin-left: auto;
  width: 460px;
}

/* Schriftfarbe im Footer  */
footer a, footer a:focus, footer a:hover {
color:  #505050;
}

/** Footerlinks für kleine Screens z.B. Handies links platziert */
footer .footerlinks {
  text-align: left;
}

@media (min-width: 768px) {
  footer > .container {
     width: 750px;
  }
}

@media (min-width: 992px) {
  footer > .container {
    width: 980px;
  }
  /** Footerlinks ab Tabletgröße rechts platziert  */
  footer .footerlinks {
    text-align: right;
    
  }
}

@media (min-width: 1180px) {
  footer > .container {
    width: 1170px;
  }
}



