@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
 */
.accordion-container {
	text-align: left;
}
.ac {
    margin-top: 1.5vw;
    border: solid 1px #707070;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5vw 3vw;
}

.ac>.ac-q {
  padding: 1vw 3vw 1vw 1vw;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
}
.ac-q .f36 {
	margin-right: 2vw;
    line-height: 0;
} 
.ac>.ac-q::after {
  content: '+';
  text-align: center;
  width: 1.5vw;
  right: 1vw;
  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 {
  margin: 0;
  padding: 1vw;
}

.ac.js-enabled>.ac-a {
  visibility: hidden;
}

.ac.is-active>.ac-a {
  visibility: visible;
}

.ac.is-active>.ac-q::after {
  content: '\2013'
}
.ac-a .wrap {
	padding: 2vw 0 0;
	border-top: 1px solid#0C4EA2;
}
.an .bdr {
	border: 1px solid #666;
    width: fit-content;
    margin: 1vw 0!important;
}