@charset "utf-8";
/* CSS Document */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #FFFFFF;
    /*color: #333333;*/
    cursor: pointer;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: 2px;
    width: 95%;
    border: none;
    text-align: left;
    font-weight: normal;
    color: #003187;
    text-decoration: underline;
    outline: none;
    font-size: 14px;
    /*font-family: Arial, Helvetica, sans-serif;*/
    /*margin-left: 6px;*/
}

/* 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, .collapsible:hover {
    /*background-color: #d2c2b9;*/
    color: #003187;
    /*text-decoration-line: underline;*/
    margin-left: 2px;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible_content {
/*    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #FFFFFF;*/
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

body{overflow-y:scroll;}