@charset "UTF-8";
/* CSS Document */

/*----- Accordion -----*/
.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);
}
.accordion a:link, .accordion a:visited {
    /* Type */
	color:#f0e8e3;
    background:#263148;
    text-decoration:none;
}
.accordion a:active, .accordion a:hover {
    /* Type */
	color:#f0e8e3;
    background:#4a4f69;
    text-decoration:underline;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    display:inline-block;
    border-bottom:1px solid #101e22;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
    background:#1595a0;
    transition:all linear 0.15s;
    /* Type */
	color:#101e22;
	font-size: 40px;
	font-family: Bebas;
	font-weight: normal;
	font-style: normal;
	text-align:center;
}
.accordion-section-title-home {
    display:inline-block;
    border-bottom:1px solid #101e22;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
    background:#1595a0;
    transition:all linear 0.15s;
    /* Type */
	color:#101e22;
	font-size: 40px;
	font-family: Bebas;
	font-weight: normal;
	font-style: normal;
	text-align:center;
}
 
.accordion-section-title.active, .accordion-section-title:hover, .accordion-section-title-home.active, .accordion-section-title-home:hover {
    background:#101e22;
    /* Type */
    text-decoration:none;
	color:#1595a0;
}
 
.accordion-section:last-child .accordion-section-title  .accordion-section-title-home {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    display:none;
}
/*----- widths -----*/
.fourseventy {
	    width:470px;
}
.sevenfifteen {
	    width:715px;
}
.ninesixty {
	    width:960px;
}