@charset "UTF-8";
/**
 *
 * Hamminkeln
 *
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i);
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) YAML core stylesheet
 * (de) YAML Basis-Stylesheet
 *
 * Don't make any changes in this file!
 * Your changes should be placed in any css-file in your own stylesheet folder.
 *
 * @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         4.1.2
 */
/*** apply a natural box layout model to all elements (NOT a part of YAML!) ***/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 *  @section Normalisation Module
 */
/* (en) Global reset of paddings and margins for all HTML elements */
* {
  margin: 0;
  padding: 0;
}

/* (en) Correction: margin/padding reset caused too small select boxes. */
option {
  padding-left: 0.4em;
}

select {
  padding: 1px;
}

/*
* (en) Global fix of the Italics bugs in IE 5.x and IE 6
*/
* 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
*/
body {
  font-size: 100%;
  background: #fff;
  color: #000;
  text-align: left;
}

/* (en) avoid visible outlines on DIV and h[x] elements in Webkit browsers */
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 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* (en) HTML5 - default media element styles */
audio,
canvas,
video {
  display: inline-block;
}

/* (en) HTML5 - don't show <audio> element if there aren't controls */
audio:not([controls]) {
  display: none;
}

/* (en) HTML5 - add missing styling in IE & old FF for hidden attribute */
[hidden] {
  display: none;
}

/* (en) Prevent iOS text size adjust after orientation change, without disabling user zoom. */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* (en) set correct box-modell in IE8/9 plus remove 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 */
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 */
svg:not(:root) {
  overflow: hidden;
}

/* (en) Address margin not present in IE 8/9 and Safari 5 */
figure {
  margin: 0;
}

/* (en) Clear borders for <fieldset> and <img> elements */
fieldset,
img {
  border: 0 solid;
}

/* (en) new standard values for lists, blockquote, cite and tables */
ul,
ol,
dl {
  margin: 0 0 1em 1em;
}

li {
  line-height: 1.5em;
  margin-left: 0.8em;
}

dt {
  font-weight: 600;
}

dd {
  margin: 0 0 1em 0.8em;
}

blockquote {
  background: #f2f2f2;
  border: 1px #000 solid;
  margin: 0 0 1em 0;
  padding: 1.5em;
}

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 */
.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 */
.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 */
.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;
*/
.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
*/
@media only screen and (min-width: 835px) {
  .ym-columnar input,
  .ym-columnar textarea,
  .ym-columnar select {
    float: left;
    margin-right: -3px;
    width: 55%;
  }

  .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 */
@media only screen and (min-width: 835px) {
  .ym-columnar fieldset .ym-fbox-button,
  fieldset.ym-columnar .ym-fbox-button {
    padding-left: 30%;
  }
}
/**
* @section Accessibility Module
*
* (en) skip links and hidden content
*/
/* (en) classes for invisible elements in the base layout */
.ym-skip,
.ym-hideme,
.ym-print {
  position: absolute;
  top: -32768px;
  left: -32768px;
}

/* (en) make skip links visible when using tab navigation */
.ym-skip:focus,
.ym-skip:active {
  position: static;
  top: 0;
  left: 0;
}

/* skiplinks:technical setup */
.ym-skiplinks {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
}

.ym-skiplinks .ym-skip:focus,
.ym-skiplinks .ym-skip:active {
  background: #078930;
  outline: 0 none;
  position: absolute;
  right: 0;
  left: 0%;
  z-index: 12;
}

/*** IE hacks ***/
/**
 * (en) YAML core stylesheet - structure-independent bugfixes of IE/Win CSS-bugs
 */
body {
  o\verflow: visible;
}

/**
* (en) HTML5 - default media element styles
*/
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  zoom: 1;
}

audio,
canvas,
video {
  *display: inline;
  *zoom: 1;
}

