
/* Acordion Menu */
#accordion-container {
	width: 100%;
	padding: 0;
	margin-bottom: 30px;
	text-transform: capitalize;
	background-color: #cbf4f3;
}
.accordion-header {
	font-family: 'Roboto Condensed', sans-serif;
	color: rgb(255,255,255);
	font-size: 1.1em;
	line-height: 1.2em;
	padding: 18px;
	cursor: pointer;
	border-bottom: 2px solid rgb(255,255,255);
	margin: 0px;
	background-image: url("../img/m-inactive-header.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
	font-weight: 400;
    text-transform: uppercase;
}
.accordion-header a{
    color: rgb(255,255,255);
}
.active-header {
    width: 100%;
    background-image: url("../img/m-active-header.png");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-color: #f2434c;
}
.active-header:hover {
    width: 100%;
    background-image: url("../img/m-active-header.png");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    color: rgb(255,255,255);
}
.active-header a {
	color: #fff;
	text-decoration: none;
}
/*.inactive-header a:hover {
	color: rgb(74,73,74);
}*/
.inactive-header {
    width: 100%;
    color: #f2434c;
}
.inactive-header a {
	text-decoration: none;
    color: #f2434c;
}
.inactive-header:hover a {
    text-decoration: none;
    color: #fff;
}
.inactive-header:hover {
    width: 100%;
    background-image: url("../img/m-inactive-header.png");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    color: #00c3b9;
    background-color: #f2434c;
}
/*.inactive-header:active {
    width: 100%;
    background-image: url("../img/m-inactive-header.png");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    color: #f2434c;
}*/
.accordion-content {
    font-weight: 400;
    display: none;
    padding: 10px 20px 10px 20px;
}
.accordion-content > li {
	width: 100%;
	list-style-type: none;
	font-size: 1em;
	line-height: 1.4em;
	color: #f2434c;
	width: 100%;
	background-repeat: no-repeat;
	background-position: 0px 50%;
	background-image: url("../img/m-inactive-header.png");
	padding-left: 20px;
}
.accordion-content > li a:link { 
    color: #333;
    text-decoration: none;
}
.accordion-content > li a:visited { 
    /*color: #f2434c;*/
    text-decoration: none;
}
.accordion-content > li a:active { 
    color: #f2434c;
    text-decoration: none;
}
.accordion-content > li a:hover { 
    color: #f2434c;
    text-decoration: none;
}