﻿@charset "UTF-8";
/*!
 * Accordion v2.8.0
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Micha? Strumpf
 * Published under MIT License
 */
.ac {
  margin:0 auto;
  margin-top: 10px;
  width:100%;max-width:100%;
  border: 1px solid #ddd;
  background-color: rgba(255,255,255,.3);
  box-sizing: border-box;
}

.ac > .ac-q {
  font: normal 1.0em 'Arial', sans-serif;
  color: #111;
  font-size:1.0em;
  font-weight:300;
  padding: 10px 30px 10px 50px;
  text-align:center;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
}

.ac img{
	margin:0 auto;
	width:70%;height:auto;
	text-align:center;
}

@media screen and (max-width: 767px) {
.ac img{
	width:94%;
}}



.ac > .ac-q::after {
  content: '+';
  text-align: center;
  width: 15px;
  right: 40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
}

.ac > .ac-a {
  overflow: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.ac > .ac-a p {
  font: 14px/1.5 'Arial', sans-serif;
  color: #121212;
  margin: 0;
  padding: 18px 26px;
  text-align:left;
  line-height:1.8;
}

.ac.js-enabled > .ac-a {
  visibility: hidden;
}

.ac.is-active > .ac-a {
  visibility: visible;
}

.ac.is-active > .ac-q::after {
  content: '\2013';
}