/**
* (en) enable bicubic interpolation of images on scaling
*/
img {
  -ms-interpolation-mode: bicubic;
  zoom: 1;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* (en) Stability fixes with 'position:relative'
*
* Essential for correct scaling in IE7 (body). IE5 must get static positioned body instead.
* Helpful to fix several possible problems in older IE versions (#main).
*/
body, #main {
  position: relative;
}

* html body {
  position: static;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* (en) Clearfix adjustents for containing floats in IE
*/
.ym-clearfix {
  zoom: 1;
}

/* hasLayout aktivieren */
/*------------------------------------------------------------------------------------------------------*/
/**
* (en) Bugfix for partially displayed column separators
*/
* html .ym-col1,
* html .ym-col2,
* html .ym-col3 {
  position: relative;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* (en) Preventing several css bugs by forcing "hasLayout"
*/
body {
  height: 1%;
}

.ym-wrapper, .ym-wbox, #header, #nav, #main, #footer {
  zoom: 1;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* Disappearing List-Background Bug
*/
* html ul, * html ol, * html dl {
  position: relative;
}

/**
* List-Numbering Bug
*/
body ol li {
  display: list-item;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* Browser-based image scaling (not)
*/
* html .flexible {
  zoom: 1;
}

/**
* Form related bugfixes
*/
button, input {
  *overflow: visible !important;
}

table button, table input {
  *overflow: auto;
}

fieldset, legend {
  position: relative;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* Global adjustments/fixes for YAML's form module
*/
.ym-form,
.ym-form div,
.ym-form div * {
  zoom: 1;
}

.ym-form input,
.ym-form textarea {
  padding-left: 1% !important;
  padding-right: 1% !important;
  width: 100%;
}
@media only screen and (min-width: 835px) {
  .ym-form input,
  .ym-form textarea {
    width: 68%;
  }
}

.ym-form select {
  padding-left: 1% !important;
  padding-right: 1% !important;
  width: 100%;
}
@media only screen and (min-width: 835px) {
  .ym-form select {
    width: 70%;
  }
}

.ym-form .ym-fbox-wrap {
  display: block;
  overflow: hidden;
  margin-right: -5px;
}

.ym-fbox-wrap input,
.ym-fbox-wrap textarea,
.ym-full input,
.ym-full textarea {
  width: 98%;
  margin-right: -3px;
}

.ym-fbox-wrap select,
.ym-full select {
  width: 100%;
  margin-right: -3px;
}

/* ie6 support helper class */
* html .ym-form .ym-fbox-check input {
  display: inline !important;
  width: auto !important;
  background: transparent !important;
  border: 0 none !important;
  padding: 0 !important;
}

* html .ym-form .ym-fbox-wrap .ym-fbox-check input {
  margin-left: 0;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* (en) Workaround for 'collapsing margin at #col3' when using CSS-property clear
*    Left margin of #col3 collapses when using clear:both in 1-3-2 (or 2-3-1) layout and right column is the
*    longest and left column is the shortest one. For IE6 and IE7 a special workaround was developed
*    in YAML.
*/
html .ym-ie-clearing {
  /* (en) Only a small help for debugging */
  position: static;
  /* (en) Make container visible in IE */
  display: block;
  /* (en) No fix possible in IE5.x, normal clearing used instead */
  \clear: both;
  /* (en) forcing clearing-like behavior with a simple oversized container in IE6 & IE7*/
  width: 100%;
  line-height: 0;
  font-size: 0px;
  margin: -2px 0 -1em 1px;
}

* html .ym-ie-clearing {
  margin: -2px 0 -1em 0;
}

.ym-cbox {
  margin-bottom: -2px;
}

/* (en) avoid horizontal scrollbars in IE7 in borderless layouts because of negative margins */
html {
  margin-right: 1px;
}

* html {
  margin-right: 0;
}

/* (en) Bugfix:Essential for IE7 */
.ym-col3 {
  position: relative;
}

/*------------------------------------------------------------------------------------------------------*/
/**
* IE/Win Guillotine Bug
*/
@media screen, projection {
  /**
  * (en) IE-Adjustments for content columns and subtemplates
  */
  .ym-col1, .ym-col2 {
    display: inline;
  }

  /* Fix for:"Linking to anchors in elements within the containing block" Problem in IE5.x & IE 6.0 */
  .ym-grid {
    overflow: hidden;
    display: block;
  }

  * html .ym-grid {
    overflow: visible;
  }

  .ym-gl,
  .ym-gr {
    display: inline;
  }

  /* transform CSS tables back into floats */
  .ym-equalize .ym-gl {
    float: left;
    display: inline;
    padding-bottom: 32767px;
    margin-bottom: -32767px;
  }

  .ym-equalize .ym-gr {
    float: right;
    margin-left: -5px;
    display: inline;
    padding-bottom: 32767px;
    margin-bottom: -32767px;
  }

  .no-ie-padding .ym-gl,
  .no-ie-padding .ym-gr {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /**
  * Internet Explorer and the Expanding Box Problem
  */
  * html .ym-cbox-left,
  * html .ym-cbox-right,
  * html .ym-cbox {
    word-wrap: break-word;
  }

  /* avoid growing widths */
  * html .ym-gbox,
  * html .ym-gbox-left,
  * html .ym-gbox-right {
    word-wrap: break-word;
    o\verflow: hidden;
  }
}
/* screen-FULLPAGE-layout (alternative: PAGE layout from "yaml_folder/yaml/screen/") */
/**
 * default screen stylesheet - FULLPAGE-layout type layout
 */
@media screen {
  /* force vertical scrollbar */
  body {
    overflow-y: scroll;
  }

  /* Layout Module Configuration */
  .ym-wrapper {
    max-width: 80em;
    margin: 0 auto;
  }

  .ym-wbox {
    padding: 1.5em;
  }

  /* fallback for missing media queries support*/
  body > header, body > nav, body > main, body > footer {
    min-width: 760px;
  }

  main .info {
    margin-bottom: 1.5em;
  }

  main aside .ym-gbox-right {
    border-left: 1px #ddd solid;
  }

  footer p {
    margin: 0;
  }

  footer .ym-wbox {
    padding: 1.5em;
  }

  /* skip links styling */
  .ym-skiplinks a.ym-skip:focus,
  .ym-skiplinks a.ym-skip:active {
    color: #fff;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
  }
}
/* 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: 835px) {
  /* 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;
  }

  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;
  }
}
/* typography */
/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @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         4.1.2
 */
/*
* @section global typography settings
*
* vertical rhythm settings (based on em-unit)
* -------------------------------------------
* basefont-size:  14px (87.5%)
* line-height  :  21px (factor: 1.5) */
/* (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: 14px; */
body {
  font-family: "Open Sans", Helvetica, Arial, "Lucida Grande", Lucida, sans-serif;
  font-size: 87.5%;
  color: #444444;
}

/*--- Headings | Überschriften ------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", Helvetica, Arial, "Lucida Grande", Lucida, sans-serif;
  font-weight: 600;
  margin: 0;
}

h1 {
  line-height: 0.875;
  margin: 0 0 0.4375em 0;
}

h2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.4em;
  margin: 0 0 0.65625em 0;
}

h3 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.4em;
  margin: 0 0 .6em 0;
}

h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4em;
  margin: 0 0 .6em 0;
}

h5 {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.4em;
  margin: 0 0 .6em 0;
}

h6 {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4em;
  margin: 0;
}

/* --- Lists | Listen  -------------------------------------------------------------------------------- */
ul,
ol,
dl {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul ul {
  list-style-type: circle;
  margin-top: 0;
  margin-bottom: 0;
}

ul ol {
  list-style-type: lower-latin;
  margin-top: 0;
  margin-bottom: 0;
}

ol ol {
  list-style-type: lower-latin;
  margin-top: 0;
  margin-bottom: 0;
}

ol ul {
  list-style-type: circle;
  margin-top: 0;
  margin-bottom: 0;
}

li {
  font-size: 100%;
  line-height: 1.5;
  margin-left: 1.2em;
}

dt {
  font-weight: 600;
}

dd {
  margin: 0 0 1.5em 0.8em;
}

/* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
p, address {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

address {
  font-style: normal;
}

blockquote,
cite,
q {
  font-family: "Droid Serif", Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

blockquote {
  margin: 1.5em 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

big {
  /* font-size: 16px; */
  font-size: 114.28571%;
  line-height: 1.3125;
}

small {
  /* font-size: 12px; */
  font-size: 85.71429%;
  line-height: 1.75;
}

pre,
code,
kbd,
tt,
samp,
var {
  font-size: 100%;
}

pre {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

pre,
code {
  color: #880000;
}

kbd,
samp,
var,
tt {
  color: #666666;
  font-weight: bold;
}

var,
dfn {
  font-style: italic;
}

acronym,
abbr {
  border-bottom: 1px #aaa dotted;
  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: yellow;
  color: black;
}

hr {
  color: #fff;
  margin: 1em 0 2em 0;
  border-bottom: 1px #ffffff solid;
}

/*--- Links ----------------------------------------------------------------------------------------- */
a {
  color: #000;
  background: transparent;
  text-decoration: underline;
}

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: #078930;
  color: white;
}

main a:hover img, main a:focus img {
  outline: 5px #078930 solid;
}

#cat02 a:hover, #cat02 a:focus {
  background-color: #0b7898;
}

#cat02 main a:hover img, #cat02 main a:focus img {
  outline: 5px #0b7898 solid;
}

#cat03 a:hover, #cat03 a:focus {
  background-color: #2f36ca;
}

#cat03 main a:hover img, #cat03 main a:focus img {
  outline: 5px #2f36ca solid;
}

#cat04 a:hover, #cat04 a:focus {
  background-color: #7d31d3;
}

#cat04 main a:hover img, #cat04 main a:focus img {
  outline: 5px #7d31d3 solid;
}

#cat05 a:hover, #cat05 a:focus {
  background-color: #d8327c;
}

#cat05 main a:hover img, #cat05 main a:focus img {
  outline: 5px #d8327c solid;
}

#cat06 a:hover, #cat06 a:focus {
  background-color: #e90000;
}

#cat06 main a:hover img, #cat06 main a:focus img {
  outline: 5px #e90000 solid;
}

/* --- images ------------------ */
img,
figure {
  margin: 0;
}

img {
  vertical-align: bottom;
}

.flexible {
  margin-bottom: 1.5em;
  max-width: 100%;
  height: auto;
}

/* IE6 workaround - 2% space for possible borders */
* html .flexible {
  width: 98%;
}

.bordered {
  margin-bottom: 1.5em;
  border: 1px #000 solid;
}

/**
* ----------------------------------------------------------------------- #
*
* Generic Content Classes
*
* (en) standard classes for positioning and highlighting
* (de) Standardklassen zur Positionierung und Hervorhebung
*
* @section content-generic-classes
*/
.highlight {
  color: #cc3300;
}

.dimmed {
  color: #888888;
}

.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.42857em;
  margin: 0 0 1.5em 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: #dddddd;
}

.success {
  background: #88cc88;
}

.warning {
  background: #cccc88;
}

.error {
  background: #cc8888;
}

.float-left {
  display: inline-block;
  float: left;
  margin: 0 1em 1.5em 0;
}

.float-right {
  display: inline;
  float: right;
  margin: 0 0 1.5em 1em;
}

.center {
  display: block;
  text-align: center;
  margin: 0 auto 1.5em 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: #444444;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  margin: 0 0 1.35714em 0;
}

table.narrow {
  margin: 0 0 1.42857em 0;
}

table.narrow th,
table.narrow td {
  padding: 0 0.5em;
  line-height: 1.42857;
}

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;
}

th,
td {
  line-height: 1.5em;
  vertical-align: top;
  padding: 0.71429em 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;
}

/*** Horizontal List ***/
/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Horizontal list navigation "hlist"
 * (de) Horizontale Navigationsliste "hlist"
 *
 * @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         4.1.2
 */
@media all {
  .ym-hlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 1em;
    background: #CECECE;
  }

  .ym-hlist ul {
    margin: 0;
    padding: 0.5em 1.5em;
    display: inline;
    float: right;
  }

  .ym-hlist ul li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1;
    list-style-type: none;
    margin: 0 .25em 0 0;
    padding: 0;
  }

  .ym-hlist ul li a, .ym-hlist ul li strong {
    background: transparent;
    color: #000;
    display: block;
    font-size: 1em;
    line-height: 2em;
    padding: 0 0.5em;
    font-weight: normal;
    text-decoration: none;
    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: rgba(255, 255, 255, 0.25);
    border-radius: 0.2em;
    text-decoration: none;
    outline: 0 none;
  }

  .ym-hlist ul li.active {
    background: #666;
    background: rgba(255, 255, 255, 0.3);
    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;
  }
}
/*** Vertical List ***/
/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Vertical list navigation "vlist"
 * (de) Vertikale Navigationsliste "vlist"
 *
 * @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         4.1.2
 */
