﻿div#expand1 {
    display: block;
}

div#expand2 {
    display: block;
}


button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family:"Calibri", sans-serif;
    font-size: 14pt;
}

button.accordion1 {
    background-color: lightgrey;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family:"Calibri", sans-serif;
    font-size: 12pt;
    font-weight: bold;
}

/* 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) */
button.accordion.active, button.accordion:hover {
background-color: #ddd;
        
}
button.accordion1.active, button.accordion1:hover {
background-color: #ddd;
        
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    font-family: "Calibri", sans-serif;
    font-size: 12pt;
    font-style: normal;
    margin-left: 30px;
    background-color: lightgrey;
    display: none;
} 
    
