﻿
/*----- rjAccordion -----*/
    
a:hover, a:focus {
    color: #000;
    text-decoration: none;
	cursor:pointer;
}
.accordion, .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  overflow: hidden;
  margin: 20px;
  width: 70%;
  color: #000;
}

.accordion-section-header {
  width: 100%;
  padding: 0px 10px 0px 10px;
  display: inline-block;
  background: #f7941e;
  transition: all linear 0.15s;
  font-size:26px;
  font-weight:bold;
  font-family:Arial;
  color: #000;
 
}
.accordion-section{
	 margin-bottom:10px;
}

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

.accordion-section-content {
  padding: 15px;
  display: none;
	width:100%;
	min-height:300px;
	background-color:#f1eae2;
}