@media all {
  /* 4 navigation levels defined */
  .ym-vlist {
    margin: 0 0 1.5em 0;
    list-style-type: none;
    background: transparent;
    border: 0 none;
  }

  .ym-vlist ul {
    list-style-type: none;
    margin: 0;
    padding: 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: #444;
  }

  .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;
  }
}
/*** custom CSS as an example ***/
body {
  background-color: #F1F1F1;
}

/* HEAD */
.ym-page {
  background-color: #F4F4F4;
}

#ym-qselect {
  border: 1px solid grey;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 425px;
  z-index: 800;
  width: 14em;
}

#ym-qselect ul {
  display: none;
}

/* MAIN */
.ym-col3 {
  margin: 0 0% 0 25%;
}

.ym-column {
  margin: 2em 0;
}

#ym-sliderbox {
  border: 1px solid grey;
  margin: 1em 0 1em 0;
  padding: 0.5em;
}

.ym-slider-img {
  float: left;
}

.ym-slider-txt {
  margin: 0 1em 0 23em;
}

#ym-sliderbox .bx-controls {
  padding: 0 0 0 1em;
}

#ym-sliderbox .bx-pager-item a, #ym-sliderbox .bx-controls-auto-item a {
  float: left;
  padding: 0 0.5em;
}

#ym-sliderbox .bx-controls:before {
  content: "";
  display: table;
}

#ym-sliderbox .bx-controls:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.ym-star,
.ym-star li {
  list-style: none;
}

#ym-social {
  margin-right: 2.5em;
}

#ym-social .ym-soc-icons {
  border: 1px solid grey;
  margin-bottom: 1em;
}

#ym-social ul li {
  list-style-type: none;
}

.ym-inbox {
  border: 1px solid grey;
  padding: 0.5em;
}

.ym-inbox ul li {
  list-style-type: none;
}

#ym-side-gallery {
  border: 1px solid grey;
  margin: 1em 2.5em 0 0;
  padding: 0.5em;
  width: 29%;
}

.ym-gallery-start li {
  display: inline-block;
  list-style-type: none;
}

.ym-events li {
  list-style-type: none;
}

#ym-breadcrumb {
  margin: 0 0 2em 0;
}

#ym-sitemap > div {
  border: 1px solid 000;
  margin-bottom: 1em;
  padding: 1em;
}
@media only screen and (min-width: 835px) {
  #ym-sitemap > div {
    float: left;
    padding: 1%;
    margin: 1%;
    width: 45%;
  }
}

.ym-box-styled {
  margin-bottom: 1em;
}

.ym-form {
  line-height: 3em;
  margin-bottom: 1em;
}

.ym-paging {
  border: 1px solid grey;
  margin-bottom: 2em;
  padding-bottom: 1em;
}

.ym-pages li {
  float: left;
  list-style: none;
}

.vevent .ym-date {
  margin-right: 5em;
}

/* FOOT */
footer address {
  margin: 1em 0 0 0;
}

#ym-footer .ym-grid {
  padding: 0.5em 0 0.5em 0;
}

.a5-meta, .a5-footer, .a5-socialmedia {
  display: none;
}

body {
  background: #a3aea4;
  color: #000;
}

.a5-page {
  background: #fff;
  overflow: hidden;
  padding: 0 20px;
}

.ym-wrapper {
  margin: 0 auto;
  max-width: 1270px;
}

#top {
  display: block;
  height: 76px;
}
@media only screen and (min-width: 835px) {
  #top {
    height: auto;
  }
}

.a5-header {
  border-bottom: 1px #000 solid;
  width: 100%;
}
@media only screen and (min-width: 835px) {
  .a5-header {
    display: table;
    padding-bottom: 68px;
    position: relative;
  }
}

@media only screen and (max-width: 834px) {
  #cat00 .a5-header {
    border-bottom: 0;
  }
}
.a5-search {
  background: #078930;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  z-index: 11;
}
.a5-search:target {
  padding: 80px 0 20px 0;
}
@media only screen and (min-width: 835px) {
  .a5-search {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: table-caption;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }
  .a5-search:target {
    padding: 0;
  }
}
.a5-search:before {
  background: #078930;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5000px;
  width: 15000px;
}
.a5-search .a5-searchbutton-open, .a5-search .a5-searchbutton-close {
  color: #000;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 110%;
  margin-top: 10px;
  min-height: 3em;
  padding: 10px 25px 10px 25px;
  position: absolute;
  right: 72px;
  top: -72px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 20;
}
.a5-search .a5-searchbutton-open span, .a5-search .a5-searchbutton-close span {
  display: block;
}
.a5-search .a5-searchbutton-open img, .a5-search .a5-searchbutton-close img {
  position: absolute;
  top: 5px;
  right: 5px;
}
.a5-search .a5-searchbutton-open:hover, .a5-search .a5-searchbutton-open:focus, .a5-search .a5-searchbutton-open:active, .a5-search .a5-searchbutton-close:hover, .a5-search .a5-searchbutton-close:focus, .a5-search .a5-searchbutton-close:active {
  color: #fff;
}
@media only screen and (min-width: 835px) {
  .a5-search .a5-searchbutton-open, .a5-search .a5-searchbutton-close {
    margin-top: 35px;
    min-height: 3.4em;
  }
  .a5-search .a5-searchbutton-open img, .a5-search .a5-searchbutton-close img {
    top: 10px;
  }
}
.a5-search .a5-searchbutton-close {
  right: 18px;
  top: 4px;
}
.a5-search .a5-mobile.a5-mobile {
  display: none;
}
@media only screen and (min-width: 480px) {
  .a5-search .a5-mobile.a5-mobile {
    display: inline;
  }
}
@media only screen and (min-width: 835px) {
  .a5-search .a5-searchbutton-open, .a5-search .a5-searchbutton-close {
    right: 0;
    top: 100%;
  }
}
.a5-search form, .a5-search .a5-searchbutton-close {
  display: none;
}
.a5-search:target form, .a5-search:target .a5-searchbutton-close {
  display: block;
}
.a5-search:target .a5-searchbutton-open {
  display: none;
}
.a5-search form {
  zoom: 1;
  margin: 0;
  padding: 6px 0;
  position: relative;
}
.a5-search form:before, .a5-search form:after {
  content: " ";
  display: table;
}
.a5-search form:after {
  clear: both;
}
.a5-search fieldset {
  float: right;
  margin: 0 14px 0 0;
}
@media only screen and (min-width: 835px) {
  .a5-search fieldset {
    margin: 0;
  }
}
.a5-search input {
  border: 0;
  border-radius: 1.4em;
  margin-right: 10px;
  padding: 10px;
  vertical-align: middle;
  width: 210px;
}
@media only screen and (min-width: 480px) {
  .a5-search input {
    width: 300px;
  }
}
.a5-search button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
}
.a5-search button:focus {
  outline: 5px #fff solid;
}
.a5-search button::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

