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

body {
    font-family: monospace;
    word-break: keep-all;
    line-height: 19px;
}

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

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


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

.row {
    width: 100%;
    height: 300px;
    display: block;
    border-bottom: 1px black solid;
    padding: 10px;
    overflow-y: scroll;
}

.row:hover {
    background-color: goldenrod;
}

ul {
    margin-bottom: 15px;
}

li {
    margin-left: 17px;
}

table {
    margin-bottom: 15px;
}

.with {
    background-color: darkkhaki;
}

blink {
  animation: 0.7s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

p {
    margin-bottom: 15px;
}

a {
    color: black;
}

a:hover {
    background-color: goldenrod;
}




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



}