@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * default screen stylesheet - FULLPAGE-layout type layout
 *
 * @copyright       © 2005-2013, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         ### version ###
 */
/* import Schriften */
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:100,300,400,500,700");
/* import core styles | Basis-Stylesheets einbinden */
@media all {
  /**
   *  @section Normalisation Module
   */
  /* (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; }

  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; }

  /*
  * (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser
  *      Standard values for colors and text alignment
  *
  * (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen
  *      Vorgabe der Standardfarben und Textausrichtung
  */
  body {
    font-size: 100%;
    background: #fff;
    color: #000;
    text-align: left; }

  /* (en) avoid visible outlines on DIV and h[x] elements in Webkit browsers */
  /* (de) Vermeidung sichtbarer Outline-Rahmen in Webkit-Browsern */
  div:target,
  h1:target,
  h2:target,
  h3:target,
  h4:target,
  h5:target,
  h6:target {
    outline: 0 none; }

  /* (en) HTML5 - adjusting visual formatting model to block level */
  /* (de) HTML5 - Elements werden als Blockelemente definiert */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  nav,
  section,
  summary {
    display: block; }

  /* (en) HTML5 - default media element styles */
  /* (de) HTML5 - Standard Eigenschaften für Media-Elemente */
  audio,
  canvas,
  video {
    display: inline-block; }

  /* (en) HTML5 - don't show <audio> element if there aren't controls */
  /* (de) HTML5 - <audio> ohne Kontrollelemente sollten nicht angezeigt werden */
  audio:not([controls]) {
    display: none; }

  /* (en) HTML5 - add missing styling in IE & old FF for hidden attribute */
  /* (de) HTML5 - Eigenschaften für das hidden-Attribut in älteren IEs und FF nachrüsten */
  [hidden] {
    display: none; }

  /* (en) Prevent iOS text size adjust after orientation change, without disabling user zoom. */
  /* (de) Verdindert die automatische Textanpassung bei Orientierungswechsel, ohne Zoom zu blockieren */
  html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }

  /* (en) set correct box-modell in IE8/9 plus remove padding */
  /* (de) Setze das richtige Box-Modell im IE8/9 und entferne unnötiges Padding */
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0; }

  /* (en) force consistant appearance of input[type="search"] elements in all browser */
  /* (de) Einheitliches Erscheinungsbild für input[type="search"] Elemente erzwingen */
  input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box; }

  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

  /* (en) Correct overflow displayed oddly in IE 9 */
  /* (de) Korrigiert fehlerhafte overflow Voreinstellung des IE 9 */
  svg:not(:root) {
    overflow: hidden; }

  /* (en) Address margin not present in IE 8/9 and Safari 5 */
  /* (en) Ergänzt fehlenden Margin in IE 8/9 und Safari 5 */
  figure {
    margin: 0; }

  /* (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, cite and tables */
  /* (de) Neue Standardwerte für Listen, Zitate und Tabellen */
  ul,
  ol,
  dl {
    margin: 0 0 1em 1em; }

  li {
    line-height: 1.5em;
    margin-left: 0.8em; }

  dt {
    font-weight: bold; }

  dd {
    margin: 0 0 1em 0.8em; }

  blockquote {
    margin: 0 0 1em 0.8em; }

  q {
    quotes: none; }

  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: '';
    content: none; }

  table {
    border-collapse: collapse;
    border-spacing: 0; }

  /**
  * @section Float Handling Module
  */
  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  .ym-clearfix:before {
    content: "";
    display: table; }

  .ym-clearfix:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden; }

  /* (en) alternative solutions to contain floats */
  /* (de) Alternative Methoden zum Einschließen von Float-Umgebungen */
  .ym-contain-dt {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .ym-contain-oh {
    display: block;
    overflow: hidden;
    width: 100%; }

  .ym-contain-fl {
    float: left;
    width: 100%; }

  /**
  * @section Column Module
  *
  * default column config:
  * |-------------------------------|
  * | col1    | col3      | col2    |
  * | 20%     | flexible  | 20%     |
  * |-------------------------------|
  */
  .ym-column {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .ym-col1 {
    float: left;
    width: 20%; }

  .ym-col2 {
    float: right;
    width: 20%; }

  .ym-col3 {
    width: auto;
    margin: 0 20%; }

  .ym-cbox {
    padding: 0 10px; }

  .ym-cbox-left {
    padding: 0 10px 0 0; }

  .ym-cbox-right {
    padding: 0 0 0 10px; }

  /* (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 */
  .ym-ie-clearing {
    display: none; }

  /**
  * @section Grid Module
  */
  .ym-grid {
    display: table;
    table-layout: fixed;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

  .ym-gl {
    float: left;
    margin: 0; }

  .ym-gr {
    float: right;
    margin: 0 0 0 -5px; }

  .ym-g20 {
    width: 20%; }

  .ym-g40 {
    width: 40%; }

  .ym-g60 {
    width: 60%; }

  .ym-g80 {
    width: 80%; }

  .ym-g25 {
    width: 25%; }

  .ym-g33 {
    width: 33.333%; }

  .ym-g50 {
    width: 50%; }

  .ym-g66 {
    width: 66.666%; }

  .ym-g75 {
    width: 75%; }

  .ym-g38 {
    width: 38.2%; }

  .ym-g62 {
    width: 61.8%; }

  .ym-gbox {
    padding: 0 10px; }

  .ym-gbox-left {
    padding: 0 10px 0 0; }

  .ym-gbox-right {
    padding: 0 0 0 10px; }

  .ym-equalize {
    overflow: hidden; }

  .ym-equalize > [class*="ym-g"] {
    display: table-cell;
    float: none;
    margin: 0;
    vertical-align: top; }

  .ym-equalize > [class*="ym-g"] > [class*="ym-gbox"] {
    padding-bottom: 10000px;
    margin-bottom: -10000px; }

  /**
  * @section Form Module
  */
  /** Vertical-Forms - technical base (standard)
  *
  * |-------------------------------|
  * | form                          |
  * |-------------------------------|
  * |   label                       |
  * |   input / select / textarea   |
  * |-------------------------------|
  * | /form                         |
  * |-------------------------------|
  *
  * (en) Styling of forms where both label and input/select/textarea are styled with display: block;
  * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display: block; gestaltet werden
  */
  .ym-form,
  .ym-form fieldset {
    overflow: hidden; }

  .ym-form div {
    position: relative; }
  .ym-form label,
  .ym-form .ym-label,
  .ym-form .ym-message {
    position: relative;
    line-height: 1.5;
    display: block; }
  .ym-form .ym-message {
    clear: both; }
  .ym-form .ym-fbox-check label {
    display: inline; }
  .ym-form input,
  .ym-form textarea {
    cursor: text; }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="image"],
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"],
  .ym-form select,
  .ym-form label {
    cursor: pointer; }
  .ym-form textarea {
    overflow: auto; }
  .ym-form input.hidden,
  .ym-form input[type=hidden] {
    display: none !important; }
  .ym-form .ym-fbox:before,
  .ym-form .ym-fbox-text:before,
  .ym-form .ym-fbox-select:before,
  .ym-form .ym-fbox-check:before,
  .ym-form .ym-fbox-button:before {
    content: "";
    display: table; }
  .ym-form .ym-fbox:after,
  .ym-form .ym-fbox-text:after,
  .ym-form .ym-fbox-select:after,
  .ym-form .ym-fbox-check:after,
  .ym-form .ym-fbox-button:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden; }
  .ym-form .ym-fbox-check input:focus,
  .ym-form .ym-fbox-check input:hover,
  .ym-form .ym-fbox-check input:active,
  .ym-form input[type="radio"]:focus,
  .ym-form input[type="radio"]:hover,
  .ym-form input[type="radio"]:active,
  .ym-form input[type="checkbox"]:focus,
  .ym-form input[type="checkbox"]:hover,
  .ym-form input[type="checkbox"]:active {
    border: 0 none; }
  .ym-form input,
  .ym-form textarea,
  .ym-form select {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 70%; }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"] {
    display: inline;
    margin-left: 0;
    margin-right: 0.5ex;
    width: auto;
    height: auto; }
  .ym-form input[type="image"] {
    border: 0;
    display: inline;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto; }
  .ym-form label,
  .ym-form .ym-label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .ym-form .ym-fbox-button input {
    display: inline;
    overflow: visible;
    width: auto; }
  .ym-form .ym-inline {
    display: inline-block;
    float: none;
    margin-right: 0;
    width: auto;
    vertical-align: baseline; }

  /* default form wrapper width */
  .ym-fbox-wrap {
    display: table;
    table-layout: fixed;
    width: 70%; }
    .ym-fbox-wrap input,
    .ym-fbox-wrap textarea,
    .ym-fbox-wrap select {
      width: 100%; }
    .ym-fbox-wrap input[type="image"] {
      width: auto; }
    .ym-fbox-wrap input[type="radio"],
    .ym-fbox-wrap input[type="checkbox"] {
      display: inline;
      width: auto;
      margin-left: 0;
      margin-right: 0.5ex; }
    .ym-fbox-wrap label,
    .ym-fbox-wrap .ym-label {
      display: inline; }

  .ym-full input,
  .ym-full textarea,
  .ym-full select {
    width: 100%; }
  .ym-full .ym-fbox-wrap {
    width: 100%; }

  /**
  *  Columnar forms display - technical base (optional)
  *
  *  |-------------------------------------------|
  *  | form                                      |
  *  |-------------------------------------------|
  *  |                                           |
  *  |   label   |   input / select / textarea   |
  *  |                                           |
  *  |-------------------------------------------|
  *  | /form                                     |
  *  |-------------------------------------------|
  *
  *  (en) Styling of forms where label floats left of form-elements
  *  (de) Formulargestaltung, bei der die label-Elemente nach links fließen
  */
  .ym-columnar input,
  .ym-columnar textarea,
  .ym-columnar select {
    float: left;
    margin-right: -3px; }
  .ym-columnar label,
  .ym-columnar .ym-label {
    display: inline;
    float: left;
    width: 30%;
    z-index: 1; }
  .ym-columnar .ym-fbox-check input,
  .ym-columnar .ym-message {
    margin-left: 30%; }
  .ym-columnar .ym-fbox-wrap {
    margin-left: 30%;
    margin-right: -3px; }
    .ym-columnar .ym-fbox-wrap .ym-message {
      margin-left: 0%; }
    .ym-columnar .ym-fbox-wrap label {
      float: none;
      width: auto;
      z-index: 1;
      margin-left: 0; }
    .ym-columnar .ym-fbox-wrap input {
      margin-left: 0;
      position: relative; }
  .ym-columnar .ym-fbox-check {
    position: relative; }
    .ym-columnar .ym-fbox-check label,
    .ym-columnar .ym-fbox-check .ym-label {
      padding-top: 0; }
    .ym-columnar .ym-fbox-check input {
      top: 3px; }
  .ym-columnar .ym-fbox-button input {
    float: none;
    margin-right: 1em; }

  .ym-fbox-wrap + .ym-fbox-wrap {
    margin-top: 0.5em; }

  /* global and local columnar settings for button alignment */
  .ym-columnar fieldset .ym-fbox-button,
  fieldset.ym-columnar .ym-fbox-button {
    padding-left: 30%; }

  /**
  * @section Accessibility Module
  *
  * (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 */
  .ym-skip,
  .ym-hideme,
  .ym-print {
    position: absolute;
    top: -32768px;
    left: -32768px; }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .ym-skip:focus,
  .ym-skip:active {
    position: static;
    top: 0;
    left: 0; }

  /* skiplinks:technical setup */
  .ym-skiplinks {
    position: absolute;
    top: 0px;
    left: -32768px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .ym-skiplinks .ym-skip:focus,
    .ym-skiplinks .ym-skip:active {
      left: 32768px;
      outline: 0 none;
      position: absolute;
      width: 100%; } }