.a5-logo {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.a5-logo h1 {
  zoom: 1;
  background: #fff;
  padding: 21px 20px;
  margin: 0;
  z-index: 10;
}
.a5-logo h1:before, .a5-logo h1:after {
  content: " ";
  display: table;
}
.a5-logo h1:after {
  clear: both;
}
@media only screen and (min-width: 480px) {
  .a5-logo h1 {
    padding: 10px 20px;
  }
}
.a5-logo h1 a:hover span, .a5-logo h1 a:active span {
  color: #000;
  text-decoration: underline;
}
.a5-logo h1 a:focus span {
  color: #000;
  outline: 5px #078930 solid;
}
.a5-logo img {
  float: left;
  vertical-align: bottom;
  width: 30px;
}
@media only screen and (min-width: 480px) {
  .a5-logo img {
    width: auto;
  }
}
.a5-logo span {
  float: left;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media only screen and (min-width: 480px) {
  .a5-logo span {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
.a5-logo img {
  margin-right: 10px;
}
@media only screen and (min-width: 835px) {
  .a5-logo {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }
  .a5-logo h1 {
    position: absolute;
    top: 160px;
    left: 20px;
  }
  .a5-logo span {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}

main {
  margin: 0 auto;
  max-width: 1270px;
  border-bottom: 1px #000 solid;
  display: block;
  padding: 40px 0;
}

.a5-main-wrapper {
  padding: 0 10px;
}

@media only screen and (max-width: 479px) {
  .float-left {
    float: none;
    margin-right: 0;
  }

  .float-right {
    float: none;
    margin-left: 0;
  }
}
@media only screen and (max-width: 834px) {
  main img {
    max-width: 100%;
  }
}
.nav-lang ul, .a5-nav-meta ul, .a5-nav-main ul, .a5-nav-sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-lang ul li, .a5-nav-meta ul li, .a5-nav-main ul li, .a5-nav-sub ul li {
  margin: 0;
  padding: 0;
}
.nav-lang li, .a5-nav-meta li, .a5-nav-main li, .a5-nav-sub li {
  display: inline;
}
.nav-lang a, .nav-lang strong, .a5-nav-meta a, .a5-nav-meta strong, .a5-nav-main a, .a5-nav-main strong, .a5-nav-sub a, .a5-nav-sub strong {
  display: block;
  text-decoration: none;
}

.hamburger {
  color: #000;
  cursor: pointer;
  display: block;
  height: 29px;
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: center;
  width: 32px;
  z-index: 100;
}
.hamburger:before, .hamburger:after {
  content: '';
  height: 12px;
  position: absolute;
  top: 4px;
  left: 2px;
  right: 2px;
  -webkit-transition: left .25s ease-in-out, right .25s ease-in-out;
  -moz-transition: left .25s ease-in-out, right .25s ease-in-out;
  -o-transition: left .25s ease-in-out, right .25s ease-in-out;
  transition: left .25s ease-in-out, right .25s ease-in-out;
}
.hamburger:before {
  border-top: 4px #000 solid;
  border-bottom: 4px #000 solid;
}
.hamburger:after {
  border-top: 4px #000 solid;
  height: 1px;
  top: 21px;
}
.hamburger:hover:before, .hamburger:hover:after, .hamburger:focus:before, .hamburger:focus:after {
  border-color: #fff;
  left: 4px;
  right: 4px;
}
.hamburger span {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media only screen and (min-width: 835px) {
  .hamburger {
    display: none;
  }
}

.a5-qselect {
  background: #056423;
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  padding: 10px;
  text-align: left;
}
.a5-qselect h2 {
  font-size: 19px;
  font-size: 1.1875rem;
  margin: 0;
  padding: 0;
  position: relative;
}
.a5-qselect h2 a, .a5-qselect h2 a:hover, .a5-qselect h2 a:active, .a5-qselect h2 a:focus {
  background: center center no-repeat transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='20px' height='16px' viewBox='0 0 20 16'%3E%3Cpolygon fill='%23fff' points='5.3,4.7 10,8.5 14.7,4.7 16,6.4 10,11.3 4,6.4 '/%3E%3C/svg%3E");
  background-size: 40px auto;
  height: 26px;
  position: absolute;
  top: 0;
  right: 10px;
  width: 30px;
}
.a5-qselect h2 a:hover, .a5-qselect h2 a:active {
  background-size: 30px auto;
}
.a5-qselect h2 a:focus {
  outline: 5px #078930 solid;
}
.a5-qselect h2 a:focus .ym-hideme {
  display: none;
}
.a5-qselect-open .a5-qselect h2 a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='20px' height='16px' viewBox='0 0 20 16'%3E%3Cpolygon fill='%23fff' points='14.7,11.3 10,7.5 5.3,11.3 4,9.6 10,4.7 16,9.6 '/%3E%3C/svg%3E");
}
.no-js .a5-qselect h2 a {
  display: none;
}
.a5-qselect ul {
  list-style: disc;
  margin: 0;
  padding: 10px 0;
}
.js .a5-qselect ul {
  display: none;
}
.a5-qselect-open .a5-qselect ul {
  display: block;
}
.a5-qselect a {
  color: #fff;
}
@media only screen and (min-width: 835px) {
  .a5-qselect {
    background: rgba(5, 100, 35, 0.8);
    font-size: 19px;
    font-size: 1.1875rem;
    padding: 20px 50px 20px 20px;
    position: absolute;
    top: 15%;
    right: 0;
  }
  .a5-qselect h2 {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .a5-qselect h2 a {
    display: none;
  }
  .a5-qselect ul, .js .a5-qselect ul {
    display: block;
    padding: 0;
  }
}

.a5-nav-main {
  background: #fff;
}
.js .a5-nav-main {
  display: none;
}
.a5-nav-open .a5-nav-main {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
  display: block;
  padding: 0 10px;
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  z-index: 9;
}
@media only screen and (min-width: 835px) {
  .a5-nav-main {
    background: none;
    padding: 60px 0 18px 20px;
  }
  .js .a5-nav-main {
    display: block;
  }
  .a5-nav-open .a5-nav-main {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 60px 0 18px 20px;
    position: static;
  }
}
@media only screen and (min-width: 835px) {
  .a5-nav-main {
    padding: 35px 0 38px 20px;
  }
}
.a5-nav-main ul {
  margin: 0;
  padding: 1em 0 0 0;
}
.a5-nav-main li {
  display: block;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 835px) {
  .a5-nav-main ul {
    zoom: 1;
    padding: 0;
  }
  .a5-nav-main ul:before, .a5-nav-main ul:after {
    content: " ";
    display: table;
  }
  .a5-nav-main ul:after {
    clear: both;
  }
  .a5-nav-main ul li {
    padding-right: 10px;
    float: left;
  }
  .a5-nav-main li:after {
    background: #000;
    content: '';
    height: 14px;
    position: absolute;
    right: 1px;
    bottom: 0;
    width: 8px;
  }
}
@media only screen and (min-width: 980px) {
  .a5-nav-main ul li {
    padding-right: 22px;
  }
  .a5-nav-main li:after {
    right: 2px;
    width: 18px;
  }
}
.a5-nav-main a, .a5-nav-main strong {
  border-bottom: 14px #000 solid;
  box-sizing: border-box;
  color: #000;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 .2em 0;
  padding: 10px 10px 5px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 835px) {
  .a5-nav-main a, .a5-nav-main strong {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
    padding: 10px 2px 5px 2px;
  }
}
@media only screen and (min-width: 980px) {
  .a5-nav-main a, .a5-nav-main strong {
    padding: 10px 10px 5px 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .a5-nav-main a, .a5-nav-main strong {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1280px) {
  .a5-nav-main a, .a5-nav-main strong {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
.a5-nav-main a:hover, .a5-nav-main a:focus, .a5-nav-main a:active {
  background: #000;
  color: #fff;
}
.a5-nav-main a.active, .a5-nav-main strong {
  background: #f5f5f5;
  color: #000;
}
.a5-nav-main .a5-nav-01:after {
  background-image: -webkit-linear-gradient(left, #078930, #0b7898);
  background-image: -moz-linear-gradient(left, #078930, #0b7898);
  background-image: -ms-linear-gradient(left, #078930, #0b7898);
  background-image: -o-linear-gradient(left, #078930, #0b7898);
  background-image: linear-gradient(to right left, #078930, #0b7898);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#078930', endColorstr='#0b7898', GradientType=1 );
}
.a5-nav-main .a5-nav-01 a, .a5-nav-main .a5-nav-01 strong {
  color: #078930;
  border-bottom-color: #078930;
}
.a5-nav-main .a5-nav-01 a.active, .a5-nav-main .a5-nav-01 strong, .a5-nav-main .a5-nav-01 a:hover, .a5-nav-main .a5-nav-01 a:focus, .a5-nav-main .a5-nav-01 a:active {
  background: #078930 !important;
  color: #fff;
}
.a5-nav-main .a5-nav-02:after {
  background-image: -webkit-linear-gradient(left, #0b7898, #2f36ca);
  background-image: -moz-linear-gradient(left, #0b7898, #2f36ca);
  background-image: -ms-linear-gradient(left, #0b7898, #2f36ca);
  background-image: -o-linear-gradient(left, #0b7898, #2f36ca);
  background-image: linear-gradient(to right left, #0b7898, #2f36ca);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b7898', endColorstr='#2f36ca', GradientType=1 );
}
.a5-nav-main .a5-nav-02 a, .a5-nav-main .a5-nav-02 strong {
  color: #0b7898;
  border-bottom-color: #0b7898;
}
.a5-nav-main .a5-nav-02 a.active, .a5-nav-main .a5-nav-02 strong, .a5-nav-main .a5-nav-02 a:hover, .a5-nav-main .a5-nav-02 a:focus, .a5-nav-main .a5-nav-02 a:active {
  background: #0b7898 !important;
  color: #fff;
}
.a5-nav-main .a5-nav-03:after {
  background-image: -webkit-linear-gradient(left, #2f36ca, #7d31d3);
  background-image: -moz-linear-gradient(left, #2f36ca, #7d31d3);
  background-image: -ms-linear-gradient(left, #2f36ca, #7d31d3);
  background-image: -o-linear-gradient(left, #2f36ca, #7d31d3);
  background-image: linear-gradient(to right left, #2f36ca, #7d31d3);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f36ca', endColorstr='#7d31d3', GradientType=1 );
}
.a5-nav-main .a5-nav-03 a, .a5-nav-main .a5-nav-03 strong {
  color: #2f36ca;
  border-bottom-color: #2f36ca;
}
.a5-nav-main .a5-nav-03 a.active, .a5-nav-main .a5-nav-03 strong, .a5-nav-main .a5-nav-03 a:hover, .a5-nav-main .a5-nav-03 a:focus, .a5-nav-main .a5-nav-03 a:active {
  background: #2f36ca !important;
  color: #fff;
}
.a5-nav-main .a5-nav-04:after {
  background-image: -webkit-linear-gradient(left, #7d31d3, #d8327c);
  background-image: -moz-linear-gradient(left, #7d31d3, #d8327c);
  background-image: -ms-linear-gradient(left, #7d31d3, #d8327c);
  background-image: -o-linear-gradient(left, #7d31d3, #d8327c);
  background-image: linear-gradient(to right left, #7d31d3, #d8327c);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d31d3', endColorstr='#d8327c', GradientType=1 );
}
.a5-nav-main .a5-nav-04 a, .a5-nav-main .a5-nav-04 strong {
  color: #7d31d3;
  border-bottom-color: #7d31d3;
}
.a5-nav-main .a5-nav-04 a.active, .a5-nav-main .a5-nav-04 strong, .a5-nav-main .a5-nav-04 a:hover, .a5-nav-main .a5-nav-04 a:focus, .a5-nav-main .a5-nav-04 a:active {
  background: #7d31d3 !important;
  color: #fff;
}
.a5-nav-main .a5-nav-05:after {
  background-image: -webkit-linear-gradient(left, #d8327c, #e90000);
  background-image: -moz-linear-gradient(left, #d8327c, #e90000);
  background-image: -ms-linear-gradient(left, #d8327c, #e90000);
  background-image: -o-linear-gradient(left, #d8327c, #e90000);
  background-image: linear-gradient(to right left, #d8327c, #e90000);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8327c', endColorstr='#e90000', GradientType=1 );
}
.a5-nav-main .a5-nav-05 a, .a5-nav-main .a5-nav-05 strong {
  color: #d8327c;
  border-bottom-color: #d8327c;
}
.a5-nav-main .a5-nav-05 a.active, .a5-nav-main .a5-nav-05 strong, .a5-nav-main .a5-nav-05 a:hover, .a5-nav-main .a5-nav-05 a:focus, .a5-nav-main .a5-nav-05 a:active {
  background: #d8327c !important;
  color: #fff;
}
.a5-nav-main .a5-nav-06 {
  padding-right: 0;
}
.a5-nav-main .a5-nav-06:after {
  content: none;
}
.a5-nav-main .a5-nav-06 a, .a5-nav-main .a5-nav-06 strong {
  color: #e90000;
  border-bottom-color: #e90000;
}
.a5-nav-main .a5-nav-06 a.active, .a5-nav-main .a5-nav-06 strong, .a5-nav-main .a5-nav-06 a:hover, .a5-nav-main .a5-nav-06 a:focus, .a5-nav-main .a5-nav-06 a:active {
  background: #e90000 !important;
  color: #fff;
}
.a5-nav-grid {
  margin: 0 0 2.2em 0;
}
.a5-nav-grid a {
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  margin: 1.2em 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.a5-nav-grid a:hover img, .a5-nav-grid a:focus img, .a5-nav-grid a:active img {
  outline: none;
}
.a5-nav-grid img {
  margin: 0;
}
.a5-nav-grid h3 {
  font-weight: 400;
  margin: 0;
  padding: .5em 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 480px) {
  .a5-nav-grid a {
    border: 1px #000 solid;
  }
  .a5-nav-grid h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 980px) {
  .a5-nav-grid h3 {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}

.a5-nav-sub {
  margin-bottom: 3em;
}
.a5-nav-sub h2.a5-mobile {
  background: #078930;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 20px 0;
  padding: 8px 20px;
  position: relative;
}
.a5-nav-sub h2 a, .a5-nav-sub h2 a:hover, .a5-nav-sub h2 a:active, .a5-nav-sub h2 a:focus {
  background: center center no-repeat transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='20px' height='16px' viewBox='0 0 20 16'%3E%3Cpolygon fill='%23fff' points='5.3,4.7 10,8.5 14.7,4.7 16,6.4 10,11.3 4,6.4 '/%3E%3C/svg%3E");
  background-size: 40px auto;
  height: 26px;
  position: absolute;
  top: .3em;
  right: 10px;
  width: 30px;
}
.a5-nav-sub h2 a:hover, .a5-nav-sub h2 a:active {
  background-size: 30px auto;
}
.a5-nav-sub h2 a:focus {
  outline: 5px #078930 solid;
}
.a5-nav-sub h2 a:focus .ym-hideme {
  display: none;
}
.a5-qselect-open .a5-nav-sub h2 a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='20px' height='16px' viewBox='0 0 20 16'%3E%3Cpolygon fill='%23fff' points='14.7,11.3 10,7.5 5.3,11.3 4,9.6 10,4.7 16,9.6 '/%3E%3C/svg%3E");
}
.no-js .a5-nav-sub h2 a {
  display: none;
}
#cat02 .a5-nav-sub h2.a5-mobile {
  background: #0b7898;
}
#cat03 .a5-nav-sub h2.a5-mobile {
  background: #2f36ca;
}
#cat04 .a5-nav-sub h2.a5-mobile {
  background: #7d31d3;
}
#cat05 .a5-nav-sub h2.a5-mobile {
  background: #d8327c;
}
#cat06 .a5-nav-sub h2.a5-mobile {
  background: #e90000;
}
.js .a5-nav-sub ul {
  display: none;
}
.a5-nav-sub-open .a5-nav-sub ul {
  display: block;
}
@media only screen and (min-width: 835px) {
  .a5-nav-sub {
    width: 87%;
  }
  .a5-nav-sub h2.a5-mobile {
    margin: 0;
    padding: 0;
    position: absolute;
    top: -32768px;
    left: -32768px;
  }
  .a5-nav-sub ul, .js .a5-nav-sub ul {
    display: block;
  }
}
.a5-nav-sub li {
  border-color: #000;
  border-style: solid;
  border-width: 0 0 1px 0;
  display: block;
}
.a5-nav-sub li:first-child {
  border-width: 1px 0;
}
.a5-nav-sub a, .a5-nav-sub strong {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  padding: 4px 20px;
}
.a5-nav-sub a:hover, .a5-nav-sub a:focus, .a5-nav-sub a:active {
  color: #fff;
}
.a5-nav-sub a.active, .a5-nav-sub strong {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='5px' height='9px' viewBox='0 0 5 9'%3E%3Cpolygon points='0,8 2.9,4.5 0,1 1.3,0 5,4.5 1.3,9 '/%3E%3C/svg%3E");
  background-position: 22px center;
  background-repeat: no-repeat;
  padding-left: 33px;
  font-weight: 600;
}
.a5-nav-sub ul ul li {
  background: #eee;
  border-color: #d5d5d5;
}
.a5-nav-sub ul ul li:last-child {
  border-bottom: 0;
}
.a5-nav-sub ul ul a, .a5-nav-sub ul ul strong {
  padding-left: 33px;
}
.a5-nav-sub ul ul a.active, .a5-nav-sub ul ul strong {
  background-position: 35px center;
  padding-left: 46px;
}
.a5-nav-sub ul ul ul li {
  background: #ddd;
  border-color: #ccc;
}
.a5-nav-sub ul ul ul a, .a5-nav-sub ul ul ul strong {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 46px;
}
.a5-nav-sub ul ul ul a.active, .a5-nav-sub ul ul ul strong {
  background-position: 48px center;
  padding-left: 56px;
}

.a5-nav-meta {
  background: #078930;
  margin: 10px 0;
  padding: .3em;
  text-align: center;
}
.a5-nav-meta a, .a5-nav-meta strong {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 .5em;
  padding: 0 .3em;
  text-decoration: underline;
}
.a5-nav-meta a.active, .a5-nav-meta strong, .a5-nav-meta a:hover, .a5-nav-meta a:focus, .a5-nav-meta a:active {
  background: #fff !important;
  color: #000;
}

#cat02 .a5-nav-meta {
  background: #0b7898;
}

#cat03 .a5-nav-meta {
  background: #2f36ca;
}

#cat04 .a5-nav-meta {
  background: #7d31d3;
}

#cat05 .a5-nav-meta {
  background: #d8327c;
}
#cat06 .a5-nav-meta {
  background: #e90000;
}
.a5-nav-trail {
  line-height: 180%;
  padding: 10px 0;
}
@media only screen and (min-width: 835px) {
  .a5-nav-trail {
    position: absolute;
    bottom: 25px;
    left: 10px;
  }
}
.a5-nav-trail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.a5-nav-trail li {
  display: inline;
  margin: 0;
  padding: 0;
}
.a5-nav-trail a, .a5-nav-trail strong {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='5px' height='9px' viewBox='0 0 5 9'%3E%3Cpolygon points='0,8 2.9,4.5 0,1 1.3,0 5,4.5 1.3,9 '/%3E%3C/svg%3E");
  background-position: 2px center;
  background-repeat: no-repeat;
  display: inline-block;
  font-weight: 400;
  line-height: 180%;
  margin-right: .6em;
  padding: 0 3px 0 10px;
}
.a5-nav-trail a:hover, .a5-nav-trail a:focus, .a5-nav-trail a:active {
  text-decoration: none;
}

a.btn {
  border: 1px #ccc solid;
  color: #000;
  display: inline-block;
  font-weight: 400;
  margin-top: .6em;
  padding: 6px 16px;
  position: relative;
  text-decoration: none;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
a.btn:hover, a.btn:active, a.btn:focus {
  background-color: #fff;
  border-color: #36322a;
  color: #36322a;
}

.a5-hero {
  margin: 0 calc(50% - 50vw);
  position: relative;
  text-align: center;
}
.a5-hero figure {
  margin: 0 -20%;
  -webkit-transition: margin .25s ease-in-out;
  -moz-transition: margin .25s ease-in-out;
  -o-transition: margin .25s ease-in-out;
  transition: margin .25s ease-in-out;
}
@media only screen and (min-width: 480px) {
  .a5-hero figure {
    margin: 0;
  }
}
@media only screen and (min-width: 835px) {
  .a5-hero figure {
    margin: 0 -30%;
  }
}
@media only screen and (min-width: 1280px) {
  .a5-hero figure {
    margin: 0;
  }
}
.a5-hero figure img {
  height: auto;
  max-width: 100%;
}
.a5-hero a:hover, .a5-hero a:focus, .a5-hero a:active {
  background: #fff;
  color: #078930;
}

.a5-idea {
  background: #078930;
  color: #fff;
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 130%;
  padding: 15px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}
.a5-idea img {
  margin: 0 0 10px 10px;
}
.a5-idea strong {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.a5-idea:hover, .a5-idea:focus, .a5-idea:active {
  background: #fff !important;
  color: #000 !important;
}
@media only screen and (max-width: 834px) {
  .a5-idea {
    zoom: 1;
    margin: 10px 0 0 0;
  }
  .a5-idea:before, .a5-idea:after {
    content: " ";
    display: table;
  }
  .a5-idea:after {
    clear: both;
  }
  .a5-idea br {
    display: none;
  }
  .a5-idea img {
    float: left;
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 834px) {
  .a5-idea span {
    display: inline-block;
    padding-top: 1.2em;
  }
}
@media only screen and (min-width: 835px) {
  .a5-idea {
    position: absolute;
    top: 150px;
    right: 0;
  }
}

#cat02 .a5-idea {
  background: #0b7898;
}

#cat03 .a5-idea {
  background: #2f36ca;
}

#cat04 .a5-idea {
  background: #7d31d3;
}

#cat05 .a5-idea {
  background: #d8327c;
}

#cat06 .a5-idea {
  background: #e90000;
}

.a5-news-list time {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.a5-news-list dt {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .4em;
}
.a5-news-list dd {
  margin-left: 0;
}

.a5-box {
  border: 1px #000 solid;
  margin: 0 0 1.5em 0;
  padding: 10px;
  position: relative;
}
.a5-box header img.icon {
  margin-bottom: 10px;
}
@media only screen and (min-width: 480px) {
  .a5-box {
    min-height: 100px;
    padding: 20px 10px 10px 80px;
  }
  .a5-box header img.icon {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.a5-box-contact {
  zoom: 1;
}
.a5-box-contact:before, .a5-box-contact:after {
  content: " ";
  display: table;
}
.a5-box-contact:after {
  clear: both;
}
.a5-box-contact p {
  margin: 0;
}
.a5-box-contact address {
  float: left;
  margin-right: 3em;
}
.a5-box-contact address:last-child {
  margin: 0;
}

.a5-tablestyle {
  display: table;
}
.a5-tablestyle dl {
  display: table-row;
  margin: 0;
}
.a5-tablestyle dt, .a5-tablestyle dd {
  display: table-cell;
  margin: 0;
  padding: 0;
}
.a5-tablestyle dt {
  font-weight: 400;
  padding-right: .8em;
}
@media only screen and (max-width: 379px) {
  .a5-tablestyle dt {
    display: table-row;
    font-weight: 600;
  }
  .a5-tablestyle dd {
    display: table-row;
  }
}

table thead th {
  background: #077f2d;
  border: 0;
  color: #fff;
}
table tr.a5-dark th {
  background: #067629;
}
table tr.a5-light th {
  background: #078930;
}
#cat02 table thead th {
  background: #0b7898;
}
#cat02 table tr.a5-dark th {
  background: #0a708e;
}
#cat02 table tr.a5-light th {
  background: #0c80a2;
}
#cat03 table thead th {
  background: #2f36ca;
}
#cat03 table tr.a5-dark th {
  background: #2d34c2;
}
#cat03 table tr.a5-light th {
  background: #343bd0;
}
#cat04 table thead th {
  background: #7d31d3;
}
#cat04 table tr.a5-dark th {
  background: #782cce;
}
#cat04 table tr.a5-light th {
  background: #8239d5;
}
#cat05 table thead th {
  background: #d32874;
}
#cat05 table tr.a5-dark th {
  background: #ca266f;
}
#cat05 table tr.a5-light th {
  background: #d8327c;
}
#cat06 table thead th {
  background: #da0000;
}
#cat06 table tr.a5-dark th {
  background: #d00000;
}
#cat06 table tr.a5-light th {
  background: #e90000;
}
table .a5-row1 th, table .a5-row1 td {
  background: #f4f5f4;
}
table .a5-bottom {
  vertical-align: bottom;
}
table tbody .a5-semi, table tbody .a5-row0 .a5-semi {
  background: #f1f1f1;
}
table tbody .a5-row1 .a5-semi {
  background: #e6e7e6;
}

.a5-table {
  margin-bottom: 1.5em;
  overflow: hidden;
  position: relative;
}
.a5-table .a5-table-inner {
  overflow-x: auto;
}

.a5-table.has-scroll:before, .a5-table.has-scroll:after {
  border-radius: 0 10px 10px 0 / 0 50% 50% 0;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
}

.a5-table.has-scroll:after {
  border-radius: 10px 0 0 10px / 50% 0 0 50%;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  left: 100%;
}

.a5-table.has-scroll div.a5-table-inner::-webkit-scrollbar {
  height: 12px;
}

.a5-table.has-scroll div.a5-table-inner::-webkit-scrollbar-track {
  background: #f0f0f0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
}

.a5-table.has-scroll div.a5-table-inner::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.a5-jumpbox li {
  float: left;
}
.a5-jumpbox a {
  background: #078930;
  color: #fff;
  display: block;
  overflow: hidden;
  margin: 0 2px 2px 0;
  padding: .3em 1.2em;
  position: relative;
  -webkit-transition: padding .4s ease;
  -moz-transition: padding .4s ease;
  transition: padding .4s ease;
  text-transform: uppercase;
}
.a5-jumpbox a:before {
  background: center center no-repeat transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='20px' height='16px' viewBox='0 0 20 16'%3E%3Cpolygon fill='%23fff' points='5.3,4.7 10,8.5 14.7,4.7 16,6.4 10,11.3 4,6.4 '/%3E%3C/svg%3E");
  background-size: 20px auto;
  content: '';
  height: 10px;
  position: absolute;
  top: -10px;
  left: .2em;
  -webkit-transition: top .4s ease;
  -moz-transition: top .4s ease;
  transition: top .4s ease;
  width: 20px;
}
.a5-jumpbox a:hover:before, .a5-jumpbox a:focus:before, .a5-jumpbox a:active:before {
  top: .8em;
}
.a5-jumpbox a:hover, .a5-jumpbox a:focus, .a5-jumpbox a:active {
  padding: .3em .6em .3em 1.8em;
}
#cat02 .a5-jumpbox a {
  background: #0b7898;
}
#cat03 .a5-jumpbox a {
  background: #2f36ca;
}
#cat04 .a5-jumpbox a {
  background: #7d31d3;
}
#cat05 .a5-jumpbox a {
  background: #d8327c;
}
#cat06 .a5-jumpbox a {
  background: #e90000;
}
.tabs .tabs-list {
  zoom: 1;
  list-style: none;
  margin: 0 0 1em 0;
  padding: 0;
}
.tabs .tabs-list:before, .tabs .tabs-list:after {
  content: " ";
  display: table;
}
.tabs .tabs-list:after {
  clear: both;
}

.ym-paging, .tabs-list {
  border: 0;
}
.ym-paging li, .tabs-list li {
  border-bottom: 5px #078930 solid;
  float: left;
  margin: 0 2px 10px 0;
  padding: 0;
}
.ym-paging a, .ym-paging strong, .tabs-list a, .tabs-list strong {
  display: block;
  min-width: 1.8em;
  padding: .3em .6em;
  text-align: center;
  text-decoration: none;
}
.ym-paging a:hover, .ym-paging a:focus, .ym-paging a:active, .ym-paging strong, .ym-paging .current a, .tabs-list a:hover, .tabs-list a:focus, .tabs-list a:active, .tabs-list strong, .tabs-list .current a {
  background: #078930;
  color: #fff;
}

#cat02 .ym-paging li {
  border-bottom-color: #0b7898;
}
#cat02 .ym-paging a:hover, #cat02 .ym-paging a:focus, #cat02 .ym-paging a:active, #cat02 .ym-paging strong {
  background: #0b7898;
}

#cat03 .ym-paging li {
  border-bottom-color: #2f36ca;
}
#cat03 .ym-paging a:hover, #cat03 .ym-paging a:focus, #cat03 .ym-paging a:active, #cat03 .ym-paging strong {
  background: #2f36ca;
}

#cat04 .ym-paging li {
  border-bottom-color: #7d31d3;
}
#cat04 .ym-paging a:hover, #cat04 .ym-paging a:focus, #cat04 .ym-paging a:active, #cat04 .ym-paging strong {
  background: #7d31d3;
}

#cat05 .ym-paging li {
  border-bottom-color: #d8327c;
}
#cat05 .ym-paging a:hover, #cat05 .ym-paging a:focus, #cat05 .ym-paging a:active, #cat05 .ym-paging strong {
  background: #d8327c;
}

