﻿
/*----- rjAccordion -----*/
    
.title {
  font-family:Arial;
  font-size:24px;
  margin-top:15px;
  margin-bottom:25px;
}



.accordion, .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background: #f2e17b;
  color: #603813;
  width: 100%;
}

.accordion-section-header {
  width: 100%;
  padding: 10px;
  display: inline-block;
  border-bottom: 1px solid #C0392B;
  background: #fcd200;
  transition: all linear 0.15s;
  font-size: 1.200em;
  color:#603813;
}

.accordion-section-header.active, .accordion-section-header:hover {
  background: #d19500;
  color:#ffffff;
  text-decoration: none;
}

.accordion-section:last-child .accordion-section-header { border-bottom: none; }

.accordion-section-content {
  padding: 30px;
  display: none;
}
