.mainFrame {
    display: block;
    border-width: 0;
    margin: auto;
    width: 100%;

}

.pdfFrame {
    display: block;
    margin: auto;
    align-content: center;
    width: 70%;
    height: 1000px;
}

.header {
    background-color: #cc9a00;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    z-index: 101;
}

.header_img {
    display: inline;
    float: left;
    width: 100px;
    height: auto;
}

* {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #999999;
    height: 80px;
    align-content: left;
    z-index: 100;
}

.navbar_table {
    display: block;
    margin-left: auto;
    margin-right: 0px;
    text-align: right;
    width: 5%;
    border: 1px solid black;
}

.nav_button {
    float: right;
    display: inline;
    text-align: center;
    margin: 15px 20px 10px 0px;
    height: 40px;
    width: 80px;
    text-decoration: none;
    cursor: pointer;
}

tr {
    margin-left: auto;
    margin-right: 0px;
    width: auto;
    border: 1px solid black;
    align-content: right;
    align: right;
    height: 10px;
}

td.navbar_column {
    border: 1px solid black;
    text-align: center;
    padding-right: 5px;
    padding-left: 0px;
    cursor: pointer;
}

td.navbar_column:nth-child(2) {
    text-align: end;
}

.menu_bar_phone {
    display: none;
}

.extended_nav_button {
    display: none;
}

@media screen and (max-width: 960px) {
    .navbar_table {
        display: none;
    }

    td.navbar_column {
        margin-right: 0px;
        margin-left: auto;
        border: 1px solid red;
        text-align: center;
        padding-right: 20px;
        padding-left: 20px;
    }

    .nav_button {
        display: none;
    }

    .menu_bar_phone {
        float: right;
        display: block;
        text-align: center;
        height: 40px;
        margin: 15px 20px 10px 10px;
        cursor: pointer;
        animation-name: fadeIn;
        animation-duration: 1s;
    }

    .menu_bar_phone:hover {
        opacity: 0.5;
    }

    .extended_navbar_phone {
        display: none;
        background-color: #ffd966;
        view-transition-name: slideIn;
        z-index: -1;
    }
  
    .extended_nav_button {
        display: inline;
        text-align: center;
        margin: 15px 20px 10px 0px;
        height: 40px;
        width: 80px;
        text-decoration: none;
        cursor: pointer;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        margin-top: -100%;
    }

    to {
        margin-top: 0%;
    }
}

@keyframes slideOut {
    from {
        margin-top: 0%;
    }

    to {
        margin-top: -100%;
    }
}
  