#cat06 .ym-paging li {
  border-bottom-color: #e90000;
}
#cat06 .ym-paging a:hover, #cat06 .ym-paging a:focus, #cat06 .ym-paging a:active, #cat06 .ym-paging strong {
  background: #e90000;
}

ol.a5-simple, ul.a5-simple {
  list-style: outside none none;
  margin-left: 0;
}
ol.a5-simple li, ul.a5-simple li {
  margin: 0;
}

ol.a5-separated, ul.a5-separated {
  border-top: 1px solid #ccc;
}
ol.a5-separated li, ul.a5-separated li {
  border-bottom: 1px solid #ccc;
  padding: .5em 1em;
}
ol.a5-separated li.a5-row1, ul.a5-separated li.a5-row1 {
  background: #f4f5f4;
}

ol.a5-linklist a, ul.a5-linklist a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='5px' height='9px' viewBox='0 0 5 9'%3E%3Cpolygon points='0,8 2.9,4.5 0,1 1.3,0 5,4.5 1.3,9 '/%3E%3C/svg%3E");
  background-position: 2px center;
  background-repeat: no-repeat;
  display: inline-block;
  font-weight: 400;
  padding: 0 3px 0 10px;
}
ol.a5-linklist a:hover, ol.a5-linklist a:focus, ol.a5-linklist a:active, ul.a5-linklist a:hover, ul.a5-linklist a:focus, ul.a5-linklist a:active {
  text-decoration: none;
}

