button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

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

button.accordion:after {
    content: '\002B';
    color: #777;
    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;
}

ul.acord2, ul.subacord {
    list-style: none;
    padding: 0;
	margin-bottom: 0px !important;
	
  
}

ul.acord2 .inner {
        padding-left: 2em;
        overflow: hidden;
        display: none;
             
    }
  
 ul.acord2 .show {
          /*display: block;*/
        }
  
 ul.acord2 li {
        margin: .10em 0;     
	margin: 1px;
        
    }
	
ul.acord2 li .toggle {
            width: 100%;
            display: block;
            /*background: rgba(0,0,0,0.78);
            color: #fefefe;*/
		background-color: #eee;
    color: #444;
            padding: .75em;
            border-radius: 0.15em;
            transition: background .3s ease;
          
            
        }
		
ul.acord2 li .toggle:hover {
                /*background: rgba(0, 0, 0, 0.9);*/
		background-color: #ccc;
            }


