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

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

    a {
        color: black;
        text-decoration: underline;
    }

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

.home {
    background-color: goldenrod;
}

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

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

.brc {
    top: calc(2 * (100% / 7));
}

.brc:hover {
    background-color: darkgray;
    color: white;
}

.programs {
    top: calc(3 * (100% / 7));
    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: 16pt;
        overflow: auto;

    }

    figure {
         margin-left: 20px;
         float: left;
    }

    img {
        max-width: 200px;
    }

    img:hover {
        opacity: 70%;
    }

    figcaption {
        max-width: 200px;
        text-align: center;
        font-size: 10pt;
        margin-bottom: 20px;
    }

    ul {
        margin-top: 20px;
    }

    li {
        margin-left: 30px;

    }


    table {
       border: 1px solid transparent;
       margin-bottom: 20px;
    }


    td {
      padding-right: 1em;
      vertical-align: top;
      border-bottom: 1px solid transparent;
      line-height: 18pt;
  }

  p {
    margin-top: 20px;
  }

  small {
    color: chocolate;
  }

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

    .nav{
        width: 100px;
    }

    .content {
        width: calc(100% - 100px);
        left: 100px;
    }

    img {
        max-width: 150px;
    }

     figcaption {
        font-size: 7pt;
        line-height: 9pt;
     }

}


