/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	margin-bottom: 30px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width: 100%;
	padding: 10px 15px;
	display: inline-block;
	border-bottom: 1px solid #000;
	background: #003d62;
	transition: all linear 0.15s;
	font-size: 21px;
	color: #fff;
	position: relative;
}

.accordion-section-title:after{
    content: "+";
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 25px;
    font-weight: normal;
    }
	
.accordion-section-title.active:after{
    content: "-";
    font-size: 52px;
    top: -10px;
    }

.accordion-section-title.active, .accordion-section-title:hover {
	background:#e7e7e8;
	/* Type */
	text-decoration:none;
	color:#000;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;     /*border: 1px solid #ddd;*/
	display:none;   /*  min-height: 435px;*/
}

.accordion-section {
    margin-top: 10px;
}