.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:#f7f7f7;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:15px;
    display:inline-block;
    border-bottom:1px solid #1a1a1a;
    background:#333;
    transition:all linear 0.15s;
    /* Type */
    font-size:1.200em;
    text-shadow:0px 1px 0px #1a1a1a;
    color:#fff;
}
 
.accordion-section-title.active, .accordion-section-title:hover {
    background:#4c4c4c;
    /* Type */
    text-decoration:none;
}
 
.accordion-section .accordion-section-title {
	border-bottom: 1px solid rgba(255,255,255,0.8);
    background: #1a1a75;
    outline: 0;
    box-shadow: none;
    opacity: 1;
    padding: 12px 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: none;
}
.accordion-section .accordion-section-title:hover,
.accordion-section .accordion-section-title:focus,
.accordion-section .accordion-section-title:active {
	opacity: 0.9;
	color: #fff;
	box-shadow: none;
}
.accordion-section-content p {
	margin-bottom: 0;
}
.accordion {
	box-shadow: none;
	border-radius: 0;
}
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
}