.faqs dl {
    margin-bottom: 0px;
}
.faqs dt {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
	padding-left: 5px;
    text-transform: none;
	padding-bottom: 13px;
	margin: 0px;
}
.faqs dt.closed{
	display: none;
}

.faqs dt:after {
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #00529b;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.faqs dt:before {
  position: absolute;
  right: 12px;
  top: 22px;
  display: block;
  width: 10px;
  height: 2px;
  background: #00529b;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.faqs dt.open:after,
.faqs dt.open:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faqs dd {
    margin-bottom: 0;
	padding-bottom: 20px;
	max-height: 100000px;
	transition: max-height 5s ease-in-out;
	overflow: hidden;
}
.faqs dd p:last-of-type {
    margin-bottom: 0;
}
.faq-date {
	color: #FA4616;
	font-weight: 200;
}

.faqs dd.closed{
  display: none;
}

.faqs dd.opening{
  max-height: 0;
  padding-bottom: 0;
}















