 /* Style the buttons that are used to open and close the accordion panel */
.accordionContainer .accordion {
    background-color: #fff;
    color:#8dc540; 
	font-size:20px;
    cursor: pointer;
    padding: 20px 12px 18px 12px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
	background-image:url('../images/right-arrow.png'); background-repeat:no-repeat; background-position:left 5px top 17px; padding-left:30px; 
	border-top:1px solid #d8d8d8;
	border-bottom:1px solid #d8d8d8;
	margin-top:-2px;
	font-weight:300;
	font-family: 'Roboto', sans-serif;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordionContainer .accordion .active, .accordionContainer .accordion:hover {
    background-color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.accordionContainer .panel {
    padding: 0px 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
	margin-bottom:0;
} 

.accordionContainer .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #808183;
    float: right;
    margin-left: 5px;
	margin-top:0px;
	font-weight:300;
	font-family: 'Roboto', sans-serif;
}

.accordionContainer .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}