@charset "UTF-8";
* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    height: 100%;
    text-size-adjust: 100%;
}

.layout-root {
    font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
    font-size: var(--font-size);
    margin: 0;
    cursor: default;
    tab-size: 4;

    min-width: 1024px;
    min-height: 100%;
    transition: background-color 200ms, color 200ms;
    color: var(--text-color);
    background: var(--body-background-logo), var(--body-background-main);
}

iframe {
    pointer-events: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: middle;
}

button,
input {
    line-height: normal;
}

p {
    margin: 0 0 var(--space-medium);
}

input[type=search] {
    box-sizing: content-box;
    appearance: textfield;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
    appearance: none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

small {
    font-size: 85%;
}

strong, .strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

cite {
    font-style: normal;
}

hr {
    margin: 20px 0;
    border-top: 1px solid var(--hr-border-color);
    border-right: 0;
    border-bottom: 1px solid var(--text-color-max-inverse);
    border-left: 0;
}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted var(--text-muted-color);
}
abbr.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    margin: 0 0 20px;
    padding: 0 0 0 15px;
    border-left: 5px solid var(--background);
}
blockquote:before, blockquote:after {
    content: "";
}
blockquote p {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 0;
}
blockquote small {
    line-height: 20px;
    display: block;
    color: var(--text-muted-color);
}
blockquote small:before {
    content: "— ";
}
blockquote.pull-right {
    float: right;
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid var(--background);
    border-left: 0;
}
blockquote.pull-right p, blockquote.pull-right small {
    text-align: right;
}
blockquote.pull-right small:before {
    content: "";
}
blockquote.pull-right small:after {
    content: " —";
}

code,
pre {
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
    font-size: 12px;
    padding: 0 3px 2px;
    color: var(--text-color);
    border: 1px solid var(--btn-background-color-active);
    border-radius: 3px;
}

code {
    padding: 2px 4px;
    white-space: nowrap;
    color: var(--code-color);
    border: 1px solid var(--code-border-color);
    background-color: var(--code-background-color);
}

pre {
    font-size: 13px;
    line-height: 20px;
    display: block;
    padding: 9.5px;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    border-radius: 4px;
    background-color: var(--pre-background-color);
}
pre code {
    padding: 0;
    white-space: pre-wrap;
    color: inherit;
    border: 0;
    background-color: transparent;
}

::-moz-focus-inner {
    padding: 0 !important;
    border: 0 !important;
}

:focus {
    outline: none !important;
}