ul.a5-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.a5-gallery li {
  background: #f2f2f2;
  display: table;
  float: left;
  list-style: none;
  height: 200px;
  margin: 0 2px 2px 0;
  padding: 0;
  width: 200px;
}
ul.a5-gallery a {
  display: table;
  height: 200px;
  -webkit-transition: background .4s ease;
  -moz-transition: background .4s ease;
  transition: background .4s ease;
  width: 200px;
}
ul.a5-gallery img {
  -webkit-transition: transform .3s ease;
  -moz-transition: transform .3s ease;
  transition: transform .3s ease;
}
ul.a5-gallery a:hover img, ul.a5-gallery a:focus img, ul.a5-gallery a:active img {
  outline: 1px #fff solid !important;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
ul.a5-gallery figure {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.float-left figcaption, .float-right figcaption {
  font-size: 13px;
  font-size: 0.8125rem;
}

form ::-webkit-input-placeholder {
  color: #6c6c6c;
}
form ::-moz-placeholder {
  color: #6c6c6c;
}
form :-ms-input-placeholder {
  color: #6c6c6c;
}
form :-moz-placeholder {
  color: #6c6c6c;
}

.ym-form legend {
  font-weight: 700;
}
.ym-form input, .ym-form textarea {
  background: #f2f2f2;
  border: 1px #000 solid;
  padding: .4em .5em;
}
.ym-form label {
  padding: .4em 0;
}
.ym-form .a5-select-container {
  background: #f2f2f2;
  border: 1px #000 solid;
  padding: 0;
}
@media only screen and (min-width: 835px) {
  .ym-form .a5-select-container {
    float: left;
    margin-right: -3px;
    width: 68%;
  }
}
.ym-form .a5-select-container select {
  background: #f2f2f2;
  border: 0;
  width: 100%;
}
.ym-form .a5-select-container select option {
  padding: .3em;
}
.ym-form .ym-fbox-check input {
  background: none;
  border: none;
  padding: 0;
}
.ym-form .ym-error {
  background: #a74f4f;
  border: 2px solid #ff0000;
  color: #fff;
  margin: .8em 0;
  padding: .8em;
}
@media only screen and (min-width: 835px) {
  .ym-form .ym-error {
    padding: .8em 0;
  }
  .ym-form .ym-error label {
    padding-left: 1em;
  }
}
.ym-form .ym-error input, .ym-form .ym-error textarea {
  border-color: red;
}

.ym-fbox-text, .ym-fbox-select, .ym-fbox-check, .ym-fbox-button {
  padding: .4em 0;
}

.ym-fbox-button button {
  background: center center no-repeat transparent;
  background-color: #078930;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='5px' height='9px' viewBox='0 0 5 9'%3E%3Cpolygon fill='%23fff' points='0,8 2.9,4.5 0,1 1.3,0 5,4.5 1.3,9 '/%3E%3C/svg%3E");
  background-position: -10px .8em;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: .4em 1.2em;
  -webkit-transition: background-position .4s ease, padding .4s ease;
  -moz-transition: background-position .4s ease, padding .4s ease;
  transition: background-position .4s ease, padding .4s ease;
}
.ym-fbox-button button:hover, .ym-fbox-button button:focus, .ym-fbox-button button:active {
  background-position: 1em .8em;
  padding-right: .9em;
  padding-left: 1.5em;
}
#cat02 .ym-fbox-button button {
  background-color: #0b7898;
}
#cat03 .ym-fbox-button button {
  background-color: #2f36ca;
}
#cat04 .ym-fbox-button button {
  background-color: #7d31d3;
}
#cat05 .ym-fbox-button button {
  background-color: #d8327c;
}
#cat06 .ym-fbox-button button {
  background-color: #e90000;
}