@media print {
  /**
  * @section print adjustments for core modules
  *
  * (en) float containment for grids. Uses display: table to avoid bugs in FF & IE
  * (de) Floats in Grids einschließen. Verwendet display: table, um Darstellungsprobleme im FF & IE zu vermeiden
  *
  * @bugfix
  * @since     3.0
  * @affected  FF2.0, FF3.0, IE7
  * @css-for   all browsers
  * @valid     yes
  */
  .ym-grid > .ym-gl,
  .ym-grid > .ym-gr {
    overflow: visible;
    display: table;
    table-layout: fixed; }

  /* (en) make .ym-print class visible */
  /* (de) .ym-print-Klasse sichtbar schalten */
  .ym-print {
    position: static;
    left: 0; }

  /* (en) generic class to hide elements for print */
  /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */
  .ym-noprint {
    display: none !important; } }
/* import screen layout | Screen-Layout einbinden */
@media all {
  nav#mainnav {
    font-family: serif;
    max-width: 1030px;
    position: relative;
    margin: -78px auto 0 auto;
    background: #ffffff;
    display: block;
    z-index: 1000; }

  .ym-hlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    margin: 0 40px;
    padding: 25px 0 1em 0;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    position: relative;
    line-height: 1em; }
    .ym-hlist ul {
      margin: 0;
      padding: 0;
      display: inline;
      float: left; }
      .ym-hlist ul li {
        display: inline;
        float: left;
        line-height: 1;
        list-style-type: none;
        margin: 0 1em 0 0;
        padding: 0; }
        .ym-hlist ul li a, .ym-hlist ul li strong {
          background: transparent;
          color: #555;
          display: block;
          font-size: 1.2em;
          line-height: 2em;
          padding: 0 0.5em;
          font-weight: normal;
          text-decoration: none;
          text-transform: uppercase;
          width: auto; }
        .ym-hlist ul li a:focus,
        .ym-hlist ul li a:hover,
        .ym-hlist ul li a:active {
          color: #fff;
          background: #666;
          background: #9cbb2b;
          border-radius: 0.2em;
          text-decoration: none;
          outline: 0 none; }
        .ym-hlist ul li.active {
          background: #666;
          background: #58ab27;
          border-radius: 0.2em;
          color: #fff; }
          .ym-hlist ul li.active strong,
          .ym-hlist ul li.active a:focus,
          .ym-hlist ul li.active a:hover,
          .ym-hlist ul li.active a:active {
            background: transparent;
            color: #fff;
            text-decoration: none; }

  /* ------- search form -------- */
  .ym-searchform {
    float: right;
    display: inline;
    line-height: 2;
    padding: 0; }
    .ym-searchform .ym-searchfield {
      -webkit-appearance: none;
      background: #fff;
      line-height: 1;
      padding: 0.25em;
      width: 12em;
      border: solid 1px #888;
      border: solid 1px rgba(255, 255, 255, 0.1);
      outline: none;
      -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
    .ym-searchform .ym-searchbutton {
      -webkit-appearance: none;
      background: #5f5f5f;
      background: #58ab27;
      border-radius: .2em;
      color: #fff;
      cursor: pointer;
      display: inline-block;
      font-size: 1em;
      line-height: 1.25;
      padding: 0.25em;
      border: solid 1px transparent;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); } }
