@charset "UTF-8";
/*!
 * Accordion v2.7.2
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
.ac { margin-top: 15px;}
.ac > .ac-q {font-size: 20px; line-height: 24px; font-weight: normal; color: #fff; padding: 1rem 1rem 1rem 30px; background: #c09732; margin: 0; text-decoration: none; display: block; cursor: pointer; position: relative;}
.is-active.ac > .ac-q{background: #8b6810;}
.ac > .ac-q::before {position: absolute; top: 50%; left: 10px; content: '+'; text-align: center; width: 15px; -webkit-transform: translate(0, -50%); transform: translate(0, -50%);}
.ac > .ac-a {overflow: hidden; -webkit-transition-property: all; transition-property: all; -webkit-transition-timing-function: ease; transition-timing-function: ease; border: solid 1px #c09732;}
.ac > .ac-a p {font-size: 18px; line-height: 26px; margin: 0; padding: 10px;}
.ac.js-enabled > .ac-a {visibility: hidden;}
.ac.is-active > .ac-a {visibility: visible;}
.ac.is-active > .ac-q::before {content: '\2013';}