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

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

a {
    color: black;
    word-break: break-all;
}

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

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

}


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

tr:hover {
    background-color: goldenrod;
}

.firstrow:hover {
    background-color: gainsboro;
}

thead {
    border-bottom: 1px solid goldenrod;
    cursor: pointer;
}


.column {
width: 80%;
float: left;
}

.table {
  width: 100%;
  color: black;
  word-break: keep-all;
}

.table th,
.table td {
  vertical-align: center;
}

.table thead th {
  vertical-align: bottom;
}

.table-sm th,
.table-sm td {
  padding: 0rem;
}

.table-bordered {
    border-collapse: collapse;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 0px;
}

.table-grid {
    width:80%;
    margin:0 auto;
}

.dataTables_filter {
     display: none;
}

.dataTables_info {
     display: none;
}

.zoom {
  padding: 0px;
  transition: transform 0s;
  height: 30px;
  margin: 0 auto;
  transform-origin: left top;
}

.category {
    width: 12%;
}

/*.zoom:hover {
  -ms-transform: scale(3);
  -webkit-transform: scale(3);
  transform: scale(5); 
}*/

.gridimg {
    width:75%;
    padding: 10px;
}

.hiddenRow {
    padding: 0 !important;
}
.hidden{display:none;visibility:hidden}

.thumbnail {
    visibility: hidden;
}



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

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

    .category, .author, .publisher {
        display: none;
    }
}







