:root {
    --backgroundColor: #fff;
    --backgroundTransparentColor: rgba(255, 255, 255, 0.8);
    --sheetBackgroundColor: rgba(240, 240, 240, 0.8);
    --foregroundColor: #222;
    --thinRuleColor: rgba(0, 0, 0, 0.15);
    --headingsColor: #222;
    --headingsUnderlineColor: rgba(0, 0, 0, 0.15);
    --linkColor: #0060a0;
    --linkUnderlineColor: rgba(0, 96, 160, 0.15);
    --linkColorVisited: #70a0b0;
    --linkUnderlineColorVisited: rgba(112, 160, 176, 0.15);
    --hoverColor: #b03000;
    --hoverUnderlineColor: rgba(176, 48, 0, 0.15);
    --tagColor: #567;
    --tagUnderlineColor: rgba(85, 102, 119, 0.15);
    --adminColor: #009030;
    --adminUnderlineColor: rgba(0, 144, 48, 0.15);
    --engineTextColor: #a0a0a0;
    --engineTextUnderlineColor: rgba(160, 160, 160, 0.15);
    --markedTextBackground: #fffada;
    --markedImageBorderColor: #fff8b8;
    --inputBackgroundColor: #f0f0f0;
    --inputTextColor: #000;
    --imageBorderColor: #e8e8e8;
    --disabledColor: #cccccc;
    --errorColor: #b03000;
    --currentItemBackgroundColor: #ffffff;
    --windowBackgroundColor: #fff;
    --unsavedIndicatorColor: #b03000;
    --subscribeButtonBackground: rgba(231, 231, 231, 0.8);
    --subscribeButtonHoverBackground: rgba(212, 212, 212, 0.8);
    --subscribeButtonTextColor: #000;
    --marginTop: 48px;
    --marginLeft: 9%;
    --marginRight: 9%;
    --marginTopCompact: 16px;
    --marginLeftCompact: 4%;
    --marginRightCompact: 4%;
    --displayLogoMarginal: block;
    --displayLogo: none;
    --displayLogoCompact: block;
    --columnSpacing: 15px;
    --logoTop: -20px;
    --logoSize: 40px;
    --blogTitleFontSize: 16px;
    --blogTitleLineHeight: 24px;
    --pageHeadingFontSize: 36px;
    --pageHeadingLineHeight: 42px;
    --noteTitleFontSize: 22px;
    --noteTitleLineHeight: 26px;
    --noteTitleFavouriteFontSize: 36px;
    --noteTitleFavouriteLineHeight: 40px;
    --noteTextFontSize: 18px;
    --noteTextLineHeight: 24px;
    --mainFontFamily: system-ui, -apple-system, BlinkMacSystemFont, "SF UI Text", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --noteMainFontFamily: inherit;
    --smallFontFamily: inherit;
    --time: .2s
}
* {
    box-sizing: border-box
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
pre,
table,
thead,
tbody,
tr,
th,
td,
img,
pre,
tt,
code,
form,
input,
textarea,
select,
button {
    margin: 0;
    padding: 0;
    outline: none;
    text-indent: 0;
    font-size: 100%;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    vertical-align: baseline
}
body {
    background: var(--backgroundColor);
    color: var(--foregroundColor);
    margin: 0;
    padding: 0
}
body,
input,
textarea,
select,
button {
    font-size: 16px;
    line-height: 24px;
    font-family: 'PT Serif', Georgia, serif;
}
pre,
tt,
code,
pre *,
tt *,
code * {
    font-family: "Consolas", "Courier New", monospace
}
pre,
code {
    white-space: pre-wrap
}
sup,
sub {
    position: relative;
    vertical-align: middle;
    font-size: 75%;
    font-weight: normal
}
sup {
    bottom: 0.5em
}
sub {
    top: 0.5em
}
mark {
    display: inline;
    background: var(--markedTextBackground);
    color: inherit
}
mark img {
    box-shadow: 0 0 0 4px var(--markedImageBorderColor)
}
img {
    border: 0
}
table {
    empty-cells: show;
    border-spacing: 0;
    border-collapse: collapse
}
table,
thead,
tbody,
tr,
th,
td {
    text-align: left;
    vertical-align: baseline
}
a {
    color: var(--linkColor);
    border-color: var(--linkUnderlineColor);
    transition-property: border-bottom, border-color, background, color, fill;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: solid
}
a:visited {
    color: var(--linkColorVisited);
    border-color: var(--linkUnderlineColorVisited)
}
a:hover,
a.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor);
    transition: none
}
.common {
    margin: 0 auto;
    max-width: 1280px
}
.flag {
    position: relative;
    width: 100%;
    padding: var(--marginTop) 0 60px
}
@media screen and (max-width: 500px) {
    .flag {
        padding: var(--marginTopCompact) 0 48px
    }
}
.header-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: calc(100% - var(--marginRight) - var(--marginLeft));
    margin: 0 auto
}
@media screen and (max-width: 1023px) {
    .header-content {
        margin: 0 var(--marginRightCompact) 0 var(--marginLeftCompact);
        max-width: calc(100% - var(--marginRightCompact) - var(--marginLeftCompact))
    }
}
.header-description {
    max-width: calc(100% - var(--marginRight) - var(--marginLeft))
}
.spotlight {
    position: absolute;
    top: -2px;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap
}
@media screen and (max-width: 1023px) {
    .spotlight {
        margin-top: 8px
    }
}
.logo-marginal {
    --logoMarginalHrzOffset: 20px;
    display: var(--displayLogoMarginal);
    position: absolute;
    left: calc(-1 * (var(--logoSize) + var(--logoMarginalHrzOffset) * 2));
    top: 50%;
    transform: translateY(-50%);
    width: var(--logoSize);
    height: var(--logoSize);
    margin: 0 var(--logoMarginalHrzOffset) 0
}
@media screen and (max-width: 1023px) {
    .logo-marginal {
        display: none
    }
}
.logo {
    display: var(--displayLogo);
    margin-bottom: 2px
}
@media screen and (max-width: 1023px) {
    .logo {
        display: var(--displayLogoCompact)
    }
}
.title {
    max-width: 480px;
    font-size: var(--blogTitleFontSize);
    line-height: var(--blogTitleLineHeight)
}
@media screen and (max-width: 1023px) {
    .title {
        max-width: none
    }
}
.title-inner {
    position: relative
}
.title h1 {
    margin: 0;
    font-weight: bold;
    font-size: inherit;
    line-height: inherit;
    color: var(--headingsColor)
}
.title h1 a,
.title h1 a:visited {
    color: var(--headingsColor);
    border-color: var(--headingsUnderlineColor)
}
.title h1 a:hover,
.title h1 a.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.title p {
    margin: 0 0 10px 0
}
.content,
.footer {
    margin: 0 var(--marginRight) 40px var(--marginLeft);
    width: calc(100% - var(--marginRight) - var(--marginLeft))
}
.content {
    min-height: 320px;
    max-width: 100%
}
@media screen and (max-width: 1023px) {
    .content,
    .footer {
        margin: 0 var(--marginRightCompact) 40px var(--marginLeftCompact);
        width: calc(100% - var(--marginRightCompact) - var(--marginLeftCompact))
    }
}
.engine {
    color: var(--engineTextColor)
}
.engine a,
.engine a:link,
.engine a:visited {
    color: var(--engineTextColor);
    border-color: var(--engineTextUnderlineColor)
}
.engine a:hover,
.engine a:active {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-text .lead {
    transition-property: font-size, line-height, margin-bottom;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    font-size: var(--noteTextFontSize);
    line-height: var(--noteTextLineHeight);
    margin: 0 0 20px 0;
    max-width: 720px
}
.e2-note-favourite .e2-text .lead {
    font-size: 26px;
    line-height: 30px
}
.e2-text .loud {
    font-size: 26px;
    line-height: 34px;
    padding: 10px 0 10px 39px;
    margin: 20px 0 40px;
    border-left: 1px var(--thinRuleColor) solid;
    max-width: 720px
}
.e2-text .foot {
    margin: 0 0 10px;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px
}
.e2-toggle-state-on,
.e2-toggle-state-off,
.e2-toggle-state-thinking {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    transform: scale(0.001) rotate(90deg);
    transition: opacity var(--time) ease-out, transform var(--time) ease-out
}
.e2-toggle-state-on,
.e2-toggle-state-thinking,
.e2-toggle-on .e2-toggle-state-off,
.e2-toggle-thinking .e2-toggle-state-off {
    opacity: 0;
    transform: scale(0.001)
}
.e2-toggle-state-off,
.e2-toggle-on .e2-toggle-state-on,
.e2-toggle-thinking .e2-toggle-state-thinking {
    opacity: 1;
    transform: scale(1)
}
.e2-toggle-state-thinking {
    color: var(--foregroundColor);
    cursor: default
}
.e2-keywords-input-dropdown {
    font-size: 11px;
    top: 0;
    position: relative;
    top: -.33em;
    padding: .2em .33em;
    background: #fff;
    border: 1px #ccc solid
}
.e2-keywords-input-dropdown a {
    white-space: nowrap
}
.e2-uploaded-image {
    margin-right: 1em;
    margin-bottom: 1em;
    outline: 1px #f0f0f0 solid;
    transition-property: outline-color;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: bottom
}
.e2-uploaded-image:hover,
.e2-uploaded-image.hover {
    outline-color: var(--hoverColor);
    transition: none
}
.e2-uploaded-image-preview img {
    display: block
}
.e2-uploaded-image-remover {
    position: absolute;
    width: 16px;
    height: 16px;
    margin: -8px;
    right: 2px;
    top: 2px;
    line-height: 0;
    z-index: 1004
}
.e2-template-preview,
.e2-draft-preview {
    width: 100px;
    display: inline-block;
    vertical-align: top;
    margin: 0 3% 0 0
}
.e2-template-preview {
    min-height: 120px;
    text-align: left;
    margin-bottom: 12px
}
.e2-template-preview .e2-template-preview-image {
    transition-property: outline-color;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    outline: 1px var(--thinRuleColor) solid
}
.e2-template-preview:hover,
.e2-template-preview.hover {
    cursor: pointer;
    cursor: hand
}
.e2-template-preview:hover a,
.e2-template-preview.hover a {
    color: var(--hoverColor);
    transition: none
}
.e2-template-preview:hover .e2-template-preview-image,
.e2-template-preview.hover .e2-template-preview-image {
    outline-color: var(--hoverColor)
}
.e2-current-template-preview:hover,
.e2-current-template-preview.hover {
    cursor: default
}
.e2-current-template-preview .e2-template-preview-image,
.e2-current-template-preview .e2-template-preview-image,
.e2-current-template-preview:hover .e2-template-preview-image,
.e2-current-template-preview.hover .e2-template-preview-image {
    outline-color: var(--foregroundColor)
}
.e2-current-template-preview .e2-template-name {
    font-weight: bold
}
.e2-current-template-preview a,
.e2-current-template-preview a.e2-pseudolink,
.e2-current-template-preview:hover a,
.e2-current-template-preview a:hover,
.e2-current-template-preview.hover a,
.e2-current-template-preview a.hover {
    color: var(--foregroundColor);
    border-color: transparent;
    cursor: default;
    transition: none
}
.e2-draft-preview {
    min-height: 160px;
    margin-bottom: 1.4em;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px
}
.e2-draft-preview-box {
    position: relative;
    width: 100px;
    height: 120px;
    margin-bottom: 8px;
    outline: 1px var(--backgroundColor) solid;
    transition-property: outline-color;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    text-align: left;
    color: var(--inputTextColor);
    background: var(--inputBackgroundColor)
}
.e2-draft-preview-box .e2-unsaved-led {
    position: absolute;
    top: -5px;
    right: -5px
}
.e2-draft-preview-content {
    height: 120px;
    overflow: hidden
}
.e2-draft-preview-content img {
    display: block;
    max-width: 100px
}
.e2-draft-preview-text {
    margin: 4px 8px 0 4px;
    width: 88px;
    font-size: 9px;
    line-height: 12px
}
.e2-draft-preview a {
    padding-top: 10px
}
.e2-draft-preview a:hover .e2-draft-preview-box,
.e2-draft-preview a.hover .e2-draft-preview-box {
    outline-color: var(--hoverColor);
    transition: none
}
.e2-draft-preview-box u {
    text-decoration: none
}
.e2-draft-preview-author-picture {
    position: absolute;
    right: -5px;
    top: -5px
}
.e2-draft-preview-author-picture img {
    width: 24px;
    height: 24px;
    border-radius: 12px
}
.e2-notes-unsaved {
    display: none;
    margin-bottom: 35px
}
.e2-save-error {
    padding: 0 .33em;
    color: var(--errorColor);
    font-weight: bold
}
.e2-upload-error {
    color: var(--errorColor)
}
.e2-visual-login {
    color: var(--adminColor);
    opacity: .25
}
.e2-hidden {
    opacity: .4
}
.e2-unsaved-led {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--unsavedIndicatorColor)
}
.admin-menu {
    position: relative;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
    color: var(--disabledColor)
}
.admin-icon {
    position: relative;
    margin: 0 4px
}
@media screen and (max-width: 1023px) {
    .admin-icon {
        margin: 0 8px
    }
}
.e2-admin-menu-item-frame {
    border: var(--adminColor) 1px solid;
    border-radius: 4px
}
.e2-admin-link+.e2-unsaved-led {
    margin-left: .1em;
    vertical-align: .2em
}
.e2-notes-unsaved p .e2-admin-link+.e2-unsaved-led {
    margin-left: .3em
}
.admin-icon .e2-unsaved-led {
    position: absolute;
    right: -4px;
    top: -3px
}
.admin-links-sticky .e2-unsaved-led {
    right: 7px;
    top: -5px
}
.admin-icon span>.e2-svgi>.e2-unsaved-led {
    opacity: 0
}
.admin-links-floating {
    float: right;
    white-space: nowrap;
    margin-left: 16px
}
.admin-links-floating+.search-field {
    margin-left: 16px
}
.admin-links-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 48px
}
.admin-links a {
    color: var(--adminColor);
    border-color: var(--adminUnderlineColor)
}
.admin-links a.delete {
    color: #933;
    border-color: rgba(153, 51, 51, 0.15)
}
.admin-links a.dashed,
.admin-links a.dashed:visited {
    color: var(--adminColor);
    border-color: var(--adminUnderlineColor)
}
.admin-links a:hover,
.admin-links a.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-admin-link,
.e2-admin-link:visited {
    color: var(--adminColor);
    border-color: var(--adminUnderlineColor)
}
.e2-admin-link:hover,
.e2-admin-link.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
a.admin-menu-comments-count {
    background: var(--adminColor);
    min-width: 17px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center
}
a.admin-menu-comments-count:hover,
a.admin-menu-comments-count.hover {
    background: var(--hoverColor);
    color: #fff
}
.e2-heading {
    margin-bottom: 40px
}
.e2-heading h2 {
    margin: 0;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: var(--headingsColor)
}
.e2-heading input {
    font-size: 15px
}
.e2-heading-super {
    font-size: 14px;
    line-height: 20px;
    margin: 0
}
.e2-heading-see-also {
    margin-top: 10px
}
.e2-heading-description {
    margin: 40px 0 40px
}
.e2-year-months,
.e2-month-days {
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 24px;
    margin: 12px -4px 0
}
.e2-year-month,
.e2-month-day {
    padding: 4px
}
.e2-month-day-current {
    background: var(--currentItemBackgroundColor);
    border-radius: 3px
}
.e2-period-unavailable {
    color: var(--disabledColor)
}
.e2-section-heading {
    color: var(--headingsColor);
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    margin: 0 0 8px 0
}
.e2-livecheckable {
    color: #000
}
.e2-verified {
    color: #090
}
.e2-wrong {
    color: #900
}
.e2-search {
    white-space: nowrap
}
.e2-search-input .e2-search-input-input {
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 3px;
    width: 0;
    height: 28px;
    padding-left: 20px !important;
    padding-right: 0 !important;
    background-color: transparent
}
.e2-search-input {
    background-color: transparent
}
.e2-search-icon-placeholder {
    width: 16px;
    height: 24px
}
.e2-search-icon {
    position: absolute;
    color: var(--foregroundColor)
}
.e2-search-icon:hover {
    color: var(--hoverColor);
    cursor: pointer
}
.e2-search-icon-focus,
.e2-search-icon-focus:hover {
    cursor: text;
    color: var(--inputTextColor)
}
.e2-search-input .e2-search-input-input,
.e2-search-input .e2-search-input-input:focus {
    transition-property: width, padding-left, padding-right, left, right, transform;
    transition-duration: var(--time);
    transition-timing-function: ease-out
}
.e2-search-input .e2-search-input-input:focus {
    background-color: var(--inputBackgroundColor);
    color: var(--inputTextColor);
    cursor: text;
    width: 10em;
    padding-left: 24px !important;
    padding-right: 4px !important
}
.e2-search-results-image {
    display: inline-block;
    margin-right: 1em;
    margin-bottom: 1em;
    vertical-align: top
}
.e2-search-results-image img {
    display: block
}
.e2-search-results-image-dimmed {
    opacity: .4
}
.e2-search-tags {
    color: var(--disabledColor);
    margin-left: 12px
}
@media screen and (max-width: 1023px) {
    .e2-search-tags {
        margin-left: 16px
    }
}
.e2-search-tags a {
    color: var(--foregroundColor)
}
.e2-search-tags a.hover {
    color: var(--hoverColor)
}
.e2-heading .e2-search {
    position: relative
}
.e2-heading .e2-search form {
    display: inline-block
}
.e2-heading .e2-search-input .e2-search-input-input {
    position: relative
}
.e2-heading .e2-search-input {
    top: -2px;
    position: relative
}
.e2-heading .e2-search-icon-placeholder {
    display: none
}
.e2-heading .e2-search-icon {
    top: 0;
    left: 4px;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    cursor: text;
    color: var(--inputTextColor)
}
.e2-heading .e2-search-icon:hover {
    transition: none
}
.e2-heading .e2-search-input .e2-search-input-input,
.e2-heading .e2-search-input .e2-search-input-input:focus {
    cursor: text;
    width: 600px;
    height: 36px;
    padding-left: 24px !important;
    padding-right: 4px !important;
    background-color: var(--inputBackgroundColor);
    transition: none
}
@media screen and (max-width: 735px) {
    .e2-heading .e2-search form,
    .e2-heading .e2-search-input .e2-search-input-input,
    .e2-heading .e2-search-input .e2-search-input-input:focus {
        width: 100%
    }
}
.search-field {
    --searchFieldMaxWidth: 240px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 28px
}
.search-field__label {
    position: absolute;
    z-index: 1
}
.search-field__input {
    box-sizing: border-box;
    position: absolute;
    margin-left: auto;
    pointer-events: none;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 3px;
    width: var(--searchFieldMaxWidth);
    transform: scaleX(0);
    height: 28px;
    padding-left: 20px !important;
    padding-right: 0 !important;
    line-height: 1;
    background-color: var(--inputBackgroundColor) !important
}
.search-field__input,
.search-field__input:focus,
.search-field__input_focused {
    transition-property: padding-left, padding-right, transform !important;
    transition-duration: var(--time) !important;
    transition-timing-function: ease-out !important;
    outline: none
}
.search-field__input:focus,
.search-field__input_focused {
    color: var(--inputTextColor);
    cursor: text;
    transform: scaleX(1);
    padding-left: 24px !important;
    padding-right: 24px !important;
    pointer-events: auto
}
.search-field__input:focus+.search-field__zoom-icon,
.search-field__input_focused+.search-field__zoom-icon {
    transition-property: left, transform;
    transition-duration: var(--time);
    transition-timing-function: ease-out
}
.search-field__input:focus ~ .search-field__tags-icon,
.search-field__input_focused ~ .search-field__tags-icon {
    z-index: 1;
    opacity: 1;
    pointer-events: all
}
.search-field__zoom-icon {
    display: -ms-flexbox;
    display: flex;
    width: 16px;
    position: relative;
    margin-top: 5px;
    color: var(--foregroundColor)
}
.search-field__zoom-icon:hover {
    color: var(--hoverColor);
    cursor: pointer
}
.search-field__zoom-icon_focused,
.search-field__zoom-icon_focused:hover {
    cursor: text;
    color: var(--inputTextColor)
}
.search-field__tags-icon {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    height: 28px;
    margin-left: -4px;
    padding-top: 7px;
    opacity: 0;
    color: var(--linkColor);
    transition-property: opacity, transform;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    pointer-events: none
}
.search-field__tags-icon:active {
    z-index: 1;
    pointer-events: auto
}
.search-field__tags-icon.hover {
    color: var(--hoverColor)
}
.search-field-right-anchored .search-field__input {
    margin-right: -16px;
    right: 0;
    transform-origin: 100% 50%
}
.search-field-right-anchored .search-field__input:focus+.search-field__zoom-icon,
.search-field-right-anchored .search-field__input_focused+.search-field__zoom-icon {
    transform: none
}
.search-field-right-anchored .search-field__zoom-icon {
    margin-left: calc(-1 * var(--searchFieldMaxWidth) + 20px);
    transform: translateX(var(--searchFieldMaxWidth)) translateX(-20px)
}
.search-field-left-anchored .search-field__input {
    left: 0;
    transform-origin: 0 50%;
    margin-left: -4px
}
.search-field-left-anchored .search-field__input:focus ~ .search-field__tags-icon,
.search-field-left-anchored .search-field__input_focused ~ .search-field__tags-icon {
    transform: translateX(var(--searchFieldMaxWidth)) translateX(-20px)
}
.e2-note,
.e2-note-list {
    margin: 0 0 60px
}
.e2-note h1 {
    transition-property: font-size, line-height;
    transition-duration: var(--time);
    transition-timing-function: ease-out;
    color: var(--headingsColor);
    font-size: var(--noteTitleFontSize);
    line-height: var(--noteTitleLineHeight);
    font-weight: bold;
    max-width: 720px;
    margin: 0 0 8px;
    padding-right: 25px;
    word-break: break-word;
    word-wrap: break-word
}
.e2-note h1 a,
.e2-note h1 a:visited {
    color: var(--headingsColor);
    border-color: var(--headingsUnderlineColor)
}
.e2-note h1 a:hover,
.e2-note h1 a.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-draft-label {
    display: inline-block;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    border-radius: 3px;
    background: #706858;
    color: #fff;
    padding: 1px 5px;
    position: relative;
    top: -2px
}
.e2-note-favourite h1 {
    font-size: var(--noteTitleFavouriteFontSize);
    line-height: var(--noteTitleFavouriteLineHeight)
}
.e2-note-favourite .favourite {
    position: relative
}
.e2-note-favourite .favourite:after {
    content: '';
    position: absolute;
    display: inline-block;
    bottom: 11px;
    right: -26px;
    width: 28px;
    height: 16px;
    background-image: url("../../../system/theme/images/favourite-on.svg");
    background-position: top right;
    background-repeat: no-repeat
}
.e2-note .admin-links-floating {
    margin-top: -3px;
    z-index: 100;
    transition-property: margin-top;
    transition-duration: .25s;
    transition-timing-function: ease-out;
    background: var(--backgroundColor);
    padding: 5px 0 5px 8px;
    border-radius: 30px 0 0 30px
}
.e2-note-author-picture img {
    width: 40px;
    height: 40px;
    border-radius: 20px
}
.e2-note-author-name {
    font-size: var(--noteTextFontSize);
    line-height: var(--noteTextLineHeight);
    font-weight: bold;
    margin: 0 0 4px 0
}
.e2-note-text {
    font-size: var(--noteTextFontSize);
    line-height: var(--noteTextLineHeight);
    margin: 0 0 16px 0
}
.e2-note-text p,
.e2-note-text ul,
.e2-note-text ol,
.e2-note-text li,
.e2-note-text blockquote,
.e2-note-text .e2-text-calliope-formatted {
    font-family: var(--noteMainFontFamily)
}
.e2-note-likes {
    font-size: 0;
    margin: 0 0 10px 0
}
.e2-note-subscribe-button,
.e2-note-subscribe-button:visited {
    display: none;
    background: var(--subscribeButtonBackground);
    color: var(--subscribeButtonTextColor);
    transition: background var(--time) ease-out, color var(--time) ease-out, fill var(--time) ease-out;
    line-height: 20px;
    font-size: 14px;
    border-radius: 3px;
    border: 0;
    height: 22px;
    margin: 0 10px 10px 0;
    vertical-align: top;
    padding: 1px 8px
}
.e2-note-subscribe-button:hover,
.e2-note-subscribe-button.hover {
    background: var(--subscribeButtonHoverBackground);
    color: var(--subscribeButtonTextColor)
}
.e2-note-subscribe-button-visible {
    display: inline-block
}
.e2-note-tags,
.e2-note-comments-link {
    margin: 0 0 6px 0;
    font-size: 12px;
    line-height: 16px;
    font-family: var(--smallFontFamily)
}
.e2-comments {
    float: left;
    width: 100%;
    word-wrap: break-word
}
.e2-comment-and-reply,
.e2-comment,
.e2-comment-toggle {
    width: 100%;
    float: left
}
.e2-comment-and-reply {
    margin: 0 0 40px
}
.e2-comment {
    margin: 0
}
.e2-comment-toggle {
    margin: 0 0 40px
}
@media screen and (max-width: 735px) {
    .e2-comment {
        margin: 0 0 40px
    }
    .e2-comment-and-reply {
        margin: 0
    }
}
.e2-comment-secondary-controls {
    display: inline
}
.e2-comment-meta-area {
    float: left;
    width: 17.07%;
    min-height: 1px;
    padding-right: var(--columnSpacing)
}
@media screen and (max-width: 735px) {
    .e2-comment-meta-area {
        width: 100%;
        float: none;
        font-weight: bold
    }
}
.e2-comment-content-area {
    float: left;
    width: 65.86%;
    min-height: 1px;
    position: relative;
    padding-right: var(--columnSpacing)
}
@media screen and (max-width: 735px) {
    .e2-comment-content-area {
        width: 100%
    }
}
.e2-comment-control-area {
    float: left;
    text-align: right;
    width: 17.07%;
    min-height: 1px
}
.e2-comment-author-removed {
    text-decoration: line-through;
    color: #c00000
}
.e2-comment-author-removed span {
    color: #999
}
.e2-reply {
    margin-top: 10px
}
.e2-reply .e2-comment-author:after {
    content: ' •'
}
.e2-comment-piece-marked {
    background: var(--markedTextBackground)
}
@media screen and (max-width: 735px) {
    .e2-comment-control-area {
        width: 100%;
        text-align: left;
        margin-left: -6px
    }
}
.e2-comment-actions-disabled,
.e2-comment-actions-disabled * {
    color: var(--disabledColor);
    cursor: default;
    pointer-events: none
}
.e2-comment-actions-disabled #e2-progress {
    stroke: var(--foregroundColor)
}
.e2-spam,
.e2-spam * {
    color: #b96
}
.e2-pages {
    margin-bottom: 40px;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px
}
.e2-pages a {
    padding-top: 4px
}
.e2-page-unavailable {
    color: var(--disabledColor)
}
.e2-pages-prev,
.e2-pages-between,
.e2-pages-next {
    display: inline-block;
    vertical-align: top
}
.e2-pages-prev,
.e2-pages-next {
    max-width: 40%
}
.e2-pages-between {
    padding: 0 1em;
    white-space: nowrap
}
.e2-text {
    word-break: break-word;
    word-wrap: break-word
}
.e2-text h2,
.e2-text h3 {
    color: var(--headingsColor);
    font-size: 100%;
    line-height: inherit;
    margin: 36px 0 10px 0
}
.e2-text h2 {
    font-weight: bold
}
.e2-text h3 {
    font-style: italic
}
.e2-text hr {
    border: none;
    border-top: 1px var(--thinRuleColor) solid;
    margin: 26px 0 16px 0
}
.e2-text h2+h3,
.e2-text h2:first-child,
.e2-text h3:first-child {
    margin-top: 0
}
.e2-text-generic-object,
.e2-text-table,
.e2-text-code,
.e2-text p,
.e2-text ul,
.e2-text ol,
.e2-text li,
.e2-text blockquote {
    margin: 0 0 10px 0
}
.e2-text p,
.e2-text ul,
.e2-text ol,
.e2-text li,
.e2-text blockquote,
.e2-text-audio,
.e2-text-calliope-formatted {
    max-width: 720px
}
.e2-text-code,
.e2-text ul,
.e2-text ol,
.e2-text blockquote {
    padding: 0 0 0 40px
}
.e2-text p+ul,
.e2-text p+ol {
    margin-top: 10px
}
.e2-text ul li {
    list-style-type: none
}
.e2-text th,
.e2-text td {
    padding: 0 var(--columnSpacing) 10px 0
}
.e2-text th {
    font-weight: bold;
    color: var(--headingsColor)
}
.e2-text-picture,
.e2-text-picture.fotorama,
.e2-text-video,
.e2-text-audio {
    margin: 0 0 20px 0
}
.e2-text-picture a {
    position: relative
}
.e2-text-picture a img {
    border-style: solid
}
.e2-text-picture a.e2-text-picture-link {
    max-width: 100%;
    display: inline-block;
    border: none
}
.e2-text-picture a img {
    box-sizing: content-box;
    border-width: 1px;
    margin: -1px
}
.e2-text-picture a img {
    border-color: var(--imageBorderColor);
    transition-property: border-color;
    transition-duration: var(--time);
    transition-timing-function: ease-out
}
.e2-text-picture a img {
    border-color: var(--imageBorderColor)
}
.e2-text-picture a:hover img,
.e2-text-picture a.hover img {
    border-color: var(--hoverColor);
    transition: none
}
.e2-text-picture-imgwrapper {
    width: 100%;
    height: 0;
    position: relative
}
.e2-text-picture-imgwrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0
}
.e2-text-caption {
    margin: 6px 0 12px 0;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px
}
@media screen and (max-width: 1023px) {
    .e2-text-code,
    .e2-text ul,
    .e2-text ol,
    .e2-text blockquote {
        padding-left: 8%
    }
    .e2-text-block-quote,
    .e2-text-block-cap {
        padding-left: calc(8% - 1px)
    }
}
@media screen and (max-width: 1023px) {
    .e2-text-generic-object,
    .e2-text-table,
    .e2-text-code,
    .e2-text-picture,
    .e2-text-picture.fotorama,
    .e2-text-video,
    .e2-text-audio {
        overflow: auto
    }
}
a.e2-tag,
a:link.e2-tag,
a:visited.e2-tag {
    color: var(--tagColor);
    border-color: var(--tagUnderlineColor)
}
a:hover.e2-tag,
a.hover.e2-tag,
a:active.e2-tag {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-tags {
    line-height: 2.25em;
    margin-bottom: 48px
}
.e2-tags .e2-tag {
    margin-right: 8px
}
.e2-tag-filter {
    margin-bottom: 12px
}
.e2-tag-filter-slide-shaft,
.e2-tag-filter-slider span {
    background: var(--tagColor)
}
.e2-tag-filter-slide-area:hover .e2-tag-filter-slide-shaft,
.e2-tag-filter-slide-area:hover .e2-tag-filter-slider span {
    background: var(--hoverColor)
}
.e2-popular {
    max-width: 700px;
    columns: 3;
    column-gap: 40px;
    margin: 0 0 24px 0
}
.e2-popular p {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin: 0 0 6px 0
}
.e2-popular a {
    padding-top: 4px
}
@media screen and (max-width: 735px) {
    .e2-popular {
        max-width: none;
        columns: 1
    }
}
input[type="text"],
input[type="password"],
textarea,
select,
button,
.e2-button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    padding: 6px;
    box-shadow: none;
    transition-property: background, border-color, box-shadow, fill;
    transition-duration: .33s;
    transition-timing-function: ease-out
}
input[type="text"],
input[type="password"],
textarea,
select {
    vertical-align: baseline;
    border: none;
    background: var(--inputBackgroundColor);
    color: var(--inputTextColor);
    border-radius: 4px
}
select {
    -webkit-appearance: none
}
input[type="checkbox"],
input[type="radio"] {
    margin: 0
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus,
button:focus,
.e2-button:focus {
    transition: none
}
select>button,
select>.e2-button {
    display: none
}
button,
.e2-button {
    display: inline-block;
    padding: 6px 12px;
    background: #eae4d8;
    background: linear-gradient(to bottom, #f4f0e8 0%, #e0d8c8 100%);
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    cursor: hand;
    cursor: pointer;
    border-radius: 4px;
    color: #000
}
button:visited,
button:active,
button:hover,
button.hover,
.e2-button:visited,
.e2-button:active,
.e2-button:hover,
.e2-button.hover {
    color: #000
}
.e2-submit-button,
.e2-delete-button {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 24px;
    font-weight: bold
}
.e2-submit-button {
    background: #ec6040;
    background: linear-gradient(to bottom, #f88040 0%, #e04040 100%);
    color: #fff
}
.e2-submit-button:visited,
.e2-submit-button:active,
.e2-submit-button:hover,
.e2-submit-button.hover {
    color: #fff
}
.e2-delete-button {
    background: #eaded8;
    background: linear-gradient(to bottom, #f4ece8 0%, #e0d0c8 100%);
    color: #000
}
.e2-delete-button:visited,
.e2-delete-button:active,
.e2-delete-button:hover,
.e2-delete-button.hover {
    color: #000
}
button:disabled,
.e2-button:disabled {
    color: rgba(0, 0, 0, 0.2);
    cursor: default;
    pointer-events: none
}
button:active .e2-button:active,
button:hover,
.e2-button:hover,
button.hover,
.e2-button.hover {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.16)
}
button:hover,
.e2-button:hover,
button.hover,
.e2-button.hover {
    transition: none
}
button:focus,
.e2-button:focus {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2)
}
button:focus:hover,
.e2-button:focus:hover,
button:focus.hover,
.e2-button:focus.hover {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(0, 0, 0, 0.2)
}
.e2-keyboard-shortcut {
    padding: 0 .5em;
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px
}
button+.e2-keyboard-shortcut,
.e2-button+.e2-keyboard-shortcut {
    margin-left: .67em;
    font-weight: normal
}
.e2-keyboard-shortcut:empty {
    display: none
}
.e2-clickable-keyboard-shortcut {
    opacity: 1;
    padding-left: 0;
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: inherit;
    border-bottom-style: dashed;
    color: var(--adminColor);
    border-color: var(--linkUnderlineColor);
    transition-property: border-bottom, border-color, background, color, fill;
    transition-duration: var(--time);
    transition-timing-function: ease-out
}
.e2-clickable-keyboard-shortcut:hover,
.e2-clickable-keyboard-shortcut.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor);
    transition: none
}
.e2-clickable-keyboard-shortcut {
    cursor: pointer
}
.e2-pseudolink {
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: dashed
}
.e2-upload-error {
    color: var(--errorColor)
}
.e2-visual-login {
    display: inline-block;
    margin: 4px 0
}
.form {
    width: 100%
}
.form-part,
.form-control,
.form-subcontrol {
    float: left;
    width: 100%
}
.form:after {
    content: ' ';
    clear: both
}
.form-part,
.form-control,
.form-subcontrol {
    clear: left
}
.form-label {
    clear: left;
    float: left;
    width: 17.07%;
    padding: 0 20px 0 0;
    line-height: 18px;
    margin-top: 2px
}
.form-label-sticky {
    position: -webkit-sticky;
    position: sticky;
    -webkit-font-smoothing: subpixel-antialiased;
    background: var(--backgroundColor);
    top: 6px
}
.form-element {
    margin-left: 17.07%;
    width: 82.93%
}
.form-control-sublabel {
    margin: 0 0 8px;
    width: 82.93%;
    font-size: 14px;
    line-height: 20px
}
.form-part {
    width: 100%;
    margin: 0 0 24px 0
}
.form-control {
    width: 100%;
    margin: 0 0 12px 0
}
.form-label p {
    margin: 0 0 8px
}
.form-control .input-label {
    margin-top: 8px
}
.form-control .input-error {
    background: #ffece0
}
.form-control input,
.form-control label,
.form-control select,
.form-control textarea {
    margin-bottom: 8px
}
.form-control .disabled {
    color: #999
}
.form-control-big .input-label {
    margin-top: 16px
}
.form-control-big input[type="text"] {
    font-size: 24px;
    margin-bottom: 8px
}
.form-subcontrol {
    width: 100%;
    margin: 0 0 8px 0
}
.form-subcontrol-master {
    margin: 0 0 0 0
}
.form-subcontrol-slave {
    margin: 0 0 0 16px
}
.form-control .full-width {
    width: 100%
}
.form-control .width-4 {
    width: 80%
}
.form-control .width-3 {
    width: 60%
}
.form-control .width-2 {
    width: 40%
}
.form-control .width-1 {
    width: 20%
}
.form-control .icon {
    position: relative;
    left: -.33em;
    width: 0
}
.form-control .icon span.e2-svgi {
    position: absolute;
    right: 0;
    top: 6px
}
.form-label-saveinfo {
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 16px;
    margin: 4px 0 0
}
.delete-box {
    border-radius: 6px;
    background: #ec6040;
    padding: 20px 0 40px 0;
    color: #fff
}
@media screen and (max-width: 735px) {
    .form-control .form-label {
        width: 100%;
        padding: 0 0 6px 0;
        vertical-align: baseline;
        margin: 0
    }
    .form-control .input-label {
        margin: 0
    }
    .form-control .form-label-sticky {
        background: var(--backgroundTransparentColor);
        -webkit-backdrop-filter: blur(8px);
        margin-top: -6px;
        padding-top: 6px;
        top: 0
    }
    .form-label label {
        font-weight: bold
    }
    .form-label-saveinfo {
        float: right;
        display: inline-block;
        margin: 0 0 0 1em;
        vertical-align: baseline
    }
    .form-element,
    .form-control-sublabel {
        width: 100%;
        margin-left: 0px
    }
    .delete-box {
        width: 100%;
        padding: 20px 4% 40px
    }
    .width-2,
    .width-3,
    .width-4 {
        width: 100% !important
    }
}
@media screen and (max-width: 1023px) {
    .e2-smart-title {
        width: 100% !important
    }
    #blog-title,
    .width-2,
    .width-3,
    .width-4 {
        width: 100% !important
    }
}
.e2-login-sheet,
.e2-subscribe-sheet {
    position: fixed;
    z-index: 998;
    opacity: 0;
    -webkit-font-smoothing: subpixel-antialiased;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background: var(--sheetBackgroundColor);
    transition: opacity .25s ease-out, visibility .25s ease-out
}
.e2-login-window,
.e2-subscribe-window {
    position: relative;
    left: 50%;
    width: 50%;
    top: 10%;
    overflow: visible;
    background: var(--windowBackgroundColor);
    opacity: 0;
    padding: 16px 20px 32px 20px;
    box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all .25s ease-out;
    transform: scale(0.7)
}
.e2-show {
    visibility: visible;
    opacity: 1
}
.e2-show .e2-login-window,
.e2-show .e2-subscribe-window {
    opacity: 1;
    transform: scale(1)
}
.e2-login-window {
    width: 360px;
    margin: 0 -180px
}
.e2-login-window label {
    font-size: 14px
}
.e2-login-window-col {
    width: 220px;
    margin: 0 0 0 40px
}
.e2-login-window-input {
    width: 100%
}
.e2-login-window-input-wrapper {
    position: relative;
    margin: 0 0 8px 0
}
.e2-login-window-icon {
    position: absolute;
    top: 6px;
    left: -20px;
    width: 16px;
    height: 16px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    vertical-align: middle
}
.e2-login-window-button {
    width: 100%;
    margin: 20px 0 0 0
}
.e2-subscribe-window {
    width: 500px;
    margin: 0 -250px
}
.e2-login-window h2,
.e2-subscribe-window h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    margin: 0 0 12px;
    color: var(--headingsColor)
}
.e2-subscribe-window {
    overflow: auto
}
.e2-subscribe-window p {
    margin: 0 0 10px 0
}
.e2-subscribe-matrix {
    float: left;
    width: 100%;
    margin-right: -10px
}
.e2-subscribe-element {
    float: left;
    width: 120px;
    height: 60px;
    margin: 0 20px 16px 0
}
.e2-subscribe-element a {
    display: block;
    margin-bottom: 2px;
    font-weight: bold
}
.e2-subscribe-twitter:link,
.e2-subscribe-twitter:visited {
    color: #00b8f2;
    border-color: rgba(0, 184, 242, 0.15)
}
.e2-subscribe-facebook:link,
.e2-subscribe-facebook:visited {
    color: #3850a1;
    border-color: rgba(56, 80, 161, 0.15)
}
.e2-subscribe-vk:link,
.e2-subscribe-vk:visited {
    color: #5b7ea1;
    border-color: rgba(91, 126, 161, 0.15)
}
.e2-subscribe-telegram:link,
.e2-subscribe-telegram:visited {
    color: #37a1d8;
    border-color: rgba(55, 161, 216, 0.15)
}
.e2-subscribe-gplus:link,
.e2-subscribe-gplus:visited {
    color: #dd4241;
    border-color: rgba(221, 66, 65, 0.15)
}
.e2-subscribe-linkedin:link,
.e2-subscribe-linkedin:visited {
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.15)
}
.e2-subscribe-odnoklassniki:link,
.e2-subscribe-odnoklassniki:visited {
    color: #f6903b;
    border-color: rgba(246, 144, 59, 0.15)
}
.e2-subscribe-pinterest:link,
.e2-subscribe-pinterest:visited {
    color: #bd081c;
    border-color: rgba(189, 8, 28, 0.15)
}
.e2-subscribe-rss:link,
.e2-subscribe-rss:visited {
    color: #de601c;
    border-color: rgba(222, 96, 28, 0.15)
}
.e2-subscribe-jsonfeed:link,
.e2-subscribe-jsonfeed:visited {
    color: #6cbf00;
    border-color: rgba(108, 191, 0, 0.15)
}
.e2-subscribe-window a {
    white-space: nowrap
}
.e2-subscribe-window a:hover,
.e2-subscribe-window a.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-subscribe-element b {
    color: #466869
}
@media screen and (max-width: 735px) {
    .e2-login-window {
        width: 280px;
        margin: 0 -140px
    }
    .e2-login-window-col {
        width: 200px
    }
    .e2-subscribe-window {
        left: 5%;
        top: 3%;
        width: 90%;
        height: 88%;
        margin: 0
    }
    .e2-subscribe-element {
        width: 40%;
        margin-right: 10%
    }
}
svg {
    fill: currentColor;
    stroke: currentColor
}
.e2-svgi {
    width: 16px;
    height: 16px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
    position: relative;
    top: -1px
}
.e2-svgi-double {
    width: 32px;
    height: 32px
}
a.nu {
    text-decoration: none;
    border-bottom-width: 0
}
a.nu u {
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: inherit
}
.e2-message {
    font-size: var(--noteTextFontSize);
    line-height: var(--noteTextLineHeight);
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 24px;
    background: #f0d040;
    color: #d04000
}
.e2-message+.e2-message {
    margin-top: -16px
}
.e2-message-info {
    background: #0040cc;
    color: #fff
}
.e2-message-info h2,
.e2-message-info p {
    color: #fff
}
.e2-message-serious {
    background: #e05030;
    color: #fff
}
.e2-message-serious h2,
.e2-message-serious p {
    color: #fff
}
.e2-glass {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    b-ackground: #000608;
    background: #c0c0c0;
    z-index: 996;
    opacity: .9;
    transition: all .33s ease-out
}
.e2-glass-text {
    position: fixed;
    left: 0;
    top: 200px;
    width: 100%;
    z-index: 998
}
.e2-glass-text h1 {
    line-height: 1.5em;
    font-weight: normal;
    margin: 0 0 .75em
}
.e2-glass-text p {
    max-width: none
}
.e2-glass-text * {
    text-align: center;
    color: #000
}
.e2-glass-text a,
.e2-glass-text a:link,
.e2-glass-text a:visited {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5em;
    padding: 4px 1em
}
.e2-glass-text a:hover {
    color: #f66
}
.e2-user-picture-container {
    display: inline-block;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%
}
.e2-user-picture-container img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity .25s ease-out, transform .25s ease-out
}
.e2-user-picture-container .e2-user-picture-uploading {
    visibility: hidden;
    position: absolute;
    left: 12px;
    top: 12px
}
.e2-user-picture-container-uploading .e2-user-picture-uploading {
    visibility: visible
}
.e2-external-drop-target-dragover {
    position: relative;
    background: rgba(96, 160, 255, 0.2);
    transition: none
}
.e2-external-drop-target-dragover-alt {
    background: rgba(160, 96, 0, 0.2)
}
.e2-external-drop-target-dragover.e2-external-drop-target-body {
    background: transparent
}
.e2-external-drop-target-body.e2-external-drop-target-dragover,
.e2-external-drop-target-body.e2-external-drop-target-dragover-alt {
    background: var(--backgroundColor)
}
.e2-external-drop-target-body:before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    box-shadow: 0;
    transition: box-shadow .25s ease-out;
    pointer-events: none
}
.e2-external-drop-target-body.e2-external-drop-target-dragover:before {
    box-shadow: inset 0 0 0 8px rgba(96, 160, 255, 0.5);
    transition: none
}
.e2-external-drop-target-body.e2-external-drop-target-dragover-alt:before {
    box-shadow: inset 0 0 0 8px rgba(192, 128, 64, 0.5);
    transition: none
}
.e2-external-drop-target-dragover>img,
.e2-external-drop-target-dragover>a>img,
.e2-user-picture-container-uploading>img,
.e2-user-picture-container-uploading>a>img {
    transition: transform .25s ease-out;
    opacity: .4
}
.e2-user-picture-container-uploading>img,
.e2-user-picture-container-uploading>a>img {
    transform: scale(0.001) rotate(90deg)
}
.e2-tag-filter-slide-area {
    background: var(--currentItemBackgroundColor);
    margin: 0 8px;
    padding: 4px 12px;
    border-radius: 3px;
    cursor: pointer
}
.e2-tag-filter-slide {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 1px;
    top: -1px
}
.e2-tag-filter-slide-shaft {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100px;
    height: 2px
}
.e2-tag-filter-slider {
    position: absolute;
    left: 50px;
    width: 16px;
    height: 16px
}
.e2-tag-filter-slider span {
    border-radius: 6px;
    width: 12px;
    height: 12px;
    position: absolute;
    left: -6px;
    top: -5px
}
.e2-tag-filter-slide-shaft,
.e2-tag-filter-slider span {
    background: var(--linkColor);
    transition-property: background;
    transition-duration: var(--time);
    transition-timing-function: ease-out
}
.e2-tag-filter-slide-area:hover .e2-tag-filter-slide-shaft,
.e2-tag-filter-slide-area:hover .e2-tag-filter-slider span {
    background: var(--hoverColor);
    transition: none
}
.e2-rss-button,
.e2-rss-button:visited {
    border-radius: 3px;
    color: var(--foregroundColor);
    border: 1px solid;
    border-color: var(--thinRuleColor);
    padding: 0 2px 1px 3px !important;
    font-family: var(--smallFontFamily);
    font-size: 12px;
    line-height: 12px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    top: -1px
}
.e2-rss-button:hover,
.e2-rss-button.hover {
    color: var(--hoverColor);
    border-color: var(--hoverUnderlineColor)
}
.e2-template-preview-image {
    text-align: left;
    position: relative;
    width: 100px;
    height: 120px;
    padding: 16px 0;
    outline: 1px var(--thinRuleColor) solid
}
.e2-template-preview-image-heading {
    margin: 0 0 8px 8px;
    height: 6px;
    width: 60px;
    background: currentColor
}
.e2-template-preview-image-text {
    margin: 0 0 12px 0
}
.e2-template-preview-image-text-line {
    margin: 0 0 6px 8px;
    height: 1px;
    width: 70px;
    background: currentColor
}
.e2-template-preview-image-text-line:last-child {
    width: 50px
}
.e2-template-preview-image-link {
    margin: 0 0 6px 8px;
    height: 2px;
    width: 40px;
    background: currentColor
}
.e2-select {
    cursor: pointer;
    padding-right: 19px;
    color: var(--inputTextColor);
    background: var(--inputBackgroundColor) url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.743 1.922L9.5 6.164 5.257 1.922 4.8 2.38l4.7 4.698 4.7-4.7z" style="fill: var(--inputTextColor)"/></svg>') right center no-repeat
}
.chzn-container {
    background: var(--inputBackgroundColor);
    color: var(--inputTextColor);
    border-radius: 4px
}
.chzn-container * {
    line-height: 100%
}
.chzn-container .chzn-drop {
    margin-top: 2px;
    border-radius: 2px;
    border: none;
    background: var(--inputBackgroundColor);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1px 0 0 0
}
.chzn-container-multi .chzn-choices {
    padding: 4px 0 0 4px
}
.chzn-container-multi .chzn-choices .search-choice {
    display: inline-block;
    border-radius: 2px;
    background-clip: padding-box;
    color: var(--foregroundColor);
    padding: 4px 6px;
    margin: 0 4px 4px 0;
    background: var(--backgroundColor);
    border: 1px var(--backgroundColor) solid;
    box-shadow: none;
    text-shadow: none
}
.chzn-container-multi .chzn-choices .search-field input {
    height: 100%;
    padding: 6px 0;
    margin: 0;
    color: var(--inputTextColor) !important
}
.chzn-container .chzn-results .highlighted,
.chzn-container .chzn-results li,
.chzn-container .chzn-results li em,
.chzn-container .chzn-results .highlighted em {
    line-height: 13px
}
.chzn-container .chzn-results .highlighted {
    border-radius: 2px;
    background-color: Highlight;
    background-image: none;
    color: HighlightText
}
.chzn-container .chzn-results li em {
    background: transparent;
    font-style: normal;
    border-bottom: 1px #999 solid
}
.chzn-container .chzn-results .highlighted em {
    background: transparent;
    border-bottom: 1px Highlight solid
}
.chzn-container-multi .chzn-choices {
    border-radius: 4px;
    border: none;
    background: transparent;
    box-shadow: none;
    text-shadow: none
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close {
    color: var(--foregroundColor);
    border: none
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
    color: var(--hoverColor)
}
.chzn-container-multi .chzn-choices .search-choice-focus {
    background: Highlight;
    border: 1px Highlight solid;
    box-shadow: none;
    text-shadow: none
}
.jouele {
    font-family: var(--smallFontFamily) !important;
    font-size: 15px !important;
    line-height: 24px !important;
    max-width: none !important
}
.jouele .jouele-control {
    cursor: pointer
}
.jouele .jouele-control.jouele-is-unavailable {
    cursor: default;
    opacity: .2;
    filter: grayscale(100%)
}
.jouele .jouele-progress-line-bar_base:after,
.jouele .jouele-progress-line-bar_load:after {
    background-color: var(--thinRuleColor)
}
.jouele .jouele-progress-line-bar_play:after {
    background-color: currentColor
}
.jouele .jouele-skin-dark.jouele-status-playing .jouele-progress-line-bar_play:after,
.jouele .jouele-status-playing .jouele-progress-line-bar_play:after {
    background-color: var(--linkColor)
}
.jouele .jouele-progress-line:hover .jouele-progress-line-bar_play:after {
    background-color: var(--hoverColor)
}
.jouele .jouele-progress-line-lift {
    background-color: currentColor
}
.jouele .jouele-skin-dark.jouele-status-playing .jouele-progress-line-lift,
.jouele .jouele-status-playing .jouele-progress-line-lift {
    background-color: var(--linkColor)
}
.jouele .jouele-progress-line:hover .jouele-progress-line-lift {
    background-color: var(--hoverColor)
}
.jouele .jouele-progress-line-lift:before {
    border-color: currentColor
}
.jouele .jouele-skin-dark.jouele-status-playing .jouele-progress-line-lift:before,
.jouele .jouele-status-playing .jouele-progress-line-lift:before {
    border-color: var(--linkColor)
}
.jouele .jouele-progress-line:hover .jouele-progress-line-lift:before {
    border-color: var(--hoverColor)
}
.jouele .jouele-info-control-button-icon_unavailable .jouele-svg-color,
.jouele .jouele-info-control-button-icon_play .jouele-svg-color {
    fill: var(--foregroundColor);
    stroke: none
}
.jouele .jouele-info-control-button-icon_pause .jouele-svg-color {
    fill: var(--linkColor);
    stroke: none
}
.jouele .jouele-info-control-button:hover .jouele-info-control-button-icon_play .jouele-svg-color,
.jouele .jouele-info-control-button:hover .jouele-info-control-button-icon_pause .jouele-svg-color {
    fill: var(--hoverColor);
    stroke: none
}
.jouele .jouele-info-time {
    color: inherit
}
.likely svg {
    stroke: none;
    fill: unset
}
.hljs {
    display: block;
    overflow-x: auto;
    color: #657b83
}
.hljs-comment,
.hljs-quote {
    color: #93a1a1
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-addition {
    color: #859900
}
.hljs-number,
.hljs-string,
.hljs-meta .hljs-meta-string,
.hljs-literal,
.hljs-doctag,
.hljs-regexp {
    color: #2aa198
}
.hljs-title,
.hljs-section,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
    color: #268bd2
}
.hljs-attribute,
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-class .hljs-title,
.hljs-type {
    color: #b58900
}
.hljs-symbol,
.hljs-bullet,
.hljs-subst,
.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-link {
    color: #cb4b16
}
.hljs-built_in,
.hljs-deletion {
    color: #dc322f
}
.hljs-formula {
    background: #eee8d5
}
.hljs-emphasis {
    font-style: italic
}
.hljs-strong {
    font-weight: bold
}