/*
html {
    height: 100%;
    width: 100%;
}
body
{
    font-size: 1em;
    line-height: 1.2;
    font-family: "Times New Roman", Times, serif;
    display: flex;
    height: 100%;
    width: 100%;
}
*/
/*
.iframe-top {
    position: relative;
    overflow: auto;
    outline: none;
}
*/
.gloss-item {
    display: flex;
    margin: .25em;
}
.gloss-button {
    flex: 0 0 auto;
    display: flex;
    padding: 0 .3em 0 .2em;
    background-color: #eeeeee;
    color: #aaaaaa;
    align-items: center;
    border-radius: .25em;
    border: thin solid transparent;
    cursor: default;
}
.gloss-button:before {
    font: var(--font-fa-solid);
    content: "\f128";
    transform: scale(-1, 1);
}
.gloss-button:hover {
    border: thin solid #444444;
    background-color: #eeeeee;
    color: #444444;
}
.gloss-button:active {
    background-color: #cccccc;
}
.gloss-content {
    flex: 1 1 auto;
    border-radius: .25em;
    padding: .25em;
    margin-left: .25em;
    width: 0;
}
.gloss-reference {
    font-style: italic;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-top: thin solid #ccaaaa;
    background: linear-gradient(to bottom, #ddcccc, transparent 50%);
}
.gloss-marked >.gloss-content {
    background-color: #eef0ff;
}
.gloss-selected >.gloss-content {
    background-color: #eef0ff;
    outline: thin solid #aabbcc;
}
.gloss-author {
    font-style: italic;
}
