@charset "UTF-8";
/* Stylesheet ========================================================= */
/*
 * - beinhaltet Styles für screen/projection und print
 * - definiert Styles für Layout, Typographie und alle Inhaltstypen
 *
 * Outline:
 *
 * 1) importierte Stylesheets + CSS Frameworks
 * 2) Styledefinitionen für all/screen/projection
 * 3) zusätzliche Styles für print
 *
 * ------------------------------------------------------------------------
 * WEITERE HINWEISE
 * ------------------------------------------------------------------------
 *
 * Geschweifte Klammer "{}" werden in Beispielen für optionale Dinge
 * (Klassen, Attribute, etc) verwenden, die Pipe "|" für mögliche
 * Kombinationen und die Raute "#" als Platzhalter für verschiedene Dinge
 * (z.B. URLs oder Texte).
 *
 */
/**

<ul|ol class="imgGal {captioned}">
    <li><a href="#Bild-URL" title="@@" {rel="gruppierungs_id"}><img src="#Thumb-URL" alt="@@" /></a></span></li>
    <li><a href="#Bild-URL" title="@@" {rel="gruppierungs_id"}><img src="#Thumb-URL" alt="@@" /></a></span></li>
</ul|ol>

 */
/* == IMPORTS ========================================================== */
/* -- Google Fonts - PT Sans Narrow ------------------------------------ */
@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);


