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

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

    a {
        color: black;
    }

    a:hover {
        background-color: goldenrod;
    }

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

.brc:hover {
    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;
    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;
    }

    .photos {
        max-width: 90%;
    }

    img {
        display: block;
        max-width: 120px;
        margin-top: 5px;
    }

    li {
        margin-left: 30px;
        position: fixed;
    }


    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: 10px;
  }

  small {
  color: burlywood;
    }

a {
    word-break: break-all;
}
  .newsboard {
    width: 700px;
    height: 300px;
    overflow-y: scroll;
    margin-bottom: 20px;
  }
}

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

     body {
        font-size: 9pt;
    }

    .nav {
        width: 100px;
    }

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

  p {
    margin-top: 5px;
  }

    img {
        max-width: 80px;
    }

    td {
        line-height: 12pt;
    }
}


