@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Gentium+Basic:400,700);
.tablet-up, .tablet-up--flex {
  display: none !important;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .tablet-up, .tablet-up--flex {
    display: block !important;
    visibility: visible;
  }
}

@media screen and (min-width: 769px) {
  .tablet-up--flex {
    display: flex !important;
  }
}

.desktop-up {
  display: none !important;
  visibility: hidden;
}
@media screen and (min-width: 1088px) {
  .desktop-up {
    display: block !important;
    visibility: visible;
  }
}

.widescreen-up {
  display: none !important;
  visibility: hidden;
}
@media screen and (min-width: 1280px) {
  .widescreen-up {
    display: block !important;
    visibility: visible;
  }
}

.fullhd-only {
  display: none !important;
  visibility: hidden;
}
@media screen and (min-width: 1472px) {
  .fullhd-only {
    display: block !important;
    visibility: visible;
  }
}

.mobile-only {
  display: none !important;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    visibility: visible;
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .mobile-only.-flex {
    display: flex !important;
  }
}

.mobile-max {
  display: none !important;
  visibility: hidden;
}
@media screen and (max-width: 1088px) {
  .mobile-max {
    visibility: visible;
    display: block !important;
  }
}

.desktop-max {
  display: none !important;
  visibility: hidden;
}
@media screen and (max-width: 1280px) {
  .desktop-max {
    visibility: visible;
    display: block !important;
  }
}

.widescreen-max {
  display: none !important;
  visibility: hidden;
}
@media screen and (max-width: 1472px) {
  .widescreen-max {
    visibility: visible;
    display: block !important;
  }
}

/* Helper Classes
 * ========================================================================== */
/** */
.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.clearfix {
  clear: both;
}

.visually-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
}

.display-none {
  visibility: hidden;
  display: none !important;
}

.display-block {
  visibility: visible;
  display: block !important;
}

.display-inline-block {
  visibility: visible;
  display: inline-block !important;
}

