﻿
/*----- 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.25);
	border-radius: 3px;
	background: #ffffff;
	color: #666666;
	margin: 0px 0px 9px;
	margin-bottom: 0px;
	width: 100%;
	font-size: 14px;
	line-height: 1.42857em;
}

.accordion-section-header {
	width: 100%;
	padding: 15px;
	display: inline-block;
	border-bottom: 1px solid #ffffff;
	background: #4a0095;
	transition: all linear 0.15s;
	font-size: 16px;
	color: #fff;
}

.accordion-section-header.active, .accordion-section-header:hover {
  background: #9446e3;
  text-decoration: none;
}

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

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