body {
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #efefef;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.2;
}

h1 {
    margin: 0;
    font-weight: normal;
    font-size: 1.8em;
    line-height: 1;
}

h2 {
    margin: 0 0 1em;
}

p {
    margin: 1em 0 1.5em;
    line-height: 1.5;
}

.law h3 {
    margin-left: 10 px;
    border-left-width: 10px;
    border-left-style: solid;
    border-left-color: #84A7A1;
    padding-left: 10px;
    font-weight: bold;
}

.law p {
    margin-left: 10px;
    padding-left: 10px;
}

.law h2 {
    margin-left: 10px;
    padding-left: 10px;
}

.law h1 {
    margin-left: 10px;
    padding-left: 10px;
}

a {
    color: blue;
}

a:hover {
    color: #2E8A99;
    text-decoration: underline;
}

input {
    line-height: 1em;
    font-size: 1em;
    top: 10px;
    margin: 5px;
}

.container {
    margin: 0 auto;
    max-width: 70em;
    background: #fff;
}

.header-primary {
    background: #2E8A99;
    color: white;
    text-decoration: solid;
    padding: 20px;

    a {
        color: white;
        text-decoration: none;
    }
}

.navigation-primary {
    background-color: #666;
    position: sticky;
    top: 0px;
}

.navigation-primary ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}

.navigation-primary li {
    display: inline;
}

.navigation-primary a {
    float: left;
    padding: .5em 1em;
    color: #fff;
    background: #666;
    text-decoration: none;
    border-right: 1px solid #fff;
}

.navigation-primary a:hover {
    background: green;
}

.navigation-primary a:focus {
    background: #000;
    outline: none;
}

.navigation-primary a:active {
    background: red;
}

/*
.navigation-secondary ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
*/
.content-container {
    padding: 2em;
    background: #fff;
    min-height: 0;
    display: inline-block;
}

/*
.navigation-secondary {
    margin-bottom: 2em;
    background-color: white;
    position: sticky;
    top: 50px;
}
*/

.content-main {
    margin-bottom: 2em;
}

.content-aside {
    background-color: aliceblue;
    position: sticky;
    top: 50px;
    max-height: calc(100vh - 50px);
    /* Adjust the max-height as needed */
    overflow-y: auto;
    padding: 10px;

    a {
        text-decoration: none;
        color: #0E2954;
    }

    a:hover {
        color: #1F6E8C;
        text-decoration: underline;
    }
}

/* Add the following styles to keep the Table of Contents within the container */
.content-aside h3,
.navigation-secondary h3 {
    margin-top: 0;
}

.content-aside h3,
.navigation-secondary h3 {
    margin-top: 0;
}

.footer-primary {
    background-color: #666;
    color: #fff;
    padding: 20px;
}

@media screen and (min-width: 800px) {

    /*
    .navigation-secondary {
        float: left;
        width: 15%;
        min-width: 10em;
        margin-right: 5%;
    }
*/
    .content-main {
        float: left;
        min-width: 40em;
        width: 70%;
    }

    .content-aside {
        background-color: aliceblue;
        float: right;
        min-width: 10em;
        width: 25%;
    }
}