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

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

    a {
        color: black;
    }

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

}

    .deskshape {
       position: relative;
       height: 10rem;
       width: 30rem;
       border-radius: 5rem;
       background-color: white;
       border: 1px solid goldenrod;
       margin-top: 20px;
       margin-left: 5px;
   }

      .dottedline {
    position: absolute;
    border: 1px dotted goldenrod;
    width: 0.2px;
    height: 10rem;
    margin-left: 15rem;
   }

       .desk1 {
    position: absolute;
    margin-top: 70px;
    margin-left: 110px;
    background-color: white;
   }

   .desk2 {
    position: absolute;
    margin-top: 70px;
    margin-left: 330px;
   }

   .deskscape {
    max-width: 90%;

   }

   img {
    display: inline;
    width: 15rem;
    height: 10rem;
    margin-top: 10px;
    margin-right: 2px;
   }

   small {
    display: inline;
    margin-left: 80px;
   }

   a:hover {
    background-color: goldenrod;
   }

ul {
    margin-top: 20px;
}

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

table {
    /*width: calc(100% - 150px);*/
    width: 100%;
    margin-left: -3px;
}

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


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

.nav{
        width: 100px;
    }

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

.deskshape {
       position: relative;
       height: 5rem;
       width: 15rem;
       border-radius: 2.5rem;
       background-color: white;
       border: 1px solid goldenrod;
       margin-top: 20px;
       margin-left: 3px;

   }

          .desk1 {
    position: absolute;
    margin-top: 1.7rem;
    margin-left: 2.75rem;
   }

      .dottedline {
    position: absolute;
    border: 1px dotted goldenrod;
    width: 0.2px;
    height: 5rem;
    margin-left: 7.5rem;
   }

   .desk2 {
    position: absolute;
    margin-top: 1.7rem;
    margin-left: 10rem;
   }

   img {
       position: relative;
       height: 5rem;
       width: 7.5rem;
       margin-top: 20px;
       margin-right: 1.5px;
   }

    small {
    display: inline;
    margin-left: 20px;
   }


}


