
.makeGreenBackground{
	background-color:#78c31f;
}

.makeGreenBackground:hover , makeGreenBackground.selected {
	
	background-color:green;
	cursor:pointer;
}



.accordion {
    /*background-color: #eee;*/
    color: green;
    cursor: pointer;
    padding: 18px;
	margin-bottom:5px;
    width: 98%;
	margin-left:1%;
    text-align: left;
   /* border: none;*/
	border: 1px solid #cbc7bd;
    outline: none;
    transition: 0.4s;
}

/* 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) */
.active, .accordion:hover   {
    background: green;
	color:white;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
   
    display: none;
    overflow: hidden;
	height:auto;
	 
	
}



.panelP {
    padding: 0 18px;
    
    display: none;
    overflow: hidden;
	height:auto; 
	margin-bottom:20px;
	
}