/* -- YAML Reset ------------------------------------------------------- */
@media all {
  /**
   * @section browser reset
   * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
   */
  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  * {
    margin: 0;
    padding: 0;
  }

  /* (en) Correction:margin/padding reset caused too small select boxes. */
  /* (de) Korrektur:Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  option {
    padding-left: 0.4em;
  }

  /* LTR */
  select {
    padding: 1px;
  }

  /**
   * (en) Global fix of the Italics bugs in IE 5.x and IE 6
   * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
   *
   * @bugfix
   * @affected   IE 5.x/Win, IE6
   * @css-for    IE 5.x/Win, IE6
   * @valid      yes
   */
  * html body * {
    overflow: visible;
  }

  body {
    /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */
    /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */
    font-size: 100.01%;
    /* (en) Standard values for colors and text alignment */
    /* (de) Vorgabe der Standardfarben und Textausrichtung */
    background: #fdfdfd;
    color: black;
    text-align: left;
    /* LTR */
  }

  /* (en) avoid visible outlines on DIV containers in Webkit browsers */
  /* (de) Vermeidung sichtbarer Outline-Rahmen in Webkit-Browsern */
  div {
    outline: 0 none;
  }

  /* (en) HTML 5 - adjusting visual formatting model to block level */
  /* (en) HTML 5 - Anpassung des visuellen Formatmodells auf Blockelemente */
  article, aside, canvas, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section, summary {
    display: block;
  }

  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  fieldset, img {
    border: 0 solid;
  }

  /* (en) new standard values for lists, blockquote and cite */
  /* (de) Neue Standardwerte für Listen & Zitate */
  ul, ol, dl {
    margin: 0 0 1.5em 1.5em;
  }

  /* LTR */
  li {
    line-height: 1.5;
    margin-left: 0.15em;
    /* LTR */
  }

  dt {
    font-weight: bold;
  }

  dd {
    margin: 0 0 1.5em 0.5em;
  }

  /* LTR */
  blockquote {
    /* margin: 0 0 1.5em 0.5em; */
  }
  /* LTR */
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: "";
  }
}
/* -- YAML Clearings --------------------------------------------------- */
@media all {
  /**
   * @section clearing methods
   * @see     http://yaml.de/en/documentation/basics/general.html
   */
  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  .clearfix:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }

  /* (en) essential for Safari browser !! */
  /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */
  .clearfix {
    display: block;
  }

  /* (en) alternative solution to contain floats */
  /* (de) Alternative Methode zum Einschließen von Float-Umgebungen */
  .floatbox {
    display: table;
    width: 100%;
  }

  /* (en) IE-Clearing:Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing:Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  #ie_clearing {
    display: none;
  }
}
/* -- YAML Hidden elements --------------------------------------------- */
@media all {
  /**
   * @section hidden elements | Versteckte Elemente
   * @see     http://www.yaml.de/en/documentation/basics/skip-links.html
   *
   * (en) skip links and hidden content
   * (de) Skip-Links und versteckte Inhalte
   */
  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .skip, .hideme, .print, dfn {
    position: absolute;
    top: -32768px;
    left: -32768px;
    /* LTR */
  }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .skip:focus, .skip:active {
    position: static;
    top: 0;
    left: 0;
  }

  /* skiplinks:technical setup */
  #skiplinks,
  .skiplinks {
    position: absolute;
    top: 0px;
    left: -32768px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  #skiplinks .skip:focus,
  #skiplinks .skip:active,
  .skiplinks .skip:focus,
  .skiplinks .skip:active {
    left: 32768px;
    outline: 0 none;
    position: absolute;
    width: 100%;
  }
}

/* == DEFINITIONEN ==================================================== */
@media all {
  /* == Layout =========================================================== */
  html {
    min-height: 100%;
  }
  body {
    background: #fff;
    color: #000;
    font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
    line-height: 1.5;
  }
  .page_margins {
    font-size: 0.875em;
    margin: 0 auto;
    padding: 0;
    width: 1020px;
  }
  .page {
    background: transparent url(../img/bg_page.png) no-repeat top left;
    position: relative;
  }
  
  /* -- Header -- */
  h1 {
    border-bottom: 1px #a5a5a5 dotted;
    margin: 0 50px;
    padding: 35px 0 50px 0;
    text-align: center;
  }
  h1 img {
    vertical-align: middle;
  }

  /* -- Main -- */
  #main {
    margin: 50px 213px;
    padding-bottom: 100px;
  }
  #main .ym-text {
    margin: 35px 0 100px 0;
  }
  #main .ym-text h2 {
    color: #96c11f;
    font-size: 2.6em;
    font-weight: normal;
    margin: 0 0 .2em 0;
  }
  #main .ym-text h3 {
    color: #006997;
    font-size: 2em;
    font-weight: normal;
    margin: 0 0 .2em 0;
  }
  #main .ym-text address,
  #main .ym-text p {
    font-size: 1.8em;
  }
  #main .ym-text address {
    margin-bottom: .5em;    
  }
  #main .ym-text address+address {
    margin-bottom: 1.5em;
  }
  #main .ym-text a {
    color: #006997;
    font-weight: bold;
    text-decoration: underline;
  }
  #main .ym-text a:focus,
  #main .ym-text a:hover,
  #main .ym-text a:active {
    color: #96c11f;
    text-decoration: none;
  }
  #main div.hr {
    background: url(../img/ico_star.png) no-repeat 50% 50%;
    height: 25px;
    margin-top: 80px;
  }
  #main form.ym-form {
    border: 0;
    margin: 0;
    padding: 0 0 3em 0;
  }
  .ym-form input {
    border: 0;
    border-bottom: 1px #000 dotted;
    font-size: .875em;
    letter-spacing: 0 !important;
    margin: 0 .4em;
    width: 14em;
  }
  .ym-form input#ym-kontakt {
    margin: 0 .4em 0 0;
  }
  .ym-form input.ym-submit {
    background: #96C11F;
    border-bottom: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin: 0;
    padding: .5em 1em;
  }
  .ym-form input.ym-submit:hover,
  .ym-form input.ym-submit:focus {
    background: #006997;
  }
  
  /* -- Language navigation --- */
  #nav-lang {
    position: absolute;
    left: 30px;
    top: 10px;
  }
  #nav-lang li {
    list-style: none;
    margin: 0 0 10px 0;
  }
  #nav-lang a,
  #nav-lang strong {
    display: block;
    height: 64px;
    width: 64px;
  }
  #nav-lang .en a,
  #nav-lang .en strong {
    background-image: url(../img/ico_en.png);
  }
  #nav-lang .de a,
  #nav-lang .de strong {
    background-image: url(../img/ico_de.png);
  }
  .lang-de #nav-lang .en,
  .lang-en #nav-lang .de {
    opacity: .4;
  }
  .lang-de #nav-lang .en:focus,
  .lang-de #nav-lang .en:hover {
    opacity: 1;
  }
  
  /* -- Main navigation --- */
  /* .fixednav {
    background: #fff;
    margin-top: 0 !important;
    position: fixed;
    top: 0;
  } */
  #nav-main {
    margin: 50px 0 0 0;
    padding: 15px 0 50px 0;
  }
  #nav-main ul {
    margin: 0 -50px 0 -50px;
    padding: 0;
  }
  #nav-main li {
    float: left;
    list-style: none;
    margin: 0 0 0 45px;
    width: 260px;
  }
  #nav-main li {
    background: transparent url(../img/ico_star.png) no-repeat 0 .25em;
    padding-left: 36px;
  }
  #nav-main li a {
    color: #a5a5a5;
    display: block;
    font-size: 2em;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
  }
  #nav-main li a:focus,
  #nav-main li a:hover,
  #nav-main li a:active {
     color: #006997;
  }
  
  /*
  |--------------------------------------------------------------------------
  | UItoTop jQuery Plugin 1.2
  | http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
  |--------------------------------------------------------------------------
  */
  #toTop {
    background: url(../img/ico_totop.png) no-repeat left top;
    border: none;
    bottom: 80px;
    height: 68px;
    overflow: hidden;
    position: fixed;
    right: 80px;
    text-decoration: none;
    text-indent: 100%;
    width: 68px;
    z-index: 9000;
  }
  #toTopHover {
    background: url(../img/ico_totop.png) no-repeat left -70px;
    display: block;
    float: left;
    height: 68px;
    opacity: 0;
    -moz-opacity: 0;
    overflow: hidden;
    width: 68px;
    z-index: 9000;
  }
  #toTop:active, #toTop:focus {
    outline: none;
  }
  
  /* -- Helper ----------------------------------------------------------- */
  .highlight {
    background-color: #a5a5a5;
    color: #fff;
  }

  /* == Navigation ======================================================= */
  /* -- Accessible Skiplinks --------------------------------------------- */
  .skiplinks a:focus, .skiplinks a:active {
    background: #000;
    color: #fff;
    padding: 0.5em 0;
    text-align: center;
    top: 10%;
  }

  /* -- Helpers ---------------------------------------------------------- */
  /* == Typographie ====================================================== */
  h1 {
    font-size: 1.5em;
    margin-bottom: 1.167em;
    line-height: 1.167;
    font-weight: normal;
    color: black;
  }

  h2 {
    font-size: 1.4em;
    margin-bottom: 1.167em;
    line-height: 1.167;
    font-weight: normal;
  }

  h3 {
    font-size: 1.65em;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: .3em;
  }

  h4 {
    font-size: 1.4em;
    margin-bottom: .34em;
    line-height: 1.5;
    font-weight: normal;
  }

  h5 {
    font-size: 1.3em;
    margin-bottom: .3em;
    line-height: 1.5;
    font-weight: normal;
  }

  h6 {
    font-size: 1em;
    margin-bottom: 1.5em;
    line-height: 1.5;
    font-weight: bold;
  }

  .ym-center {
    text-align: center !important;
  }
  .ym-right {
    text-align: right !important;
  }
  .ym-left {
    text-align: left !important;
  }


  p, ul, ol, dl, dd, blockquote, address, pre {
    margin-bottom: 1.5em;
    font-style: normal;
  }

  small {
    font-size: 0.766em;
    margin-bottom: 1.959em;
    line-height: 1.959;
  }

  ul ul, ol ol, ul ol, ol ul {
    margin-bottom: 0;
  }

  dl {
    margin-left: 0;
    margin-right: 0;
  }
  dl dt, dl dd {
    margin: 0;
    padding: 0.375em 0;
  }
  dl dt > :last-child, dl dd > :last-child {
    margin-bottom: 0;
  }
  dl dt { 
    margin-top: .5em;
    padding-bottom: 0;
  }

  blockquote {
    background-color: #e5f7fd;
    font-style: italic;
    padding: 15px 15px 10px 15px;
  }

  q {
    font-style: italic;
  }

  cite {
    font-style: italic;
    font-weight: bold;
  }

  em {
    font-style: italic;
  }

  strong {
    font-weight: bold;
  }

  abbr, acronym {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    cursor: help;
  }
  a abbr, a acronym {
    border: none;
    cursor: pointer;
  }
  address abbr, address acronym {
    border: none;
  }

  code, samp, kbd, var {
    font-family: System, monospace;
  }

  ul {
    list-style-type: disc;
  }

  /* -- Links ------------------------------------------------------------ */
  a {
    text-decoration: underline;
  }
  a abbr {
    text-decoration: underline;
  }
  a:focus, a:hover, a:active {
    text-decoration: none;
  }
  a:focus abbr, a:hover abbr, a:active abbr {
    text-decoration: none;
  }
  a:focus {
    outline: 2px solid #7dbc36;
  }

  /* == Media ============================================================ */
  img.block {
    display: block;
    margin: 0 auto;
  }
  img.full {
    min-width: 100%;
    width: 100%;
  }
  a img {
    border: none;
  }
  a:focus img, a:active img, a:hover img {
    outline: none;
  }

  /* == Inhaltstypen ===================================================== */
  .figcaption {
    font-style: italic;
    margin: 0;
    padding: 0.375em 0;
  }
  .floatleft {
    float: left;
    margin-right: 1.5em;
  }
  .floatright {
    float: right;
    margin-left: 1.5em;
  }
  .floatleft, .floatright {
    margin-bottom: 1.5em;
  }
  .floatleft img, 
  .floatright img, 
  img.floatright, 
  img.floatleft {
    border: 0;
    margin-bottom: 2em;
    margin-top: .39679em;
    padding: 2px;
  }
  
  /* ------------------------------------------ */
  /* ColorBox */ 
  /* if a complete YAML page is loaded into ColorBox, please kill all content that is not needed */ 
  #colorbox #cboxWrapper #col1, #colorbox #cboxWrapper #nav-first, 
  #colorbox #cboxWrapper #header #xxl,#colorbox #cboxWrapper #header #fontsize, #colorbox #cboxWrapper #searchbox,#colorbox #cboxWrapper #ie_clearing, #colorbox #cboxWrapper #footer, #colorbox #cboxWrapper hr.hideme  ,#colorbox #cboxWrapper #col3 #nav-trail{ display: none !important; } 
  #colorbox #cboxWrapper #col3, #colorbox #cboxWrapper #main { background-image: none !important; } 
  #colorbox #cboxWrapper #col1 { width: 0; }
  #colorbox #cboxWrapper #col3 { margin-left: 15px; margin-right: 15px; margin-top: 2em; }

  #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
  #cboxOverlay{position:fixed; width:100%; height:100%;}
  #cboxMiddleLeft, #cboxBottomLeft{clear:left;}
  #cboxContent{position:relative;}
  #cboxLoadedContent{overflow:auto;}
  #cboxTitle{margin:0;}
  #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
  #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
  .cboxPhoto{float:left; margin:auto; border:0; display:block;}
  .cboxIframe{width:100%; height:100%; display:block; border:0;}

  #cboxOverlay{background:#333;}
  #inline_content { padding: 20px; }
  #cboxTopLeft{width:16px; height:16px; background: #fff; }
  #cboxTopRight{width:16px; height:16px; background: #fff; }
  #cboxBottomLeft{width:16px; height:16px; background: #fff; }
  #cboxBottomRight{width:16px; height:16px; background: #fff; }
  #cboxMiddleLeft{width:16px; background: #fff; }
  #cboxMiddleRight{width:16px; background: #fff; }
  #cboxTopCenter{height:16px; background: #fff; }
  #cboxBottomCenter{height:16px; background: #fff; }
    
  #cboxContent{background:#fff; overflow:hidden;}
  .cboxIframe{background:#fff;}
  #cboxError{padding:50px; border:1px solid #ccc;}
  #cboxLoadedContent{margin-bottom:28px;}
  #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
  #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
  #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
  #cboxPrevious{position:absolute; bottom:0; left:0; background:url(../img/colorbox/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
  #cboxPrevious:hover{background-position:-75px -25px;}
  #cboxNext{position:absolute; bottom:0; left:27px; background:url(../img/colorbox/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
  #cboxNext:hover{background-position:-50px -25px;}
  #cboxLoadingOverlay{background:url(../img/colorbox/loading_background.png) no-repeat center center;}
  #cboxLoadingGraphic{background:url(../img/colorbox/loading.gif) no-repeat center center;}
  #cboxClose{position:absolute; bottom:0; right:0; background:url(../img/colorbox/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
  #cboxClose:hover{background-position:-25px -25px;}
}
@media screen and (max-width: 769px) {
  .page_margins {
    width: 100%;
    margin: 0;
  }
  .page {
    background: none;
    margin: 0 10px;
  }
  h1 img {
    width: 100%;
  }
  #main {
    margin: 0;
  }
  #nav-main li {
    background: none !important;
    float: none;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    width: 100%;
  }
  #toTop, #toTopHover {
    bottom: 10px;
    right: 10px;
  }
  #main input {
    width: 9em;
  }
  address img.floatleft {
    display: block;
    float: none;
  }
}