.a5-navform {
  background-color: #f2f2f2;
  padding: 1em;
}

.a5-navform + .a5-navform {
  margin-top: -2em;
}

.a5-events time {
  display: block;
  padding-top: 1em;
}
.a5-events abbr {
  border: 0;
  font-weight: 700;
}
.a5-events abbr br {
  display: none;
}
.a5-events .p-name {
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 1em;
}
.a5-events .a5-more {
  background-color: #ccc;
  color: #000;
  display: none;
  float: right;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  height: 30px;
  line-height: 100%;
  margin: .5em 0 0 1em;
  text-align: center;
  text-decoration: none;
  width: 30px;
}
.a5-events .a5-more:before {
  content: '+';
}
.a5-events .a5-more:hover, .a5-events .a5-more:focus, .a5-events .a5-more:active {
  color: #fff;
}
.js .a5-events .a5-more {
  display: block;
}
.a5-events .a5-event-open .a5-more:before {
  content: '\2212';
}

.js .a5-event-entry {
  display: none;
}

.js .a5-event-open .a5-event-entry {
  display: block;
}

.a5-button-style {
  margin-bottom: .8em;
}
.a5-button-style a {
  background-color: #ccc;
  display: inline-block;
  padding: .4em .8em;
}

.a5-press-list {
  border-bottom: 1px #ccc solid;
}
.a5-press-list dt {
  border-top: 1px #ccc solid;
  font-size: 19px;
  font-size: 1.1875rem;
  padding: .8em 0;
}
.a5-press-list .a5-more {
  background-color: #ccc;
  color: #000;
  display: none;
  float: right;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  height: 30px;
  line-height: 100%;
  margin-left: 1em;
  text-align: center;
  text-decoration: none;
  width: 30px;
}
.a5-press-list .a5-more:before {
  content: '+';
}
.a5-press-list .a5-more:hover, .a5-press-list .a5-more:focus, .a5-press-list .a5-more:active {
  color: #fff;
}
.js .a5-press-list .a5-more {
  display: block;
}
.a5-press-list .a5-press-open .a5-more:before {
  content: '\2212';
}
.a5-press-list dd {
  margin: 0;
}
.a5-press-list dd.a5-aside {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: .2em 0 1.2em 0;
}

