.accordion {
    background-color: #fff;
    color: #1b290F;
    cursor: pointer;
    padding: 14px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;   
    border-bottom: 1px solid #fff;
    font-weight:bold;
}

.section group {margin-bottom:10px;}

.active, .accordion:hover {
    background-color: #lightgrey;
}

.accordion:before {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-right: 14px;
}

.active:before {
    content: "\2212";
}

.panel {
	  color: #1b290F;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel li {
   margin-left:25px;
}

.panel a {
       color: blue;
}

#mainWrapper p {
    font-weight: normal;
    padding-bottom:15px;
    text-shadow: none;
}