@media print {
  /* adjust text colors to black/white */
  * {
    background: transparent !important;
    color: #000 !important;
    line-height: 1.3em;
  }

  /* adjust typography for print */
  .page_margins {
    font-size: 11pt;
    line-height: 1.3;
  }
  
  /* hide navigations */
  #nav-main {
    display: none !important;
  }

  /* hide subcontent and use full space for main content */
  .ym-submit {
    display: none;
  }

  /* layout */
  body, 
  .page_margins, 
  .page,
  #main {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
  }
  body {
    margin: 20pt 0 !important;
  }
  #header { 
    height: auto;
    margin-bottom: 40pt;
  }

  /* adjust forms */
  fieldset { border: 0; display: block; margin: 28px 0; padding: 0; }
  legend { font-size: 14pt; font-weight: bold; margin: 0 0 7pt 0 !important; color: #000; }
  label { padding-top: 14pt; font-size: 10pt; display: block; font-weight: bold; }
  input, select, textarea { border: 0; display: block; font-family: 'PT Sans Narrow', Arial, Helvetica, Sans-Serif; font-size: 10pt; font-weight: normal; letter-spacing: 1px; line-height: 14pt; padding-top: 7pt; width: 450px; }
  input { border-bottom: 1px solid #000; }
  textarea { height: 50pt; border-bottom: 1px solid #000; }
}