.js .a5-press-list dt + dd {
  display: none;
}

.js .a5-press-list dt.a5-press-open + dd {
  display: block;
}

.ym-search-list {
  border-bottom: 1px #ccc solid;
}
.ym-search-list dt {
  border-top: 1px #ccc solid;
  font-size: 19px;
  font-size: 1.1875rem;
  padding: .8em 1em;
}
.ym-search-list dd {
  margin: 0;
  padding: 0 1em;
}
.ym-search-list dd.a5-aside {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: .2em 1em 1.2em 1em;
}
.ym-search-list .a5-row1 {
  background: #f4f5f4;
}

.ym-sitemap h4 {
  border-bottom: 14px #078930 solid;
  color: #078930;
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
}
.ym-sitemap h4 a {
  color: #078930;
  display: block;
  padding: 10px 10px 5px 10px;
  text-decoration: none;
}
.ym-sitemap h4 a:hover, .ym-sitemap h4 a:focus, .ym-sitemap h4 a:active {
  background: #078930;
  color: #fff;
}
.ym-sitemap h4 strong {
  color: #078930;
  display: block;
  padding: 10px 10px 5px 10px;
}
.ym-sitemap ul {
  border-top: 1px #000 solid;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ym-sitemap li {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='5px' height='9px' viewBox='0 0 5 9'%3E%3Cpolygon points='0,8 2.9,4.5 0,1 1.3,0 5,4.5 1.3,9 '/%3E%3C/svg%3E");
  background-position: 2px .8em;
  background-repeat: no-repeat;
  border-bottom: 1px #000 solid;
  font-weight: 600;
  line-height: 220%;
  margin: 0;
  padding: 0 0 0 10px;
}
.ym-sitemap li li {
  font-weight: 400;
  padding-left: 16px;
  position: relative;
}
.ym-sitemap li li:last-child {
  border: 0;
}
.ym-sitemap #ym-scat02 h4 {
  border-color: #0b7898;
}
.ym-sitemap #ym-scat02 h4 a {
  color: #0b7898;
}
.ym-sitemap #ym-scat02 h4 a:hover, .ym-sitemap #ym-scat02 h4 a:focus, .ym-sitemap #ym-scat02 h4 a:active {
  background: #0b7898;
  color: #fff;
}
.ym-sitemap #ym-scat03 h4 {
  border-color: #2f36ca;
}
.ym-sitemap #ym-scat03 h4 a {
  color: #2f36ca;
}
.ym-sitemap #ym-scat03 h4 a:hover, .ym-sitemap #ym-scat03 h4 a:focus, .ym-sitemap #ym-scat03 h4 a:active {
  background: #2f36ca;
  color: #fff;
}
.ym-sitemap #ym-scat04 h4 {
  border-color: #7d31d3;
}
.ym-sitemap #ym-scat04 h4 a {
  color: #7d31d3;
}
.ym-sitemap #ym-scat04 h4 a:hover, .ym-sitemap #ym-scat04 h4 a:focus, .ym-sitemap #ym-scat04 h4 a:active {
  background: #7d31d3;
  color: #fff;
}
.ym-sitemap #ym-scat05 h4 {
  border-color: #d8327c;
}
.ym-sitemap #ym-scat05 h4 a {
  color: #d8327c;
}
.ym-sitemap #ym-scat05 h4 a:hover, .ym-sitemap #ym-scat05 h4 a:focus, .ym-sitemap #ym-scat05 h4 a:active {
  background: #d8327c;
  color: #fff;
}
.ym-sitemap #ym-scat06 h4 {
  border-color: #e90000;
}
.ym-sitemap #ym-scat06 h4 a {
  color: #e90000;
}
.ym-sitemap #ym-scat06 h4 a:hover, .ym-sitemap #ym-scat06 h4 a:focus, .ym-sitemap #ym-scat06 h4 a:active {
  background: #e90000;
  color: #fff;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #ccc;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  background: #fff;
  box-sizing: border-box;
  cursor: auto;
  margin: 0 auto;
  padding: 60px 20px 20px 20px;
  width: 70%;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 40px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #000;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close:focus {
  background: #078930;
  color: #fff !important;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #000;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #000;
}

.mfp-arrow-left:focus:before, .mfp-arrow-left .mfp-b:focus {
  border-right-color: #078930;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #000;
}

.mfp-arrow-right:focus:before, .mfp-arrow-right .mfp-b:focus {
  border-left-color: #078930;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #000;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .a5-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .ym-fbox-button button {
    line-height: 120%;
  }
}
.no-svg .a5-jumpbox a:before {
  background-image: url(/c1258043003db158/files/ie8_a5-jumpbox.png/$file/ie8_a5-jumpbox.png);
  background-position: 5px 0;
  background-repeat: no-repeat;
}
.no-svg ol.a5-linklist a, .no-svg ul.a5-linklist a,
.no-svg .ym-fbox-button button, .no-svg .ym-sitemap li,
.no-svg .a5-nav-trail a, .no-svg .a5-nav-trail strong {
  background-image: url(/c1258043003db158/files/ie8_a5-linklist.png/$file/ie8_a5-linklist.png);
}
.no-svg .a5-nav-sub a, .no-svg .a5-nav-sub strong {
  background-image: url(/c1258043003db158/files/ie8_a5-linklist.png/$file/ie8_a5-linklist.png);
  background-position: 8px center;
  background-repeat: no-repeat;
}
.no-svg .a5-top a {
  background-image: url(/c1258043003db158/files/ie8_top.png/$file/ie8_top.png);
}

