button.accordion {
    background-color: #57C5A0;
    color: #fff;
    cursor: pointer;
    padding-left: 18px;
	padding-right: 18px;
	padding-top:12px;
	padding-bottom:12px;
    width: 100%;
    border:none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
	border-top: solid #CCC 1px;
}

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

button.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
	color:#666;
}

.panel li{
		list-style:none;
		line-height:1.7em;
	}
	
.panel li a{
	color:#666;
	list-style:none;
	}