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

body {
    font-family: monospace;
    word-break: keep-all;

}

.nav {
    position: absolute;
    width: 100%;
    height: 100px;
    border-bottom: 1px black solid;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

img {
    width: 100px;
    display: inline-flex;
    border-right: 1px black solid;
    margin-left: -7px;
}

.content {
    position: absolute;
    margin-top: 100px;
    width: 100%;
    height: calc(100% - 100px);
    padding: 10px;
}


p {
    margin-bottom: 15px;
}

a {
    color: black;
}

a:hover {
    background-color: goldenrod;
}


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

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

tr:hover {
    background-color: gainsboro;
}

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

.date {
    width: 10%;
}
.name {
    width: 50%;
}


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

}