/*

Styling for rest simple documents

*/

.simple-container {
    margin: 4em;
}

.simple-container .simple-submenu {
    text-align: right;
}


.submenu-container {
    list-style: none;
    line-height: 2em;
    margin-top: 5em;
    font-size: .9em;
    padding: 0;
    text-align: right;
}
.submenu-container a {
    display: block;
    color: #494440;
    padding: 1em;
    border-bottom: none;
    border-right: solid 2px transparent;
    transition: all .3s ease;
    text-decoration: none;
}
.submenu-container a:hover {
    border-right: solid 2px #205493;
    color: #205493;
    font-weight: 700;
    border-bottom: none;
}
.submenu-container a.selected {
    font-weight: 700;
    border-right: solid 2px #205493;
}

table.default {
    border: none;
    border-collapse: collapse;
}

table.default td {
    padding: 15px 10px;
    text-align: left;
    border-bottom: solid 1px #323a45;
    border-left: none;
    border-right: none;
}
table.default td:first-of-type {
    border-left: solid 1px #323a45;
}
table.default td:last-of-type {
    border-right: solid 1px #323a45;
}
table.default td p {
    margin-bottom: 0;
}
table.default tbody tr:nth-of-type(even) {
    background-color: white;
}
table.default tbody tr:nth-of-type(odd) {
    background-color: #f1f1f1;
}
table.default th {
    padding: 10px 10px 5px;
    border: none;
    border-bottom: 2px solid black;
    vertical-align: bottom;
}

.document-display {
    margin: 1em;
}
.document-display .document-listing {
    padding: .8em 1em .7em;
    border-left: solid 2px #205493;
    font-size: 1.1em;
}
.document-display .last-modified {
    font-size: .7em;
}
.document-display a {
    font-weight: 700;
}
.image-content {
    margin-bottom: 2em;
}
.tooltip-container {
    position: absolute;
    text-align: center;
    pointer-events: none;
    padding: 10px;
    font-size: 0.8em;
    border-radius: 2px;
    background: #323a45;
    color: white;
    border: solid 1px #323a45;
    opacity: 0;
    z-index: 10;
}
.tooltip-wrapper {
    display: inline;
    position: relative;
    text-align: center;
    width: 4%;
    -webkit-transform: translateZ(0);
    /* webkit flicker fix */
    -webkit-font-smoothing: antialiased;
    /* webkit text rendering fix */
}
.tooltip-wrapper .tooltip {
    background: #d6d7d9;
    border: solid 1px #323a45;
    bottom: -50%;
    color: #323a45;
    display: block;
    left: 25px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    width: 250px;
    font-size: .8em;
    border-radius: 2px;
}
.tooltip-wrapper:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
}

