		*{
 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-block;
    border-right: 1px black solid;
    margin-left: -7px;
}

.thumbnail {
    width: 230px;
    border-right: 0;
}

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

p {
    margin-bottom: 15px;
}

a {
    color: blue;
}

a:hover {
    background-color: goldenrod;
}

.with {
    background-color: darkkhaki;
}

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

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

ul {
    margin-bottom: 15px;
}

li {
    margin-left: 17px;
}

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

}