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

body {
    font-family: Menlo, Monaco, "Courier New", monospace;
    font-size: 13pt;
}

a {
    color: black;
    padding: 3pt;
    margin: 3px;
    display: inline;
    height: 20px;
    line-height: 26pt;
}

img {
    max-height: 200px;

}

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

/*a:hover {
    background-color: goldenrod;
}*/

.about {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    background-color: goldenrod;
    padding: 10px;
}

.home {
    position: fixed;
    left: 0;
    width: 150px;
    height: 16.7%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    background-color: goldenrod;
    padding: 10px;
}

.brc {
    position: fixed;
    left: 0;
    top: 16.7%;
    width: 150px;
    height: 16.7%;
    display: flex;
    flex-direction: column;
    border: 1px solid goldenrod;
    border-left: 0px;
    padding: 10px;
    background-color: darkgray;
    color: white;
}

.library {
    position: fixed;
    left: 0;
    top: 33.4%;
    width: 150px;
    height: 16.7%;
    display: flex;
    flex-direction: column;
    border: 1px solid goldenrod;
    border-left: 0px;
    padding: 10px;
}

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

.desk {
    position: fixed;
    left: 0;
    top: 50%;
    width: 150px;
    height: 16.7%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    padding: 10px;
}

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

.patio {
    position: fixed;
    left: 0;
    top: 66.7%;
    width: 150px;
    height: 16.7%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    padding: 10px;
}

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

.misc {
    position: fixed;
    color: black;
    left: 0;
    top: 83.4%;
    width: 150px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    padding: 10px;

}

.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;

}

li {
    margin-left: 20px;
    margin-bottom: 7pt;
    list-style: none;
}

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

.libraries, .programs, .publications, .readings, .schools {
    display: none;
}

.schools, .f-schools {
    background-color: peachpuff;
}

.educators, .f-educators {
    background-color: olive;
}

.publishers, .f-publishers{
    background-color: lightpink;
}

.publications, .f-publications {
    background-color: dodgerblue;
    font-style: italic;
}

.libraries, .f-libraries {
    background-color: gold;
}

.programs, .f-programs {
    background-color: tomato;
}

.readings, .f-readings {
    background-color: gray;
}

.print {
        position: absolute;
        right: 10px;
        top: 5px;
      }

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

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

.atoz {
    margin-top: 170px;
}

.summary {
    position: fixed;
    width: calc(100% - 500px);
    height: 100%;
    left: 460px;
    top: 0;
    margin: 10px;
}


@media screen and (max-width: 704px) {

    body {
        font-size: 10pt;
    }

    a {
        margin: 0;
    }

    li {
        margin: 3pt;
    }

    .home, .library, .desk, .patio, .misc, .brc {
        width: 100px;
    }

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

    .glossary, .filter, .atoz {
        border-right: 1px solid gainsboro;
        width: 70%;
    }

    .filter {
        height: 120px;
    }

    .atoz {
    margin-top: 135px;
    width: 100%;
}

    .summary {
    display: none;
    }

    .print {
    display: none;
}

}








