.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	margin-top: 20px;
	overflow:hidden;
	background:#09255e;
}

.accordion-white {
	margin-top: 20px;
	overflow:hidden;
	background:#fff;
}

.accordion-section{
	margin-bottom: -6px;
}

.accordion-section.active{
	margin-bottom: 0;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;	
	border-bottom:1px solid #32508e;
	background: #09255e;
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
}

.accordion-section-titles {
	width:100%;
	padding:15px;
	display:inline-block;	
	border-bottom:1px solid #32508e;
	background: #09255e;
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
}

.accordion-section-title-white {
	width:100%;
	padding:15px;
	display:inline-block;	
	border-bottom:1px solid #ddd;
	background: #fff;
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
	color:#fff;
}

.accordion-section-title.active{
	border-bottom: none !important;
}

.accordion-title{
	padding: 0 !important;
	font-size: 14px;
}

.accordion-title h1, .accordion-title h2, .accordion-title h3, .accordion-title h4, .accordion-title h5{
	margin-top: 0;
}

.accordion-direction{
	display: inline-block;
}

.accordion-direction i{
	font-size: 26px;
}

.accordion-arrow{
	opacity: .5;
}

.accordion-arrow.active{
	opacity: .8;
}

.accordion-section-title:hover {
	background:#32508e;
	/* Type */
	text-decoration:none;
}

.accordion-section-titles:hover {
	background:#32508e;
	/* Type */
	text-decoration:none;
}

.accordion-section-title.active:hover {
	background:none;
	/* Type */
	text-decoration:none;
}

.accordion-section:first-child .accordion-section-title, .accordion-section:first-child .accordion-section-titles {
	border-top:1px solid #32508e;
}

.accordion-section:first-child .accordion-section-title-white{
	border-top:1px solid #ddd;
}

.accordion-section:last-child .accordion-section-title {
	/*border-bottom:none;*/
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:0 15px 15px 15px;
	display:none;
}

.accordion-section-content.active {
	border-bottom:1px solid #32508e;
}