.circle-image img {
  border-radius: 50%;
  width: 100%;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-margin-left {
  margin-left: 0;
}

.no-margin-right {
  margin-right: 0;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.grid-columns article {
  max-width: 32rem;
}

@supports (display: grid) {
  .grid-columns {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    grid-gap: 1rem;
  }
  .grid-columns.narrow {
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  }
  @media screen and (min-width: 769px) {
    .grid-columns {
      grid-gap: 2rem;
    }
  }

  .flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.flex {
  display: flex;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-top {
  align-items: stretch;
}

.flex-bg-top-left, .flex-bg-top-left picture {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
  min-height: 25rem;
}

.flex-bg-top-left img {
  width: auto;
  max-width: none;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

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

/* Navigation
 * ========================================================================== */
/** */
.navbar {
  box-sizing: border-box;
  padding: 0 1rem;
  height: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: white;
}
.navbar__brand, .navbar__brand img {
  width: 12rem;
  height: auto;
}
@media screen and (min-width: 769px) {
  .navbar__brand, .navbar__brand img {
    width: 15rem;
  }
}
.navbar__logo, .navbar__logo img {
  width: 5.5rem;
  height: auto;
}
@media screen and (min-width: 769px) {
  .navbar__logo, .navbar__logo img {
    width: 6rem;
  }
}
.navbar__nav {
  font-family: lavoisierregular, sans-serif;
  font-size: 1.1rem;
  display: none !important;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .navbar__nav {
    display: flex !important;
    visibility: visible;
  }
  .navbar__nav .nav__sub {
    text-align: left;
    display: block;
    position: absolute;
    z-index: 999;
    margin-top: 0rem;
    background-color: white;
    display: none !important;
    visibility: hidden;
  }
  .navbar__nav .nav__sub li {
    display: block;
    box-sizing: border-box;
    padding: 0.2rem;
    border-bottom: 1px solid #78A021;
  }
  .navbar__nav .nav__sub li:last-child {
    border: none;
  }
}
.navbar__nav ul {
  width: auto;
  margin: 0;
  margin-right: 1rem;
  padding: 0;
}
.navbar__nav li {
  border-bottom: 1px solid #666;
  padding: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 1rem;
}
@media screen and (min-width: 769px) {
  .navbar__nav li {
    border-bottom: none;
    padding: 0;
  }
}
.navbar__nav li:last-child {
  border: none;
  margin-right: 0;
}
.navbar__nav li:hover > ul.nav__sub {
  display: block !important;
  visibility: visible;
}
.navbar__nav li li {
  font-weight: 400;
}
.navbar__nav li li.is-medium-weight {
  font-weight: 500;
}
.navbar__nav a {
  text-decoration: none;
}
.navbar__nav a:link, .navbar__nav a:visited {
  color: #78A021;
}
.navbar__nav a:hover, .navbar__nav a:active, .navbar__nav.is-active {
  color: #666;
}
.navbar__nav ul.langswitch {
  background-color: #e2e2e2;
  padding: 0.1rem 0.3rem;
}
.navbar__nav ul.langswitch li {
  text-transform: none;
  line-height: 100%;
}
.navbar__nav ul.langswitch li:first-child {
  border-right: 2px solid gray;
  padding-right: 0.3rem;
  margin-right: 0;
}
.navbar__nav ul.langswitch li:first-child a:hover, .navbar__nav ul.langswitch li:first-child a:active, .navbar__nav ul.langswitch li:first-child.is-active {
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .navbar__nav.is-active {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    display: block !important;
    visibility: visible;
    position: absolute;
    z-index: 2;
    top: 4rem;
    right: 0;
    background-color: #f1f1f1;
  }
  .navbar__nav.is-active .nav li {
    display: block;
  }
}
.navbar__burger {
  color: #4a4a4a;
  cursor: pointer;
  display: block;
  height: 5rem;
  position: relative;
  z-index: 3;
  width: 5rem;
  margin-left: auto;
}
.navbar__burger span {
  background-color: #00871e;
  display: block;
  height: 3px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 30px;
}
.navbar__burger span:nth-child(1) {
  top: calc(50% - 8px);
}
.navbar__burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar__burger span:nth-child(3) {
  top: calc(50% + 6px);
}
.navbar__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.is-active span:nth-child(2) {
  visibility: hidden;
}
.navbar__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mainfooter {
  height: 6rem;
  background-color: #587618;
  line-height: 125%;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  margin-top: -6rem;
}
.mainfooter a:link, .mainfooter a:visited {
  color: rgba(255, 255, 255, 0.8);
}
.mainfooter p {
  margin: 0.5rem 0;
}
.mainfooter p.title {
  font-size: 1rem;
  letter-spacing: 0;
}
.mainfooter span {
  display: inline-block;
  padding: 0 0.5rem;
  border-right: 1px solid white;
  line-height: 100%;
}
.mainfooter span:last-child {
  border: none;
}
.mainfooter .content {
  max-width: 1088px;
  margin: auto;
}
.mainfooter .socialmedia {
  padding-top: 1rem;
}
.mainfooter__inner {
  padding: 1rem 0;
}

@font-face {
  font-family: lavoisierregular;
  src: url("../webfonts/lavoisier/lavoisier-webfont.eot");
  src: url("../webfonts/lavoisier/lavoisier-webfont.eot?#iefix") format("embedded-opentype"), url("../webfonts/lavoisier/lavoisier-webfont.woff") format("woff"), url("../webfonts/lavoisier/lavoisier-webfont.ttf") format("truetype"), url("../webfonts/lavoisier/lavoisier-webfont.svg#lavoisierregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
}
/*
 * HTML5 ✰ Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

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

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

[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231;
}

body, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #fe57a1;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #fe57a1;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
}

a:visited {
  color: #551a8b;
}

a:hover {
  color: #06e;
}

a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _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;
}

q {
  quotes: none;
}

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

small {
  font-size: 85%;
  line-height: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

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

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

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

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input {
  line-height: normal;
  *overflow: visible;
}

/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */
table button, table input {
  *overflow: auto;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button, input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

/*
 * Consistent box sizing and appearance
 */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

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

td {
  vertical-align: top;
}

/* ===== primary styles =====================================================
   Author: Taki Kiometzis
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
}

html {
  height: 101%;
}

body {
  background: #FFF;
  font-family: "Gentium Basic", serif;
  font-size: 20px;
  line-height: 135%;
  color: #000;
  font-weight: 400;
  border: 0;
  padding: 0;
  height: 101%;
}

/* ========================================================================== */
/* !--------- LAYOUT -------------------------------------------------------- */
/* ========================================================================== */
div#container {
  height: 101%;
}

#mainContent, nav.breadcrumb {
  max-width: 1088px;
  margin: 0 auto;
}

#mainContent {
  padding-bottom: 8rem;
}

.content {
  padding: 0 1rem;
}

section {
  margin-top: 3rem;
}

#wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
}

code, pre {
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  color: #333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 0 3px 2px;
}

code {
  color: #222;
  background-color: #f7f7f9;
}

pre {
  display: block;
  font-size: 12px;
  line-height: 18px;
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0 0 9px;
  padding: 4.5px;
}

pre.highlight {
  margin-bottom: 18px;
}

/* ========================================================================== */
/* !--------- LAYOUT Classes------------------------------------------------- */
/* ========================================================================== */
.flex-bg, .flex-bg picture {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 25rem;
  height: 50vh;
}

.flex-bg img {
  width: auto;
  max-width: none;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

hr.divide {
  border-top: 2px solid #78A021;
  margin: 6rem 0;
}

/* ========================================================================== */
/* !--------- HEADLINES ----------------------------------------------------- */
/* ========================================================================== */
header h1 {
  width: 300px;
  height: 48px;
  float: left;
}

header h1 a {
  width: 300px;
  height: 48px;
}

header h2 {
  width: 400px;
  height: 48px;
}

.svg header h2 {
  background: #FFF url(../images/raumplanung.svg) right top no-repeat;
  float: right;
  margin-top: 28px;
}

header h2 {
  background: #FFF url(../images/raumplanung.gif) right top no-repeat;
  float: right;
  margin-top: 28px;
}

.svg header h1 a:link, .svg header h1 a:visited {
  background: #FFF url(../images/VeraLauberLogo.svg) 0 0 no-repeat;
  background-size: 100%;
}

header h1 a:link, header h1 a:visited {
  background: #FFF url(../images/VeraLauberLogo.gif) 0 0 no-repeat;
  background-size: 100%;
}

h1 {
  font-family: lavoisierregular, sans-serif;
  font-size: 30px;
  color: #78A021;
  font-weight: 300;
  line-height: 30px;
  margin: 1em 0;
}

.projekte article h1 {
  font-family: lavoisierregular, sans-serif;
  font-size: 24px;
  color: #78A021;
  font-weight: 300;
  margin: 0 0 0.5em;
}

h2 {
  font-family: "Gentium Basic", serif;
  font-size: 20px;
  color: #78A021;
  font-weight: 400;
  margin-bottom: 0.6em;
}

h3 {
  font-family: "Gentium Basic", serif;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 135%;
}

h4 {
  font-family: "Gentium Basic", serif;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

/* ========================================================================== */
/* !--------- LINKS --------------------------------------------------------- */
/* ========================================================================== */
a:link, a:visited {
  color: #78A021;
  text-decoration: none;
}

a.active {
  color: #666;
}

nav.breadcrumb a.active {
  color: #d2d2d2;
}

a:hover {
  color: #666;
  text-decoration: none;
}

/* ========================================================================== */
/* !--------- TYPOGRAFIE ---------------------------------------------------- */
/* ========================================================================== */
blockquote {
  font-style: italic;
  margin-left: 2em;
}

.content ul li {
  list-style: none;
}

/* ========================================================================== */
/* !--------- MENU ---------------------------------------------------------- */
/* ========================================================================== */
.projekte li.depth-2 {
  display: none;
}

.menu {
  font-family: lavoisierregular, sans-serif;
  font-size: 18px;
  color: #fff;
}

.menu > ul {
  margin-left: 40px;
}

.menu li {
  list-style: none;
  line-height: 175%;
  display: inline-block;
}

.menu li.depth-2 a {
  font-weight: 400;
  font-size: 0.8em;
}

.menu li.hasChildren {
  background-image: url(../images/arrow.png);
  background-position: 150px 10px;
  background-repeat: no-repeat;
  background-size: 6px 9px;
}

.menu li a {
  display: block;
  padding: 0px;
}

.menu ul ul li a {
  padding-left: 2em;
  color: #999;
}

.menu ul ul ul li a {
  padding-left: 80px;
  color: #999;
}

.menu ul ul ul ul li a {
  padding-left: 100px;
  color: #999;
}

.menu ul ul ul ul ul li a {
  padding-left: 120px;
  color: #999;
}

.menu .madewith {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #555;
  border-bottom: 0;
  font-size: 14px;
}

.menu .madewith:hover {
  color: #2bb5ee;
}

/* !---------------------- breadcrumb --------------------------------------- */
p, .breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb ul {
  list-style-type: none;
  padding: 2rem 2rem 20px;
}

.breadcrumb ul li {
  float: left;
  padding: 0 5px 0 0;
}

.breadcrumb ul li a {
  border: none;
  font-size: 0.8em;
}

nav.breadcrumb ul li a:link, nav.breadcrumb ul li a:visited {
  color: #78A021;
}

/* ========================================================================== */
/* !--------- IMAGES/VIDEO -------------------------------------------------- */
/* ========================================================================== */
.blog img {
  width: 100%;
}

figure a, figure img {
  width: 100%;
}

div.single-page-article figure {
  margin-bottom: 2em;
}

/* ========================================================================== */
/* !--------- TABLE --------------------------------------------------------- */
/* ========================================================================== */
/* ========================================================================== */
/* !--------- FORM ---------------------------------------------------------- */
/* ========================================================================== */
form#search {
  text-align: center;
  margin: 20px 0 -10px;
}

.search form {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.search form input[type=text] {
  width: 400px;
  margin-right: 10px;
  padding: 5px;
}

.search form input[type=submit] {
  line-height: 15px;
  background: #444;
  border: 1px solid #444;
  color: #fff;
  font-weight: 700;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  padding: 5px 20px;
}

.search .nav {
  border-bottom: 1px solid #eee;
  overflow: hidden;
  padding: 10px 0;
}

.search .nav .count {
  float: left;
}

.search .nav .buttons {
  float: right;
}

.search .nav .buttons a {
  margin-left: 20px;
  font-weight: 700;
  color: #222;
}

.search .nav .buttons span {
  margin-left: 20px;
}

.search ul {
  margin: 0;
}

.search li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.search a {
  border: none;
  color: #777;
}

.search a:hover {
  color: red;
}

.search li strong {
  display: block;
}

.search li strong a {
  color: #222;
}

.search .no-results {
  margin-top: 20px;
}

/* ========================================================================== */
/* !--------- HELPER CLASSES ------------------------------------------------ */
/* ========================================================================== */
.readmore, figcaption {
  padding: 1em 0 1em 110px;
  color: #333;
  font-style: italic;
  font-size: 1em;
  display: block;
}

figcaption {
  padding-left: 0;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.floatClear {
  clear: both;
}

.abgerundet {
  -moz-border-radius: 10px;
  /* Firefox */
  -webkit-border-radius: 10px;
  /* Safari, Chrome */
  -khtml-border-radius: 10px;
  /* Konqueror */
  border-radius: 10px;
  /* CSS3 */
}

.ie6 .abgerundet, .ie7 .abgerundet, .ie8 .abgerundet {
  behavior: url(../../border-radius.htc);
  overflow: hidden;
}

.schattiert {
  -moz-box-shadow: -3px 3px 15px #e8e8e;
  -webkit-box-shadow: -3px 3px 15px #e8e8e8;
  -khtml-box-shadow: -3px 3px 15px #e8e8e8;
  box-shadow: -3px 3px 15px #e8e8e8;
}

.dunkelschattiert {
  -moz-box-shadow: -5px 10px 15px #cacaca;
  -webkit-box-shadow: -5px 10px 15px #cacaca;
  -khtml-box-shadow: -5px 10px 15px #cacaca;
  box-shadow: -5px 10px 15px #cacaca;
}

.textschatten {
  text-shadow: 1px 1px 0px #FFF;
  /* Versatz links - Versatz oben - Unschärfe (Blur) - Farbe */
}

/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* ==|== media queries ======================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */
}
@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */
}
/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=styles.css.map */
