		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
    font-family: Menlo, Monaco, "Courier New", monospace;
    word-break: keep-all;
}

.nav {
    position: fixed;
    left: 0;
    width: 150px;
    height: calc(100% / 7);
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    border-left: 0px;
    padding: 10px;
    line-height: 13px;
}

.home {
    background-color: goldenrod;
}

.library {
    top: calc(100% / 7);
}

.library:hover {
    background-color: cornflowerblue;
    color: white;
}

.brc {
    top: calc(2 * (100% / 7));
    background-color: darkgray;
    color: white;
}

.programs {
    top: calc(3 * (100% / 7));
}

.programs:hover {
    background-color: chocolate;
    color: white;
}

.desk {
    top: calc(4 * (100% / 7));
}

.desk:hover {
    background-color: orangered;
    color: white;
}

.patio {
    top: calc(5 * (100% / 7));
}

.patio:hover {
    background-color: forestgreen;
    color: white;
}

.misc {
    top: calc(6 * (100% / 7));
    bottom: 0;
}

.misc:hover {
    background-color: burlywood;
    color: white;
}

.content {
    position: fixed;
    width: calc(100% - 150px);
    height: 100%;
    left: 150px;
    top: 0;
  /*  display: flex;*/
    background-color: gainsboro;
    padding: 10px;
    line-height: 19pt;
    overflow: auto;

}

a {
    color: black;
    display: inline;
    line-height: 18pt;
}

img {
    max-height: 200px;

}

figcaption {
    display: inline-block;
    position: absolute;
    margin-left: 20px;
}

li {
    margin-left: 3px;
    margin-bottom: 5pt;
    list-style: none;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.schools, .educators, .publications, .libraries, .playgrounds, .readings, .projects {
    text-decoration: none;
    padding: 3pt;
    margin: 3px 0;
}

.schools {
    background-color: peachpuff;
}

.educators {
    background-color: olive;
}

.projects {
    background-color: lightpink;

}

.publishers {
    background-color: lightpink;
}

.publications {
    background-color: dodgerblue;
}

.libraries {
    background-color: gold;
}

.playgrounds {
    background-color: chocolate;
}

.readings {
    background-color: gray;
}

aside {
    width: 300px;
    height: 100%;
    border-right: 1px solid goldenrod;
    overflow-y: auto;
    overflow-x: hidden;
}

.filter {
    width: 300px;
    height: 170px;
    position: fixed;
    background-color: gainsboro;
    border-right: 1px solid goldenrod;
}

.filter-child {
    line-height: 26pt;
    text-decoration: none;

}

.atoz {
    margin-top: 170px;
}

.summary {
    position: fixed;
    width: calc(100% - 480px);
    height: 100%;
    left: 460px;
    top: 0;
    margin: 12px;
    overflow-y: auto;
}

article {
    margin-top: 30px;
}

.category {
    width: 155px;
}

table {
    margin-top: 10px;
}

td {
    vertical-align: top;
    text-align: left;
}

@media screen and (max-width: 704px) {
    body {
        font-size: 9pt;
    }

    .nav{
        width: 100px;
    }

    .filter {
        height: 120px;
        border-right: 0px;
    }

    .atoz {
    margin-top: 120px;
}

aside {
    border-right: 0px;
}

    .summary {
        display: none;
    }

    .content {
        left: 100px;
        width: 100%;

    }

    li {
        line-height: 12pt;
    }
}






