﻿
/*----- rjAccordion -----*/
    


.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.0);
  border-radius: 3px;
  background: #666666;
  color: #ffffff;
  margin: 0px;
  width: 80%;
}

.accordion-section-header {
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
  transition: all linear 0.15s;
  font-size: 13px;
  color: #666666;
  font-weight: bold;
}

.accordion-section-header.active, .accordion-section-header:hover {
  background: #eeeeee;
  text-decoration: none;
  color: #000000;
  font-size: 13px;
  font-weight: bold;
}

.accordion-section:last-child .accordion-section-header { border-bottom: none; }

.accordion-section-content {
  padding: 15px;
  display: none;
}