@media screen and (max-width: 760px) {
  .ym-searchform {
    display: none; } }
@media screen and (max-width: 480px) {
  /* Linearisation for Grid- and Column-Module, based on CSS class .linearize-level-2 */
  .linearize-level-2, .linearize-level-2 > [class*="ym-c"], .linearize-level-2 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important; }
  .linearize-level-2 > [class*="ym-c"] > [class*="ym-cbox"], .linearize-level-2 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden; }

  nav .ym-hlist {
    margin: 0;
    height: auto; } }
@media all {
  /* 4 navigation levels defined */
  .ym-vlist {
    list-style-type: none;
    background: transparent;
    border: 0 none;
    padding-bottom: 2em; }
    .ym-vlist ul {
      list-style-type: none;
      margin: 0;
      width: 100%;
      overflow: hidden;
      border-top: 2px #ddd solid;
      border-bottom: 2px #ddd solid; }
    .ym-vlist ul ul {
      border: 0 none; }
    .ym-vlist li {
      float: left;
      width: 100%;
      margin: 0;
      padding: 0;
      background-color: #fff; }
    .ym-vlist a,
    .ym-vlist strong,
    .ym-vlist span {
      display: block;
      padding: 3px 0px 3px 10%;
      text-decoration: none;
      border-bottom: 1px #ddd solid; }
    .ym-vlist a,
    .ym-vlist a:visited {
      color: #444; }
    .ym-vlist li span {
      display: block;
      font-weight: bold;
      border-bottom: 1px #ddd solid; }
    .ym-vlist li.active {
      color: #fff;
      background-color: #58ab27; }
      .ym-vlist li.active strong {
        font-weight: bold; }
    .ym-vlist li a,
    .ym-vlist li strong,
    .ym-vlist li span {
      width: 90%;
      padding-left: 10%; }
    .ym-vlist li a:focus,
    .ym-vlist li a:hover,
    .ym-vlist li a:active {
      background-color: #888;
      color: #fff;
      outline: 0 none; }
    .ym-vlist li ul li a,
    .ym-vlist li ul li strong,
    .ym-vlist li ul li span {
      width: 80%;
      padding-left: 20%; }
    .ym-vlist li ul li a,
    .ym-vlist li ul li a:visited {
      background-color: #f8f8f8;
      color: #333; }
    .ym-vlist li ul li a:focus,
    .ym-vlist li ul li a:hover,
    .ym-vlist li ul li a:active {
      background-color: #888;
      color: #fff; }
    .ym-vlist li ul li ul li a,
    .ym-vlist li ul li ul li strong,
    .ym-vlist li ul li ul li span {
      width: 70%;
      padding-left: 30%; }
    .ym-vlist li ul li ul li a,
    .ym-vlist li ul li ul li a:visited {
      background-color: #f0f0f0;
      color: #222; }
    .ym-vlist li ul li ul li a:focus,
    .ym-vlist li ul li ul li a:hover,
    .ym-vlist li ul li ul li a:active {
      background-color: #888;
      color: #fff; }
    .ym-vlist li ul li ul li ul li a,
    .ym-vlist li ul li ul li ul li strong,
    .ym-vlist li ul li ul li ul li span {
      width: 60%;
      padding-left: 40%; }
    .ym-vlist li ul li ul li ul li a,
    .ym-vlist li ul li ul li ul li a:visited {
      background-color: #e8e8e8;
      color: #111; }
    .ym-vlist li ul li ul li ul li a:focus,
    .ym-vlist li ul li ul li ul li a:hover,
    .ym-vlist li ul li ul li ul li a:active {
      background-color: #888;
      color: #fff; }

  /* title */
  .ym-vtitle {
    font-weight: bold;
    font-size: 100%;
    width: 90%;
    padding: 3px 0px 3px 10%;
    margin: 0;
    color: #444;
    background-color: #fff;
    border-top: 2px #ddd solid; }
    .ym-vtitle + ul {
      border-top: 4px #888 solid; } }
@media all {
  /* 4 navigation levels defined */
  .footermenu {
    list-style-type: none;
    text-align: right;
    background: transparent;
    border: 0 none; }
    .footermenu ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      width: 100%;
      overflow: hidden; }
    .footermenu li {
      float: left;
      width: 100%;
      margin: 0;
      padding: 0;
      list-style-type: none;
      line-height: 1em; }
    .footermenu a,
    .footermenu strong,
    .footermenu span {
      display: block;
      padding: 3px 0px 3px 10%;
      text-decoration: none; }
    .footermenu a:hover {
      background-color: transparent;
      text-decoration: underline; }
    .footermenu li.active {
      background-color: transparent; }
      .footermenu li.active strong {
        font-weight: bold; } }
@media screen and (max-width: 760px) {
  #footermenu {
    text-align: center; } }
@media screen and (max-width: 480px) {
  #footermenu {
    text-align: left; } }
@media screen {
  .ym-form {
    background: #f4f4f4;
    border: 2px #fff solid;
    margin: 0 0 1.5em 0;
    -webkit-box-shadow: 0 0 4px #ddd;
    box-shadow: 0 0 4px #ddd; }
    .ym-form fieldset {
      position: static;
      background: transparent;
      margin: 0.75em 0 0.75em 0;
      padding: 0 0.5em; }
    .ym-form legend {
      background: transparent;
      color: #000;
      font-size: 1.2em;
      line-height: 1.25em;
      font-weight: bold;
      padding: 0 0.5em; }
    .ym-form label,
    .ym-form .ym-label {
      color: #666;
      line-height: 1.5;
      padding-top: 0.25em; }
    .ym-form .ym-fbox {
      padding: 0 1em;
      margin: 1em 0 0.5em 0; }
    .ym-form .ym-fbox-footer {
      background: #ececec;
      border-top: 1px #e0e0e0 solid;
      padding: 1.5em 1em;
      margin: 0; }
    .ym-form .ym-fbox + .ym-fbox {
      margin: 0.5em 0; }
    .ym-form .ym-fbox:last-child {
      margin-bottom: 1em; }
    .ym-form .ym-fbox + .ym-fbox-footer {
      margin: 1em 0 0 0; }
    .ym-form .ym-fbox :last-child,
    .ym-form .ym-fbox-footer :last-child {
      margin-bottom: 0; }
    .ym-form .ym-fbox-heading {
      font-size: 1em;
      font-size: 100%;
      color: #000;
      margin: 1em; }
    .ym-form .ym-fbox-check:focus + label {
      color: #000; }
    .ym-form .ym-gbox-left {
      padding: 0 4px 0 0; }
    .ym-form .ym-gbox-right {
      padding: 0 0 0 4px; }
    .ym-form .ym-gbox {
      padding: 0 2px 0 2px; }

  /**
  * @section styling form elements
  *
  */
  .ym-form input,
  .ym-form textarea,
  .ym-form select {
    border: 1px solid #ddd;
    line-height: 1em;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-box-shadow: inset 0 0 4px #eee;
    box-shadow: inset 0 0 4px #eee; }
  .ym-form input,
  .ym-form textarea {
    padding: 4px 0.3em; }
  .ym-form select {
    padding: 3px 2px 3px 1px; }
  .ym-form input:focus,
  .ym-form select:focus,
  .ym-form textarea:focus,
  .ym-form input:hover,
  .ym-form select:hover,
  .ym-form textarea:hover,
  .ym-form input:active,
  .ym-form select:active,
  .ym-form textarea:active {
    border: 1px #888 solid;
    background: #fff; }
  .ym-form optgroup {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: bold; }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="image"],
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"] {
    border: 0 none !important;
    background: transparent !important; }
  .ym-form .ym-message {
    color: #666;
    margin-bottom: 0.5em; }
  .ym-form .ym-required {
    color: #800;
    font-weight: bold; }
  .ym-form input:valid,
  .ym-form textarea:valid {
    background-color: #fff; }
  .ym-form input:invalid,
  .ym-form textarea:invalid {
    background-color: #fdd; }
  .ym-form .ym-error label {
    color: #800;
    font-weight: normal; }
  .ym-form .ym-error input,
  .ym-form .ym-error select,
  .ym-form .ym-error textarea {
    border: 1px #800 solid; }
  .ym-form .ym-error input:hover,
  .ym-form .ym-error input:focus,
  .ym-form .ym-error select:hover,
  .ym-form .ym-error select:focus,
  .ym-form .ym-error textarea:hover,
  .ym-form .ym-error textarea:focus {
    border: 1px #800 solid !important; }
  .ym-form .ym-error .ym-message {
    color: #800;
    font-weight: bold;
    margin-top: 0; }

  /**
  * @section Buttons
  * inspired from: Catalin Rosu (http://www.red-team-design.com/just-another-awesome-css3-buttons)
  */
  .ym-button,
  .ym-form button,
  .ym-form input[type="button"],
  .ym-form input[type="reset"],
  .ym-form input[type="submit"] {
    display: inline-block;
    white-space: nowrap;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eee), color-stop(100%, #ccc));
    background-image: -webkit-linear-gradient(top, #eee, #ccc);
    background-image: -moz-linear-gradient(top, #eee, #ccc);
    background-image: -ms-linear-gradient(top, #eee, #ccc);
    background-image: linear-gradient(to bottom, #eee,#ccc);
    background-color: #eee;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC');
    zoom: 1;
    border: 1px solid #777;
    border-radius: .2em;
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    color: #333 !important;
    cursor: pointer;
    font: normal 1em/2em Arial, Helvetica;
    margin: 0 0.75em 0 0;
    padding: 0 1.5em;
    overflow: visible;
    /* removes extra side spacing in IE */
    text-decoration: none !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
    .ym-button:hover,
    .ym-form button:hover,
    .ym-form input[type="button"]:hover,
    .ym-form input[type="reset"]:hover,
    .ym-form input[type="submit"]:hover {
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #ddd));
      background-image: -webkit-linear-gradient(top, #fafafa, #ddd);
      background-image: -moz-linear-gradient(top, #fafafa, #ddd);
      background-image: -ms-linear-gradient(top, #fafafa, #ddd);
      background-image: linear-gradient(to bottom, #fafafa,#ddd);
      background-color: #fafafa;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFFAFAFA', endColorstr='#FFDDDDDD');
      zoom: 1; }
    .ym-button:active,
    .ym-form button:active,
    .ym-form input[type="button"]:active,
    .ym-form input[type="reset"]:active,
    .ym-form input[type="submit"]:active {
      -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ccc), color-stop(100%, #bbb));
      background-image: -webkit-linear-gradient(top, #ccc, #bbb);
      background-image: -moz-linear-gradient(top, #ccc, #bbb);
      background-image: -ms-linear-gradient(top, #ccc, #bbb);
      background-image: linear-gradient(to bottom, #ccc,#bbb);
      background-color: #ccc;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCCCCCC', endColorstr='#FFBBBBBB');
      zoom: 1;
      position: relative;
      top: 1px; }
    .ym-button:focus,
    .ym-form button:focus,
    .ym-form input[type="button"]:focus,
    .ym-form input[type="reset"]:focus,
    .ym-form input[type="submit"]:focus {
      outline: 0;
      background: #fafafa; }

  /* Button size-scaling classes */
  .ym-button {
    /* 21px */
    /* 18px */
    /* 12px */
    /* 10px */ }
    .ym-button.ym-xlarge {
      font-size: 1.5em; }
    .ym-button.ym-large {
      font-size: 1.2857em; }
    .ym-button.ym-small {
      font-size: 0.8571em; }
    .ym-button.ym-xsmall {
      font-size: 0.7143em; }

  /* Button color scheme: primary */
  .ym-button.ym-primary,
  .ym-form button.ym-primary,
  .ym-form input[type="button"].ym-primary,
  .ym-form input[type="reset"].ym-primary,
  .ym-form input[type="submit"].ym-primary {
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #88e), color-stop(100%, #66c));
    background-image: -webkit-linear-gradient(top, #88e, #66c);
    background-image: -moz-linear-gradient(top, #88e, #66c);
    background-image: -ms-linear-gradient(top, #88e, #66c);
    background-image: linear-gradient(to bottom, #88e,#66c);
    background-color: #88e;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF8888EE', endColorstr='#FF6666CC');
    zoom: 1;
    border: 1px solid #007;
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8); }
    .ym-button.ym-primary:hover,
    .ym-form button.ym-primary:hover,
    .ym-form input[type="button"].ym-primary:hover,
    .ym-form input[type="reset"].ym-primary:hover,
    .ym-form input[type="submit"].ym-primary:hover {
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #88f), color-stop(100%, #66d));
      background-image: -webkit-linear-gradient(top, #88f, #66d);
      background-image: -moz-linear-gradient(top, #88f, #66d);
      background-image: -ms-linear-gradient(top, #88f, #66d);
      background-image: linear-gradient(to bottom, #88f,#66d);
      background-color: #88f;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF8888FF', endColorstr='#FF6666DD');
      zoom: 1; }
    .ym-button.ym-primary:active,
    .ym-form button.ym-primary:active,
    .ym-form input[type="button"].ym-primary:active,
    .ym-form input[type="reset"].ym-primary:active,
    .ym-form input[type="submit"].ym-primary:active {
      -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #88c), color-stop(100%, #66a));
      background-image: -webkit-linear-gradient(top, #88c, #66a);
      background-image: -moz-linear-gradient(top, #88c, #66a);
      background-image: -ms-linear-gradient(top, #88c, #66a);
      background-image: linear-gradient(to bottom, #88c,#66a);
      background-color: #88c;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF8888CC', endColorstr='#FF6666AA');
      zoom: 1; }
    .ym-button.ym-primary:focus,
    .ym-form button.ym-primary:focus,
    .ym-form input[type="button"].ym-primary:focus,
    .ym-form input[type="reset"].ym-primary:focus,
    .ym-form input[type="submit"].ym-primary:focus {
      outline: 0;
      background: #88f; }

  /* Button color scheme: success */
  .ym-button.ym-success,
  .ym-form button.ym-success,
  .ym-form input[type="button"].ym-success,
  .ym-form input[type="reset"].ym-success,
  .ym-form input[type="submit"].ym-success {
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6b6), color-stop(100%, #494));
    background-image: -webkit-linear-gradient(top, #6b6, #494);
    background-image: -moz-linear-gradient(top, #6b6, #494);
    background-image: -ms-linear-gradient(top, #6b6, #494);
    background-image: linear-gradient(to bottom, #6b6,#494);
    background-color: #6b6;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66BB66', endColorstr='#FF449944');
    zoom: 1;
    border: 1px solid #070;
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8); }
    .ym-button.ym-success:hover,
    .ym-form button.ym-success:hover,
    .ym-form input[type="button"].ym-success:hover,
    .ym-form input[type="reset"].ym-success:hover,
    .ym-form input[type="submit"].ym-success:hover {
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6c6), color-stop(100%, #5a5));
      background-image: -webkit-linear-gradient(top, #6c6, #5a5);
      background-image: -moz-linear-gradient(top, #6c6, #5a5);
      background-image: -ms-linear-gradient(top, #6c6, #5a5);
      background-image: linear-gradient(to bottom, #6c6,#5a5);
      background-color: #6c6;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66CC66', endColorstr='#FF55AA55');
      zoom: 1; }
    .ym-button.ym-success:active,
    .ym-form button.ym-success:active,
    .ym-form input[type="button"].ym-success:active,
    .ym-form input[type="reset"].ym-success:active,
    .ym-form input[type="submit"].ym-success:active {
      -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6a6), color-stop(100%, #484));
      background-image: -webkit-linear-gradient(top, #6a6, #484);
      background-image: -moz-linear-gradient(top, #6a6, #484);
      background-image: -ms-linear-gradient(top, #6a6, #484);
      background-image: linear-gradient(to bottom, #6a6,#484);
      background-color: #6a6;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66AA66', endColorstr='#FF448844');
      zoom: 1; }
    .ym-button.ym-success:focus,
    .ym-form button.ym-success:focus,
    .ym-form input[type="button"].ym-success:focus,
    .ym-form input[type="reset"].ym-success:focus,
    .ym-form input[type="submit"].ym-success:focus {
      outline: 0;
      background: #6c6; }

  /* Button color scheme: warning */
  .ym-button.ym-warning,
  .ym-form button.ym-warning,
  .ym-form input[type="button"].ym-warning,
  .ym-form input[type="reset"].ym-warning,
  .ym-form input[type="submit"].ym-warning {
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #da4), color-stop(100%, #b72));
    background-image: -webkit-linear-gradient(top, #da4, #b72);
    background-image: -moz-linear-gradient(top, #da4, #b72);
    background-image: -ms-linear-gradient(top, #da4, #b72);
    background-image: linear-gradient(to bottom, #da4,#b72);
    background-color: #da4;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFDDAA44', endColorstr='#FFBB7722');
    zoom: 1;
    border: 1px solid #970;
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8); }
    .ym-button.ym-warning:hover,
    .ym-form button.ym-warning:hover,
    .ym-form input[type="button"].ym-warning:hover,
    .ym-form input[type="reset"].ym-warning:hover,
    .ym-form input[type="submit"].ym-warning:hover {
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eb5), color-stop(100%, #c83));
      background-image: -webkit-linear-gradient(top, #eb5, #c83);
      background-image: -moz-linear-gradient(top, #eb5, #c83);
      background-image: -ms-linear-gradient(top, #eb5, #c83);
      background-image: linear-gradient(to bottom, #eb5,#c83);
      background-color: #eb5;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFEEBB55', endColorstr='#FFCC8833');
      zoom: 1; }
    .ym-button.ym-warning:active,
    .ym-form button.ym-warning:active,
    .ym-form input[type="button"].ym-warning:active,
    .ym-form input[type="reset"].ym-warning:active,
    .ym-form input[type="submit"].ym-warning:active {
      -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c94), color-stop(100%, #a62));
      background-image: -webkit-linear-gradient(top, #c94, #a62);
      background-image: -moz-linear-gradient(top, #c94, #a62);
      background-image: -ms-linear-gradient(top, #c94, #a62);
      background-image: linear-gradient(to bottom, #c94,#a62);
      background-color: #c94;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCC9944', endColorstr='#FFAA6622');
      zoom: 1; }
    .ym-button.ym-warning:focus,
    .ym-form button.ym-warning:focus,
    .ym-form input[type="button"].ym-warning:focus,
    .ym-form input[type="reset"].ym-warning:focus,
    .ym-form input[type="submit"].ym-warning:focus {
      outline: 0;
      background: #da4; }

  /* Button color scheme: danger */
  .ym-button.ym-danger,
  .ym-form button.ym-danger,
  .ym-form input[type="button"].ym-danger,
  .ym-form input[type="reset"].ym-danger,
  .ym-form input[type="submit"].ym-danger {
    -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b66), color-stop(100%, #944));
    background-image: -webkit-linear-gradient(top, #b66, #944);
    background-image: -moz-linear-gradient(top, #b66, #944);
    background-image: -ms-linear-gradient(top, #b66, #944);
    background-image: linear-gradient(to bottom, #b66,#944);
    background-color: #b66;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFBB6666', endColorstr='#FF994444');
    zoom: 1;
    border: 1px solid #700;
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8); }
    .ym-button.ym-danger:hover,
    .ym-form button.ym-danger:hover,
    .ym-form input[type="button"].ym-danger:hover,
    .ym-form input[type="reset"].ym-danger:hover,
    .ym-form input[type="submit"].ym-danger:hover {
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c66), color-stop(100%, #a55));
      background-image: -webkit-linear-gradient(top, #c66, #a55);
      background-image: -moz-linear-gradient(top, #c66, #a55);
      background-image: -ms-linear-gradient(top, #c66, #a55);
      background-image: linear-gradient(to bottom, #c66,#a55);
      background-color: #c66;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCC6666', endColorstr='#FFAA5555');
      zoom: 1; }
    .ym-button.ym-danger:active,
    .ym-form button.ym-danger:active,
    .ym-form input[type="button"].ym-danger:active,
    .ym-form input[type="reset"].ym-danger:active,
    .ym-form input[type="submit"].ym-danger:active {
      -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a55), color-stop(100%, #844));
      background-image: -webkit-linear-gradient(top, #a55, #844);
      background-image: -moz-linear-gradient(top, #a55, #844);
      background-image: -ms-linear-gradient(top, #a55, #844);
      background-image: linear-gradient(to bottom, #a55,#844);
      background-color: #a55;
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFAA5555', endColorstr='#FF884444');
      zoom: 1; }
    .ym-button.ym-danger:focus,
    .ym-form button.ym-danger:focus,
    .ym-form input[type="button"].ym-danger:focus,
    .ym-form input[type="reset"].ym-danger:focus,
    .ym-form input[type="submit"].ym-danger:focus {
      outline: 0;
      background: #c66; }

  /* pseudo elements don't work on input */
  .ym-form button:before,
  .ym-button:before {
    background: #ccc;
    background: rgba(0, 0, 0, 0.1);
    float: left;
    width: 1em;
    text-align: center;
    font-size: 1.5em;
    margin: 0 1em 0 -1em;
    padding: 0 .2em;
    -webkit-box-shadow: 1px 0 0 rgba(0, 0, 0, 0.5), 2px 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.5), 2px 0 0 rgba(255, 255, 255, 0.5);
    border-radius: .15em 0 0 .15em;
    pointer-events: none; }

  .ym-add:before {
    content: "\271A"; }

  .ym-delete:before {
    content: "\2718"; }

  .ym-close:before {
    content: "\2715"; }

  .ym-edit:before {
    content: "\270E"; }

  .ym-email:before {
    content: "\2709"; }

  .ym-like:before {
    content: "\2764"; }

  .ym-next:before {
    content: "\279C"; }

  .ym-play:before {
    content: "\25B6"; }

  .ym-reply:before {
    content: "\27A5"; }

  .ym-save:before {
    content: "\2714"; }

  .ym-sign:before {
    content: "\270D"; }

  .ym-spark:before {
    content: "\2737"; }

  .ym-support:before {
    content: "\2706"; }

  .ym-star:before {
    content: "\2605"; }

  /* removes extra inner spacing in Firefox */
  .ym-form button::-moz-focus-inner {
    border: 0;
    padding: 0; }

  /* If line-height can't be modified, then fix Firefox spacing with padding */
  .ym-form input[type=button]::-moz-focus-inner,
  .ym-form input[type=reset]::-moz-focus-inner,
  .ym-form input[type=submit]::-moz-focus-inner {
    padding: .4em; }

  /* The disabled styles */
  .ym-form button[disabled],
  .ym-form button[disabled]:hover,
  .ym-form input[type=button][disabled],
  .ym-form input[type=button][disabled]:hover,
  .ym-form input[type=reset][disabled],
  .ym-form input[type=reset][disabled]:hover,
  .ym-form input[type=submit][disabled],
  .ym-form input[type=submit][disabled]:hover,
  .ym-button.ym-disabled,
  .ym-button.ym-disabled:hover {
    background: #eee;
    color: #aaa !important;
    border-color: #aaa;
    cursor: default;
    text-shadow: none;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none; }

  /* ie6 support styles - redefined buttons, because of missing support for attribute selectors */
  * html .ym-button,
  * html .ym-form button {
    display: inline-block;
    white-space: nowrap;
    background-color: #ccc;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#cccccc');
    border: 1px solid #777;
    color: #333 !important;
    cursor: pointer;
    font: normal 1em/2em Arial, Helvetica;
    margin: 1.5em 0.75em 0 0;
    padding: 0 1.5em;
    overflow: visible;
    /* removes extra side spacing in IE */
    text-decoration: none !important; }
  * html .ym-form button:focus,
  * html .ym-button:focus {
    outline: 0;
    background: #fafafa; }
  * html .ym-form button:hover,
  * html .ym-button:hover {
    background-color: #ddd;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fafafa', EndColorStr='#dddddd'); }
  * html .ym-form button:active,
  * html .ym-button:active {
    background-color: #bbb;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cccccc', EndColorStr='#bbbbbb');
    position: relative;
    top: 1px; }
  * html .ym-button.ym-disabled,
  * html .ym-button.ym-disabled:hover {
    background: #eee;
    color: #aaa !important;
    border-color: #aaa;
    cursor: default;
    text-shadow: none;
    position: static; }
  * html .ym-button {
    /* Button size-scaling classes */
    /* 21px */
    /* 18px */
    /* 12px */
    /* 10px */ }
    * html .ym-button.ym-primary {
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#8888ee', EndColorStr='#6666cc'); }
    * html .ym-button.ym-success {
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#66bb66', EndColorStr='#449944'); }
    * html .ym-button.ym-warning {
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ddaa44', EndColorStr='#BB7722'); }
    * html .ym-button.ym-danger {
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#bb6666', EndColorStr='#994444'); }
    * html .ym-button.ym-xlarge {
      font-size: 1.5em; }
    * html .ym-button.ym-large {
      font-size: 1.2857em; }
    * html .ym-button.ym-small {
      font-size: 0.8571em; }
    * html .ym-button.ym-xsmall {
      font-size: 0.7143em; } }
/* ORG
$ym-h1-font-size			: 48;
$ym-h2-font-size			: 32;
$ym-h3-font-size			: 24;
$ym-h4-font-size			: 21;
$ym-h5-font-size			: 18;
$ym-h6-font-size			: 14;
$ym-text-big-font-size		: 16;
$ym-text-small-font-size	: 12;
*/
@media all {
  /*!
  * @section global typography settings
  *
  * vertical rhythm settings (based on em-unit)
  * -------------------------------------------
  * basefont-size:  15px (93.75%)
  * line-height  :  21px (factor: 1.4) */
  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * {
    font-size: 100%; }

  /**
  * (en) reset monospaced elements to font size 16px in all browsers
  * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
  *
  * @see: http://webkit.org/blog/67/strange-medium/
  */
  textarea,
  pre,
  code,
  kbd,
  samp,
  var,
  tt {
    font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier; }

  /*! font-size: 15px; */
  body {
    font-family: "Fira Sans", "droid_serifregular", Georgia, "Times New Roman", Times, serif;
    font-size: 93.75%;
    color: #444; }

  /*--- Headings | Überschriften ------------------------------------------------------------------------*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Fira Sans", "droid_sansregular", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #161e21;
    margin: 0; }

  h1 {
    /*! font-size: 30px; */
    font-size: 200%;
    line-height: 1.4;
    margin: 0 0 0.7em 0; }

  h2 {
    /*! font-size: 23px; */
    font-size: 153.3333333333%;
    line-height: 1.8260869565;
    margin: 0 0 0.9130434783em 0; }

  h3 {
    /*! font-size: 21px; */
    font-size: 140%;
    line-height: 1;
    margin: 0 0 1em 0; }

  h4 {
    /*! font-size: 18px; */
    font-size: 120%;
    line-height: 1.1666666667;
    margin: 0 0 1.1666666667em 0; }

  h5 {
    /*! font-size: 14px; */
    font-size: 93.3333333333%;
    line-height: 1.5;
    margin: 0 0 1.5em 0; }

  h6 {
    /*! font-size: 13px; */
    font-size: 86.6666666667%;
    font-weight: bold;
    line-height: 1.6153846154;
    margin: 0 0 1.6153846154em 0; }

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */
  ul,
  ol,
  dl {
    font-size: 100%;
    line-height: 1.4;
    margin: 0 0 1.4em 0; }

  ul {
    list-style-type: disc; }

  ol {
    list-style-type: decimal; }

  ul ul {
    list-style-type: circle;
    margin-top: 0; }

  ol ol {
    list-style-type: lower-latin;
    margin-top: 0; }

  ol ul {
    list-style-type: circle;
    margin-top: 0; }

  li {
    font-size: 100%;
    line-height: 1.4;
    margin-left: 1.2em; }

  dt {
    font-weight: bold; }

  dd {
    margin: 0 0 1.4em 0.8em; }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
  p {
    font-size: 100%;
    line-height: 1.4;
    margin: 0 0 1.4em 0; }

  blockquote,
  cite,
  q {
    font-family: "Fira Sans", "droid_serifregular", Georgia, "Times New Roman", Times, serif;
    font-style: italic; }

  blockquote {
    background: transparent;
    color: #666;
    margin: 1.4em 0 0 1.5em; }

  strong,
  b {
    font-weight: bold; }

  em,
  i {
    font-style: italic; }

  big {
    /*! font-size: 16px; */
    font-size: 106.6666666667%;
    line-height: 1.3125; }

  small {
    /*! font-size: 12px; */
    font-size: 80%;
    line-height: 1.75; }

  pre,
  code,
  kbd,
  tt,
  samp,
  var {
    font-size: 100%; }

  pre {
    font-size: 100%;
    line-height: 1.4;
    margin: 0 0 1.4em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word; }

  pre,
  code {
    color: #800; }

  kbd,
  samp,
  var,
  tt {
    color: #666;
    font-weight: bold; }

  var,
  dfn {
    font-style: italic; }

  acronym,
  abbr {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help; }

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }

  sup {
    top: -0.5em; }

  sub {
    bottom: -0.25em; }

  mark {
    background: #ff0;
    color: #000; }

  hr {
    color: #fff;
    background: transparent;
    margin: 0 0 0.7em 0;
    padding: 0 0 0.6333333333em 0;
    border: 0;
    border-bottom: 1px #eee solid; }

  /*--- Links ----------------------------------------------------------------------------------------- */
  a {
    color: #4d87c7;
    background: transparent;
    text-decoration: none; }

  a:active {
    outline: none; }

  /* (en) maximum constrast for tab focus - change with great care */
  /* (en) Maximaler Kontrast für Tab Focus - Ändern Sie diese Regel mit Bedacht */
  a:hover,
  a:focus {
    background-color: transparent;
    color: #9cbb2b;
    text-decoration: none; }

  /* --- images ------------------ */
  img,
  figure {
    margin: 0; }

  .flexible {
    margin-bottom: 1.4em;
    max-width: 100%;
    height: auto; }

  /* IE6 workaround - 2% space for possible borders */
  * html .flexible {
    width: 98%; }

  .bordered {
    margin-bottom: 1.4em;
    border: 2px #eee solid;
    border: 2px white solid;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }

  /**
  * ----------------------------------------------------------------------- #
  *
  * Generic Content Classes
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */
  .highlight {
    color: #c30; }

  .dimmed {
    color: #888; }

  .box {
    border-radius: 0.3em;
    border-width: 1px;
    border-style: solid;
    border-color: #888;
    border-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
    color: #444;
    color: rgba(0, 0, 0, 0.8);
    padding: 1.3333333333em;
    margin: 0 0 1.4em 0; }
    .box > *:last-child {
      margin-bottom: 0; }

  .label {
    font-family: Verdana, Geneva, sans-serif;
    padding: 1px 6px 2px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    white-space: nowrap;
    border-radius: 3px;
    background: #06C;
    color: #fff;
    font-size: 10px;
    line-height: 12px; }

  .info {
    background: #f4f4f4; }

  .success {
    background: #8c8; }

  .warning {
    background: #cc8; }

  .error {
    background: #c88; }

  .float-left {
    float: left;
    display: inline;
    margin: 0 1em 1.4em 0; }

  .float-right {
    float: right;
    display: inline;
    margin: 0 0 1.4em 1em; }

  .center {
    display: block;
    text-align: center;
    margin: 0 auto 1.4em auto; }

  /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Tables | Tabellen
  *
  * (en) Generic classes for table-width and design definition
  * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  *
  * @section content-tables
  */
  table {
    width: 100%;
    border-collapse: collapse;
    color: #444;
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
    margin: 0 0 1.2666666667em 0; }
    table.narrow {
      margin: 0 0 1.3333333333em 0; }
      table.narrow th,
      table.narrow td {
        padding: 0 0.5em;
        line-height: 1.3333333333; }
    table.fixed {
      table-layout: fixed; }
    table.bordertable {
      border: 1px #ccc solid; }
      table.bordertable thead th {
        background: #e0e0e0;
        border-right: 1px #ccc solid;
        border-bottom: 1px #ccc solid; }
      table.bordertable tbody th[scope="row"] {
        background: #f0f0f0; }
      table.bordertable tbody th {
        border-right: 1px solid #ccc; }
      table.bordertable tbody td {
        border-right: 1px solid #ccc; }

  caption {
    font-variant: small-caps; }

  th,
  td {
    line-height: 1.4em;
    vertical-align: top;
    padding: 0.6666666667em 0.5em; }

  th *:first-child,
  td *:first-child {
    margin-top: 0; }

  th.nowrap,
  td.nowrap {
    white-space: nowrap; }

  thead th {
    text-align: left;
    color: #000;
    border-bottom: 2px #000 solid; }

  tbody {
    /* highlight row on mouse over */ }
    tbody th {
      text-align: left;
      border-top: 1px solid #ccc; }
    tbody td {
      text-align: left;
      border-top: 1px solid #ccc; }
    tbody tr:hover th,
    tbody tr:hover td {
      background: #f8f8f8; } }
@media screen {
  /* force vertical scrollbar */
  body {
    overflow-y: scroll; }

  /* Layout Module Configuration */
  .ym-wrapper {
    max-width: 1030px;
    margin: 0 auto; }

  .ym-wbox {
    padding: 0 3em; }

  img {
    margin-bottom: 1.4em;
    max-width: 100%;
    height: auto; }

  /* fallback for missing media queries support*/
  body > header, body > nav, body > main, body > footer {
    min-width: 760px; }

  /* Basic Element Styling */
  header {
    color: #ccc;
    /* IE6 support - 2% space for borders */ }
    header .center-header {
      width: 1500px;
      max-width: 100%;
      margin: auto;
      position: relative;
      height: auto; }
    header img {
      height: auto;
      max-width: 100%;
      display: block;
      -webkit-box-shadow: 0px 40px 50px -17px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 40px 50px -17px rgba(0, 0, 0, 0.75);
      box-shadow: 0px 40px 50px -17px rgba(0, 0, 0, 0.75); }
    header * html img {
      width: 98%; }
    header #logo {
      position: absolute;
      top: 30px;
      left: 15%;
      z-index: 1000; }

  main .ym-wrapper {
    padding-top: 30px;
    background-color: #fff;
    position: relative; }
  main .flag {
    position: absolute;
    top: 42px;
    right: -80px;
    width: 80px;
    height: 80px;
    background-color: rgba(170, 170, 170, 0.8);
    border-radius: 0 15px 15px 0;
    -webkit-box-shadow: 13px 20px 52px -6px #222222;
    -moz-box-shadow: 13px 20px 52px -6px #222222;
    box-shadow: 13px 20px 52px -6px #222222; }
    main .flag .flag-inner {
      padding-top: 10px;
      transform: rotate(270deg); }
  main .info {
    margin-bottom: 1.5em;
    background-color: #f5f5f5; }

  footer .ym-wrapper {
    background: #eee;
    color: #444; }
    footer .ym-wrapper p {
      margin: 0; }
    footer .ym-wrapper .ym-wbox {
      padding: 1.5em; }

  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin-bottom: 2em; }

  .ym-gbox {
    padding: 0 1.5em; }

  .ym-gbox-left {
    padding: 0 1.5em 0 0; }

  .ym-gbox-right {
    padding: 0 0 0 1.5em; }

  /* skip links styling */
  .ym-skiplinks a.ym-skip:focus,
  .ym-skiplinks a.ym-skip:active {
    color: #fff;
    background: #333;
    border-bottom: 1px #000 solid;
    padding: 10px 0;
    text-align: center;
    text-decoration: none; }

  .tx-myflat table.monthMultiRow {
    width: auto;
    height: 320px; }

  .tx-myflat table.monthMultiRow
  .tx-cal-controller .even {
    background-color: transparent; }

  .news .news-list-view .article {
    padding-bottom: 0;
    margin-bottom: 0; }
    .news .news-list-view .article a {
      background-color: transparent; }
  .news .news-list-view .header h3 {
    margin-bottom: 10px; }
  .news .news-list-view .header h3 a {
    color: #161e21; }
  .news .news-list-view .metadaten span {
    display: inline-block;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid #ddd; }
  .news .news-list-view .metadaten span:last-child {
    border-right: 0; }
  .news .news-list-view .footer {
    clear: both;
    padding: 10px 0 0 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    border-top: none;
    margin-top: 0;
    margin-right: 2em;
    color: #888; }

  div.tx-seminars-pi1 h3 {
    font-size: 130%;
    margin: 0 0 0.8em 0; }
  div.tx-seminars-pi1 #tx-seminars-pi1-registration-form #tx-seminars-pi1-registration-banking-data {
    position: relative; }
  div.tx-seminars-pi1 #tx-seminars-pi1-registration-form .tx-seminars-pi1-registration-method-of-payment dd {
    margin-right: 0; }
    div.tx-seminars-pi1 #tx-seminars-pi1-registration-form .tx-seminars-pi1-registration-method-of-payment dd label {
      padding-left: 10px; }
  div.tx-seminars-pi1 #tx-seminars-pi1-registration-form legend {
    font-weight: bold; }
  div.tx-seminars-pi1 #tx-seminars-pi1-registration-form dt {
    font-weight: normal; }
  div.tx-seminars-pi1 #tx-seminars-pi1-registration-form input, div.tx-seminars-pi1 #tx-seminars-pi1-registration-form textarea, div.tx-seminars-pi1 #tx-seminars-pi1-registration-form .tx-seminars-pi1-registration-country select {
    width: auto; }

  div.content .tx-myflat .bookingEnd {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff0000+50,ffffff+50 */
    background: red;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, red 50%, white 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, red 50%, white 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, red 50%, white 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#ffffff',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */ }
  div.content .tx-myflat .bookingStart {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+50,ff0000+50 */
    background: white;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, white 50%, red 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, white 50%, red 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, white 50%, red 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ff0000',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */ }
  div.content .tx-myflat .bookedWeekend, div.content .tx-myflat .bookedDay {
    background-color: red; }
  div.content .tx-myflat table {
    border-collapse: collapse; }
    div.content .tx-myflat table td {
      line-height: 1em; }
    div.content .tx-myflat table.monthMultiRow {
      height: 250px; }
      div.content .tx-myflat table.monthMultiRow .monthNameMultiRow {
        font-size: 150%;
        margin: 0;
        padding: 0; } }
/* reset fallback values in modern browsers */
@media screen and (min-width: 0px) {
  body > header, body > nav, body > main, body > footer {
    min-width: 0; } }
@media screen and (max-width: 760px) {
  /* Linearisation for Grid- and Column-Module, based on CSS class .linearize-level-1 */
  .linearize-level-1, .linearize-level-1 > [class*="ym-c"], .linearize-level-1 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important; }
  .linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], .linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden; }

  .secondary {
    border-top: 1px #888 solid;
    margin-top: 1.5em !important;
    padding-top: 1.5em !important; }

  main aside .ym-gbox-right {
    border: 0 none; } }
@media screen and (max-width: 480px) {
  /* Linearisation for Grid- and Column-Module, based on CSS class .linearize-level-2 */
  .linearize-level-2, .linearize-level-2 > [class*="ym-c"], .linearize-level-2 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important; }
  .linearize-level-2 > [class*="ym-c"] > [class*="ym-cbox"], .linearize-level-2 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden; }

  header .ym-wbox {
    padding: 0.75em 10px; }
  header h1 {
    font-size: 1.5em;
    line-height: 1em;
    margin: 0; }

  footer .ym-wbox,
  .ym-wbox,
  nav .ym-hlist ul {
    padding-left: 10px;
    padding-right: 10px; }

  nav .ym-hlist ul,
  nav .ym-hlist li {
    display: block;
    float: none;
    width: auto;
    text-align: left; } }
/* import print layout | Druck-Layout einbinden */
/* ORG
$ym-h1-font-size			: 48;
$ym-h2-font-size			: 32;
$ym-h3-font-size			: 24;
$ym-h4-font-size			: 21;
$ym-h5-font-size			: 18;
$ym-h6-font-size			: 14;
$ym-text-big-font-size		: 16;
$ym-text-small-font-size	: 12;
*/
@media print {
  /**
  * @section basic layout preparation
  */
  /* (en) change font size unit to [pt] - avoids problems with [px] in Gecko based browsers */
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit [px] in Gecko-Browsern vermeiden */
  body {
    font-size: 10pt;
    padding: 0 5px; }

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  nav,
  .ym-searchform {
    display: none; }

  /*------------------------------------------------------------------------------------------------------*/
  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid; } }
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on May 17, 2018 */

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