/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
	width:1200px;
    overflow:hidden;
    border-radius:3px;
    background:#fff;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:1200px;
    padding:15px;
    display:inline-block;
    border-bottom:1px solid #C8C9C7;
    background:#ffffff;
    transition:all linear 0.15s;
	position:relative;
    /* Type */
    
	text-transform:uppercase;
	font-family:Helvetica, Arial, sans-serif;
	font-weight:bold;
    color:#000000;
	text-decoration:none;
	
	}

.accordion-section-title:before {
	content:"▾";
	position:absolute;
	top: 10px;
	right: 25px;
	font-size: 28px;
	text-align:center;
	height: 30px;
	width:30px;
	} 
 
 
.accordion-section-title.active:before {
	content:"▴";
	} 

	
.accordion-section-title.active, .accordion-section-title:hover {
    background:#D9D9D6;
    /* Type */
    text-decoration:none;
	 color:#39b54a;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	line-height: 140%;
    color:#000;
	border-bottom:1px solid #C8C9C7;
}


