/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

html {
    height: 100%;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


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

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin-top: 0;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
}

h4 {
    font-size: 16px;
}

a {
    color: #B5BAC1;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    text-decoration: underline;
}

input,
textarea {
    color: #000;
    font-size: 14px;
}

input {
    font-weight: 300;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: border .12s ease-in-out;
    -o-transition: border .12s ease-in-out;
    transition: border .12s ease-in-out;
}

input:focus {
    border: 1px solid rgba(123, 18, 56, 1);
}

input[disabled] {
    background-color: #ddd;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("/hc/theming_assets/01HZM0RX22V8BYRAMH3MTAK673") no-repeat #fff;
    background-position: right 10px center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 30px 8px 10px;
    outline: none;
    color: #555;
    width: 100%;
}

select:focus {
    border: 1px solid rgba(123, 18, 56, 1);
}

select::-ms-expand {
    display: none;
}

textarea {
    border: 1px solid #ddd;
    border-radius: 2px;
    resize: vertical;
    width: 100%;
    outline: none;
    padding: 10px;
}

textarea:focus {
    border: 1px solid rgba(123, 18, 56, 1);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
}

@media (min-width: 1160px) {
    .error-page {
        padding: 0;
        width: 90%;
    }
}

.dropdown-toggle::after {
    color: inherit;
}

/***** Buttons *****/
.button, [role="button"] {
    border: 1px solid rgba(123, 18, 56, 1);
    border-radius: 4px;
    color: rgba(123, 18, 56, 1);
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    line-height: 2.34;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
    -o-transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
    transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    -webkit-touch-callout: none;
}

@media (min-width: 768px) {
    .button, [role="button"] {
        width: auto;
    }
}

.button::after, [role="button"]::after {
    color: rgba(123, 18, 56, 1);
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
    background-color: rgba(123, 18, 56, 0.83);
    color: #FFFFFF;
    text-decoration: none;
}

.button[data-disabled], [role="button"][data-disabled] {
    cursor: default;
}

.button-large, input[type="submit"] {
    background-color: rgba(123, 18, 56, 1);
    border: 0;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.72;
    min-width: 190px;
    padding: 0 1.9286em;
    width: 100%;
}

@media (min-width: 768px) {
    .button-large, input[type="submit"] {
        width: auto;
    }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
    background-color: rgba(123, 18, 56, 0.83);
}

.button-large[disabled], input[type="submit"][disabled] {
    background-color: #ddd;
}

.button-secondary {
    color: #323232;
    border: 1px solid #ddd;
    background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
    color: #323232;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
}

/***** Tables *****/
.table {
    width: 100%;
    table-layout: fixed;
}

@media (min-width: 768px) {
    .table {
        table-layout: auto;
    }
}

.table th,
.table th a {
    color: #323232;
    font-size: 13px;
    font-weight: 300;
    text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"],
.table th a {
    text-align: right;
}

.table tr {
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .table tr {
        display: table-row;
    }
}

.table td {
    display: block;
}

@media (min-width: 768px) {
    .table td {
        display: table-cell;
    }
}

@media (min-width: 1024px) {
    .table td, .table th {
        padding: 20px 30px;
    }
}

@media (min-width: 768px) {
    .table td, .table th {
        padding: 10px 20px;
        height: 60px;
    }
}

/***** Forms *****/
.form {
    max-width: 650px;
}

.form-field input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}

.form-field input:focus {
    border: 1px solid rgba(123, 18, 56, 1);
}

.form-field input[type="text"]:focus {
    border: 1px solid rgba(123, 18, 56, 1);
}

.form-field input[type="checkbox"] {
    width: auto;
}

.form-field .nesty-input:focus {
    border: 1px solid rgba(123, 18, 56, 1);
    text-decoration: none;
}

.form-field textarea {
    vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
    margin: 0 0 0 10px;
}

.form-field.required > label::after {
    content: "*";
    color: #f00;
    margin-left: 2px;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
    background: transparent url("/hc/theming_assets/01HZM0RX6ME9DRXRERMJJDC3XA") 99% 50% no-repeat;
    background-size: 16px 16px;
}

.form footer a {
    color: #323232;
    cursor: pointer;
    margin-right: 15px;
}

.form .suggestion-list {
    font-size: 13px;
    margin-top: 30px;
}

.form .suggestion-list label {
    border-bottom: 1px solid #ddd;
    display: block;
    padding-bottom: 5px;
}

.form .suggestion-list li {
    padding: 10px 0;
}

.form .suggestion-list li a:visited {
    color: #22050f;
}

/* main page */

html, body {
    font-size: 10px;
    color: #323232;
}

body {
    color: #323232;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 22px;
    -webkit-font-smoothing: antialiased;
    background-color: #F5F7FA;
}

.header-wrapper {
    width: 100%;
    padding-left: 4.8rem;
    padding-right: 4.8rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom-left-radius: 2.4rem;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 228px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  	background: linear-gradient(255.33deg, rgba(123, 18, 56, 0.25) 3.43%, #EFDDD5 103.55%);
  	background: -o-linear-gradient(255.33deg, rgba(123, 18, 56, 0.25) 3.43%, #EFDDD5 103.55%);
    background-position: 100%;
}

header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 71px;
    padding-left: 0;
    padding-right: 0;
}

.user-nav {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
}

.nav-wrapper a {
    border: 0;
    color: rgba(123, 18, 56, 1);
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    width: auto;
}

.header-wrapper .submit-a-request {
    display: block;
    font-size: 1.6rem;
    padding: 1.3rem 1.6rem;
    text-align: center;
    background-color: rgba(123, 18, 56, 1);
    color: white;
    width: 22.4rem;
    margin: 0 auto;
    border-radius: 1.2rem;
}

.section .page-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 16px;
    background-color: white;
    border-radius: 12px;
    height: 43px;
    padding-top: 10px;
    padding-bottom: 11px;
    padding-left: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

nav#user-nav {
    margin-right: 5px;
}

.dropdown.language-selector {
    margin-left: 4rem;
    margin-right: 2.8rem;
  	padding: 2px;
}

.dropdown-menu {
    background: #fff;
    display: none;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    margin-top: 1px;
    min-width: 170px;
    padding: 10px 0;
    position: absolute;
    text-align: left;
    z-index: 1000;
    top: 44px;
    border-radius: 8px;
    -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.menu {
    width: 300px;
    height: auto;
    background: #333;
    color: #ccc;
    padding: 10px;
    position: fixed;
    left: -320px;
    -webkit-transition: left 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: left 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: left 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu.animate {
    left: 0;
}

.hero {
    background-image: none;
    background-position: center;
    background-size: cover;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

section.section.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 769px) {
    .section.section.hero {
        margin-bottom: 0;
    }
}

.hero-inner {
    position: relative;
    width: 74.2rem;
    height: 48px;
    left: 0;
    top: -1.3rem;
    margin: 0 auto;
    border-radius: 12px;
}

.search input[type="search"] {
    border: 1px solid #ddd;
    border-radius: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #999;
    height: 40px;
    padding-left: 40px;
    padding-right: 20px;
    -webkit-appearance: none;
    width: 100%;
}

.nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  	max-width: 340px;
}

.article-more-questions {
    width: 740px;
    min-height: 134px;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
   	background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='740' height='134' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='740' height='134' rx='12' fill='url(%23a)'/%3e%3cdefs%3e%3clinearGradient id='a' x1='751.28' y1='0' x2='196.629' y2='423.092' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%237B1238' stop-opacity='.25'/%3e%3cstop offset='1' stop-color='%23FAE7E7' stop-opacity='.4'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");

    background-size: cover;
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 100px auto;
}

.article-more-questions a {
    display: block;
    padding: 1.3rem 1.6rem;
    text-align: center;
    background-color: rgba(123, 18, 56, 1);
    color: white;
    width: 22.4rem;
    margin: 0 auto;
    margin-top: 1.6rem;
    border-radius: 1.2rem;
    font-weight: normal;
}

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    text-align: left;
}

.subscription-description__title {
    font-size: 24px;
    font-weight: bold;
    line-height: 33px;
    margin-bottom: 8px;
}

.subscription-description__text {
    font-size: 20px;
    line-height: 27px;
}

.subscription-description {
    margin-top: 80px;
    margin-bottom: 32px;
    padding: 80px 0 32px 0;
    width: 74.2rem;
    margin: 0 auto;
}

.container {
    width: 74.2rem;
    margin: 0 auto;
}

.section .article-list {
    display: none;
}

.article-list-item {
    font-size: 16px;
    margin-left: 4.4rem;
}

.article-list-item {
    padding: 16px 0;
}

.section .article-list {
    padding: 1.4rem 0;
    background-color: #ffffff;
    border-radius: 1.2rem;
    margin: 16px 0 0 0;
}

.container.articles h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10rem;
    margin-bottom: 1rem;
    line-height: 2.7rem;
}

a.blocks-item-link, .section-tree-title a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 16px;
    background-color: white;
    border-radius: 12px;
    height: 43px;
    padding-top: 10px;
    padding-bottom: 11px;
    padding-left: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #323232;
}

a.blocks-item-link::before {
    content: '';
    height: 0.8rem;
    width: 0.8rem;
    display: block;
    border: 1px solid rgba(123, 18, 56, 1);
    border-right-width: 0;
    border-top-width: 0;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-136deg);
    position: absolute;
    left: 95%;
    top: 1.8rem;
}

.section-tree-title a::before {
    content: '';
    height: 0.8rem;
    width: 0.8rem;
    display: block;
    border: 2px solid rgba(123, 18, 56, 1);
    border-right-width: 0;
    border-top-width: 0;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 71.1rem;
    top: 1.8rem;
}

.section-tree-title.active_block a::before {
    border: 2px solid rgba(123, 18, 56, 1);
    border-left-width: 0;
    border-bottom-width: 0;
    top: 1.8rem;
}

section.categories.blocks {
    max-width: 74.2rem;
    margin: 0 auto;
}

/*  */

.container.section-tree {
    width: 74.2rem;
    margin: 0 auto;
}

section.section {
    width: 100%;
}

/*  */

.category-content header.page-header h1 {
    margin-left: 0;
}

li.article-list-item.article-promoted {
    margin-left: 2.4rem;
}

.article .article-list-item {
    margin-left: 2.4rem;
}

.section-content li.article-list-item {
    margin-left: 22px;
  	border-bottom: 1px solid #ddd;
}

.section .page-header::before {
    content: '';
    height: 0.8rem;
    width: 0.8rem;
    display: block;
    border: 2px solid rgba(123, 18, 56, 1);
    border-right-width: 0;
    border-top-width: 0;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 71.1rem;
    top: 1.8rem;
}

.section .page-header.active_block::before {
    border: 2px solid rgba(123, 18, 56, 1);
    border-left-width: 0;
    border-bottom-width: 0;
    top: 1.8rem;
}

.page-header h3, .section-tree-title {
    font-size: 1.6rem;
    font-weight: bold;
}

ul.article-list.promoted-articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.promoted-articles-item a {
    font-size: 16px;
    border-bottom: 1px solid rgba(119, 124, 246, 0.1);
    color: #323232;
    display: block;
    padding: 15px 0;
}

.promoted-articles-item:last-child a {
    border: 0;
}

.arrow {
    position: fixed;
    z-index: 999;
    top: 89%;
    right: 48px;
    width: 68px;
    height: 68px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.arrow:after {
    position: absolute;
    top: 39%;
    left: 39%;
    content: '';
    display: block;
    width: 12.4px;
    height: 12.4px;
    border-left: 2px solid #323232;
    border-bottom: 2px solid #323232;
    -webkit-transform: rotate(-44deg);
    -ms-transform: rotate(-44deg);
    transform: rotate(-44deg);
}

.arrow.scroll_bottom:after {
    border: 2px solid #323232;
    border-left-width: 0;
    border-bottom-width: 0;
}

header.page-header h1 {
    margin-left: 24px;
}

/* request */

nav.sub-nav {
    padding: 0;
    margin: 32px 0 40px 48px;
}

.breadcrumbs li {
    color: #B5BAC1;
    display: inline;
    font-weight: 400;
    font-size: 16px;
    max-width: 450px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
    content: ">";
    margin: 0 4px;
}

.container h1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 27px;
    text-align: start;
  	margin-top: -45px;
    margin-left: 17.2rem;
}

.form {
    padding-top: 32px;
    max-width: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}

.form-field input[type="text"], a.nesty-input, textarea#request_description, div#upload-dropzone {
    border: 1px solid #E6E9ED;
    border-radius: 12px;
}

.form-field .nesty-input {
    height: 48px;
  	line-height: 44px;
    font-size: 16px;
}

input#request_anonymous_requester_email {
    height: 48px;
}

.form-field ~ .form-field {
    margin-top: 16px;
}

div#upload-dropzone {
    background-color: #fff;
}

input[type="submit"] {
    display: block;
    text-align: center;
    background-color: rgba(123, 18, 56, 1);
    color: white;
    width: 100%;
    height: 48px;
    margin-top: 1.6rem;
    border-radius: 1.2rem;
    font-weight: normal;
    border: none;
}

.upload-dropzone span {
    font-size: 14px;
    padding: 12px 24px;
}

.upload-dropzone a {
    text-decoration: none;
    font-size: 14px;
  	font-weight: 400;
    color: rgba(123, 18, 56, 1);
}

.nesty-input::after {
    line-height: 1em;
    position: absolute;
    right: 10px;
    font-size: 20px;
    top: 25%;
    color: rgba(123, 18, 56, 1);
    content: "\25BE";
    font-family: 'copenhagen-icons';
    display: inline-block;
    vertical-align: middle;
}

.form-field p {
    color: #656D78;
    font-size: 12px;
    margin: 8px 0;
}

.form-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}


.form footer {
    margin-top: 32px;
    margin-bottom: 100px;
}

/* articles */

.article-list-link.current-article, .article-list-link:hover {
    color: rgba(123, 18, 56, 0.83);
    text-decoration: none;
}

h1.article-title {
    color: initial;
    margin-left: 0;
    margin-bottom: 24px;
}

.article-meta a {
    color: initial;
    font-size: 16px;
    font-weight: bold;
}

.meta-data:not(:last-child)::after {
    content: "\05C0";
    margin: 0 5px;
}

.meta-data {
    font-size: 14px;
    font-weight: 400;
}

.article-body {
/*     margin-top: 102px; */
    font-size: 16px;
}

b, strong {
    font-weight: bold;
}

.article-body p {
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
}

.article-footer {
    margin-top: 100px;
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.article-votes {
    margin-bottom: 100px;
    border-top: 1px solid rgba(119, 124, 246, 0.1);
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid rgba(119, 124, 246, 0.1);
}

.article-vote {
  	position: relative;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin: 16px 12px;
    background-color: white;
    border: none;
}

.article-vote::before {
    font-size: 24px;
}

[dir="rtl"] .article-vote::before {
    margin-right: 0;
    margin-left: 10px;
}

.article-vote:focus, .article-vote:active {
    background-color: transparent;
    color: rgba(123, 18, 56, 0.83);
}

.article-vote:hover {
    background-color: rgba(123, 18, 56, 0.83);
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
    color: #FFFFFF;
}

.article-vote-up::before {
    content: "\01F44D \01F3FB";
  	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.article-vote-down::before {
    content: "\1F44E \01F3FB";
  	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

span.article-votes-question {
    font-size: 16px;
    font-weight: 700;
}

span.article-vote-label {
    font-size: 14px;
    color: #656D78;
}

.article {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 66%;
    flex: 1 0 66%;
}

.article-title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.article-meta {
    display: inline-block;
    margin-left: 14px;
    vertical-align: middle;
}

.article-content {
    line-height: 1.6;
    word-wrap: break-word;
}

.user-avatar {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}

.avatar {
    display: inline-block;
    position: relative;
}

.avatar img {
    height: 64px;
    width: 64px;
}

.avatar .icon-agent::before {
    background-color: rgba(123, 18, 56, 1);
    border: 1px solid #fff;
    border-radius: 50%;
    bottom: -4px;
    color: #FFFFFF;
    content: ' ';
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.5 8.625v-.291a7.5 7.5 0 0 0-15 0v.291A2.917 2.917 0 0 0 .833 11.25v1.667a2.917 2.917 0 0 0 2.917 2.917A1.242 1.242 0 0 0 5 14.591v-5a1.25 1.25 0 0 0-1.25-1.258c-.14.005-.28.019-.417.041v-.041a6.667 6.667 0 0 1 13.333 0v.041a3.666 3.666 0 0 0-.425-.041A1.242 1.242 0 0 0 15 9.575v5a1.242 1.242 0 0 0 1.241 1.259 2.917 2.917 0 0 0 2.925-2.917V11.25A2.917 2.917 0 0 0 17.5 8.625Zm-13.742.542a.408.408 0 0 1 .408.408v5a.408.408 0 0 1-.408.409 2.083 2.083 0 0 1-2.092-2.067V11.25a2.083 2.083 0 0 1 2.092-2.083Zm14.575 3.75A2.083 2.083 0 0 1 16.25 15a.409.409 0 0 1-.409-.408v-5a.41.41 0 0 1 .417-.409 2.083 2.083 0 0 1 2.075 2.067v1.667ZM10 15.834A1.917 1.917 0 0 0 7.916 17.5h-2.5a2.027 2.027 0 0 1-1.558-.708.42.42 0 0 0-.633.55 2.899 2.899 0 0 0 2.191.992h2.792a2.226 2.226 0 0 0 1.792.833 1.916 1.916 0 0 0 2.083-1.667A1.917 1.917 0 0 0 10 15.834Zm0 2.5c-.675 0-1.25-.384-1.25-.834 0-.45.575-.833 1.25-.833s1.25.383 1.25.833c0 .45-.575.834-1.25.834Z' fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    font-size: 18.33px;
    height: 32px;
    line-height: 28.33px;
    position: absolute;
    right: -12px;
    text-align: center;
    width: 32px;
}

/* search */

@media (max-width: 991px) {
    .search-container {
        max-width: 90%;
        padding: 0;
        margin: 0 0 40px 48px;
    }
}

@media (min-width: 992px) {
    .search-container {
        max-width: 70%;
        padding: 0;
        margin: 0 0 40px 48px;
    }
}

a.search-result-link {
    color: rgba(123, 18, 56, 1);
    font-size: 15px;
}

.search-results a {
    color: rgba(123, 18, 56, 1);
}

.breadcrumbs.search-result-breadcrumbs li {
    font-size: 13px;
    font-weight: 300;
}

.search-result-description {
    font-size: 15px;
}

.meta-data:not(:last-child)::after {
    content: "\00B7";
    margin: 0 5px;
}

.search-result-breadcrumbs li:last-child::after {
    content: "·";
    display: inline-block;
    margin: 0 5px;
    color: #000;
}

.search-container header.page-header h1 {
    margin-left: 0;
    font-size: 20px;
    color: #B5BAC1;
    font-weight: bold;
    line-height: 27px;
    text-align: start;
}

.search-container header {
    display: inline-block;
}

.search-results-column {
    margin-top: 32px;
    font-size: 16px;
    line-height: 22px;
    color: #AAB2BD;
}

input#query {
    color: #323232;
}

input#query::-webkit-input-placeholder {
  	color: #323232;
}

input#query::-moz-placeholder {
  	color: #323232;
}

input#query:-ms-input-placeholder {
  	color: #323232;
}

input#query::-ms-input-placeholder {
  	color: #323232;
}

input#query::placeholder {
  	color: #323232;
}

@media (max-width: 284px) {
    .article-body p:first-child {
        -webkit-margin-before: 9em;
        margin-block-start: 9em;
    }
}

@media (max-width: 538px) {
    .hero-inner .search input[type="search"] {
        padding-left: 46px;
    }
}


@media (max-width: 768px) {
    body {
        color: #000000;
    }

    .user-nav, .icon-menu, .submit-a-request, .login, .article-more-questions.desktop {
        display: none;
    }

    .hero-inner .search input[type="search"] {
        width: 95%;
    }

    .logo {
        margin-top: -3.3rem;
        margin-left: 1.3rem;
    }
  
  	.logo img {
    		max-height: 28px;
		}

    .header {
        height: 40px;
        margin-bottom: 2.2rem;
    }

    .hero-inner__text {
        margin-left: 13px;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 16px;
        text-align: left;
    }

    .footer-language-selector {
        position: absolute;
        right: 25.33px;
        top: -13.17px;
    }

    .header-wrapper {
        padding: 3.2rem 16px 58px 16px;
        background-image: none;
  			background: -o-linear-gradient(255.33deg, rgba(123, 18, 56, 0.25) 3.43%, #EFDDD5 103.55%);
      	background: linear-gradient(255.33deg, rgba(123, 18, 56, 0.25) 3.43%, #EFDDD5 103.55%);
        background-size: cover;
    }

    span.dropdown-menu.dropdown-menu-end {
        right: -52px;
        border-radius: 8px;
        -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
        padding: 12px 24px;
    }

    .dropdown-menu [role=menuitem] {
        padding: 7px 0 7px 0;
    }

    .hero-inner {
        width: 100%;
        left: 0;
        margin: 0 auto;
        position: relative;
        top: 0;
    }

    section.section.hero {
        margin-bottom: 55px;
        padding: 0;
    }

    main {
        width: 90%;
    }

    a.dropdown-toggle {
        font-size: 14px;
        margin-right: -31px;
    }

    .container.section-tree {
        width: 96%;
    }

    .subscription-description__title {
        font-size: 20px;
    }

    .subscription-description__text.color-secondary {
        font-size: 14px;
    }

    .subscription-description {
        width: 96%;
        padding-bottom: 0;
        padding-top: 34px;
    }

    h3.section-tree-title {
        font-weight: 400;
    }

    section.container.articles {
        width: 96%;
    }

    .hero-inner .search::before {
        left: 30px;
    }

    .article-more-questions {
        width: 100%;
    }

    .hero-inner.overlay {
        opacity: 0;
    }

    a.blocks-item-link {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 16px;
        background-color: white;
        border-radius: 12px;
        min-height: 43px;
    		height: auto;
        padding-top: 10px;
        padding-bottom: 11px;
        padding-left: 16px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        color: #323232;
    }

    a.blocks-item-link::before {
        content: '';
        height: 0.8rem;
        width: 0.8rem;
        display: block;
        border: 1px solid rgba(123, 18, 56, 1);
        border-right-width: 0;
        border-top-width: 0;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-136deg);
        position: absolute;
        left: 95%;
        top: 40%;
    }
  
    .categories.blocks h4.blocks-item-title {
      	max-width: 90%;
		}

    .article-more-questions.mobile {
        margin: 32px auto;
    }
  
    .section-content {
      margin-bottom: 70px;
  }

    .container.articles h3 {
        margin-top: 0;
    }

    li.article-list-item {
        border-bottom: 1px solid rgba(119, 124, 246, 0.1);
    }

    /* submit */
    .container {
        width: auto;
        max-width: 74.2rem;
    }

    .container h1 {
        margin-left: 0;
    }

    .form-field .nesty-input {
        font-size: 14px;
    }

    /* article */
    nav.sub-nav {
        margin-left: 0;
    }

    /* article */
    .article-more-questions {
        margin: 32px auto;
    }

    .article-votes {
        margin-bottom: 0;
    }

    h3.collapsible-sidebar-title.sidenav-title {
        font-size: 16px;
    }

    a.sidenav-item.current-article {
        color: rgba(123, 18, 56, 1);
    }

    a.sidenav-item {
        font-size: 16px;
    }

    .article-footer {
        margin-top: 0;
    }

    .article-votes-feedback__wrap {
        display: none;
    }

    section.article-sidebar {
        border-bottom: 1px solid #ddd;
        border-top: 1px solid #ddd;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        margin-bottom: 20px;
        padding: 0;
    }

    /* search */
    .search-container {
        margin: 0 auto;
    }

    .search-container header.page-header h1 {
        text-align: center;
    }

    .search-results-column p {
        text-align: center;
    }

    p.no_results {
        margin-top: 45px;
    }

    .no_results::before {
        top: 420px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #F5F7FA;
        color: #CCD1D9;
        content: "\1F50D";
        font-size: 72px;
        position: absolute;
        left: 43%;
        font-family: "copenhagen-icons";
        font-weight: 300;
    }
}

@media (min-width: 769px) {
    .nav-wrapper a.login {
        display: inline-block;
    }
}

/* mobile */

@media (max-width: 768px) {
    .container.section-tree, .nav-wrapper a.login, .article section.content, .user-info.dropdown, .dropdown.language-selector.desktop, .my-activities-sub-nav.collapsible-nav,
    article .article-list {
        display: none;
    }
}

/* desktop */
@media (min-width: 769px) {
    .hero-inner__text, .article-more-questions.mobile, .dropdown.language-selector.mobile, .language-selector .dropdown-toggle::after, .user-info > [role="button"]::after, .my-activities-sub-nav.collapsible-nav, .mobile-sidebar {
        display: none;
    }
}

@media (max-width: 984px) {
    .arrow {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .icon-menu, .login {
        display: none;
    }
}

@media (max-width: 1206px) {
    .desktop-sidebar {
        display: none;
    }

    div#article-container {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.article-return-to-top {
    display: none;
}

/*  */

@media (min-width: 768px) {
    .user-nav {
        position: relative;
    }
}

.user-nav[aria-expanded="true"] {
    background-color: #fff;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #ddd;
    right: 0;
    left: 0;
    top: 71px;
    z-index: 1;
}

.user-nav[aria-expanded="true"] > a {
    display: block;
    margin: 20px;
}

@media (min-width: 768px) {
    .nav-wrapper a {
        display: inline-block;
    }
}

[dir="rtl"] .nav-wrapper a {
    padding: 0 0 0 20px;
}

.user-nav a:hover, .user-nav a:focus, .user-nav a:active, .article-more-questions a:hover, .article-more-questions a:focus, .article-more-questions a:active {
    background-color: rgba(123, 18, 56, 0.83);
    text-decoration: none;
}

.nav-wrapper .icon-menu {
    display: inline-block;
    margin-right: 10px;
    color: rgba(123, 18, 56, 1);
}

/***** User info in header *****/
.user-info {
    display: inline-block;
}

.user-info .dropdown-toggle::after {
    display: none;
}

.user-info > [role="button"] {
    border: 0;
    color: rgba(123, 18, 56, 1);
    min-width: 0;
    padding: 0;
    white-space: nowrap;
}

.user-info > [role="button"]:hover {
  	line-height: 29.79px;
    color: rgba(123, 18, 56, 0.83);
    background-color: transparent;
}

#user #user-name {
    display: none;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 768px) {
    #user #user-name {
        display: inline-block;
    }
}

#user #user-name:hover {
    text-decoration: underline;
}

/***** User avatar *****/


/***** Footer *****/
.footer {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding: 30px 0;
}

.footer a {
    color: #323232;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1160px) {
    .footer-inner {
        padding: 0;
        width: 90%;
    }
}

.footer-language-selector {
    color: #323232;
    display: inline-block;
    font-weight: 300;
}

/***** Breadcrumbs *****/
.breadcrumbs {
    margin: 0 0 15px 0;
    padding: 0;
}

@media (min-width: 768px) {
    .breadcrumbs {
        margin: 0;
    }
}

/***** Search field *****/
.search {
    position: relative;
}


[dir="rtl"] .search input[type="search"] {
    padding-right: 40px;
    padding-left: 20px;
}

.search input[type="search"]:focus {
    border: 1px solid rgba(123, 18, 56, 1);
    color: #555;
}

.search::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    color: #ddd;
    content: "\1F50D";
    font-size: 18px;
    position: absolute;
    left: 15px;
}

[dir="rtl"] .search::before {
    right: 15px;
    left: auto;
}

.search-full input[type="search"] {
    border: 1px solid #fff;
}

@media (min-width: 768px) {
    .page-header .section-subscribe {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 10px;
    }

    @media (min-width: 768px) {
        .page-header .section-subscribe {
            margin-bottom: 0;
        }
    }

    .page-header-description {
        font-style: italic;
        font-weight: 300;
        margin: 0 0 30px 0;
        word-break: break-word;
    }

    @media (min-width: 1024px) {
        .page-header-description {
            -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        }
    }

    .page-header .icon-lock::before {
        content: "\1F512";
        font-size: 20px;
        position: relative;
        left: -5px;
        vertical-align: baseline;
    }

    .sub-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 30px;
        min-height: 50px;
        padding-bottom: 15px;
    }

    @media (min-width: 768px) {
        .sub-nav {
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }
    }

    @media (min-width: 768px) {
        .sub-nav input[type="search"] {
            min-width: 300px;
        }
    }

    .sub-nav input[type="search"]::after {
        font-size: 15px;
    }

    /***** Blocks *****/
    /* Used in Homepage#categories and Community#topics */
    .blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
        color: rgba(123, 18, 56, 0.83);
        text-decoration: none;
    }

    .blocks-item-internal {
        background-color: transparent;
        border: 1px solid #ddd;
    }

    .blocks-item-internal .icon-lock::before {
        content: "\1F512";
        font-size: 15px;
        bottom: 5px;
        position: relative;
    }

    .blocks-item-internal a {
        color: #323232;
    }

    .blocks-item-link {
        color: rgba(123, 18, 56, 1);
        padding: 20px 30px;
    }

    .blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
        text-decoration: none;
    }

    .blocks-item-title {
        margin-bottom: 0;
    }

    .blocks-item-description {
        font-weight: 300;
        margin: 0;
    }

    .blocks-item-description:not(:empty) {
        margin-top: 10px;
    }

    /***** Homepage *****/
    .section h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    /***** Promoted articles *****/
    .promoted-articles {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    @media (min-width: 1024px) {
        .promoted-articles {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }
    }

    .promoted-articles-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    [dir="rtl"] .promoted-articles-item {
        padding: 0 0 0 30px;
    }
}

.promoted-articles-item:nth-child(3n) {
    padding-right: 0;
}

/***** Community section in homepage *****/
.community {
    text-align: center;
}

.community,
.activity {
    border-top: 1px solid #ddd;
    padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
    margin-bottom: 10px;
    text-align: center;
}

.recent-activity-list {
    padding: 0;
}

.recent-activity-item {
    border-bottom: 1px solid #ddd;
    overflow: auto;
    padding: 20px 0;
}

.recent-activity-item-parent {
    font-size: 16px;
}

.recent-activity-item-parent, .recent-activity-item-link {
    margin: 6px 0;
    color: #323232;
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) {
    .recent-activity-item-parent, .recent-activity-item-link {
        width: 70%;
        margin: 0;
    }
}

.recent-activity-item-link {
    font-size: 14px;
    font-weight: 300;
}

.recent-activity-item-meta {
    margin: 15px 0 0 0;
    float: none;
}

@media (min-width: 768px) {
    .recent-activity-item-meta {
        margin: 0;
        float: right;
    }

    [dir="rtl"] .recent-activity-item-meta {
        float: left;
    }
}

.recent-activity-item-time, .recent-activity-item-comment {
    color: #323232;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
}

.recent-activity-item-comment {
    padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
    padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
    display: inline-block;
}

.recent-activity-item-comment span::before {
    color: rgba(123, 18, 56, 1);
    content: "\1F4AC";
    display: inline-block;
    font-size: 15px;
    padding-right: 3px;
    vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
    padding-left: 3px;
}

.recent-activity-controls {
    padding-top: 15px;
}

/***** Category pages *****/

.category-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 1024px) {
    .category-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
    }
}

.section-tree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .section-tree {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.section-tree .section {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
}

.section-tree .icon-lock::before {
    vertical-align: baseline;
}

.section-tree-title {
    margin-bottom: 0;
}

.section-tree-title a {
    color: #323232;
    text-decoration: none;
}

.section-tree .see-all-articles {
    display: none;
    padding: 15px 0;
}

.article-list-item a {
    color: #323232;
}

.icon-star::before {
    color: rgba(123, 18, 56, 1);
    font-size: 18px;
}

/***** Section pages *****/
.section-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.section-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  	margin-bottom: 100px;
}

.section-subscribe .dropdown-toggle::after {
    display: none;
}

/***** Article *****/
.article {
    /*
    * The article grid is defined this way to optimize readability:
    * Sidebar | Content | Free space
    * 17%     | 66%     | 17%
    */
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.article-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.article-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .article-header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-top: 0;
    }
}

.article-author {
    margin-bottom: 10px;
}

.article-title .icon-lock::before {
    content: "\1F512";
    font-size: 20px;
    position: relative;
    left: -5px;
    vertical-align: baseline;
}

.article [role="button"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
    width: 100%;
}

@media (min-width: 768px) {
    .article [role="button"] {
        width: auto;
    }
}

.article-info {
    max-width: 100%;
}

.article-body img {
    height: auto;
    max-width: 100%;
}

.article-body ul, .article-body ol {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul, [dir="rtl"] .article-body ol {
    padding-right: 20px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 20px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol {
    margin: 0;
}

.article-body ul {
    list-style-type: disc;
}

.article-body a:visited {
    color: #22050f;
}

.article-body code {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 5px;
    margin: 0 2px;
}

.article-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre;
}

.article-body blockquote {
    border-left: 1px solid #ddd;
    color: #323232;
    font-style: italic;
    padding: 0 15px;
}

.article-body > p:last-child {
    margin-bottom: 0;
}

.article-comment-count {
    color: #323232;
    font-weight: 300;
}

.article-comment-count:hover {
    text-decoration: none;
}

.article-comment-count .icon-comments {
    color: rgba(123, 18, 56, 1);
    content: "\1F4AC";
    display: inline-block;
    font-size: 18px;
    padding: 5px;
}

.article-sidebar {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: 0;
}

@media (min-width: 1024px) {
    .article-sidebar {
        border: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
        flex: 0 0 17%;
        height: auto;
    }
}

.article-relatives {
    border-top: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0;
}

@media (max-width: 330px) {
    .article-body {
       margin-top: 80px;
    }
}

@media (min-width: 768px) {
    .article-relatives {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.article-relatives > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 0;
}

.article-relatives > *:last-child {
    margin: 0;
}

@media (min-width: 768px) {
    .article-relatives > * {
        margin-right: 20px;
    }
}

.article-unsubscribe {
    background-color: rgba(123, 18, 56, 1);
    color: #FFFFFF;
    text-decoration: none;
}

.article-unsubscribe:hover {
    background-color: rgba(34,5,15,0.83);
    border-color: rgba(34,5,15,0.83);
}

.sidenav-title {
    font-size: 15px;
    position: relative;
}

.sidenav-item {
    border-radius: 4px;
    color: #323232;
    display: block;
    font-weight: 300;
    margin-bottom: 10px;
    padding: 10px;
}

.recent-articles h3,
.related-articles h3 {
    font-size: 15px;
    margin: 20px 0;
}

.recent-articles li,
.related-articles li {
    margin-bottom: 15px;
}

div#article-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transform: translate(-190px, 0);
    -ms-transform: translate(-190px, 0);
    transform: translate(-190px, 0);
}

section.article-sidebar.desktop-sidebar {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: 0;
    max-width: 17.3rem;
}

.desktop-sidebar h3.collapsible-sidebar-title.sidenav-title {
    margin-bottom: 20px;
}

.article {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 66%;
    flex: 1 0 66%;
    padding-left: 3rem;
}

.desktop-sidebar a.sidenav-item.current-article {
    background-color: rgba(123, 18, 56, 1);
    color: #ffffff;
    text-decoration: none;
}

a.sidenav-item {
    color: #323232;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 1206px) {
    .desktop-sidebar {
        display: none;
    }

    div#article-container {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@media (min-width: 1206px) {
    .tablet-sidebar {
        display: none;
    }
}


@media (max-width: 768px) {
    .article {
        padding-left: 0;
    }
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
    margin-bottom: 0;
}

.attachments .attachment-item::before {
    color: #323232;
    content: "\1F4CE";
    font-size: 15px;
    left: 0;
    position: absolute;
    top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
    left: auto;
    right: 0;
}

.upload-dropzone span {
    color: #323232;
}

/***** Social share links *****/
.share {
    padding: 0;
    white-space: nowrap;
}

.share li, .share a {
    display: inline-block;
}

.share a {
    border-radius: 50%;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    width: 25px;
}

.share a::before {
    color: #323232;
    display: block;
    font-size: 23px;
    text-align: center;
    width: 100%;
}

.share a:hover {
    text-decoration: none;
}

.share a:hover::before {
    color: rgba(123, 18, 56, 0.83);
}

.share-twitter::before {
    content: "\e901";
}

.share-facebook::before {
    content: "\e903";
}

.share-linkedin::before {
    content: "\e900";
}

.share-googleplus::before {
    content: "\e902";
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.comment-heading {
    margin-bottom: 5px;
    margin-top: 0;
}

.comment-overview {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.comment-overview p {
    margin-top: 0;
}

.comment-callout {
    color: #323232;
    display: inline-block;
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 0;
}

.comment-callout a {
    color: rgba(123, 18, 56, 1);
}

.comment-sorter {
    display: inline-block;
    float: right;
}

.comment-sorter a {
    color: #323232;
    font-weight: 300;
    font-size: 13px;
    text-decoration: none;
}

[dir="rtl"] .comment-sorter {
    float: left;
}

.comment-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.comment-wrapper.comment-official {
    border: 1px solid rgba(123, 18, 56, 1);
    padding: 40px 20px 20px;
}

@media (min-width: 768px) {
    .comment-wrapper.comment-official {
        padding-top: 20px;
    }
}

.comment-info {
    min-width: 0;
    padding-right: 20px;
    width: 100%;
}

[dir="rtl"] .comment-info {
    padding-right: 0;
    padding-left: 20px;
}

.comment-author {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .comment-author {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.comment-avatar {
    margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
    margin-left: 10px;
    margin-right: 0;
}

.comment-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.comment-labels {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

@media (min-width: 768px) {
    .comment-labels {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

.comment .status-label:not(.status-label-official) {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .comment .status-label:not(.status-label-official) {
        margin-top: 0;
    }
}

.comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 30px;
    word-wrap: break-word;
}

.comment-container {
    width: 100%;
}

.comment-form-controls {
    display: none;
    margin-top: 10px;
    text-align: left;
}

@media (min-width: 768px) {
    [dir="ltr"] .comment-form-controls {
        text-align: right;
    }
}

.comment-form-controls input[type="submit"] {
    margin-top: 15px;
}

@media (min-width: 1024px) {
    .comment-form-controls input[type="submit"] {
        margin-left: 15px;
    }

    [dir="rtl"] .comment-form-controls input[type="submit"] {
        margin-left: 0;
        margin-right: 15px;
    }
}

.comment-form-controls input[type="checkbox"] {
    margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
    margin-left: 5px;
}

.comment-ccs {
    display: none;
}

.comment-ccs + textarea {
    margin-top: 10px;
}

.comment-attachments {
    margin-top: 10px;
}

.comment-attachments a {
    color: rgba(123, 18, 56, 1);
}

.comment-body {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    line-height: 1.6;
}

.comment-body img {
    height: auto;
    max-width: 100%;
}

.comment-body ul, .comment-body ol {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul, [dir="rtl"] .comment-body ol {
    padding-right: 20px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol {
    margin: 0;
}

.comment-body ul {
    list-style-type: disc;
}

.comment-body a:visited {
    color: #22050f;
}

.comment-body code {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 5px;
    margin: 0 2px;
}

.comment-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre;
}

.comment-body blockquote {
    border-left: 1px solid #ddd;
    color: #323232;
    font-style: italic;
    padding: 0 15px;
}

.comment-mark-as-solved {
    display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
    display: inline-block;
    text-align: center;
    width: 35px;
}

.vote a {
    outline: none;
}

.vote a:active, .vote a:hover, .vote a:focus {
    text-decoration: none;
}

.vote-sum {
    color: #323232;
    display: block;
    margin: 3px 0;
}

[dir="rtl"] .vote-sum {
    direction: ltr;
    unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
    color: rgba(123, 18, 56, 0.83);
}

.vote-up::before, .vote-down::before {
    color: #323232;
    font-size: 24px;
}

.vote-up::before {
    content: "\2B06";
}

.vote-down::before {
    content: "\2B07";
}

.vote-voted::before {
    color: rgba(123, 18, 56, 1);
}

.vote-voted:hover::before {
    color: rgba(34,5,15,0.83);
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
    font-size: 0;
    margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
    background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
    background-color: transparent;
    border-radius: 50%;
    color: #323232;
    content: "\2699";
    display: block;
    font-size: 13px;
    margin: auto;
    padding: 5px;
}

/***** Community *****/
.community-hero {
    margin-bottom: 10px;
}

.community-footer {
    padding-top: 50px;
    text-align: center;
}

.community-featured-posts, .community-activity {
    padding-top: 40px;
    width: 100%;
}

.community-header {
    margin-bottom: 30px;
}

.community-header h4 {
    margin-bottom: 0;
}

.post-to-community {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .post-to-community {
        margin: 0;
    }
}

/* Community topics grid */
.topics {
    max-width: none;
    width: 100%;
}

.topics-item .meta-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

/* Community topic page */
.topic-header {
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

@media (min-width: 768px) {
    .topic-header {
        padding-bottom: 10px;
    }
}

.topic-header .dropdown {
    display: block;
    border-top: 1px solid #ddd;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .topic-header .dropdown {
        border-top: 0;
        display: inline-block;
        margin-right: 20px;
        padding: 0;
    }
}

.no-posts-with-filter {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
    margin-bottom: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .community-follow {
        margin-bottom: 0;
        width: auto;
    }
}

.community-follow .dropdown {
    width: 100%;
}

.community-follow [role="button"] {
    line-height: 30px;
    padding: 0 10px 0 15px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .community-follow [role="button"] {
        width: auto;
    }
}

.community-follow [role="button"]:hover {
    background-color: rgba(123, 18, 56, 0.83);
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"] {
    background-color: rgba(123, 18, 56, 1);
    color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]::after {
    border-left: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]:hover {
    background-color: rgba(34,5,15,0.83);
    border-color: rgba(34,5,15,0.83);
}

.community-follow [role="button"]::after {
    border-left: 1px solid rgba(123, 18, 56, 1);
    content: attr(data-follower-count);
    color: rgba(123, 18, 56, 1);
    display: inline-block;
    margin-left: 15px;
    padding-left: 10px;
    position: absolute;
    right: 10px;
}

@media (min-width: 768px) {
    .community-follow [role="button"]::after {
        position: static;
    }
}

[dir="rtl"] .community-follow [role="button"]::after {
    border-left: 0;
    border-right: 1px solid rgba(123, 18, 56, 1);
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
    padding: 0;
}

.striped-list-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .striped-list-item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.striped-list-info {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

.striped-list-title {
    color: rgba(123, 18, 56, 1);
    margin-bottom: 10px;
    margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
    text-decoration: underline;
}

.striped-list-title:visited {
    color: #22050f;
}

.striped-list .meta-group {
    margin: 5px 0;
}

.striped-list-count {
    color: #323232;
    font-weight: 300;
    font-size: 13px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .striped-list-count {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.striped-list-count-item::after {
    content: "·";
    display: inline-block;
    padding: 0 5px;
}

@media (min-width: 768px) {
    .striped-list-count-item::after {
        display: none;
    }
}

.striped-list-count-item:last-child::after {
    display: none;
}

.striped-list-number {
    font-weight: 300;
    text-align: center;
}

@media (min-width: 768px) {
    .striped-list-number {
        color: #323232;
        display: block;
        font-weight: 400;
    }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
    background-color: #1eb848;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    margin-right: 2px;
    padding: 3px 10px;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
    text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
    background-color: rgba(123, 18, 56, 1);
}

.status-label-official {
    border-radius: 0;
    margin-right: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .status-label-official {
        border-radius: 0 0 4px 4px;
        right: 30px;
        width: auto;
    }
}

[dir="rtl"] .status-label-official {
    left: 30px;
    right: auto;
}

.status-label-pending, .status-label-not-planned {
    background-color: #eee;
    color: #323232;
}

.status-label-pending {
    text-align: center;
}

.status-label-open {
    background-color: #e03b30;
}

.status-label-closed {
    background-color: #ddd;
}

.status-label-solved {
    background-color: #999;
}

.status-label-new {
    background-color: #ffd12a;
}

.status-label-hold {
    background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
    text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .post {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
        flex: 1 0 70%;
        max-width: 70%;
    }
}

.post-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .post-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.post-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .post-header {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.post-header .status-label {
    vertical-align: super;
}

.post-title {
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .post-title {
        margin-bottom: 0;
        padding-right: 10px;
    }
}

.post-title h1 {
    display: inline;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .post-title h1 {
        margin-right: 5px;
    }
}

.post-author {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.post-avatar {
    margin-bottom: 30px;
}

.post-content {
    /* font-family: Open Sans; */
    line-height: 1.6;
    word-break: break-word;
}

.post-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.post-info {
    min-width: 0;
    padding-right: 20px;
    width: 100%;
}

[dir="rtl"] .post-info {
    padding-right: 0;
    padding-left: 20px;
}

.post-meta {
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 10px;
    vertical-align: middle;
}

[dir="rtl"] .post-meta {
    margin-left: 0;
    margin-right: 10px;
}

.post-body img {
    height: auto;
    max-width: 100%;
}

.post-body ul, .post-body ol {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px;
}

[dir="rtl"] .post-body ul, [dir="rtl"] .post-body ol {
    padding-right: 20px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol {
    margin: 0;
}

.post-body ul {
    list-style-type: disc;
}

.post-body a:visited {
    color: #22050f;
}

.post-body code {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 5px;
    margin: 0 2px;
}

.post-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre;
}

.post-body blockquote {
    border-left: 1px solid #ddd;
    color: #323232;
    font-style: italic;
    padding: 0 15px;
}

.post-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}

.post-comment-count {
    color: #323232;
    font-weight: 300;
}

.post-comment-count:hover {
    text-decoration: none;
}

.post-comment-count .icon-comments {
    color: rgba(123, 18, 56, 1);
    content: "\1F4AC";
    display: inline-block;
    font-size: 18px;
    padding: 5px;
}

.post-sidebar {
    border-top: 1px solid #ddd;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 30px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .post-sidebar {
        border: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
        flex: 1 0 30%;
        padding: 0 0 0 50px;
        text-align: initial;
    }

    [dir="rtl"] .post-sidebar {
        padding: 0 50px 0 0;
    }
}

.post-sidebar h5 {
    font-weight: 600;
}

@media (min-width: 1024px) {
    .post-sidebar h5 {
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }
}

.post-comments {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .post-comments {
        margin-bottom: 0;
    }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: #323232;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #323232;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid rgba(123, 18, 56, 1);
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #333333;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
    border: 0;
    margin-bottom: 20px;
}

.my-activities-sub-nav {
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .my-activities-sub-nav li:hover {
        border-bottom: 4px solid #ddd;
    }
}

.my-activities-sub-nav li[aria-selected="true"] {
    border-color: rgba(123, 18, 56, 1);
}

.my-activities-table .striped-list-title {
    /* My activities tables */
    display: block;
    margin-bottom: 10px;
    max-width: 350px;
    white-space: normal;
}

@media (min-width: 1024px) {
    .my-activities-table .striped-list-title {
        margin-bottom: 0;
        max-width: 500px;
        min-width: 350px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.my-activities-table thead {
    display: none;
}

@media (min-width: 768px) {
    .my-activities-table thead {
        display: table-header-group;
    }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
    padding-left: 0;
}

@media (min-width: 1024px) {
    .my-activities-table th:first-child,
    .my-activities-table td:first-child {
        width: 500px;
    }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
    padding-right: 0;
}

.my-activities-table td:not(:first-child) {
    display: none;
}

@media (min-width: 768px) {
    .my-activities-table td:not(:first-child) {
        display: table-cell;
    }
}

/* Requests table */
.requests-search {
    width: 100%;
}

.requests-table-toolbar {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .requests-table-toolbar {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.requests-table-toolbar .search {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

.requests-table-toolbar .request-table-filter {
    width: 100%;
}

@media (min-width: 768px) {
    .requests-table-toolbar .request-table-filter {
        width: auto;
    }
}

.requests-table-toolbar .request-filter {
    display: block;
}

@media (min-width: 768px) {
    .requests-table-toolbar .request-filter {
        margin: 0 0 0 30px;
    }

    [dir="rtl"] .requests-table-toolbar .request-filter {
        margin: 0 30px 0 0;
    }
}

.requests-table-toolbar .request-filter-label {
    font-size: 13px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .requests-table-toolbar .request-filter-label {
        margin-top: 0;
    }
}

.requests-table-toolbar select {
    max-height: 40px;
    margin-bottom: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .requests-table-toolbar select {
        margin-bottom: 0;
        max-width: 300px;
        width: auto;
    }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
    line-height: 40px;
    max-height: 40px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .requests-table-toolbar .organization-subscribe,
    .requests-table-toolbar .organization-unsubscribe {
        margin-left: 10px;
    }

    [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"],
    .requests-table-toolbar .organization-unsubscribe {
        margin: 0 10px 0 0;
    }
}

.requests-table-toolbar .organization-unsubscribe {
    background-color: rgba(123, 18, 56, 1);
    color: #FFFFFF;
}

.requests-table-toolbar + .requests-search-info {
    margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
    content: "";
    margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
    margin-top: 20px;
}

.requests-table-toolbar + .requests {
    margin-top: 40px;
}

.requests .requests-table-meta {
    display: block;
}

@media (min-width: 768px) {
    .requests .requests-table-meta {
        display: none;
    }
}

.requests .requests-table thead {
    display: none;
}

@media (min-width: 768px) {
    .requests .requests-table thead {
        display: table-header-group;
    }
}

.requests .requests-table-info {
    display: block;
}

@media (min-width: 768px) {
    .requests .requests-table-info {
        display: table-cell;
        vertical-align: middle;
        width: auto;
    }
}

.requests .requests-table .requests-link {
    position: relative;
}

.requests .requests-table .requests-sort-symbol {
    position: absolute;
    left: calc(100% + 3px);
    bottom: 0;
    font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
    background: rgba(123, 18, 56, 1);
    border-radius: 4px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    line-height: 2.34;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .subscriptions-unsubscribe a {
        width: auto;
    }
}

.subscriptions-unsubscribe a:hover {
    background-color: rgba(34,5,15,0.83);
    text-decoration: none;
}

.subscriptions-table td:last-child {
    display: block;
}

@media (min-width: 768px) {
    .subscriptions-table td:last-child {
        display: table-cell;
    }
}

.subscriptions-table td:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.subscriptions-table .user-avatar {
    margin-right: 10px;
}

.subscriptions .striped-list-title {
    display: inline-block;
    vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
    color: #323232;
    font-size: 13px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .contributions-table td:last-child {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
    }
}

.no-activities {
    color: #323232;
}

/***** Request *****/
.request-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .request-container {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.request-container .comment-container {
    min-width: 0;
}

.request-breadcrumbs {
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .request-breadcrumbs {
        margin-bottom: 60px;
    }
}

.request-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
    display: none;
}

.request-main .comment-fields.shown {
    display: block;
}

.request-main .request-submit-comment.shown {
    display: inline;
}

@media (min-width: 1024px) {
    .request-main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66%;
        flex: 0 0 66%;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        min-width: 0;
    }
}

.request-main .comment-form-controls {
    display: block;
}

.request-main .comment-ccs {
    display: block;
}

.request-main .comment-show-container {
    border-radius: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 15px;
    width: 100%;
}

.request-main .comment-show-container.hidden {
    display: none;
}

.request-main .comment-show-container-content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    color: #323232;
    margin-left: 10px;
}

.request-main .form-field.comment-ccs > ul {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
    border: 1px solid rgba(123, 18, 56, 1);
}

.request-main .form-field.comment-ccs > input[type="text"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.request-main .comment-ccs + textarea {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
    border-top: 1px solid rgba(123, 18, 56, 1);
}

.request-main input#mark_as_solved {
    display: none;
}

.request-title {
    width: 100%;
}

@media (min-width: 1024px) {
    .request-title {
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
        max-width: 66%;
        padding-bottom: 20px;
    }
}

.request-sidebar {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

@media (min-width: 1024px) {
    .request-sidebar {
        background-color: #f7f7f7;
        border: 0;
        font-size: 13px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding: 0 20px;
        width: 30%;
    }
}

.request-sidebar h5 {
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

@media (min-width: 1024px) {
    .request-sidebar h5 {
        display: none;
    }
}

.request-details {
    border-bottom: 1px solid #ddd;
    font-size: 0;
    margin: 0;
    padding-bottom: 20px;
}

.request-details:last-child {
    border: 0;
}

.request-details dt, .request-details dd {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    margin: 20px 0 0 0;
}

.request-details dd {
    padding: 0 10px;
    width: 60%;
}

.request-details dd::after {
    content: "\A";
    white-space: pre;
}

.request-details dt {
    color: #323232;
    font-weight: 300;
    width: 40%;
}

.request-details .request-collaborators {
    display: inline-block;
}

.request-attachments dt, .request-attachments dd {
    width: 100%;
}

.request-attachments dd {
    margin: 10px 0 0 0;
}

.request-form textarea {
    min-height: 120px;
}

.request-follow-up {
    padding-top: 20px;
}

/***** Pagination *****/
.pagination {
    margin: 20px 0;
    text-align: center;
}

.pagination * {
    display: inline-block;
}

.pagination li {
    border-radius: 50%;
    height: 40px;
    float: left;
    margin-left: 5px;
    width: 40px;
}

@media (min-width: 768px) {
    .pagination li {
        height: 30px;
        width: 30px;
    }
}

[dir="rtl"] .pagination li {
    float: right;
}

.pagination li:hover:not(.pagination-current) {
    background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
    color: #323232;
    text-decoration: none;
}

.pagination a, .pagination span {
    font-size: 15px;
    color: #323232;
    padding: 10px 12px;
}

@media (min-width: 768px) {
    .pagination a, .pagination span {
        font-size: 13px;
        padding: 5px 12px;
    }
}

.pagination-current {
    background-color: rgba(123, 18, 56, 1);
}

.pagination-current a, .pagination-current span {
    color: #FFFFFF;
}

.pagination-first {
    border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
    border-radius: 0 3px 3px 0;
}

.pagination-last {
    border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
    border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
    display: block;
}

.meta-group * {
    display: inline;
}

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.attachments .attachment-item::before,
.share a::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
    font-family: "copenhagen-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    line-height: 1em;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
    content: "\1F512";
}

.icon-star::before {
    content: "\2605";
}

.icon-linkedin::before {
    content: "\e900";
}

.icon-twitter::before {
    content: "\e901";
}

.icon-googleplus-::before {
    content: "\e902";
}

.icon-facebook::before {
    content: "\e903";
}

.icon-agent::before {
    content: "\1F464";
}

.icon-close::before {
    content: "\2715";
}

.icon-arrow-up::before {
    content: "\2B06";
}

.icon-arrow-down::before {
    content: "\2B07";
}

.icon-attachments::before {
    content: "\1F4CE";
}

.icon-comments::before {
    content: "\1F4AC";
}

.icon-search::before {
    content: "\1F50D";
}

.icon-vote::before {
    content: "\1F44D";
}

.icon-handle::before {
    content: "\25BE";
}

.icon-check::before {
    content: "\2713";
}

.icon-gear::before {
    content: "\2699";
}

.icon-article::before {
    content: "\1F4C4";
}

.icon-post::before {
    content: "\1F4D4";
}

.icon-notification-alert::before {
    content: "\26A0";
}

.icon-notification-error::before {
    content: "\00D7";
}

.icon-notification-info::before {
    content: "\2139";
}

.icon-notification-success::before {
    content: "\2714";
}

/* User Profiles */
.profile-header {
    padding: 30px 0;
    background-color: #f7f7f7;
}

.profile-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .profile-header .container {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.profile-header .profile-info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 0;
}

.profile-avatar {
    position: relative;
    line-height: 0;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
    margin-left: 10px;
    margin-right: 0;
}

.profile-avatar .user-avatar {
    width: 65px;
    height: 65px;
}

.profile-avatar .icon-agent::before {
    bottom: 0;
    right: 0;
}

.profile-header .basic-info {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    min-width: 0;
}

.profile-header .basic-info .name {
    margin: 0;
}

.profile-header .options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-top: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .profile-header .options {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-top: 0;
        margin-left: 10px;
    }

    [dir="rtl"] .profile-header .options {
        margin-left: 0;
        margin-right: 10px;
    }

    .profile-header .options > :not(:last-child) {
        margin-bottom: 0;
        margin-right: 10px;
    }

    [dir="rtl"] .profile-header .options > :not(:last-child) {
        margin-left: 10px;
        margin-right: 0;
    }
}

.profile-header .options [data-action="edit-profile"] {
    background-color: rgba(123, 18, 56, 1);
    border: 0;
    color: #FFFFFF;
    line-height: normal;
    padding: 8px 20px;
}

.profile-header .description {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    margin: 15px 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.profile-stats {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.profile-stats .stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.profile-stats .stat-label {
    color: #323232;
    font-weight: 300;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
    margin-left: 10px;
    margin-right: 0;
}

.profile-stats-activity {
    border-top: solid 1px #ddd;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .profile-stats-activity {
        border-top: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .profile-stats-activity .stat {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.profile-stats-activity .stat:first-child {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .profile-stats-activity .stat:first-child {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .profile-stats-activity .stat:not(:last-child) {
        margin-right: 40px;
    }

    [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
        margin-left: 40px;
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .profile-stats-activity .stat-label {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }
}

.profile-stats-counters {
    border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
    .profile-stats-counters {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
        border-bottom: 0;
        margin-left: 40px;
    }

    [dir="rtl"] .profile-stats-counters {
        margin-left: 0;
        margin-right: 40px;
    }
}

@media (min-width: 1024px) {
    .profile-stats-counters {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
        flex: 0 0 270px;
        margin-left: 60px;
    }

    [dir="rtl"] .profile-stats-counters {
        margin-right: 60px;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .profile-stats-counters .stat {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .profile-stats-counters .stat {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .profile-stats-counters .stat:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .profile-stats-counters .stat-label {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }
}

@media (min-width: 1024px) {
    .profile-stats-counters .stat-label {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
    }
}

.profile-private-badge {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border: solid 1px rgba(123, 18, 56, 1);
    border-radius: 4px;
    color: rgba(123, 18, 56, 1);
    padding: 5px 20px;
    font-size: 12px;
    text-align: center;
}

.profile-private-badge::after {
    content: "\1f512";
    margin-left: 5px;
    font-family: "copenhagen-icons";
    vertical-align: middle;
    line-height: 15px;
}

@media (min-width: 768px) {
    .profile-private-badge {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

.profile-nav {
    /*     background-color: #f2f2f2; */
    border: 0;
    margin-bottom: 37px;
}

.profile-section {
    width: 100%;
}

@media (min-width: 1024px) {
    .profile-section {
        width: calc(100% - 330px);
    }
}

.profile-section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.profile-section-title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 0;
}

.profile-section-description {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 10px 0;
    color: #323232;
    font-weight: 300;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .profile-section-description {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        padding-bottom: 0;
    }
}

.profile-section-sorter {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border-top: solid 1px #eee;
    font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
    padding: 10px 0;
    width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
    position: absolute;
    right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
    left: 0;
    right: initial;
}

@media (min-width: 768px) {
    .profile-section-sorter .dropdown-toggle::after {
        position: relative;
    }
}

@media (min-width: 768px) {
    .profile-section-sorter {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        padding-top: 0;
        border-top: 0;
        margin-left: 20px;
    }

    [dir="rtl"] .profile-section-sorter {
        margin-left: 0;
        margin-right: 20px;
    }
}

.profile-contribution {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    padding: 20px 0;
    position: relative;
}

.profile-contribution-header {
    margin-bottom: 5px;
}

.profile-contribution-title {
    margin: 0 0 5px 0;
    display: inline;
    line-height: 21px;
    font-size: 15px;
    vertical-align: middle;
}

.profile-contribution-body {
    margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
    border-top: 1px solid #eee;
}

@media (min-width: 768px) {
    .profile-contribution-list > .profile-contribution {
        padding-left: 30px;
    }

    [dir="rtl"] .profile-contribution-list > .profile-contribution {
        padding-right: 30px;
        padding-left: 0;
    }
}

.profile-contribution-list > .profile-contribution:last-child {
    border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
    left: 0;
    position: absolute;
    font-size: 16px;
    color: #ccc;
    font-family: "copenhagen-icons";
    line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
    right: 0;
}

.profile-contribution-list .profile-contribution-header {
    margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 30px;
    padding-left: 0;
}

@media (min-width: 768px) {
    .profile-contribution-list .profile-contribution-header {
        margin-left: 0;
    }

    [dir="rtl"] .profile-contribution-list .profile-contribution-header {
        padding-right: 0;
    }
}

.profile-comments .profile-contribution-breadcrumbs {
    margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 30px;
    padding-left: 0;
}

@media (min-width: 768px) {
    .profile-comments .profile-contribution-breadcrumbs {
        margin-left: 0;
    }

    [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
        padding-right: 0;
    }
}

.profile-section .no-activity,
.profile-section .private-activity {
    display: block;
    margin-top: 40px;
    color: #999;
}

.profile-section .private-activity::before {
    content: "\1f512";
    font-family: "copenhagen-icons";
    font-style: normal;
    font-size: 12px;
    font-weight: normal;
    vertical-align: middle;
    margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
    margin-right: 0;
    margin-left: 10px;
}

.profile-activity-list {
    margin-top: 25px;
}

.profile-activity {
    position: relative;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .profile-activity {
        padding-left: 20px;
    }

    [dir="rtl"] .profile-activity {
        padding-right: 20px;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .profile-activity:not(:last-child) {
        border-left: 1px solid #ddd;
    }

    [dir="rtl"] .profile-activity:not(:last-child) {
        border-left: 0;
        border-right: 1px solid #ddd;
    }
}

.profile-activity-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
    margin-left: 0;
    margin-right: 35px;
}

@media (min-width: 768px) {
    .profile-activity-header {
        margin-left: 0;
    }

    [dir="rtl"] .profile-activity-header {
        margin-right: 0;
    }
}

.profile-activity-header .user-avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    min-width: 40px;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
    margin-left: 10px;
    margin-right: 0;
}

.profile-activity-description {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.profile-activity-description span:first-child {
    font-weight: 600;
    display: inline;
}

.profile-activity-contribution {
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #f7f7f7;
}

@media (min-width: 768px) {
    .profile-activity-contribution {
        margin-top: 0;
        margin-left: 50px;
    }

    [dir="rtl"] .profile-activity-contribution {
        margin-left: 0;
        margin-right: 50px;
    }
}

.profile-activity::before {
    position: absolute;
    left: 0;
    width: 28px;
    border-radius: 50%;
    content: "";
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    background-position: 50% 50%;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #ccc;
    font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
    right: 0;
}

@media (min-width: 768px) {
    .profile-activity::before {
        left: -14px;
    }

    [dir="rtl"] .profile-activity::before {
        right: -14px;
    }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
    content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
    content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
    content: "\1f4ac";
    line-height: 35px;
}

/***** Search results *****/
.search-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .search-results {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.search-results-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.search-results-list {
    margin-bottom: 25px;
}

.search-results-list > li {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.search-results-list > li:first-child {
    border-top: 1px solid #ddd;
}

.search-result-description {
    margin-top: 15px;
}

.search-result-votes, .search-result-meta-count {
    color: #323232;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    padding: 4px 5px;
    position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
    color: rgba(123, 18, 56, 1);
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
    margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
    margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
    margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
    margin-left: 3px;
}

.search-result-votes::before {
    content: "\1F44D";
}

.search-result-meta-count::before {
    content: "\1F4AC";
}

.search-result .meta-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-result-breadcrumbs {
    margin: 0;
}

.requests {
    font-size: 14px;
}

table.table.my-activities-table.subscriptions-table { /* font-size: 14px; */
}

.my-activities-table th {
    font-size: 14px;
}

.my-activities-following-header span.dropdown-toggle {
    font-size: 14px;
}

p.no-activities {
    font-size: 13px;
    margin-top: 14px;
}

select#request-status-select {
    border-radius: 12px;
}

@media (max-width: 420px) {
    a.blocks-item-link::before {
        left: 92%;
    }

    .article-more-questions a {
        width: 68%;
    }

    .article-more-questions {
        background-size: cover;
    }
}

@media (max-width: 280px) {
    .article-more-questions a {
        margin-top: 0.6rem;
    }
}

.dropdown.language-selector.desktop .dropdown-toggle {
    width: 57px;
  	border: 1px solid transparent;
  	/* padding: 2px; */
    background-position: right;
    background-size: 40%;
    background-repeat: no-repeat;
}

.error-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 27px 5%;
    line-height: 34px;
}

.error-page a {
    font-size: 16px;
    color: rgba(123, 18, 56, 1);
}

/* effects */

a.dropdown-toggle.ru:hover, #user #user-name:hover {
    text-decoration: none;
}

.dropdown.language-selector.desktop:hover {
    background-color: rgba(137, 7, 31, 0.1);
    border-radius: 8px;
/*     padding: 2px; */
    text-decoration: none;
    border: 1px solid rgba(123, 18, 56, 0.83);
  	color: rgba(123, 18, 56, 1);
}

div#user:hover {
    background-color: rgba(137, 7, 31, 0.1);
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(123, 18, 56, 0.83);
}

.article-more-questions a:hover, a:active, a:focus {
    text-decoration: none;
    color: #ffffff;
}

a:hover, a:active, a:focus {
    text-decoration: none;
    color: rgba(123, 18, 56, 0.83);
}

.request_description .notification.notification-error.notification-inline {
    margin-top: 12px;
}

em {
    font-style: italic;
}

.article ul {
    list-style-type: disc;
}

.article ol {
    list-style-type: decimal;
}

.login {
  display: none;
}

/* footer */

body {
  position: relative;
  min-height: 100%;
}

main {
  padding-bottom: 200px;
}

footer.footer_wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
  	min-height: 200px;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  	margin-bottom: 40px;
}

.footer_linksWrapper {
  	width: 100%;
  	align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
  	margin-bottom: 12px;
}

.footer_infoLinks {
  	margin: 0 0 16px;
  	font-size: 16px;
  	line-height: 1.5;
  	text-align: center;
}

.footer_infoLinks:last-of-type {
  	margin: 0;
}

.footer_infoLinks a {
    display: inline-block;
    margin: 0 20px 0 20px;
    color: #323232;
    text-decoration: none;
}

.footer_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 0;
}

@media (max-width: 768px) {
  
  main {
  		padding-bottom: 250px;
	}
  
  .footer_logo .logo {
      margin-top: 0;
      margin-left: 0;
  }
  
  footer.footer_wrapper {
    	min-height: 250px;
      margin-top: 32px;
      margin-bottom: 0;
	}
  
  .footer_logo {
    margin-bottom: 0;
}
  
  .footer_infoLinks a {
    	margin: 5px 10px 5px 10px;
	}
}

@media (max-width: 768px) {
     .footer_linksWrapper.desktop {
        display: none;
    }
}

/* desktop */
@media (min-width: 769px) {
    .footer_linksWrapper.mobile {
        display: none;
    }
}

/*  */

.desktop .de {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cpath fill='%23ffce00' d='M0 320h640v160H0z'/%3e%3cpath d='M0 0h640v160H0z'/%3e%3cpath fill='%23d00' d='M0 160h640v160H0z'/%3e%3c/svg%3e");
}

.desktop .ru {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cg fill-rule='evenodd' stroke-width='1pt'%3e%3cpath fill='%23fff' d='M0 0h640v480H0z'/%3e%3cpath fill='%230039a6' d='M0 160h640v320H0z'/%3e%3cpath fill='%23d52b1e' d='M0 320h640v160H0z'/%3e%3c/g%3e%3c/svg%3e");
}

.desktop .us {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cg fill-rule='evenodd'%3e%3cg stroke-width='1pt'%3e%3cpath fill='%23bd3d44' d='M0 0h912v36.938H0zm0 73.875h912v36.938H0zm0 73.781h912v37.031H0zm0 73.875h912v36.938H0zm0 73.875h912v36.938H0zm0 73.781h912v36.938H0zm0 73.875h912V480H0z'/%3e%3cpath fill='%23fff' d='M0 36.938h912v36.937H0zm0 73.874h912v36.844H0zm0 73.782h912v36.937H0zm0 73.875h912v36.937H0zm0 73.875h912v36.937H0zm0 73.781h912v36.938H0z'/%3e%3c/g%3e%3cpath fill='%23192f5d' d='M0 0h364.781v258.469H0z'/%3e%3cpath fill='%23fff' d='M30.375 11.063 33.75 21.28h10.688l-8.626 6.282 3.282 10.312-8.719-6.375-8.625 6.281 3.281-10.218-8.718-6.282h10.875zm60.844 0L94.5 21.28h10.781l-8.719 6.282 3.282 10.312-8.625-6.375-8.719 6.281 3.281-10.218-8.625-6.282h10.688zm60.75 0 3.375 10.218h10.594l-8.625 6.282 3.28 10.312-8.718-6.375-8.625 6.281 3.281-10.218-8.719-6.282h10.782zm60.844 0 3.28 10.218h10.782l-8.719 6.282 3.375 10.312-8.719-6.375-8.718 6.281 3.375-10.218-8.719-6.282h10.688zm60.75 0 3.375 10.218h10.687L279 27.563l3.281 10.312-8.719-6.375-8.625 6.281 3.282-10.218-8.625-6.282h10.687zm60.843 0 3.281 10.218h10.782l-8.719 6.282 3.375 10.312-8.719-6.375-8.719 6.281 3.375-10.218-8.718-6.282h10.781zM60.844 36.936l3.281 10.22h10.781l-8.719 6.28 3.188 10.22-8.438-6.282-8.718 6.281 3.093-10.218-8.437-6.282h10.688zm60.75 0 3.375 10.22h10.687l-8.719 6.28 3.376 10.22-8.72-6.282-8.718 6.281 3.375-10.218-8.719-6.282h10.781zm60.844 0 3.28 10.22H196.5l-8.719 6.28 3.281 10.22-8.625-6.282-8.718 6.281L177 53.438l-8.625-6.282h10.688zm60.75 0 3.375 10.22h10.687l-8.719 6.28 3.375 10.22-8.719-6.282-8.625 6.281 3.282-10.218-8.719-6.282H240zm60.843 0 3.281 10.22h10.782l-8.719 6.28 3.281 10.22-8.625-6.282-8.719 6.281 3.282-10.218-8.625-6.282h10.687zM30.375 62.72l3.375 10.406h10.688l-8.626 6.281 3.282 10.219-8.719-6.375-8.625 6.375 3.281-10.313-8.718-6.28h10.875zm60.844 0L94.5 73.03h10.781l-8.719 6.281 3.282 10.22-8.625-6.376-8.719 6.375 3.281-10.312-8.625-6.281h10.688zm60.75 0 3.375 10.312h10.594l-8.625 6.281 3.28 10.22-8.718-6.376-8.625 6.375 3.281-10.312-8.719-6.281h10.782zm60.844 0 3.28 10.312h10.782l-8.719 6.281 3.375 10.22-8.719-6.376-8.718 6.375 3.375-10.312-8.719-6.281h10.688zm60.75 0 3.375 10.312h10.687L279 79.312l3.281 10.22-8.719-6.376-8.625 6.375 3.282-10.312-8.625-6.281h10.687zm60.843 0 3.281 10.312h10.782l-8.719 6.281 3.375 10.22-8.719-6.376-8.719 6.375 3.375-10.312-8.718-6.281h10.781zM60.844 88.594l3.281 10.219h10.781l-8.719 6.28 3.282 10.313-8.625-6.375-8.719 6.281 3.281-10.218-8.625-6.281H57.47zm60.75 0 3.375 10.219h10.687l-8.719 6.28 3.376 10.313-8.72-6.375-8.718 6.281 3.375-10.218-8.719-6.281h10.781zm60.844 0 3.28 10.219H196.5l-8.719 6.28 3.281 10.313-8.625-6.375-8.718 6.281L177 105.094l-8.625-6.281h10.688zm60.75 0 3.375 10.219h10.687l-8.625 6.28 3.281 10.313-8.719-6.375-8.625 6.281 3.282-10.218-8.719-6.281H240zm60.843 0 3.281 10.219h10.782l-8.719 6.28 3.281 10.313-8.625-6.375-8.719 6.281 3.282-10.218-8.625-6.281h10.687zM30.375 114.469l3.375 10.219h10.688l-8.626 6.28 3.282 10.313-8.719-6.375-8.625 6.281 3.281-10.218-8.718-6.281h10.875zm60.844 0 3.281 10.219h10.781l-8.719 6.28 3.282 10.22-8.625-6.282-8.719 6.281 3.281-10.218-8.625-6.281h10.688zm60.75 0 3.375 10.219h10.594l-8.625 6.28 3.28 10.313-8.718-6.375-8.625 6.281 3.281-10.218-8.719-6.281h10.782zm60.844 0 3.28 10.219h10.782l-8.719 6.28 3.375 10.313-8.719-6.375-8.718 6.281 3.375-10.218-8.719-6.281h10.688zm60.75 0 3.375 10.219h10.687l-8.625 6.28 3.281 10.313-8.719-6.375-8.625 6.281 3.282-10.218-8.625-6.281h10.687zm60.843 0 3.281 10.219h10.782l-8.719 6.28 3.375 10.313-8.719-6.375-8.719 6.281 3.375-10.218-8.718-6.281h10.781zM60.844 140.344l3.281 10.219h10.781l-8.719 6.28 3.282 10.22-8.625-6.375-8.719 6.375 3.281-10.313-8.625-6.281H57.47zm60.75 0 3.375 10.219h10.687l-8.719 6.28 3.376 10.22-8.72-6.375-8.718 6.375 3.375-10.313-8.719-6.281h10.781zm60.844 0 3.28 10.219H196.5l-8.719 6.28 3.281 10.22-8.625-6.375-8.718 6.375L177 156.75l-8.625-6.281h10.688zm60.75 0 3.375 10.219h10.687l-8.625 6.28 3.281 10.22-8.719-6.375-8.625 6.375 3.282-10.313-8.719-6.281H240zm60.843 0 3.281 10.219h10.782l-8.719 6.28 3.281 10.22-8.625-6.375-8.719 6.375 3.282-10.313-8.625-6.281h10.687zM30.375 166.125l3.375 10.313h10.688l-8.626 6.28 3.282 10.126-8.719-6.281-8.625 6.28 3.281-10.218-8.718-6.281h10.875zm60.844 0 3.281 10.313h10.781l-8.719 6.28 3.376 10.126-8.72-6.281-8.718 6.28 3.375-10.218-8.719-6.281h10.688zm60.75 0 3.375 10.313h10.594l-8.625 6.28 3.28 10.126-8.718-6.281-8.625 6.28 3.281-10.218-8.719-6.281h10.782zm60.844 0 3.28 10.313h10.782l-8.719 6.28 3.375 10.126-8.719-6.281-8.718 6.28 3.375-10.218-8.719-6.281h10.688zm60.75 0 3.375 10.313h10.687l-8.625 6.28 3.281 10.126-8.719-6.281-8.625 6.28 3.282-10.218-8.625-6.281h10.687zm60.843 0 3.281 10.313h10.782l-8.719 6.28 3.375 10.126-8.719-6.281-8.719 6.28 3.375-10.218-8.718-6.281h10.781zM60.844 192l3.281 10.219h10.781l-8.719 6.281 3.282 10.313-8.625-6.375-8.719 6.28 3.281-10.218-8.625-6.281H57.47zm60.75 0 3.375 10.219h10.687l-8.719 6.281 3.376 10.313-8.72-6.375-8.718 6.28 3.375-10.218-8.719-6.281h10.781zm60.844 0 3.28 10.219H196.5l-8.719 6.281 3.281 10.313-8.625-6.375-8.718 6.28L177 208.5l-8.625-6.281h10.688zm60.75 0 3.375 10.219h10.687l-8.625 6.281 3.281 10.313-8.719-6.375-8.625 6.28 3.282-10.218-8.719-6.281H240zm60.843 0 3.281 10.219h10.782l-8.719 6.281 3.281 10.313-8.625-6.375-8.719 6.28 3.282-10.218-8.625-6.281h10.687zM30.375 217.875l3.375 10.219h10.688l-8.626 6.281 3.282 10.219-8.719-6.281-8.625 6.28 3.281-10.312L16.313 228h10.875zm60.844 0 3.281 10.219h10.781l-8.719 6.281 3.376 10.219-8.72-6.281-8.718 6.28 3.375-10.312L77.156 228h10.688zm60.75 0 3.375 10.219h10.594l-8.438 6.281 3.281 10.219-8.719-6.281-8.625 6.28 3.282-10.312L138 228h10.781zm60.844 0 3.28 10.219h10.782l-8.719 6.281 3.375 10.219-8.719-6.281-8.718 6.28 3.375-10.312L198.75 228h10.688zm60.75 0 3.375 10.219h10.687L279 234.375l3.281 10.219-8.719-6.281-8.625 6.28 3.282-10.312-8.625-6.281h10.687zm60.843 0 3.281 10.219h10.782l-8.719 6.281 3.375 10.219-8.719-6.281-8.719 6.28 3.375-10.312-8.718-6.281h10.781z'/%3e%3c/g%3e%3c/svg%3e");
}

.desktop .fr {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cg fill-rule='evenodd' stroke-width='1pt'%3e%3cpath fill='%23fff' d='M0 0h640v480H0z'/%3e%3cpath fill='%2300267f' d='M0 0h213.3v480H0z'/%3e%3cpath fill='%23f31830' d='M426.7 0H640v480H426.7z'/%3e%3c/g%3e%3c/svg%3e");
}

.desktop .pl {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cg fill-rule='evenodd'%3e%3cpath fill='%23fff' d='M640 480H0V0h640z'/%3e%3cpath fill='%23dc143c' d='M640 480H0V240h640z'/%3e%3c/g%3e%3c/svg%3e");
}

.desktop .es {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cpath fill='%23AA151B' d='M0 0h640v480H0z'/%3e%3cpath fill='%23F1BF00' d='M0 120h640v240H0z'/%3e%3cpath fill='%23ad1519' d='m127.3 213.3-.8-.1-1-1-.7-.4-.6-.8s-.7-1.1-.4-2c.3-.9.9-1.2 1.4-1.5a12 12 0 0 1 1.5-.5l1-.4 1.3-.3.5-.3c.2 0 .7 0 1-.2l1-.2 1.6.1h4.8c.4 0 1.2.3 1.4.4a35 35 0 0 0 2 .7c.5.1 1.6.3 2.2.6.5.3.9.7 1.1 1l.5 1v1.1l-.5.8-.6 1-.8.6s-.5.5-1 .4c-.4 0-4.8-.8-7.6-.8s-7.3.9-7.3.9'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='m127.3 213.3-.8-.1-1-1-.7-.4-.6-.8s-.7-1.1-.4-2c.3-.9.9-1.2 1.4-1.5a12 12 0 0 1 1.5-.5l1-.4 1.3-.3.5-.3c.2 0 .7 0 1-.2l1-.2 1.6.1h4.8c.4 0 1.2.3 1.4.4a35 35 0 0 0 2 .7c.5.1 1.6.3 2.2.6.5.3.9.7 1.1 1l.5 1v1.1l-.5.8-.6 1-.8.6s-.5.5-1 .4c-.4 0-4.8-.8-7.6-.8s-7.3.9-7.3.9z'/%3e%3cpath fill='%23c8b100' d='M133.3 207c0-1.3.6-2.3 1.3-2.3.8 0 1.4 1 1.4 2.4 0 1.3-.6 2.4-1.4 2.4s-1.3-1.1-1.3-2.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M133.3 207c0-1.3.6-2.3 1.3-2.3.8 0 1.4 1 1.4 2.4 0 1.3-.6 2.4-1.4 2.4s-1.3-1.1-1.3-2.5z'/%3e%3cpath fill='%23c8b100' d='M134 207c0-1.2.3-2.1.7-2.1.3 0 .6 1 .6 2.1 0 1.3-.3 2.2-.6 2.2-.4 0-.6-1-.6-2.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134 207c0-1.2.3-2.1.7-2.1.3 0 .6 1 .6 2.1 0 1.3-.3 2.2-.6 2.2-.4 0-.6-1-.6-2.2z'/%3e%3cpath fill='%23c8b100' d='M133.8 204.5c0-.4.4-.8.8-.8s1 .4 1 .8c0 .5-.5.9-1 .9s-.8-.4-.8-.9'/%3e%3cpath fill='%23c8b100' d='M135.3 204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M135.3 204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h.4'/%3e%3cpath fill='%23c8b100' d='M135.9 204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M135.9 204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.9 203.7c.4.1.6.4.6.8 0 .5-.4.9-.8.9s-1-.4-1-.9c0-.4.3-.7.7-.8'/%3e%3cpath fill='%23c8b100' d='M134.7 213.2H130v-1.1l-.3-1.2-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5.1-.3.2-.6.5-.7 1.1-.7 3.5 1 5.2 3.6l.5.7h3.8l.4-.7c1.8-2.7 4.1-4.3 5.2-3.6.3.1.4.4.5.7-.4-.3-1.6.8-2.9 2.5l-.2 1.5-.2 1.2-.1 1.1h-4.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.7 213.2H130v-1.1l-.3-1.2-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5.1-.3.2-.6.5-.7 1.1-.7 3.5 1 5.2 3.6l.5.7h3.8l.4-.7c1.8-2.7 4.1-4.3 5.2-3.6.3.1.4.4.5.7-.4-.3-1.6.8-2.9 2.5l-.2 1.5-.2 1.2-.1 1.1h-4.7z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M126.8 206.8c1-.5 3 1.1 4.6 3.6m11-3.6c-.8-.5-2.8 1.1-4.5 3.6'/%3e%3cpath fill='%23c8b100' d='m127.8 215.3-.5-1a27.3 27.3 0 0 1 14.7 0l-.5.8a5.7 5.7 0 0 0-.3.8 22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.5.8l-.3-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m127.8 215.3-.5-1a27.3 27.3 0 0 1 14.7 0l-.5.8a5.7 5.7 0 0 0-.3.8 22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.5.8l-.3-.6'/%3e%3cpath fill='%23c8b100' d='M134.6 217.7c2.4 0 5-.4 5.9-.6.6-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4-1.4-.5-4-.8-6.5-.8s-5 .3-6.4.8c-.2 0-.3.2-.4.3 0 .4.3.7 1 .9 1 .2 3.5.6 5.8.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.6 217.7c2.4 0 5-.4 5.9-.6.6-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4-1.4-.5-4-.8-6.5-.8s-5 .3-6.4.8c-.2 0-.3.2-.4.3 0 .4.3.7 1 .9 1 .2 3.5.6 5.8.6z'/%3e%3cpath fill='%23c8b100' d='m142.1 213.2-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7-1.4-.6-1.4-.6-.5.7-1 1c-.5 0-1.2-.4-1.2-.4l-.2.5-.3.1.2.5a27 27 0 0 1 7.2-.9c3 0 5.5.4 7.4 1l.2-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m142.1 213.2-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7-1.4-.6-1.4-.6-.5.7-1 1c-.5 0-1.2-.4-1.2-.4l-.2.5-.3.1.2.5a27 27 0 0 1 7.2-.9c3 0 5.5.4 7.4 1l.2-.6z'/%3e%3cpath fill='%23c8b100' d='M134.7 210.7h.2a1 1 0 0 0 0 .4c0 .6.4 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8.6 0 1-.4 1-1v-.1l.4-.4.2.5a.9.9 0 0 0-.1.4 1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7 0 0 .4 0 1-.4l.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3-.3 0-.6-.3-.7-.6-.2.2-.4.2-.7.2-.6 0-1.2-.3-1.4-.8-.3.3-.7.5-1.1.5a1.6 1.6 0 0 1-1.2-.6 1.6 1.6 0 0 1-1 .4 1.6 1.6 0 0 1-1.3-.6 1.6 1.6 0 0 1-2.4.2 1.6 1.6 0 0 1-1.2.6 1.5 1.5 0 0 1-1.1-.5c-.2.5-.8.8-1.4.8-.2 0-.5 0-.7-.2-.1.3-.4.6-.7.6-.3 0-.6 0-.9-.2l-1-1 .1-.5.8.7c.5.4.9.4.9.4.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1 .9.9 0 0 0 0-.4v-.5l.4.4a.7.7 0 0 0 0 .1c0 .6.5 1 1 1 .6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7.7 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.7 210.7h.2a1 1 0 0 0 0 .4c0 .6.4 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8.6 0 1-.4 1-1v-.1l.4-.4.2.5a.9.9 0 0 0-.1.4 1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7 0 0 .4 0 1-.4l.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3-.3 0-.6-.3-.7-.6-.2.2-.4.2-.7.2-.6 0-1.2-.3-1.4-.8-.3.3-.7.5-1.1.5a1.6 1.6 0 0 1-1.2-.6 1.6 1.6 0 0 1-1 .4 1.6 1.6 0 0 1-1.3-.6 1.6 1.6 0 0 1-2.4.2 1.6 1.6 0 0 1-1.2.6 1.5 1.5 0 0 1-1.1-.5c-.2.5-.8.8-1.4.8-.2 0-.5 0-.7-.2-.1.3-.4.6-.7.6-.3 0-.6 0-.9-.2l-1-1 .1-.5.8.7c.5.4.9.4.9.4.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1 .9.9 0 0 0 0-.4v-.5l.4.4a.7.7 0 0 0 0 .1c0 .6.5 1 1 1 .6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7.7 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.3z'/%3e%3cpath fill='%23c8b100' d='M134.6 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2.1-.3a27 27 0 0 1 7.5-1c3 0 5.7.4 7.6 1 0 0 .2.2.1.3l-.3.2a27.3 27.3 0 0 0-7.4-1'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M134.6 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2.1-.3a27 27 0 0 1 7.5-1c3 0 5.7.4 7.6 1 0 0 .2.2.1.3l-.3.2a27.3 27.3 0 0 0-7.4-1z'/%3e%3cpath fill='%23fff' d='M131.8 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M131.8 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3e%3cpath fill='%23ad1519' d='M134.7 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3.3.3 0 0 1-.3.3h-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.7 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3.3.3 0 0 1-.3.3h-1'/%3e%3cpath fill='%23058e6e' d='M130 214.9h-.7c-.1 0-.3 0-.3-.2a.3.3 0 0 1 .2-.3l.7-.1.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M130 214.9h-.7c-.1 0-.3 0-.3-.2a.3.3 0 0 1 .2-.3l.7-.1.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3e%3cpath fill='%23ad1519' d='m127.3 215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m127.3 215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath fill='%23fff' d='M136.6 214.4c0-.3.2-.4.4-.4a.4.4 0 0 1 .5.4.4.4 0 0 1-.5.4.4.4 0 0 1-.4-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M136.6 214.4c0-.3.2-.4.4-.4a.4.4 0 0 1 .5.4.4.4 0 0 1-.5.4.4.4 0 0 1-.4-.4z'/%3e%3cpath fill='%23058e6e' d='M139.3 214.9h.6a.3.3 0 0 0 .4-.2.3.3 0 0 0-.3-.3l-.6-.1-.7-.1c-.2 0-.3 0-.4.2 0 .2.1.3.3.4h.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M139.3 214.9h.6a.3.3 0 0 0 .4-.2.3.3 0 0 0-.3-.3l-.6-.1-.7-.1c-.2 0-.3 0-.4.2 0 .2.1.3.3.4h.7'/%3e%3cpath fill='%23ad1519' d='m142 215.4-.3-.5h-.7l.3.6.6-.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m142 215.4-.3-.5h-.7l.3.6.6-.1'/%3e%3cpath fill='%23ad1519' d='M134.6 217.1a25 25 0 0 1-6-.6 25.5 25.5 0 0 1 12.1 0c-1.6.4-3.7.6-6 .6'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M134.6 217.1a25 25 0 0 1-6-.6 25.5 25.5 0 0 1 12.1 0c-1.6.4-3.7.6-6 .6z'/%3e%3cpath fill='%23c8b100' d='m142 212-.1-.3c-.2 0-.3 0-.4.2 0 .2 0 .4.2.4 0 0 .2 0 .3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m142 212-.1-.3c-.2 0-.3 0-.4.2 0 .2 0 .4.2.4 0 0 .2 0 .3-.3z'/%3e%3cpath fill='%23c8b100' d='M137.3 211.2c0-.2 0-.4-.2-.4 0 0-.2.1-.2.3 0 .2 0 .4.2.4l.3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M137.3 211.2c0-.2 0-.4-.2-.4 0 0-.2.1-.2.3 0 .2 0 .4.2.4l.3-.3z'/%3e%3cpath fill='%23c8b100' d='m132 211.2.1-.4c.2 0 .3.1.3.3 0 .2 0 .4-.2.4l-.2-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m132 211.2.1-.4c.2 0 .3.1.3.3 0 .2 0 .4-.2.4l-.2-.3z'/%3e%3cpath fill='%23c8b100' d='m127.3 212 .1-.3c.2 0 .3 0 .4.2 0 .2 0 .4-.2.4 0 0-.2 0-.3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m127.3 212 .1-.3c.2 0 .3 0 .4.2 0 .2 0 .4-.2.4 0 0-.2 0-.3-.3z'/%3e%3cpath fill='%23c8b100' d='m134.6 208.5-.8.5.6 1.3.2.1.2-.1.7-1.3-.9-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m134.6 208.5-.8.5.6 1.3.2.1.2-.1.7-1.3-.9-.5'/%3e%3cpath fill='%23c8b100' d='m132.8 210.5.4.5 1.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m132.8 210.5.4.5 1.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath fill='%23c8b100' d='m136.4 210.5-.3.5-1.3-.4-.2-.2.2-.2 1.3-.3.3.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m136.4 210.5-.3.5-1.3-.4-.2-.2.2-.2 1.3-.3.3.6'/%3e%3cpath fill='%23c8b100' d='m129.3 209-.7.7.9 1 .2.1.1-.1.3-1.3-.8-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m129.3 209-.7.7.9 1 .2.1.1-.1.3-1.3-.8-.3'/%3e%3cpath fill='%23c8b100' d='m128 211.2.4.5 1.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m128 211.2.4.5 1.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath fill='%23c8b100' d='m131.5 210.5-.3.6H130l-.2-.2.1-.3 1.2-.6.5.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m131.5 210.5-.3.6H130l-.2-.2.1-.3 1.2-.6.5.5'/%3e%3cpath fill='%23c8b100' d='M126.6 211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M126.6 211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath fill='%23c8b100' d='M129.2 210.9c0-.3.2-.5.5-.5s.5.2.5.5a.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M129.2 210.9c0-.3.2-.5.5-.5s.5.2.5.5a.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4z'/%3e%3cpath fill='%23c8b100' d='m140 209 .7.7-.9 1-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m140 209 .7.7-.9 1-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath fill='%23c8b100' d='m141.4 211.2-.5.5-1.2-.6v-.2l.1-.2 1.3-.1.3.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m141.4 211.2-.5.5-1.2-.6v-.2l.1-.2 1.3-.1.3.6'/%3e%3cpath fill='%23c8b100' d='m137.8 210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m137.8 210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath fill='%23c8b100' d='m142.5 211.4.1.6 1.3.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m142.5 211.4.1.6 1.3.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath fill='%23c8b100' d='M134.2 210.4a.5.5 0 0 1 .4-.4c.3 0 .5.2.5.4a.5.5 0 0 1-.5.5.5.5 0 0 1-.4-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M134.2 210.4a.5.5 0 0 1 .4-.4c.3 0 .5.2.5.4a.5.5 0 0 1-.5.5.5.5 0 0 1-.4-.5z'/%3e%3cpath fill='%23c8b100' d='M139.1 210.9c0-.3.3-.5.5-.5a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M139.1 210.9c0-.3.3-.5.5-.5a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4z'/%3e%3cpath fill='%23c8b100' d='m124.8 212.2-.6-.7c-.2-.2-.7-.3-.7-.3 0-.1.3-.3.6-.3a.5.5 0 0 1 .4.2v-.2s.3 0 .4.3v1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m124.8 212.2-.6-.7c-.2-.2-.7-.3-.7-.3 0-.1.3-.3.6-.3a.5.5 0 0 1 .4.2v-.2s.3 0 .4.3v1z'/%3e%3cpath fill='%23c8b100' d='M124.8 212c.1-.2.4-.2.5 0 .2.1.3.3.2.5l-.5-.1c-.2-.1-.3-.4-.2-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M124.8 212c.1-.2.4-.2.5 0 .2.1.3.3.2.5l-.5-.1c-.2-.1-.3-.4-.2-.5z'/%3e%3cpath fill='%23c8b100' d='m144.3 212.2.6-.7c.2-.2.7-.3.7-.3 0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7l.1.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m144.3 212.2.6-.7c.2-.2.7-.3.7-.3 0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7l.1.3z'/%3e%3cpath fill='%23c8b100' d='M144.3 212c0-.2-.3-.2-.5 0-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M144.3 212c0-.2-.3-.2-.5 0-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5z'/%3e%3cpath fill='%23c8b100' d='M124 223h21.4v-5.5H124v5.6z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M124 223h21.4v-5.5H124v5.6z'/%3e%3cpath fill='%23c8b100' d='M126.2 226.8a1 1 0 0 1 .4 0h16.5a1.4 1.4 0 0 1-1-1.2c0-.6.5-1.1 1-1.3a1.7 1.7 0 0 1-.4 0h-16a1.4 1.4 0 0 1-.5 0c.6.2 1 .7 1 1.3a1.3 1.3 0 0 1-1 1.2'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M126.2 226.8a1 1 0 0 1 .4 0h16.5a1.4 1.4 0 0 1-1-1.2c0-.6.5-1.1 1-1.3a1.7 1.7 0 0 1-.4 0h-16a1.4 1.4 0 0 1-.5 0c.6.2 1 .7 1 1.3a1.3 1.3 0 0 1-1 1.2z'/%3e%3cpath fill='%23c8b100' d='M126.6 226.8h16c.6 0 1 .3 1 .7 0 .4-.4.8-1 .8h-16c-.5 0-1-.4-1-.8s.5-.8 1-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M126.6 226.8h16c.6 0 1 .3 1 .7 0 .4-.4.8-1 .8h-16c-.5 0-1-.4-1-.8s.5-.8 1-.8z'/%3e%3cpath fill='%23c8b100' d='M126.6 223h16c.6 0 1 .4 1 .7 0 .4-.4.6-1 .6h-16c-.5 0-1-.2-1-.6 0-.3.5-.6 1-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M126.6 223h16c.6 0 1 .4 1 .7 0 .4-.4.6-1 .6h-16c-.5 0-1-.2-1-.6 0-.3.5-.6 1-.6z'/%3e%3cpath fill='%23005bbf' d='M149.6 317.4c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8a8.3 8.3 0 0 1-3.8.8c-1.5 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.7-.8 8 8 0 0 0-3.7.8 8.3 8.3 0 0 1-3.8.8v2.4c1.5 0 2.8-.4 3.8-.9a8.2 8.2 0 0 1 3.7-.8c1.4 0 2.7.3 3.7.8s2.2.9 3.7.9a8.4 8.4 0 0 0 3.8-.9c1-.5 2.3-.8 3.7-.8 1.5 0 2.8.3 3.8.8s2.2.9 3.7.9v-2.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M149.6 317.4c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8a8.3 8.3 0 0 1-3.8.8c-1.5 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.7-.8 8 8 0 0 0-3.7.8 8.3 8.3 0 0 1-3.8.8v2.4c1.5 0 2.8-.4 3.8-.9a8.2 8.2 0 0 1 3.7-.8c1.4 0 2.7.3 3.7.8s2.2.9 3.7.9a8.4 8.4 0 0 0 3.8-.9c1-.5 2.3-.8 3.7-.8 1.5 0 2.8.3 3.8.8s2.2.9 3.7.9v-2.4z'/%3e%3cpath fill='%23ccc' d='M149.6 319.8a8 8 0 0 1-3.7-.9 8.3 8.3 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.9-3.8.9-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8 8.2 8.2 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.4 3.8-.9a8.1 8.1 0 0 1 3.7-.7c1.4 0 2.7.2 3.7.7a8.3 8.3 0 0 0 7.5 0 8.5 8.5 0 0 1 7.5.1 8.1 8.1 0 0 0 3.7.8v-2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M149.6 319.8a8 8 0 0 1-3.7-.9 8.3 8.3 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.9-3.8.9-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8 8.2 8.2 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.4 3.8-.9a8.1 8.1 0 0 1 3.7-.7c1.4 0 2.7.2 3.7.7a8.3 8.3 0 0 0 7.5 0 8.5 8.5 0 0 1 7.5.1 8.1 8.1 0 0 0 3.7.8v-2.3'/%3e%3cpath fill='%23005bbf' d='M149.6 322a7 7 0 0 1-3.7-.8 8.3 8.3 0 0 0-3.8-.7c-1.4 0-2.7.2-3.7.7-1 .6-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8 8 8 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.3 3.8-.9a10.2 10.2 0 0 1 7.4 0 7 7 0 0 0 3.7.9 8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8 1.5 0 2.8.3 3.8.8s2.2.8 3.7.8V322'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M149.6 322a7 7 0 0 1-3.7-.8 8.3 8.3 0 0 0-3.8-.7c-1.4 0-2.7.2-3.7.7-1 .6-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8 8 8 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.3 3.8-.9a10.2 10.2 0 0 1 7.4 0 7 7 0 0 0 3.7.9 8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8 1.5 0 2.8.3 3.8.8s2.2.8 3.7.8V322'/%3e%3cpath fill='%23ccc' d='M149.6 326.7a8 8 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.9 10.2 10.2 0 0 1 7.4 0 8 8 0 0 0 3.7.9 8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.8-.8 1.4 0 2.7.3 3.7.8s2.3.8 3.7.8v2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M149.6 326.7a8 8 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.9 10.2 10.2 0 0 1 7.4 0 8 8 0 0 0 3.7.9 8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.8-.8 1.4 0 2.7.3 3.7.8s2.3.8 3.7.8v2.3'/%3e%3cpath fill='%23005bbf' d='M149.6 329a8.1 8.1 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.7.3 3.7.7a8.4 8.4 0 0 0 7.5 0c1-.4 2.3-.7 3.8-.7 1.4 0 2.7.3 3.7.8s2.2.8 3.7.8v2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M149.6 329a8.1 8.1 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.7.3 3.7.7a8.4 8.4 0 0 0 7.5 0c1-.4 2.3-.7 3.8-.7 1.4 0 2.7.3 3.7.8s2.2.8 3.7.8v2.3z'/%3e%3cpath fill='%23c8b100' d='m126.2 308 .2.5c0 1.5-1.3 2.6-2.7 2.6h22a2.7 2.7 0 0 1-2.7-2.6v-.5a1.3 1.3 0 0 1-.3 0h-16a1.4 1.4 0 0 1-.5 0'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='m126.2 308 .2.5c0 1.5-1.3 2.6-2.7 2.6h22a2.7 2.7 0 0 1-2.7-2.6v-.5a1.3 1.3 0 0 1-.3 0h-16a1.4 1.4 0 0 1-.5 0z'/%3e%3cpath fill='%23c8b100' d='M126.6 306.5h16c.6 0 1 .3 1 .8 0 .4-.4.7-1 .7h-16c-.5 0-1-.3-1-.8 0-.4.5-.7 1-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M126.6 306.5h16c.6 0 1 .3 1 .8 0 .4-.4.7-1 .7h-16c-.5 0-1-.3-1-.8 0-.4.5-.7 1-.7z'/%3e%3cpath fill='%23c8b100' d='M123.7 316.7h22V311h-22v5.6z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M123.7 316.7h22V311h-22v5.6z'/%3e%3cpath fill='%23ad1519' d='M122 286.7c-2.2 1.2-3.7 2.5-3.4 3.2 0 .6.8 1 1.8 1.6 1.5 1.1 2.5 3 1.7 4a5.5 5.5 0 0 0-.1-8.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M122 286.7c-2.2 1.2-3.7 2.5-3.4 3.2 0 .6.8 1 1.8 1.6 1.5 1.1 2.5 3 1.7 4a5.5 5.5 0 0 0-.1-8.8z'/%3e%3cpath fill='%23ccc' d='M126.8 305.6h15.6V229h-15.6v76.5z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M138 229.2v76.3m1.7-76.3v76.3m-12.9 0h15.6v-76.4h-15.6v76.5z'/%3e%3cpath fill='%23ad1519' d='M158.4 257.7a49.6 49.6 0 0 0-23.3-2c-9.4 1.6-16.5 5.3-15.9 8.4v.2l-3.5-8.2c-.6-3.3 7.2-7.5 17.6-9.2a43 43 0 0 1 9.2-.7c6.6 0 12.4.8 15.8 2.1v9.4'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M158.4 257.7a49.6 49.6 0 0 0-23.3-2c-9.4 1.6-16.5 5.3-15.9 8.4v.2l-3.5-8.2c-.6-3.3 7.2-7.5 17.6-9.2a43 43 0 0 1 9.2-.7c6.6 0 12.4.8 15.8 2.1v9.4'/%3e%3cpath fill='%23ad1519' d='M126.8 267.3c-4.3-.3-7.3-1.4-7.6-3.2-.3-1.5 1.2-3 3.8-4.5 1.2.1 2.5.3 3.8.3v7.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M126.8 267.3c-4.3-.3-7.3-1.4-7.6-3.2-.3-1.5 1.2-3 3.8-4.5 1.2.1 2.5.3 3.8.3v7.4'/%3e%3cpath fill='%23ad1519' d='M142.5 261.5c2.7.4 4.7 1 5.7 1.9l.1.2c.5 1-1.9 3-5.9 5.4v-7.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M142.5 261.5c2.7.4 4.7 1 5.7 1.9l.1.2c.5 1-1.9 3-5.9 5.4v-7.5'/%3e%3cpath fill='%23ad1519' d='M117.1 282c-.4-1.2 3.8-3.6 9.8-5.8l7.8-3.2c8.3-3.7 14.4-7.9 13.6-9.4v-.2c.4.4 1 8 1 8 .8 1.3-4.8 5.5-12.4 9.1-2.5 1.2-7.6 3-10 4-4.4 1.4-8.7 4.3-8.3 5.3l-1.5-7.7'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M117.1 282c-.4-1.2 3.8-3.6 9.8-5.8l7.8-3.2c8.3-3.7 14.4-7.9 13.6-9.4v-.2c.4.4 1 8 1 8 .8 1.3-4.8 5.5-12.4 9.1-2.5 1.2-7.6 3-10 4-4.4 1.4-8.7 4.3-8.3 5.3l-1.5-7.7z'/%3e%3cpath fill='%23c8b100' d='M125.8 254c1.9-.6 3.1-1.5 2.5-3-.4-1-1.4-1-2.8-.6l-2.6 1 2.3 5.8.8-.3.8-.3-1-2.5zm-1.2-2.7.7-.3c.5-.2 1.2.1 1.4.8.2.5.2 1-.5 1.5a4.4 4.4 0 0 1-.6.3l-1-2.3m7.3-2.5-.9.3h-.8l1.3 6.1 4.3-.8-.2-.4v-.4l-2.5.6-1.2-5.3m8.4 5.2c.8-2.2 1.7-4.3 2.7-6.4a5.3 5.3 0 0 1-1 0 54.8 54.8 0 0 1-1.8 4.6l-2.4-4.3-1 .1h-1a131.4 131.4 0 0 1 3.5 6h1m8.8-4.7.4-.9a3.4 3.4 0 0 0-1.7-.6c-1.7-.1-2.7.6-2.8 1.7-.2 2.1 3.2 2 3 3.4 0 .6-.7.9-1.4.8-.8 0-1.4-.5-1.4-1.2h-.3a7.3 7.3 0 0 1-.4 1.1 4 4 0 0 0 1.8.6c1.7.2 3-.5 3.2-1.7.2-2-3.3-2.1-3.1-3.4 0-.5.4-.8 1.3-.7.7 0 1 .4 1.2.9h.2'/%3e%3cpath fill='%23ad1519' d='M277.9 211.6s-.7.8-1.3.9c-.5 0-1.1-.5-1.1-.5s-.5.5-1 .6c-.6.1-1.4-.6-1.4-.6l-1 1c-.6 0-1.1-.3-1.1-.3s-.3.4-.7.6h-.4l-.6-.4-.7-.7-.5-.3-.4-1v-.5c-.1-.6.8-1.4 2.2-1.7a3.9 3.9 0 0 1 2 0c.5-.5 1.7-.8 3-.8s2.4.3 3 .7a5.5 5.5 0 0 1 2.9-.7c1.3 0 2.5.3 3 .8.5-.2 1.2-.2 2 0 1.4.3 2.3 1 2.2 1.7v.5l-.4 1-.6.3-.6.7-.6.3s-.3.2-.4 0c-.4-.1-.7-.5-.7-.5s-.6.4-1 .2c-.5-.2-1-1-1-1s-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5c-.5-.1-1.2-.9-1.2-.9'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.9 211.6s-.7.8-1.3.9c-.5 0-1.1-.5-1.1-.5s-.5.5-1 .6c-.6.1-1.4-.6-1.4-.6l-1 1c-.6 0-1.1-.3-1.1-.3s-.3.4-.7.6h-.4l-.6-.4-.7-.7-.5-.3-.4-1v-.5c-.1-.6.8-1.4 2.2-1.7a3.9 3.9 0 0 1 2 0c.5-.5 1.7-.8 3-.8s2.4.3 3 .7a5.5 5.5 0 0 1 2.9-.7c1.3 0 2.5.3 3 .8.5-.2 1.2-.2 2 0 1.4.3 2.3 1 2.2 1.7v.5l-.4 1-.6.3-.6.7-.6.3s-.3.2-.4 0c-.4-.1-.7-.5-.7-.5s-.6.4-1 .2c-.5-.2-1-1-1-1s-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5c-.5-.1-1.2-.9-1.2-.9z'/%3e%3cpath fill='%23c8b100' d='M276.5 207.6c0-1 .6-2 1.3-2 .8 0 1.3 1 1.3 2s-.5 1.8-1.3 1.8c-.7 0-1.3-.8-1.3-1.9'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M276.5 207.6c0-1 .6-2 1.3-2 .8 0 1.3 1 1.3 2s-.5 1.8-1.3 1.8c-.7 0-1.3-.8-1.3-1.9z'/%3e%3cpath fill='%23c8b100' d='M277.3 207.6c0-1 .2-1.8.5-1.8.4 0 .7.8.7 1.8s-.3 1.7-.6 1.7c-.4 0-.6-.8-.6-1.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.3 207.6c0-1 .2-1.8.5-1.8.4 0 .7.8.7 1.8s-.3 1.7-.6 1.7c-.4 0-.6-.8-.6-1.8z'/%3e%3cpath fill='%23c8b100' d='M271 215.3a4.5 4.5 0 0 0-.5-1 27.4 27.4 0 0 1 14.8 0l-.6.8a5.2 5.2 0 0 0-.3.8 22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.6.8l-.2-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M271 215.3a4.5 4.5 0 0 0-.5-1 27.4 27.4 0 0 1 14.8 0l-.6.8a5.2 5.2 0 0 0-.3.8 22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.6.8l-.2-.6'/%3e%3cpath fill='%23c8b100' d='M277.8 217.7c2.4 0 5-.4 5.9-.6.6-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4a24.1 24.1 0 0 0-6.5-.8c-2.5 0-5 .3-6.4.8-.2 0-.3.2-.4.3 0 .4.3.7 1 .9 1 .2 3.5.6 5.8.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.8 217.7c2.4 0 5-.4 5.9-.6.6-.2 1-.5 1-.8 0-.2-.2-.3-.4-.4a24.1 24.1 0 0 0-6.5-.8c-2.5 0-5 .3-6.4.8-.2 0-.3.2-.4.3 0 .4.3.7 1 .9 1 .2 3.5.6 5.8.6z'/%3e%3cpath fill='%23fff' d='M283.5 208.4c0-.2.2-.4.4-.4s.5.2.5.4-.2.4-.5.4a.4.4 0 0 1-.4-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M283.5 208.4c0-.2.2-.4.4-.4s.5.2.5.4-.2.4-.5.4a.4.4 0 0 1-.4-.4zm-.2-1.4a.4.4 0 0 1 .4-.4c.2 0 .4.1.4.4s-.2.4-.4.4a.4.4 0 0 1-.4-.4zm-1.1-1c0-.2.2-.3.4-.3s.4.1.4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.4-.5zm-1.4-.4c0-.2.2-.4.4-.4.3 0 .5.2.5.4s-.2.4-.4.4-.5-.2-.5-.4zm-1.4 0c0-.2.2-.3.5-.3s.4.1.4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-width='.3' d='m287.8 211.2.2-1a2.7 2.7 0 0 0-2.7-2.8c-.5 0-1 .1-1.3.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m283 209.2.2-.8c0-1.1-1.1-2-2.5-2-.6 0-1.2.2-1.6.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M288.2 210c0-.3.2-.5.4-.5s.4.2.4.4c0 .3-.2.4-.4.4s-.4-.1-.4-.4zm-.2-1.6c0-.2.2-.4.4-.4a.4.4 0 0 1 .5.4c0 .2-.2.4-.4.4-.3 0-.5-.2-.5-.4zm-1-1.1a.4.4 0 0 1 .5-.4c.2 0 .4.1.4.4a.4.4 0 0 1-.4.4.4.4 0 0 1-.5-.4zm-1.3-.7c0-.2.2-.4.5-.4s.4.2.4.4c0 .3-.2.5-.4.5a.4.4 0 0 1-.5-.5zm-1.4.1c0-.2.2-.4.5-.4s.4.2.4.4-.2.4-.4.4-.5-.2-.5-.4z'/%3e%3cpath fill='%23c8b100' d='m285.3 213.2-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7-1.4-.6-1.4-.6-.4.7-1 1c-.5 0-1.2-.4-1.2-.4l-.1.5-.3.1.1.5a27 27 0 0 1 7.3-.9c2.8 0 5.4.4 7.3 1l.2-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m285.3 213.2-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7-1.4-.6-1.4-.6-.4.7-1 1c-.5 0-1.2-.4-1.2-.4l-.1.5-.3.1.1.5a27 27 0 0 1 7.3-.9c2.8 0 5.4.4 7.3 1l.2-.6z'/%3e%3cpath fill='%23fff' d='M271.3 208.4c0-.2.2-.4.4-.4s.4.2.4.4a.4.4 0 0 1-.4.4.4.4 0 0 1-.4-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M271.3 208.4c0-.2.2-.4.4-.4s.4.2.4.4a.4.4 0 0 1-.4.4.4.4 0 0 1-.4-.4zm.2-1.4c0-.3.2-.4.4-.4s.5.1.5.4-.2.4-.5.4a.4.4 0 0 1-.4-.4zm1-1c0-.2.3-.3.5-.3s.5.1.5.4c0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.5zm1.4-.4c0-.2.2-.4.5-.4s.4.2.4.4-.2.4-.4.4-.5-.2-.5-.4zm1.4 0c0-.2.2-.3.5-.3.2 0 .4.1.4.4 0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-width='.3' d='M267.8 211.2a2.8 2.8 0 0 1-.2-1 2.7 2.7 0 0 1 2.7-2.8c.5 0 1 .1 1.4.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M272.7 209.2a1.7 1.7 0 0 1-.3-.8c0-1 1.2-2 2.6-2a3 3 0 0 1 1.5.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M266.6 210c0-.3.2-.5.4-.5.3 0 .4.2.4.4a.4.4 0 0 1-.4.4c-.2 0-.4-.1-.4-.4zm.1-1.6c0-.2.3-.4.5-.4s.4.2.4.4-.2.4-.4.4-.4-.2-.4-.4zm1-1.1c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4.4.4 0 0 1-.4.4.4.4 0 0 1-.5-.4zm1.3-.7c0-.2.2-.4.5-.4.2 0 .4.2.4.4 0 .3-.2.5-.4.5a.4.4 0 0 1-.5-.5zm1.4.1c0-.2.2-.4.5-.4a.4.4 0 0 1 .4.4.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4z'/%3e%3cpath fill='%23c8b100' d='M277.9 210.7h.2a1 1 0 0 0 0 .4c0 .6.5 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8.6 0 1-.4 1-1a.7.7 0 0 0 0-.1l.4-.4.2.5a1 1 0 0 0-.1.4 1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7 0 0 .4 0 1-.4s.7-.7.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3-.3 0-.6-.3-.7-.6a1.5 1.5 0 0 1-.7.2c-.6 0-1.2-.3-1.4-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-1-.2-1.2-.6a1.5 1.5 0 0 1-1 .4c-.6 0-1-.2-1.4-.6-.2.4-.7.6-1.2.6-.4 0-.8-.1-1-.4a1.6 1.6 0 0 1-1.3.6c-.4 0-.8-.2-1.1-.5-.2.5-.8.8-1.4.8-.2 0-.5 0-.7-.2-.1.3-.4.6-.7.6-.3 0-.6 0-.9-.2a4.2 4.2 0 0 1-1-1l.1-.5.8.7c.5.4.9.4.9.4.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1 1 1 0 0 0 0-.4v-.5l.4.4v.1c0 .6.5 1 1 1 .6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7.6 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.9 210.7h.2a1 1 0 0 0 0 .4c0 .6.5 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8.6 0 1-.4 1-1a.7.7 0 0 0 0-.1l.4-.4.2.5a1 1 0 0 0-.1.4 1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7 0 0 .4 0 1-.4s.7-.7.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3-.3 0-.6-.3-.7-.6a1.5 1.5 0 0 1-.7.2c-.6 0-1.2-.3-1.4-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-1-.2-1.2-.6a1.5 1.5 0 0 1-1 .4c-.6 0-1-.2-1.4-.6-.2.4-.7.6-1.2.6-.4 0-.8-.1-1-.4a1.6 1.6 0 0 1-1.3.6c-.4 0-.8-.2-1.1-.5-.2.5-.8.8-1.4.8-.2 0-.5 0-.7-.2-.1.3-.4.6-.7.6-.3 0-.6 0-.9-.2a4.2 4.2 0 0 1-1-1l.1-.5.8.7c.5.4.9.4.9.4.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1 1 1 0 0 0 0-.4v-.5l.4.4v.1c0 .6.5 1 1 1 .6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7.6 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.2z'/%3e%3cpath fill='%23c8b100' d='M277.8 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2.1-.3c2-.6 4.6-1 7.5-1 3 0 5.7.4 7.6 1 0 0 .2.2.1.3l-.3.2a27 27 0 0 0-7.4-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.8 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2.1-.3c2-.6 4.6-1 7.5-1 3 0 5.7.4 7.6 1 0 0 .2.2.1.3l-.3.2a27 27 0 0 0-7.4-1z'/%3e%3cpath fill='%23fff' d='M275 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M275 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4z'/%3e%3cpath fill='%23ad1519' d='M277.9 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3.3.3 0 0 1-.3.3h-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.9 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3.3.3 0 0 1-.3.3h-1'/%3e%3cpath fill='%23058e6e' d='M273.2 214.9h-.6a.3.3 0 0 1-.4-.2.3.3 0 0 1 .3-.3l.6-.1.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M273.2 214.9h-.6a.3.3 0 0 1-.4-.2.3.3 0 0 1 .3-.3l.6-.1.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3e%3cpath fill='%23ad1519' d='m270.5 215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m270.5 215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath fill='%23fff' d='M279.8 214.4c0-.3.2-.4.4-.4.3 0 .5.1.5.4 0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M279.8 214.4c0-.3.2-.4.4-.4.3 0 .5.1.5.4 0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.4z'/%3e%3cpath fill='%23058e6e' d='M282.5 214.9h.7a.3.3 0 0 0 .3-.2.3.3 0 0 0-.2-.3l-.7-.1-.7-.1c-.2 0-.3 0-.4.2 0 .2.1.3.3.4h.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M282.5 214.9h.7a.3.3 0 0 0 .3-.2.3.3 0 0 0-.2-.3l-.7-.1-.7-.1c-.2 0-.3 0-.4.2 0 .2.1.3.3.4h.7'/%3e%3cpath fill='%23ad1519' d='m285.1 215.4-.2-.5h-.7l.3.6.6-.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m285.1 215.4-.2-.5h-.7l.3.6.6-.1'/%3e%3cpath fill='%23ad1519' d='M277.8 217.1a25 25 0 0 1-6-.6 25.4 25.4 0 0 1 6-.7c2.4 0 4.5.3 6.1.7-1.6.4-3.7.6-6 .6'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M277.8 217.1a25 25 0 0 1-6-.6 25.4 25.4 0 0 1 6-.7c2.4 0 4.5.3 6.1.7-1.6.4-3.7.6-6 .6z'/%3e%3cpath fill='%23c8b100' d='m285.2 212-.1-.3c-.2 0-.3 0-.4.2l.1.4c.2 0 .3 0 .4-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m285.2 212-.1-.3c-.2 0-.3 0-.4.2l.1.4c.2 0 .3 0 .4-.3z'/%3e%3cpath fill='%23c8b100' d='M280.6 211.2c0-.2-.1-.4-.3-.4 0 0-.2.1-.2.3 0 .2 0 .4.2.4l.3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M280.6 211.2c0-.2-.1-.4-.3-.4 0 0-.2.1-.2.3 0 .2 0 .4.2.4l.3-.3z'/%3e%3cpath fill='%23c8b100' d='M275.2 211.2c0-.2 0-.4.2-.4l.3.3-.2.4c-.2 0-.3-.2-.3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M275.2 211.2c0-.2 0-.4.2-.4l.3.3-.2.4c-.2 0-.3-.2-.3-.3z'/%3e%3cpath fill='%23c8b100' d='m270.5 212 .1-.3c.2 0 .3 0 .4.2l-.1.4c-.2 0-.3 0-.4-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m270.5 212 .1-.3c.2 0 .3 0 .4.2l-.1.4c-.2 0-.3 0-.4-.3z'/%3e%3cpath fill='%23c8b100' d='m277.8 208.5-.8.5.6 1.3.2.1.3-.1.6-1.3-.9-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m277.8 208.5-.8.5.6 1.3.2.1.3-.1.6-1.3-.9-.5'/%3e%3cpath fill='%23c8b100' d='m276 210.5.4.5 1.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m276 210.5.4.5 1.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath fill='%23c8b100' d='m279.6 210.5-.3.5-1.3-.4-.1-.2v-.2l1.4-.3.4.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m279.6 210.5-.3.5-1.3-.4-.1-.2v-.2l1.4-.3.4.6'/%3e%3cpath fill='%23c8b100' d='m272.5 209-.7.7.9 1 .2.1.2-.1.2-1.3-.8-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m272.5 209-.7.7.9 1 .2.1.2-.1.2-1.3-.8-.3'/%3e%3cpath fill='%23c8b100' d='m271.1 211.2.5.5 1.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m271.1 211.2.5.5 1.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath fill='%23c8b100' d='m274.7 210.5-.3.6h-1.3l-.2-.2.1-.3 1.2-.6.5.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m274.7 210.5-.3.6h-1.3l-.2-.2.1-.3 1.2-.6.5.5'/%3e%3cpath fill='%23c8b100' d='M269.8 211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M269.8 211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath fill='%23c8b100' d='M272.4 210.9c0-.3.2-.5.5-.5a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M272.4 210.9c0-.3.2-.5.5-.5a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.4.5.5 0 0 1-.5-.4z'/%3e%3cpath fill='%23c8b100' d='m283.2 209 .7.7-.9 1-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m283.2 209 .7.7-.9 1-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath fill='%23c8b100' d='m284.6 211.2-.5.5-1.2-.6v-.2l.1-.2 1.3-.1.3.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m284.6 211.2-.5.5-1.2-.6v-.2l.1-.2 1.3-.1.3.6'/%3e%3cpath fill='%23c8b100' d='m281 210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m281 210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath fill='%23c8b100' d='M285.7 211.4v.6l1.4.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M285.7 211.4v.6l1.4.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath fill='%23c8b100' d='M277.4 210.4c0-.2.2-.4.5-.4.2 0 .4.2.4.4 0 .3-.2.5-.4.5a.5.5 0 0 1-.5-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M277.4 210.4c0-.2.2-.4.5-.4.2 0 .4.2.4.4 0 .3-.2.5-.4.5a.5.5 0 0 1-.5-.5z'/%3e%3cpath fill='%23c8b100' d='M282.3 210.9c0-.3.3-.5.5-.5.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 0 1-.5-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M282.3 210.9c0-.3.3-.5.5-.5.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 0 1-.5-.4z'/%3e%3cpath fill='%23c8b100' d='M277 205.4c0-.5.4-.8.8-.8s1 .3 1 .8-.5.8-1 .8a.9.9 0 0 1-.8-.8'/%3e%3cpath fill='%23c8b100' d='M278.5 205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M278.5 205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4z'/%3e%3cpath fill='%23c8b100' d='M279 205.1v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M278.1 204.6c.4 0 .6.4.6.8 0 .5-.4.8-.9.8a.9.9 0 0 1-.8-.8c0-.4.2-.7.6-.8'/%3e%3cpath fill='%23c8b100' d='m268 212.2-.6-.7a2.3 2.3 0 0 0-.7-.3c0-.1.3-.3.6-.3.2 0 .3 0 .4.2v-.2s.3 0 .4.3v1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m268 212.2-.6-.7a2.3 2.3 0 0 0-.7-.3c0-.1.3-.3.6-.3.2 0 .3 0 .4.2v-.2s.3 0 .4.3v1z'/%3e%3cpath fill='%23c8b100' d='M268 212c.1-.2.4-.2.5 0 .2.1.3.3.1.5l-.5-.1c-.1-.1-.2-.4 0-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M268 212c.1-.2.4-.2.5 0 .2.1.3.3.1.5l-.5-.1c-.1-.1-.2-.4 0-.5z'/%3e%3cpath fill='%23c8b100' d='m287.5 212.2.6-.7c.2-.2.7-.3.7-.3 0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7l.1.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m287.5 212.2.6-.7c.2-.2.7-.3.7-.3 0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7l.1.3z'/%3e%3cpath fill='%23c8b100' d='M287.5 212c-.1-.2-.3-.2-.5 0-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M287.5 212c-.1-.2-.3-.2-.5 0-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5z'/%3e%3cpath fill='%23c8b100' d='M267.2 223h21.4v-5.5h-21.4v5.6z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M267.2 223h21.4v-5.5h-21.4v5.6z'/%3e%3cpath fill='%23c8b100' d='M286.3 226.8a1 1 0 0 0-.4 0h-16.5c.6-.2 1-.7 1-1.2 0-.6-.4-1.1-1-1.3h17-.1c-.6.2-1 .7-1 1.3 0 .5.4 1 1 1.2'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M286.3 226.8a1 1 0 0 0-.4 0h-16.5c.6-.2 1-.7 1-1.2 0-.6-.4-1.1-1-1.3h17-.1c-.6.2-1 .7-1 1.3 0 .5.4 1 1 1.2z'/%3e%3cpath fill='%23c8b100' d='M269.9 226.8h16c.6 0 1 .3 1 .7 0 .4-.4.8-1 .8h-16c-.6 0-1-.4-1-.8s.5-.8 1-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M269.9 226.8h16c.6 0 1 .3 1 .7 0 .4-.4.8-1 .8h-16c-.6 0-1-.4-1-.8s.5-.8 1-.8z'/%3e%3cpath fill='%23c8b100' d='M269.9 223h16c.6 0 1 .4 1 .7 0 .4-.4.6-1 .6h-16c-.6 0-1-.2-1-.6 0-.3.4-.6 1-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M269.9 223h16c.6 0 1 .4 1 .7 0 .4-.4.6-1 .6h-16c-.6 0-1-.2-1-.6 0-.3.4-.6 1-.6z'/%3e%3cpath fill='%23005bbf' d='M263 317.4c1.4 0 2.7-.3 3.7-.8a8.4 8.4 0 0 1 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.8a8.4 8.4 0 0 1 3.6-.8 8 8 0 0 1 3.7.8c1 .5 2.4.8 3.8.8v2.4a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.8c-1.4 0-2.7.3-3.6.8-1 .5-2.3.9-3.8.9a8 8 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v-2.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M263 317.4c1.4 0 2.7-.3 3.7-.8a8.4 8.4 0 0 1 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.8a8.4 8.4 0 0 1 3.6-.8 8 8 0 0 1 3.7.8c1 .5 2.4.8 3.8.8v2.4a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.8c-1.4 0-2.7.3-3.6.8-1 .5-2.3.9-3.8.9a8 8 0 0 1-3.7-.9 8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v-2.4z'/%3e%3cpath fill='%23ccc' d='M263 319.8c1.4 0 2.7-.4 3.7-.9s2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.8c1.5 0 2.8.3 3.7.8 1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9 8.1 8.1 0 0 0-3.7-.7c-1.4 0-2.7.2-3.6.7-1 .5-2.3.9-3.8.9a7 7 0 0 1-3.7-.9c-1-.4-2.3-.7-3.8-.7a8.3 8.3 0 0 0-3.7.7 8.1 8.1 0 0 1-3.8.9v-2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M263 319.8c1.4 0 2.7-.4 3.7-.9s2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.8c1.5 0 2.8.3 3.7.8 1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9 8.1 8.1 0 0 0-3.7-.7c-1.4 0-2.7.2-3.6.7-1 .5-2.3.9-3.8.9a7 7 0 0 1-3.7-.9c-1-.4-2.3-.7-3.8-.7a8.3 8.3 0 0 0-3.7.7 8.1 8.1 0 0 1-3.8.9v-2.3'/%3e%3cpath fill='%23005bbf' d='M263 322c1.4 0 2.7-.2 3.7-.8 1-.4 2.3-.7 3.7-.7 1.4 0 2.8.2 3.8.7s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.8 8 8 0 0 1 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7-1 .6-2.3.9-3.8.9-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8V322'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M263 322c1.4 0 2.7-.2 3.7-.8 1-.4 2.3-.7 3.7-.7 1.4 0 2.8.2 3.8.7s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.8 8 8 0 0 1 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7-1 .6-2.3.9-3.8.9-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8V322'/%3e%3cpath fill='%23ccc' d='M263 326.7a8 8 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8a8.3 8.3 0 0 0 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7-1 .5-2.3.9-3.8.9-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8v2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M263 326.7a8 8 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8a8.3 8.3 0 0 0 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.9 8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7-1 .5-2.3.9-3.8.9-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8 8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8v2.3'/%3e%3cpath fill='%23005bbf' d='M263 329a8.1 8.1 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.8.3 3.8.8s2.3.8 3.7.8a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8 1 .5 2.4.8 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.8 8.2 8.2 0 0 0-3.7-.8 8.4 8.4 0 0 0-3.6.7 8.2 8.2 0 0 1-3.8.9c-1.4 0-2.8-.3-3.7-.8-1-.5-2.3-.8-3.8-.8-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M263 329a8.1 8.1 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8 1.4 0 2.8.3 3.8.8s2.3.8 3.7.8a8.2 8.2 0 0 0 3.8-.9 8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8 1 .5 2.4.8 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.8 8.2 8.2 0 0 0-3.7-.8 8.4 8.4 0 0 0-3.6.7 8.2 8.2 0 0 1-3.8.9c-1.4 0-2.8-.3-3.7-.8-1-.5-2.3-.8-3.8-.8-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v2.3z'/%3e%3cpath fill='%23c8b100' d='m286.3 308-.1.5c0 1.5 1.2 2.6 2.7 2.6h-22c1.5 0 2.7-1.2 2.7-2.6l-.1-.5h16.8'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='m286.3 308-.1.5c0 1.5 1.2 2.6 2.7 2.6h-22c1.5 0 2.7-1.2 2.7-2.6l-.1-.5h16.8z'/%3e%3cpath fill='%23c8b100' d='M269.9 306.5h16c.6 0 1 .3 1 .8 0 .4-.4.7-1 .7h-16c-.6 0-1-.3-1-.8 0-.4.5-.7 1-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M269.9 306.5h16c.6 0 1 .3 1 .8 0 .4-.4.7-1 .7h-16c-.6 0-1-.3-1-.8 0-.4.5-.7 1-.7z'/%3e%3cpath fill='%23c8b100' d='M266.9 316.7h22V311h-22v5.6z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M266.9 316.7h22V311h-22v5.6z'/%3e%3cpath fill='%23ad1519' d='M290.6 286.7c2.1 1.2 3.6 2.5 3.4 3.2-.1.6-.8 1-1.8 1.6-1.6 1.1-2.5 3-1.8 4a5.5 5.5 0 0 1 .2-8.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M290.6 286.7c2.1 1.2 3.6 2.5 3.4 3.2-.1.6-.8 1-1.8 1.6-1.6 1.1-2.5 3-1.8 4a5.5 5.5 0 0 1 .2-8.8z'/%3e%3cpath fill='%23ccc' d='M270.1 305.6h15.6V229h-15.6v76.5z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M281.4 229.1v76.3m1.8-76.3v76.3m-13 .2h15.5V229h-15.6v76.5z'/%3e%3cpath fill='%23ad1519' d='M254.2 257.7a49.6 49.6 0 0 1 23.3-2c9.3 1.6 16.4 5.3 15.9 8.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a53.5 53.5 0 0 0-9.2-.7c-6.7 0-12.4.8-15.9 2.1v9.4'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M254.2 257.7a49.6 49.6 0 0 1 23.3-2c9.3 1.6 16.4 5.3 15.9 8.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a53.5 53.5 0 0 0-9.2-.7c-6.7 0-12.4.8-15.9 2.1v9.4'/%3e%3cpath fill='%23ad1519' d='M285.7 267.3c4.4-.3 7.3-1.4 7.7-3.2.2-1.5-1.2-3-3.8-4.5-1.2.1-2.5.3-3.9.3v7.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M285.7 267.3c4.4-.3 7.3-1.4 7.7-3.2.2-1.5-1.2-3-3.8-4.5-1.2.1-2.5.3-3.9.3v7.4'/%3e%3cpath fill='%23ad1519' d='M270 261.5a13 13 0 0 0-5.7 1.9v.2c-.5 1 1.8 3 5.8 5.4v-7.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M270 261.5a13 13 0 0 0-5.7 1.9v.2c-.5 1 1.8 3 5.8 5.4v-7.5'/%3e%3cpath fill='%23ad1519' d='M295.4 282c.4-1.2-3.8-3.6-9.7-5.8-2.8-1-5-2-7.8-3.2-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1 8-1 8-.8 1.3 4.8 5.5 12.4 9.1 2.4 1.2 7.6 3 10 4 4.3 1.4 8.7 4.3 8.3 5.3l1.4-7.7'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M295.4 282c.4-1.2-3.8-3.6-9.7-5.8-2.8-1-5-2-7.8-3.2-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1 8-1 8-.8 1.3 4.8 5.5 12.4 9.1 2.4 1.2 7.6 3 10 4 4.3 1.4 8.7 4.3 8.3 5.3l1.4-7.7z'/%3e%3cpath fill='%23c8b100' d='M263.9 254.4c.6-2.3 1.4-4.4 2.1-6.6h-.5a5.2 5.2 0 0 1-.5.1 52.8 52.8 0 0 1-1.4 4.8c-1-1.4-2-2.7-2.7-4.1l-1 .2h-1a131.3 131.3 0 0 1 4 5.7h.5l.5-.1m6-6.6h-1a8 8 0 0 1-.8 0v6.2h4.2v-.7h-2.6l.1-5.5m6.8 1 2 .3v-.7l-5.8-.5v.8a19.3 19.3 0 0 1 2 0l-.4 5.6h1.6l.5-5.4m2.4 6c.3 0 .5 0 .8.2l.8.2.7-2.9.6 1.2.8 2.1 1 .2c.4 0 .7.2 1 .3l-.3-.7c-.4-1-1-1.9-1.3-2.9 1 0 1.9-.3 2.1-1.2.1-.6 0-1-.7-1.5-.4-.3-1.2-.4-1.7-.5l-2.4-.5-1.4 6m3-5.2c.7.2 1.5.3 1.5 1v.5c-.3.9-1 1.2-2 .9l.5-2.4m8 7-.2 2 .8.5.9.5.5-7a3.4 3.4 0 0 1-.7-.3l-6.1 3.8.5.3.4.2 1.7-1.2 2.3 1.3zm-1.7-1.5 2-1.4-.2 2.3-1.8-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M182.2 192.4c0-1 1-2 2-2s2.2 1 2.2 2c0 1.1-1 2-2.1 2a2 2 0 0 1-2.1-2z'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.3' d='M205.7 175.4c6.3 0 12 1 15.7 2.4a31.7 31.7 0 0 0 14.6 2.3c2.7 0 6.5.8 10.3 2.4a27.3 27.3 0 0 1 7.4 4.7l-1.5 1.4-.4 3.8-4.1 4.7-2 1.8-5 3.9-2.5.2-.7 2.1-31.6-3.7-31.7 3.7-.8-2.1-2.5-.2-4.9-4-2-1.7-4.1-4.7-.5-3.8-1.5-1.4a27.6 27.6 0 0 1 7.5-4.7 26 26 0 0 1 10.2-2.4c2 .2 4.2.1 6.6-.2a30 30 0 0 0 8-2c3.7-1.5 9-2.5 15.5-2.5z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M206.2 217.1c-11.8 0-22.4-1.4-29.9-3.6a1.1 1.1 0 0 1-.8-1.2c0-.5.3-1 .8-1.2a109 109 0 0 1 29.9-3.6c11.7 0 22.3 1.4 29.8 3.6a1.3 1.3 0 0 1 0 2.4c-7.5 2.2-18 3.6-29.8 3.6'/%3e%3cpath fill='%23ad1519' d='M206.1 215.6c-10.6 0-20.2-1.2-27.5-3.1 7.3-2 16.9-3 27.5-3.1a115 115 0 0 1 27.6 3c-7.3 2-17 3.2-27.6 3.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M206.9 215.7v-6.3m-1.7 6.3v-6.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M203.6 215.7v-6.3m-1.6 6.3v-6.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M200.6 215.7v-6.3m-2.8 5.9v-5.7m1.3 5.8v-6m-3.8 5.6v-5.2m1.3 5.4v-5.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M192 214.8V210m1 4.7V210m1.2 5v-5m-3.4 4.7v-4.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M189.7 214.5v-4.2m-1.2 4.1v-4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.6' d='M186 214v-3m1.3 3.2v-3.5m-2.5 3.1V211'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.7' d='M183.7 213.6v-2.3m-1.3 2v-1.8m-1.2 1.6v-1.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.9' d='M179.8 212.8v-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M213.7 215.3v-5.8m-2.9 6v-6.1m-2.1 6.2v-6.3'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M206 207.4a108 108 0 0 0-30 3.9c.6-.3.5-1-.3-3-1-2.5-2.4-2.4-2.4-2.4 8.3-2.5 20-4 32.8-4a123 123 0 0 1 33 4s-1.5-.1-2.5 2.3c-.8 2-.8 2.8-.2 3-7.5-2.2-18.4-3.7-30.3-3.7'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M206.1 201.9c-12.9 0-24.5 1.5-32.8 4a1 1 0 0 1-1.3-.6 1 1 0 0 1 .7-1.3 121 121 0 0 1 33.4-4.2c13.2 0 25.2 1.7 33.5 4.2.6.2.9.8.7 1.3-.2.5-.8.8-1.3.6-8.4-2.5-20-4-32.9-4'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.4' d='M206.1 215.6c-10.6 0-20.2-1.2-27.5-3.1 7.3-2 16.9-3 27.5-3.1a115 115 0 0 1 27.6 3c-7.3 2-17 3.2-27.6 3.2z'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M197 204.8c0-.5.4-1 1-1 .5 0 1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='M206.1 205.6H203a1 1 0 0 1 0-2h6.4c.5 0 1 .5 1 1s-.5 1-1 1h-3.2'/%3e%3cpath fill='%23058e6e' stroke='%23000' stroke-width='.4' d='m190.3 206.5-2.3.2c-.6.1-1-.3-1.2-.8a1 1 0 0 1 1-1.1l2.2-.3 2.4-.3c.5 0 1 .3 1.1.9.1.5-.3 1-.9 1l-2.3.4'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M181 206.7c0-.6.5-1 1.1-1 .6 0 1 .4 1 1 0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='m174 208.5 1.2-1.6 3.3.4-2.6 2-1.8-.8'/%3e%3cpath fill='%23058e6e' stroke='%23000' stroke-width='.4' d='m222 206.5 2.3.2c.5.1 1-.3 1.1-.8a1 1 0 0 0-.9-1.1l-2.2-.3-2.4-.3a1 1 0 0 0-1.1.9c-.1.5.3 1 .9 1l2.3.4'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M213.3 204.8c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1m15.8 1.9c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1 0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='m238.2 208.5-1.1-1.6-3.3.4 2.6 2 1.8-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M177.3 212.8c7.4-2.1 17.6-3.4 28.8-3.4 11.3 0 21.4 1.3 28.9 3.4'/%3e%3cpath fill='%23c8b100' d='m182.3 183.8 1.4 1 2-3.2a7.4 7.4 0 0 1-3.6-7.2c.2-4.1 5.2-7.6 11.7-7.6 3.3 0 6.3 1 8.5 2.4 0-.6 0-1.2.2-1.8a17.4 17.4 0 0 0-8.7-2.1c-7.4 0-13.2 4.1-13.5 9.1a8.9 8.9 0 0 0 3 7.6l-1 1.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='m182.3 183.8 1.4 1 2-3.2a7.4 7.4 0 0 1-3.6-7.2c.2-4.1 5.2-7.6 11.7-7.6 3.3 0 6.3 1 8.5 2.4 0-.6 0-1.2.2-1.8a17.4 17.4 0 0 0-8.7-2.1c-7.4 0-13.2 4.1-13.5 9.1a8.9 8.9 0 0 0 3 7.6l-1 1.8'/%3e%3cpath fill='%23c8b100' d='M182.4 183.8a9.3 9.3 0 0 1-4-7.3c0-3.2 2-6.1 5.3-8a8.5 8.5 0 0 0-3.4 6.8 8.9 8.9 0 0 0 3 6.7l-.9 1.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M182.4 183.8a9.3 9.3 0 0 1-4-7.3c0-3.2 2-6.1 5.3-8a8.5 8.5 0 0 0-3.4 6.8 8.9 8.9 0 0 0 3 6.7l-.9 1.8'/%3e%3cpath fill='%23c8b100' d='M160.1 187.1a8.8 8.8 0 0 1-2.3-5.9c0-1.3.3-2.6 1-3.8 2-4.2 8.4-7.2 16-7.2 2 0 4 .2 5.9.6l-1 1.4a25.5 25.5 0 0 0-4.9-.4c-7 0-12.8 2.7-14.5 6.3a7 7 0 0 0-.7 3.1 7.3 7.3 0 0 0 2.7 5.6l-2.6 4.1-1.3-1 1.7-2.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M160.1 187.1a8.8 8.8 0 0 1-2.3-5.9c0-1.3.3-2.6 1-3.8 2-4.2 8.4-7.2 16-7.2 2 0 4 .2 5.9.6l-1 1.4a25.5 25.5 0 0 0-4.9-.4c-7 0-12.8 2.7-14.5 6.3a7 7 0 0 0-.7 3.1 7.3 7.3 0 0 0 2.7 5.6l-2.6 4.1-1.3-1 1.7-2.8z'/%3e%3cpath fill='%23c8b100' d='M162.7 173.3a10.5 10.5 0 0 0-4 4.1 8.6 8.6 0 0 0-.9 3.8c0 2.3.9 4.3 2.3 5.9l-1.5 2.5a10.4 10.4 0 0 1-2.3-6.5c0-4 2.5-7.5 6.4-9.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M162.7 173.3a10.5 10.5 0 0 0-4 4.1 8.6 8.6 0 0 0-.9 3.8c0 2.3.9 4.3 2.3 5.9l-1.5 2.5a10.4 10.4 0 0 1-2.3-6.5c0-4 2.5-7.5 6.4-9.8z'/%3e%3cpath fill='%23c8b100' d='M206 164.4c1.7 0 3.2 1.1 3.5 2.6.3 1.4.4 2.9.4 4.5v1.1c.1 3.3.6 6.3 1.3 8.1l-5.2 5-5.2-5c.7-1.8 1.2-4.8 1.3-8.1v-1.1c0-1.6.2-3.1.4-4.5.3-1.5 1.8-2.6 3.5-2.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M206 164.4c1.7 0 3.2 1.1 3.5 2.6.3 1.4.4 2.9.4 4.5v1.1c.1 3.3.6 6.3 1.3 8.1l-5.2 5-5.2-5c.7-1.8 1.2-4.8 1.3-8.1v-1.1c0-1.6.2-3.1.4-4.5.3-1.5 1.8-2.6 3.5-2.6z'/%3e%3cpath fill='%23c8b100' d='M206 166c1 0 1.7.6 1.8 1.4.2 1.2.4 2.6.4 4.2v1c.1 3.2.6 6 1.2 7.7l-3.4 3.2-3.4-3.2c.7-1.7 1.1-4.5 1.2-7.7v-1a28.1 28.1 0 0 1 .4-4.2 2 2 0 0 1 1.8-1.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M206 166c1 0 1.7.6 1.8 1.4.2 1.2.4 2.6.4 4.2v1c.1 3.2.6 6 1.2 7.7l-3.4 3.2-3.4-3.2c.7-1.7 1.1-4.5 1.2-7.7v-1a28.1 28.1 0 0 1 .4-4.2 2 2 0 0 1 1.8-1.4z'/%3e%3cpath fill='%23c8b100' d='m229.7 183.8-1.3 1-2-3.2a7.4 7.4 0 0 0 3.6-6.3 7 7 0 0 0 0-.9c-.2-4.1-5.3-7.6-11.7-7.6a15 15 0 0 0-8.5 2.4 23 23 0 0 0-.2-1.8 17.4 17.4 0 0 1 8.7-2.1c7.4 0 13.2 4.1 13.4 9.1a8.9 8.9 0 0 1-3 7.6l1 1.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='m229.7 183.8-1.3 1-2-3.2a7.4 7.4 0 0 0 3.6-6.3 7 7 0 0 0 0-.9c-.2-4.1-5.3-7.6-11.7-7.6a15 15 0 0 0-8.5 2.4 23 23 0 0 0-.2-1.8 17.4 17.4 0 0 1 8.7-2.1c7.4 0 13.2 4.1 13.4 9.1a8.9 8.9 0 0 1-3 7.6l1 1.8'/%3e%3cpath fill='%23c8b100' d='M229.6 183.8a9.1 9.1 0 0 0 4.1-7.3c0-3.2-2.1-6.1-5.3-8a8.5 8.5 0 0 1 3.4 6.8 8.9 8.9 0 0 1-3.2 6.7l1 1.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M229.6 183.8a9.1 9.1 0 0 0 4.1-7.3c0-3.2-2.1-6.1-5.3-8a8.5 8.5 0 0 1 3.4 6.8 8.9 8.9 0 0 1-3.2 6.7l1 1.8'/%3e%3cpath fill='%23c8b100' d='M252 187.1a8.8 8.8 0 0 0 2.2-5.9 8.7 8.7 0 0 0-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29 29 0 0 0-6 .6l1 1.4a25.4 25.4 0 0 1 5-.4c7 0 12.8 2.7 14.4 6.3.5 1 .7 2 .7 3.1a7.3 7.3 0 0 1-2.6 5.6l2.5 4.1 1.3-1-1.7-2.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M252 187.1a8.8 8.8 0 0 0 2.2-5.9 8.7 8.7 0 0 0-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29 29 0 0 0-6 .6l1 1.4a25.4 25.4 0 0 1 5-.4c7 0 12.8 2.7 14.4 6.3.5 1 .7 2 .7 3.1a7.3 7.3 0 0 1-2.6 5.6l2.5 4.1 1.3-1-1.7-2.8z'/%3e%3cpath fill='%23c8b100' d='M249.3 173.3a10.6 10.6 0 0 1 4 4.1 8.7 8.7 0 0 1 .9 3.8 8.8 8.8 0 0 1-2.3 5.9l1.6 2.5a10.4 10.4 0 0 0 2.3-6.5c0-4-2.6-7.5-6.5-9.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M249.3 173.3a10.6 10.6 0 0 1 4 4.1 8.7 8.7 0 0 1 .9 3.8 8.8 8.8 0 0 1-2.3 5.9l1.6 2.5a10.4 10.4 0 0 0 2.3-6.5c0-4-2.6-7.5-6.5-9.8z'/%3e%3cpath fill='%23fff' d='M204.2 181.4c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M204.2 181.4c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7z'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M204.2 178c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7m.4-3.7c0-.7.6-1.3 1.4-1.3.8 0 1.5.6 1.5 1.3 0 .8-.7 1.4-1.5 1.4s-1.4-.6-1.4-1.4m.4-3.3c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1m.2-2.8c0-.5.4-.8.8-.8.5 0 .9.3.9.8 0 .4-.4.8-.9.8a.8.8 0 0 1-.8-.8'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='m206.2 191.8 1.2.2a4.6 4.6 0 0 0 4.5 6 4.7 4.7 0 0 0 4.4-3c.1 0 .5-1.7.7-1.7.2 0 .1 1.8.2 1.7.3 2.3 2.4 3.8 4.7 3.8a4.6 4.6 0 0 0 4.7-5l1.5-1.5.7 2a4 4 0 0 0-.4 1.9 4.4 4.4 0 0 0 4.5 4.2c1.6 0 3-.7 3.8-1.9l.9-1.2v1.5c0 1.5.6 2.8 2 3 0 0 1.7.1 4-1.6 2.1-1.7 3.3-3.1 3.3-3.1l.2 1.7s-1.8 2.8-3.8 4c-1 .6-2.7 1.3-4 1-1.4-.2-2.4-1.3-3-2.6a6.7 6.7 0 0 1-3.3 1 6.5 6.5 0 0 1-6.1-3.7 7 7 0 0 1-10.4-.3 7 7 0 0 1-4.6 1.8 6.9 6.9 0 0 1-5.7-3 6.9 6.9 0 0 1-5.7 3 7 7 0 0 1-4.7-1.8 7 7 0 0 1-10.4.3 6.5 6.5 0 0 1-6 3.7 6.7 6.7 0 0 1-3.4-1c-.6 1.3-1.5 2.4-3 2.7-1.2.2-2.9-.5-4-1.1-2-1.2-3.8-4-3.8-4l.2-1.7s1.2 1.4 3.4 3.1c2.2 1.8 3.9 1.6 3.9 1.6 1.4-.2 2-1.5 2-3v-1.5l1 1.2a4.6 4.6 0 0 0 3.7 2c2.5 0 4.5-2 4.5-4.3a4 4 0 0 0-.4-2l.8-1.9 1.5 1.5a4.4 4.4 0 0 0 0 .6c0 2.4 2 4.4 4.6 4.4 2.4 0 4.4-1.5 4.7-3.8 0 0 0-1.6.2-1.7.2 0 .6 1.7.7 1.6a4.7 4.7 0 0 0 4.5 3.1 4.6 4.6 0 0 0 4.5-6l1.2-.2'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M238.6 197.7c.3-.8 0-1.6-.6-1.8-.5-.2-1.2.3-1.5 1.1-.3.8 0 1.6.6 1.8.5.2 1.2-.3 1.5-1.1m-20.5-4c0-.8-.3-1.6-1-1.6-.5-.1-1 .5-1.2 1.4-.1.8.3 1.5.9 1.6.6 0 1.2-.6 1.3-1.4m-23.9 0c0-.8.4-1.6 1-1.6.6-.1 1.1.5 1.2 1.4.1.8-.3 1.5-.9 1.6-.6 0-1.1-.6-1.2-1.4m-20.6 4c-.2-.8 0-1.6.6-1.8.6-.2 1.2.3 1.5 1.1.3.8 0 1.6-.5 1.8-.6.2-1.3-.3-1.6-1.1'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M182.7 184a5.1 5.1 0 0 1 2.2 2.9s0-.3.6-.6 1-.3 1-.3l-.1 1.3-.3 2.2a7.4 7.4 0 0 1-.7 1.6 1.9 1.9 0 0 0-1.5-.4 1.8 1.8 0 0 0-1.2.9s-.7-.6-1.2-1.3l-1.1-2-.7-1.1s.5-.2 1.1 0c.6 0 .8.2.8.2a4.9 4.9 0 0 1 1-3.4m.4 9.8a1.8 1.8 0 0 1-.6-1c0-.5 0-.9.3-1.2 0 0-.9-.5-1.8-.7-.7-.2-2-.2-2.3-.2h-1l.2.5c.2.5.5.7.5.7a5 5 0 0 0-3 2 5.3 5.3 0 0 0 3.5 1l-.2.8v.6l1-.4c.3-.1 1.5-.5 2-1 .8-.4 1.5-1.1 1.5-1.1m2.7-.5a1.6 1.6 0 0 0 .2-1.1 1.7 1.7 0 0 0-.6-1l1.4-1.3a10 10 0 0 1 2-.9l1.1-.4v.6a5.7 5.7 0 0 1-.2.8 5 5 0 0 1 3.4 1 5 5 0 0 1-2.9 2 6.4 6.4 0 0 0 .7 1.2h-1c-.4 0-1.6 0-2.3-.2a11 11 0 0 1-1.8-.7'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='M182.2 192.4c0-1 1-2 2-2s2.2 1 2.2 2c0 1.1-1 2-2.1 2a2 2 0 0 1-2.1-2'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M206.1 180.8a5.7 5.7 0 0 1 1.9 3.7s.2-.3.9-.5c.7-.3 1.2-.2 1.2-.2l-.5 1.4-.8 2.4a8.2 8.2 0 0 1-1 1.7 2.1 2.1 0 0 0-1.7-.7c-.6 0-1.2.3-1.6.7 0 0-.6-.7-1-1.7l-.8-2.4-.5-1.4 1.2.2c.7.2.9.5.9.5 0-1.4.8-2.8 1.8-3.7'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M204.6 191.8a2 2 0 0 1-.5-1.2c0-.5.1-1 .4-1.3 0 0-.8-.7-1.8-1-.7-.4-2-.7-2.5-.7l-1.2-.2.2.6.4.9a5.9 5.9 0 0 0-3.7 1.7c1 .9 2.3 1.6 3.7 1.6l-.4 1-.2.6 1.2-.2c.4-.1 1.8-.4 2.5-.7 1-.4 1.9-1 1.9-1m3 0a1.9 1.9 0 0 0 .1-2.6s.9-.7 1.8-1a8 8 0 0 1 2.5-.7l1.2-.3-.1.7-.4.9c1.4 0 2.7.8 3.6 1.7a5.9 5.9 0 0 1-3.6 1.6 6.9 6.9 0 0 0 .5 1.6l-1.2-.2-2.5-.7c-1-.4-1.8-1-1.8-1m22-8a5.2 5.2 0 0 0-2.2 3l-.7-.6c-.6-.3-1-.3-1-.3l.2 1.3c0 .3 0 1.3.3 2.2.2 1 .6 1.6.6 1.6a2 2 0 0 1 1.5-.4c.6.1 1 .5 1.3.9l1.1-1.3c.6-.8 1-1.7 1.1-2l.7-1.1s-.4-.2-1 0c-.7 0-1 .2-1 .2a4.9 4.9 0 0 0-1-3.4m-.3 9.8c.3-.3.5-.6.6-1a1.6 1.6 0 0 0-.2-1.2s.8-.5 1.7-.7c.7-.2 2-.2 2.3-.2h1.1l-.3.5a6.2 6.2 0 0 1-.4.7 5 5 0 0 1 2.9 2 5.3 5.3 0 0 1-3.5 1l.2.8v.6l-1-.4c-.3-.1-1.4-.5-2-1-.8-.4-1.4-1.1-1.4-1.1m-2.8-.5a1.7 1.7 0 0 1-.2-1.1c0-.5.3-.8.6-1 0 0-.6-.8-1.4-1.3-.6-.4-1.7-.8-2-.9a171.4 171.4 0 0 1-1-.4v.6c0 .5.2.8.2.8a5.2 5.2 0 0 0-3.5 1c.7.9 1.7 1.7 3 2 0 0-.3.2-.5.7l-.3.5h1c.4 0 1.7 0 2.3-.2a11.1 11.1 0 0 0 1.8-.7'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='M226 192.4c0-1 1-2 2-2s2.1 1 2.1 2a2 2 0 0 1-2 2 2 2 0 0 1-2.1-2m23.2 4.4c-.4-.5-1.4-.4-2.2.2-.8.7-1 1.6-.5 2.2.5.5 1.5.4 2.3-.3.7-.6 1-1.6.5-2'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='m246.3 198 .7-1c.7-.6 1.8-.7 2.3-.2l.1.2s1-2 2.3-2.6c1.3-.7 3.4-.5 3.4-.5a2.8 2.8 0 0 0-2.9-2.8 3 3 0 0 0-2.4 1l-.2-1s-1.3.3-1.9 1.8c-.6 1.5 0 3.6 0 3.6s-.3-.9-.7-1.5a8 8 0 0 0-2.4-1.6l-1.3-.7-.1.5a5 5 0 0 0 0 .8 7.9 7.9 0 0 0-3.7.5 4.7 4.7 0 0 0 2.5 2.2l-.8.7a4 4 0 0 0-.4.5l1.3.2 2.5.2a14.5 14.5 0 0 0 1.7-.2m-80.3 0c0-.4-.3-.7-.7-1-.7-.7-1.7-.8-2.2-.3l-.2.3s-1-2-2.3-2.7c-1.2-.7-3.3-.5-3.3-.5a2.8 2.8 0 0 1 2.8-2.8c1 0 1.9.4 2.4 1l.2-1s1.3.3 2 1.8c.5 1.5-.1 3.6-.1 3.6s.3-.9.8-1.5a8 8 0 0 1 2.4-1.6l1.3-.7v1.3a7.9 7.9 0 0 1 3.7.5 4.7 4.7 0 0 1-2.5 2.2l.8.7.4.5-1.2.2-2.6.2a14.7 14.7 0 0 1-1.7-.2'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.4' d='M163 196.8c.6-.5 1.6-.4 2.4.3.7.6 1 1.5.4 2-.5.6-1.5.5-2.2-.2-.8-.6-1-1.6-.5-2m41-6.3c0-1.1.9-2 2-2s2.1.9 2.1 2c0 1-1 2-2 2a2 2 0 0 1-2.1-2'/%3e%3cpath fill='%23005bbf' stroke='%23000' stroke-width='.3' d='M201.8 160.6c0-2.2 1.9-4 4.3-4s4.2 1.8 4.2 4-1.9 4-4.3 4a4.1 4.1 0 0 1-4.2-4'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.3' d='M205 149.3v2.2h-2.4v2.2h2.3v6.3H202l-.2.6c0 .6.1 1.1.3 1.6h7.9c.2-.5.3-1 .3-1.6l-.2-.6h-2.8v-6.3h2.3v-2.2h-2.3v-2.2h-2.4z'/%3e%3cpath fill='%23ccc' d='M206.5 330.6a82 82 0 0 1-35.5-8.2 22.7 22.7 0 0 1-12.8-20.4v-32h96.4v32a22.7 22.7 0 0 1-12.8 20.4 81 81 0 0 1-35.3 8.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M206.5 330.6a82 82 0 0 1-35.5-8.2 22.7 22.7 0 0 1-12.8-20.4v-32h96.4v32a22.7 22.7 0 0 1-12.8 20.4 81 81 0 0 1-35.3 8.2z'/%3e%3cpath fill='%23ccc' d='M206.3 270h48.3v-53.5h-48.3V270z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M206.3 270h48.3v-53.5h-48.3V270z'/%3e%3cpath fill='%23ad1519' d='M206.3 302c0 12.6-10.7 22.9-24 22.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.5' d='M168.6 320.9c1.5.8 3.6 2 5.8 2.6l-.1-54.7h-5.7v52z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-linejoin='round' stroke-width='.5' d='M158 301.6a24.4 24.4 0 0 0 5.5 15v-47.5h-5.4v32.5z'/%3e%3cpath fill='%23c7b500' stroke='%23000' stroke-width='.5' d='M179.4 324.7a26.6 26.6 0 0 0 5.6 0v-55.9h-5.6v56z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.5' d='M190 323.5a19 19 0 0 0 5.8-2.5v-52.2H190l-.1 54.7z'/%3e%3cpath fill='%23ad1519' d='M158.1 270h48.2v-53.5H158V270z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M158.1 270h48.2v-53.5H158V270z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.5' d='M201 316c2.4-2 4.6-6.8 5.4-12.2l.1-35H201l.1 47.3z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M206.3 302c0 12.6-10.7 22.9-24 22.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3e%3cpath fill='%23ad1519' d='M254.6 270v32c0 12.6-10.8 22.9-24.1 22.9s-24.2-10.3-24.2-23v-32h48.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.5' d='M254.6 270v32c0 12.6-10.8 22.9-24.1 22.9s-24.2-10.3-24.2-23v-32h48.3'/%3e%3cpath fill='%23c8b100' d='m215.1 294.1.1.5c0 .6-.5 1-1.1 1a1 1 0 0 1-1.1-1v-.5h-1.5a2.5 2.5 0 0 0 1.8 2.9v3.9h1.6V297a2.6 2.6 0 0 0 1.7-1.6h4.4v-1.2h-6m21.8 0v1.2h-4a2.5 2.5 0 0 1-.3.6l4.6 5.2-1.2 1-4.6-5.3-.2.1v8.7h-1.6V297h-.2l-4.8 5.2-1.2-1 4.7-5.3a2.1 2.1 0 0 1-.2-.4h-4V294h13zm2.6 0v1.2h4.4c.3.8.9 1.4 1.7 1.6v3.9h1.6V297a2.5 2.5 0 0 0 1.8-2.4 2 2 0 0 0 0-.5h-1.6l.1.5c0 .6-.5 1-1 1-.7 0-1.2-.4-1.2-1a1 1 0 0 1 .1-.5h-5.9m-6.7 22.1a15.6 15.6 0 0 0 3.7-1l.8 1.4a17.6 17.6 0 0 1-4.3 1.2 2.6 2.6 0 0 1-2.6 2 2.6 2.6 0 0 1-2.5-2 17.5 17.5 0 0 1-4.6-1.2l.8-1.4c1.3.5 2.6.9 4 1a2.5 2.5 0 0 1 1.5-1.3v-6.7h1.6v6.7c.7.2 1.3.7 1.6 1.4zm-11-2.2-.8 1.4a16.6 16.6 0 0 1-3.6-3.1c-.9.2-1.8 0-2.5-.5a2.4 2.4 0 0 1-.3-3.5l.1-.1a15.3 15.3 0 0 1-1.3-4.8h1.7a13.1 13.1 0 0 0 1 4c.5 0 1 0 1.4.2l4.1-4.5 1.3 1-4.1 4.5c.5.9.5 2-.1 2.8a15.2 15.2 0 0 0 3.1 2.6zm-6-4.8c.3-.4 1-.5 1.5 0s.5 1 .1 1.4a1.2 1.2 0 0 1-1.6.1 1 1 0 0 1 0-1.5zm-2.2-4.5-1.6-.3-.3-4.3 1.7-.6v2.5c0 1 0 1.8.2 2.7zm1.4-5.3 1.7.4v2.2c0-.8.3 2.1.3 2.1l-1.7.6a14 14 0 0 1-.3-2.7v-2.6zm5.6 13.7a15.7 15.7 0 0 0 4.8 2.6l.4-1.6a13.7 13.7 0 0 1-4-2l-1.2 1m-.8 1.4a17.4 17.4 0 0 0 4.8 2.6l-1.2 1.1a18.7 18.7 0 0 1-4-2l.4-1.7m2.2-9.4 1.6.7 3-3.3-1-1.4-3.6 4m-1.3-1-1-1.4 3-3.3 1.6.7-3.6 4m18.1 9.9.8 1.4a16.7 16.7 0 0 0 3.6-3.1c.9.2 1.8 0 2.5-.5a2.4 2.4 0 0 0 .3-3.5l-.1-.1a15 15 0 0 0 1.3-4.8h-1.7a13.3 13.3 0 0 1-1 4 3 3 0 0 0-1.4.2l-4.1-4.5-1.3 1 4.1 4.5a2.4 2.4 0 0 0 .1 2.8 15 15 0 0 1-3.1 2.6zm6-4.8a1.2 1.2 0 0 0-1.5 0 1 1 0 0 0-.1 1.4 1.2 1.2 0 0 0 1.6.1 1 1 0 0 0 0-1.5zm2.2-4.5 1.6-.3.3-4.3-1.7-.6v2.5c0 1 0 1.9-.2 2.8zm-1.4-5.3-1.7.4v2.2c0-.8-.3 2.1-.3 2.1l1.7.6.3-2.7v-2.6m-5.6 13.7a15.7 15.7 0 0 1-4.8 2.6l-.4-1.6a13.7 13.7 0 0 0 4-2l1.2 1m.8 1.4a17.4 17.4 0 0 1-4.8 2.6l1.2 1.1a18.6 18.6 0 0 0 4-2l-.4-1.7m-2.2-9.4-1.6.7-2.9-3.3 1-1.4 3.5 4m1.3-1 1-1.4-3-3.3-1.6.7 3.6 4m-20.1-8.7.5 1.6h4.5l.5-1.6h-5.5m21.1 0-.5 1.6h-4.5l-.5-1.6h5.5m-11.6 21.9c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm1.9-7.8 1.7-.4v-4.3l-1.7-.5v5.2m-1.6 0-1.7-.4v-4.3l1.7-.5v5.2'/%3e%3cpath fill='%23c8b100' d='M211.5 294.2c.2-1 1-1.6 1.8-2V287h1.6v5.3c.8.3 1.5.9 1.7 1.6h4.4v.3h-6a1.2 1.2 0 0 0-1-.6c-.4 0-.7.3-1 .6h-1.5m12.2 0v-.3h4.1a2.4 2.4 0 0 1 .2-.3l-5-5.7 1.2-1 5 5.6.2-.1V285h1.6v7.3h.3l4.9-5.5 1.2 1-4.9 5.5.3.6h4v.3h-13zm21.6 0a1.1 1.1 0 0 1 1-.6c.5 0 .8.3 1 .6h1.6c-.2-1-.9-1.6-1.8-2V287h-1.6v5.3c-.8.3-1.4.8-1.7 1.6h-4.4v.3h6m-30.2-15 6 6.8 1.3-1-6.1-6.7.3-.6h4.4V276h-4.4a2.6 2.6 0 0 0-2.5-1.7 2.6 2.6 0 0 0-2.7 2.5 2.5 2.5 0 0 0 1.8 2.4v5.2h1.6v-5.2h.3zm32 0v5.3h-1.7v-5.2a2.5 2.5 0 0 1-.4-.2l-6 6.8-1.3-1 6.2-6.9-.1-.3h-4.5V276h4.5a2.6 2.6 0 0 1 2.4-1.7 2.6 2.6 0 0 1 2.7 2.5 2.5 2.5 0 0 1-1.9 2.4zm-16.1 0v3.3h-1.7v-3.2a2.6 2.6 0 0 1-1.7-1.6h-4V276h4a2.6 2.6 0 0 1 2.5-1.7c1.2 0 2.2.7 2.5 1.7h4v1.6h-4a2.5 2.5 0 0 1-1.6 1.6zm-17.8 4-1.7.4v4.3l1.7.5v-5.2m1.6 0 1.7.4v4.3l-1.7.5v-5.2m30.6 0-1.7.4v4.3l1.7.5v-5.2m1.6 0 1.7.4v4.3l-1.7.5v-5.2m-25.5.8 1.6-.7 2.9 3.3-1 1.4-3.5-4m-1.3 1-1 1.4 3 3.3 1.6-.7-3.6-4m18.5-1.1-1.6-.7-3 3.3 1 1.4 3.6-4m1.2 1 1 1.4-3 3.3-1.5-.7 3.5-4m-20.3 9 .5-1.6h4.5l.5 1.6h-5.5m-6.7-17c0-.6.5-1 1.2-1a1 1 0 0 1 1 1c0 .6-.4 1-1 1a1.1 1.1 0 0 1-1.2-1zm12.1.8-.5 1.6h-4.5l-.5-1.6h5.5m0-1.6-.5-1.6h-4.5l-.5 1.6h5.5m15.7 17.8-.5-1.6h-4.5l-.5 1.6h5.5m4.4-17c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm-16.1 0c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1.1 1a1.1 1.1 0 0 1-1.1-1zm6.2.8.5 1.6h4.6l.5-1.6h-5.6m0-1.6.5-1.6h4.6l.5 1.6h-5.6m-5.9 5-1.7.5v4.3l1.7.5V281m1.7 0 1.6.5v4.3l-1.6.5V281'/%3e%3cpath fill='none' stroke='%23c8b100' stroke-width='.3' d='M232.7 316.3a15.6 15.6 0 0 0 3.7-1.1l.8 1.4a17.6 17.6 0 0 1-4.3 1.2 2.6 2.6 0 0 1-2.6 2 2.6 2.6 0 0 1-2.5-2 17.5 17.5 0 0 1-4.6-1.2l.8-1.4c1.3.5 2.6.9 4 1a2.5 2.5 0 0 1 1.5-1.3v-6.7h1.6v6.7c.7.2 1.3.7 1.6 1.4zm-4.7-20.4a2.3 2.3 0 0 1-.2-.5h-4V294h4a2.6 2.6 0 0 1 .2-.4l-5-5.6 1.2-1 5 5.5a2.2 2.2 0 0 1 .2 0V285h1.7v7.3h.2l4.9-5.5 1.2 1-4.9 5.5.3.6h4v1.5h-4c0 .2-.2.4-.3.5l4.7 5.3-1.3 1-4.6-5.3-.2.1v8.7h-1.6V297l-.2-.1-4.8 5.3-1.2-1 4.7-5.3m-12.8-16.7 6 6.8 1.3-1-6.1-6.7.3-.6h4.4V276h-4.4a2.6 2.6 0 0 0-2.5-1.7 2.6 2.6 0 0 0-2.6 2.5 2.5 2.5 0 0 0 1.7 2.4v5.2h1.6v-5.2h.3zm6.5 34.8-.8 1.4a16.6 16.6 0 0 1-3.6-3.1c-.9.2-1.8 0-2.5-.5a2.4 2.4 0 0 1-.3-3.5l.1-.1a15.3 15.3 0 0 1-1.2-4.8h1.6a13.1 13.1 0 0 0 1 4c.5 0 1 0 1.4.2l4.1-4.5 1.3 1-4.1 4.5c.6.9.5 2-.1 2.8a15.2 15.2 0 0 0 3.1 2.6zm-8.4-13.1V297a2.5 2.5 0 0 1-1.8-2.4c0-1 .8-2 1.8-2.4V287h1.6v5.3c.8.2 1.5.8 1.7 1.6h4.4v1.5h-4.4a2.6 2.6 0 0 1-1.6 1.6v3.9h-1.7m2.3 8.3c.4-.4 1.1-.5 1.6 0s.5 1 .1 1.4a1.2 1.2 0 0 1-1.6.1 1 1 0 0 1 0-1.5zm-2-4.5-1.7-.3-.3-4.3 1.7-.6v2.5c0 1 0 1.8.3 2.7zm1.4-5.3 1.6.4v2.2c0-.8.3 2.1.3 2.1l-1.7.6-.3-2.7v-2.6zm5.5 13.7a15.7 15.7 0 0 0 4.8 2.6l.4-1.6a13.7 13.7 0 0 1-4-2l-1.2 1m-.8 1.4a17.4 17.4 0 0 0 4.8 2.6l-1.2 1.1a18.7 18.7 0 0 1-4-2l.4-1.7'/%3e%3cpath fill='none' stroke='%23c8b100' stroke-width='.3' d='m221.9 305.1 1.6.7 3-3.3-1-1.4-3.6 4m-1.3-1-1-1.4 3-3.3 1.6.7-3.6 4m-7.6-9.5c0-.6.5-1 1-1 .7 0 1.2.5 1.2 1 0 .6-.5 1.1-1.1 1.1a1 1 0 0 1-1.1-1zm25.7 19.4.8 1.4a16.7 16.7 0 0 0 3.6-3.1c.9.2 1.8 0 2.6-.5a2.4 2.4 0 0 0 .2-3.5l-.1-.1a15 15 0 0 0 1.3-4.8h-1.7a13.3 13.3 0 0 1-1 4 3 3 0 0 0-1.4.2l-4.1-4.5-1.3 1 4.1 4.5a2.4 2.4 0 0 0 .1 2.8 15 15 0 0 1-3 2.6zm8.4-13.1V297a2.5 2.5 0 0 0 1.8-2.4c0-1-.7-2-1.8-2.4V287h-1.6v5.3c-.8.2-1.4.8-1.7 1.6h-4.4v1.5h4.4c.3.8.9 1.3 1.7 1.6v3.9h1.6zm-2.3 8.3a1.2 1.2 0 0 0-1.6 0 1 1 0 0 0-.1 1.4 1.2 1.2 0 0 0 1.6.1 1 1 0 0 0 0-1.5zm2-4.5 1.7-.3.3-4.3-1.7-.6v2.5c0 1 0 1.8-.2 2.7zm-1.3-5.3-1.7.4v2.2c0-.8-.3 2.1-.3 2.1l1.7.6.3-2.7v-2.6m1.6-20.1v5.2h-1.6v-5.2a2.3 2.3 0 0 1-.4-.2l-6 6.8-1.2-1 6-7v-.2h-4.5V276h4.4a2.6 2.6 0 0 1 2.5-1.7 2.6 2.6 0 0 1 2.6 2.5 2.5 2.5 0 0 1-1.8 2.4zm-16 0v3.2h-1.7v-3.2a2.6 2.6 0 0 1-1.7-1.6h-4V276h4c.4-1 1.3-1.7 2.5-1.7s2.2.7 2.5 1.7h4v1.6h-4a2.5 2.5 0 0 1-1.6 1.6zm8.8 33.8a15.7 15.7 0 0 1-4.8 2.6l-.4-1.6a13.7 13.7 0 0 0 4-2l1.2 1m.8 1.4a17.4 17.4 0 0 1-4.8 2.6l1.2 1.1a18.7 18.7 0 0 0 4-2l-.4-1.7m-27.4-31.4-1.7.5v4.3l1.7.5v-5.2m1.7 0 1.6.4v4.3l-1.6.5V283m30.5 0-1.7.5v4.3l1.7.5V283'/%3e%3cpath fill='none' stroke='%23c8b100' stroke-width='.3' d='m247.1 283.1 1.7.5v4.3l-1.7.5V283m-8.6 22-1.6.7-2.9-3.3 1-1.4 3.5 4m1.3-1 1-1.4-3-3.3-1.6.7 3.6 4m-18.2-20 1.6-.7 3 3.3-1 1.4-3.6-4m-1.3 1-1 1.4 3 3.3 1.6-.7-3.6-4m18.5-1.1-1.6-.7-3 3.3 1 1.4 3.6-4m1.2 1 1 1.4-3 3.2-1.5-.6 3.5-4m-20.3 9 .5-1.6h4.5l.5 1.6h-5.5m0 1.5.5 1.6h4.5l.5-1.6h-5.5M213 277c0-.6.5-1 1.2-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1.2-1zm12.1.8-.5 1.6h-4.5l-.5-1.6h5.5m0-1.6-.5-1.6h-4.5l-.5 1.6h5.5m20.1 18.5c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1.1-1 1.1a1 1 0 0 1-1.2-1zm-4.4-.7-.5-1.6h-4.5l-.5 1.6h5.5m0 1.5-.5 1.6h-4.5l-.5-1.6h5.5m-11.6 21.9c0-.6.5-1 1.1-1 .6 0 1.1.4 1.1 1s-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm1.9-7.8 1.7-.4v-4.3l-1.7-.5v5.2m-1.6 0-1.7-.4v-4.3l1.7-.5v5.2m15.7-32.6c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm-16.1 0c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm6.2.8.5 1.6h4.6l.5-1.6h-5.5m0-1.6.4-1.6h4.6l.5 1.6h-5.5m-6 5-1.6.5v4.3l1.6.5V281m1.7 0 1.6.5v4.3l-1.6.5V281'/%3e%3cpath fill='%23058e6e' d='M227.7 294.7a2.6 2.6 0 0 1 2.6-2.5 2.6 2.6 0 0 1 2.6 2.5 2.6 2.6 0 0 1-2.6 2.4c-1.4 0-2.6-1-2.6-2.4'/%3e%3cpath fill='%23db4446' d='M230.9 229.7v-.6l.1-.3-2.3-.1a5.9 5.9 0 0 1-2.3-1.2c-.8-.7-1.1-1-1.6-1.2-1.3-.2-2.3.4-2.3.4s1 .4 1.7 1.3 1.5 1.3 1.8 1.4c.6.2 2.6 0 3.1.1l1.8.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M230.9 229.7v-.6l.1-.3-2.3-.1a5.9 5.9 0 0 1-2.3-1.2c-.8-.7-1.1-1-1.6-1.2-1.3-.2-2.3.4-2.3.4s1 .4 1.7 1.3 1.5 1.3 1.8 1.4c.6.2 2.6 0 3.1.1l1.8.2z'/%3e%3cpath fill='%23ed72aa' stroke='%23000' stroke-width='.4' d='M238.1 227.5v1.4c.2.6-.1 1.2 0 1.5 0 .4.1.6.3.9l.2.9-.7-.5-.6-.4v1c.1.2.3.8.6 1.1l1 1.3c.2.5.1 1.4.1 1.4s-.4-.7-.8-.8l-1.2-.7s.7.8.7 1.5c0 .8-.3 1.6-.3 1.6s-.3-.7-.8-1.1l-1-.9s.4 1.2.4 2v2.3l-.9-1-1-.7c0-.2.5.6.6 1.1 0 .5.3 2.3 1.8 4.5 1 1.3 2.3 3.6 5.3 2.9 3-.8 1.9-4.8 1.3-6.7a16.8 16.8 0 0 1-1-4.6c0-.8.6-2.9.5-3.3a8 8 0 0 1 .2-3.1c.4-1.3.7-1.8.9-2.3.2-.6.4-.9.4-1.3l.1-1.3.7 1.3.1 1.5s.1-1 1-1.6c.8-.6 1.8-1.1 2-1.4.3-.3.3-.5.3-.5s0 1.8-.6 2.6l-1.7 2s.7-.3 1.2-.3h.9s-.6.4-1.4 1.6c-.8 1-.5 1.2-1 2.1-.6 1-1 1-1.7 1.5-1 .8-.5 4.2-.4 4.7.2.5 2 4.5 2 5.5s.2 3.2-1.5 4.6c-1.1 1-3 1-3.4 1.2-.4.3-1.2 1.1-1.2 2.8 0 1.7.6 2 1 2.4.6.5 1.2.2 1.3.6.2.3.2.5.5.7.2.2.3.4.2.8 0 .3-.8 1.1-1.1 1.7l-.8 2.4c0 .2-.1 1 .1 1.3 0 0 .9 1 .3 1.2-.4.2-.8-.2-1-.2l-.9.5c-.3-.1-.3-.3-.4-.8l-.1-.7c-.2 0-.3.2-.4.5 0 .2 0 .8-.3.8-.2 0-.5-.4-.8-.5-.2 0-.8-.2-.8-.4 0-.3.4-.9.7-1 .4 0 .8-.3.5-.5s-.5-.2-.7 0-.8 0-.7-.2v-.8c0-.2-.4-.5.1-.8.6-.3.8.2 1.4.1.6 0 .8-.3 1-.6.2-.3.2-1-.2-1.4-.4-.5-.7-.5-.9-.8l-.3-.9v2.2l-.7-.8c-.3-.3-.6-1.3-.6-1.3v1.3c0 .4.3.7.2.8-.1.1-.8-.7-1-.8a3.7 3.7 0 0 1-1-1l-.4-1.4a4.2 4.2 0 0 1 0-1.5l.4-1h-1.4c-.7 0-1.2-.3-1.5.2-.3.5-.2 1.5.2 2.8.3 1.2.5 1.9.4 2.1a3 3 0 0 1-.7.8h-.9a2.5 2.5 0 0 0-1.2-.3h-1.3l-1.1-.3c-.3.1-.8.3-.6.7.2.6-.2.7-.5.7l-.9-.2c-.4-.1-.9 0-.8-.4 0-.4.2-.4.4-.7.2-.3.2-.5 0-.5h-.6c-.2.2-.5.5-.8.4-.2-.1-.4-.4-.4-1s-.7-1.2 0-1.1c.5 0 1.3.4 1.4 0 .2-.3 0-.4-.2-.7s-.8-.4-.3-.7l.7-.5c.1-.2.4-.8.7-.6.6.2 0 .7.6 1.3.6.7 1 1 2 .8 1 0 1.3-.2 1.3-.5l-.1-1v-1s-.4.3-.5.6l-.4.8v-2a8 8 0 0 0-.2-.8l-.3.9-.1 1s-.7-.5-.5-1.5c.1-.7-.1-1.6.1-2 .2-.3.7-1.5 2-1.6h2.6l2-.3s-2.8-1.4-3.5-1.9a9.5 9.5 0 0 1-2-2l-.6-1.6s-.5 0-1 .3a5 5 0 0 0-1.2 1l-.7 1 .1-1.2v-.8s-.4 1.2-1 1.7l-1.4 1v-.8l.2-1s-.4.8-1.1 1c-.7 0-1.8 0-1.9.4 0 .5.2 1 0 1.4 0 .3-.4.5-.4.5l-.8-.4c-.4 0-.7.2-.7.2s-.3-.4-.2-.7c.1-.2.7-.6.5-.8l-.8.2c-.3.1-.8.3-.8-.2 0-.4.2-.7 0-1 0-.3 0-.5.2-.6l1.2-.1c0-.2-.2-.5-.8-.6-.6-.1-.8-.5-.5-.8.3-.2.3-.3.5-.6.1-.2.2-.7.7-.5.5.3.4.8 1 1a4 4 0 0 0 2-.2l1.5-1 1.5-1-1-.8c-.3-.3-.7-.9-1-1a8.3 8.3 0 0 0-1.8-.6 9 9 0 0 1-1.7-.5l.8-.3c.2-.2.6-.6.8-.6h.3-1.4c-.3-.1-1-.6-1.3-.6l-.8.1s.8-.4 1.4-.5l1-.1s-.9-.3-1.1-.6l-.6-1c-.2-.1-.3-.5-.6-.5l-1 .3c-.4 0-.6-.2-.6-.6l-.1-.5c-.2-.3-.6-.8-.2-1h1.4c0-.2-.5-.6-.8-.8-.4-.2-1-.5-.7-.8l.8-.5c.2-.3.3-1 .7-.7.4.2.8 1.2 1.1 1.1.3 0 .3-.8.3-1 0-.4 0-1 .2-.9.3 0 .5.4 1 .5.4 0 1-.1 1 .2 0 .3-.3.7-.6 1-.3.3-.4 1-.3 1.4.2.5.7 1.2 1.2 1.4.4.3 1.2.5 1.7.9.5.3 1.7 1.2 2.1 1.3l.8.4s.5-.2 1.1-.2c.7 0 2.1 0 2.6-.2.6-.2 1.3-.6 1-1-.1-.6-1.3-1-1.2-1.4 0-.4.5-.4 1.2-.4.8 0 1.8.1 2-1 .2-1 .2-1.5-.8-1.8-1-.2-1.8-.2-2-1-.2-.7-.4-.9-.2-1.1.3-.2.6-.3 1.4-.4.8 0 1.6 0 1.9-.2.2-.2.3-.7.6-.9.3-.2 1.4-.4 1.4-.4s1.4.7 2.7 1.7a15 15 0 0 1 2.2 2.1'/%3e%3cpath d='m228.1 226.8-.2-.6v-.3s.8 0 .7.3c0 .2-.2.2-.3.3l-.2.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m228.1 226.8-.2-.6v-.3s.8 0 .7.3c0 .2-.2.2-.3.3l-.2.3z'/%3e%3cpath d='M232 225.4v-.4s.7 0 1 .3c.5.4.9 1 .9 1l-.8-.4h-.5l-.3-.1v-.3h-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M232 225.4v-.4s.7 0 1 .3c.5.4.9 1 .9 1l-.8-.4h-.5l-.3-.1v-.3h-.3z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m237.3 231.3-.4-.7a8 8 0 0 1-.3-.4'/%3e%3cpath fill='%23db4446' d='M217.4 226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1 1a2 2 0 0 1-.6.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M217.4 226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1 1a2 2 0 0 1-.6.8z'/%3e%3cpath fill='%23db4446' d='M215.2 227.6s-.4-.7-1.3-.6c-.8 0-1.4.8-1.4.8h1.2c.3.3.4 1 .4 1l.7-.6a7.2 7.2 0 0 0 .4-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M215.2 227.6s-.4-.7-1.3-.6c-.8 0-1.4.8-1.4.8h1.2c.3.3.4 1 .4 1l.7-.6a7.2 7.2 0 0 0 .4-.6z'/%3e%3cpath fill='%23db4446' d='M214.2 230.6s-.8.1-1.2.6c-.4.5-.3 1.3-.3 1.3s.4-.5.9-.5l1 .2-.1-.8-.3-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M214.2 230.6s-.8.1-1.2.6c-.4.5-.3 1.3-.3 1.3s.4-.5.9-.5l1 .2-.1-.8-.3-.8z'/%3e%3cpath d='m228.2 230.5.3-.5.3.5h-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m228.2 230.5.3-.5.3.5h-.7'/%3e%3cpath d='m229 230.5.3-.5.4.5h-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m229 230.5.3-.5.4.5h-.8'/%3e%3cpath d='m228.6 227.3.8.3-.7.4-.1-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m228.6 227.3.8.3-.7.4-.1-.6'/%3e%3cpath d='m229.5 227.6.7.2-.5.4-.2-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m229.5 227.6.7.2-.5.4-.2-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M224.2 233.7s-.7.2-1 .6c-.4.5-.3 1-.3 1s.6-.5 1.5-.3l1.2.3 1.3-.3s-.7.8-.7 1.3l.2 1.1c0 .7-.6 1.6-.6 1.6l1-.3a4.6 4.6 0 0 0 1.7-.8l.9-1s-.2 1 0 1.4l.2 1.6.8-.6c.2-.1.7-.4.9-.7l.3-1s0 .8.4 1.3l.6 1.6s.3-.8.6-1.1c.3-.4.7-.8.7-1a4.3 4.3 0 0 0-.1-.9l.4.8m-11 .6s.5-.8 1-1l1.1-.8.9-.4m1 5 1.3-.8a4 4 0 0 0 1-1'/%3e%3cpath fill='%23db4446' d='M216.6 240.4s-.4-.5-1.1-.3c-.7 0-1.2.9-1.2.9s.6-.2 1-.1.6.4.6.4l.4-.4.3-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M216.6 240.4s-.4-.5-1.1-.3c-.7 0-1.2.9-1.2.9s.6-.2 1-.1.6.4.6.4l.4-.4.3-.6z'/%3e%3cpath fill='%23db4446' d='M215.8 243.2s-.6 0-1.1.3c-.5.4-.5 1.2-.5 1.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M215.8 243.2s-.6 0-1.1.3c-.5.4-.5 1.2-.5 1.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8z'/%3e%3cpath fill='%23db4446' d='M217.2 245.8s0 .8.3 1.3c.4.5 1.1.5 1.1.5l-.3-.7c0-.4.3-.8.3-.8s-.3-.3-.7-.3h-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M217.2 245.8s0 .8.3 1.3c.4.5 1.1.5 1.1.5l-.3-.7c0-.4.3-.8.3-.8s-.3-.3-.7-.3h-.7zm16 1.3s2 1.2 1.9 2.2c0 1-1 2.3-1 2.3'/%3e%3cpath fill='%23db4446' d='M224.2 252.6s-.4-.6-1.1-.6c-.7 0-1.4.7-1.4.7s.8-.1 1 .2l.5.6.5-.3.5-.6'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M224.2 252.6s-.4-.6-1.1-.6c-.7 0-1.4.7-1.4.7s.8-.1 1 .2l.5.6.5-.3.5-.6z'/%3e%3cpath fill='%23db4446' d='M222.2 255.3s-1-.1-1.4.3c-.4.5-.4 1.3-.4 1.3s.6-.6 1-.5c.5 0 1 .3 1 .3v-.7l-.3-.7'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M222.2 255.3s-1-.1-1.4.3c-.4.5-.4 1.3-.4 1.3s.6-.6 1-.5c.5 0 1 .3 1 .3v-.7l-.3-.7z'/%3e%3cpath fill='%23db4446' d='M224 258.1s-.3.7 0 1.1c.3.5 1 .8 1 .8s-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M224 258.1s-.3.7 0 1.1c.3.5 1 .8 1 .8s-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2z'/%3e%3cpath fill='%23db4446' d='M236 259.3s-.8-.2-1.2 0c-.5.3-.8 1.4-.8 1.4s.7-.6 1.2-.5c.5 0 1 .3 1 .3v-.8l-.2-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M236 259.3s-.8-.2-1.2 0c-.5.3-.8 1.4-.8 1.4s.7-.6 1.2-.5c.5 0 1 .3 1 .3v-.8l-.2-.4z'/%3e%3cpath fill='%23db4446' d='M236.4 262.2s-.6.6-.4 1.1l.6 1s0-.7.2-1l1-.3-.7-.5a15.8 15.8 0 0 1-.7-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M236.4 262.2s-.6.6-.4 1.1l.6 1s0-.7.2-1l1-.3-.7-.5a15.8 15.8 0 0 1-.7-.3z'/%3e%3cpath fill='%23db4446' d='M239.4 263s-.3.8.2 1.3c.6.5 1 .5 1 .5s-.3-.7-.2-1.1c.1-.5.5-.7.5-.7l-.8-.2-.7.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M239.4 263s-.3.8.2 1.3c.6.5 1 .5 1 .5s-.3-.7-.2-1.1c.1-.5.5-.7.5-.7l-.8-.2-.7.3z'/%3e%3cpath fill='%23ffd691' stroke='%23000' stroke-width='.5' d='M208.8 316.4c2 .6 3 2 3 3.8 0 2.3-2.2 4-5 4-3 0-5.3-1.7-5.3-4 0-1.7 1-3.6 3-3.8l-.2-.4-.7-.7h1.2l.8.5.5-.7c.3-.4.6-.5.6-.5l.6.6.3.5.7-.4.8-.3s0 .4-.2.7l-.1.7'/%3e%3cpath fill='%23058e6e' stroke='%23000' stroke-width='.5' d='M206.3 326.7s-3.8-2.6-5.5-3c-2-.4-4.5 0-5.5 0 0 0 1.2.8 1.8 1.4.5.5 2.3 1.5 3.3 1.8 3 .8 6-.2 6-.2m1 .2s2.4-2.5 5-2.9c3-.4 5 .3 6.2.6l-1.5.8c-.5.3-2 1.5-4 1.6-2 0-4.4-.3-4.8-.2l-.9.1'/%3e%3cpath fill='%23ad1519' stroke='%23000' stroke-width='.5' d='M206.7 323.8a4.8 4.8 0 0 1 0-7.1 4.8 4.8 0 0 1 1.5 3.5 4.9 4.9 0 0 1-1.5 3.6'/%3e%3cpath fill='%23058e6e' stroke='%23000' stroke-width='.5' d='M205.7 329s.6-1.5.6-2.7l-.1-2.1h.8s.3 1.1.3 2l-.1 2.4-.7.1-.8.3'/%3e%3cpath fill='%23fff' d='M254 190.7c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M254 190.7c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M255.4 188.2c0-.6.5-1 1.1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M255.4 188.2c0-.6.5-1 1.1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M256.4 185.2c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M256.4 185.2c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3e%3cpath fill='%23fff' d='M256.5 182c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M256.5 182c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M255.7 179c0-.6.5-1 1-1 .7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M255.7 179c0-.6.5-1 1-1 .7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M254.1 176.1c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M254.1 176.1c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M252 173.8c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M252 173.8c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M249.4 171.8c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M249.4 171.8c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1z'/%3e%3cpath fill='%23fff' d='M246.5 170.3c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M246.5 170.3c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M243.3 169.1c0-.5.5-1 1.1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M243.3 169.1c0-.5.5-1 1.1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M239.9 168.5c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M239.9 168.5c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M236.6 168.3c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M236.6 168.3c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M233.3 168.5c0-.6.5-1 1-1 .7 0 1.1.4 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M233.3 168.5c0-.6.5-1 1-1 .7 0 1.1.4 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M230.1 168.5c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M230.1 168.5c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M231.7 171.2c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m.6 3.1c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1m0 3c0-.5.6-1 1.1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1m-1 2.8c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1 0 .6-.4 1-1 1a1 1 0 0 1-1-1m-1.9 2.6c0-.5.5-1 1-1 .7 0 1.2.5 1.2 1s-.5 1-1.1 1c-.6 0-1-.4-1-1'/%3e%3cpath fill='%23fff' d='M227.6 166.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M227.6 166.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M224.8 165c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M224.8 165c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M221.6 164c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1 0 .5-.5 1-1 1-.6 0-1.1-.5-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M221.6 164c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1 0 .5-.5 1-1 1-.6 0-1.1-.5-1.1-1z'/%3e%3cpath fill='%23fff' d='M218.3 163.4c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M218.3 163.4c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3e%3cpath fill='%23fff' d='M215 163.5c0-.6.5-1 1.1-1 .6 0 1 .4 1 1 0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M215 163.5c0-.6.5-1 1.1-1 .6 0 1 .4 1 1 0 .5-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M211.7 164c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M211.7 164c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M208.6 165.1c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M208.6 165.1c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3e%3cpath fill='%23fff' d='M156 190.7c0-.5.4-1 1-1s1 .5 1 1c0 .6-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M156 190.7c0-.5.4-1 1-1s1 .5 1 1c0 .6-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M154.5 188.2c0-.6.5-1 1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M154.5 188.2c0-.6.5-1 1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M153.5 185.2c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M153.5 185.2c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M153.4 182c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M153.4 182c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M154.2 179c0-.6.5-1 1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M154.2 179c0-.6.5-1 1-1 .6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M155.8 176.1c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M155.8 176.1c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M158 173.8c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M158 173.8c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M160.5 171.8c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M160.5 171.8c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M163.5 170.3c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M163.5 170.3c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M166.6 169.1c0-.5.5-1 1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M166.6 169.1c0-.5.5-1 1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M170 168.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M170 168.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1z'/%3e%3cpath fill='%23fff' d='M173.4 168.3c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M173.4 168.3c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M176.6 168.5c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M176.6 168.5c0-.6.5-1 1-1 .6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3e%3cpath fill='%23fff' d='M179.8 168.5c0-.6.5-1 1-1 .7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M179.8 168.5c0-.6.5-1 1-1 .7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.4' d='M178.2 171.2c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m-.7 3.1c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1m-.2 3c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m.9 2.8c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1 0 .6-.5 1-1 1a1 1 0 0 1-1.1-1m1.8 2.6c0-.5.5-1 1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1'/%3e%3cpath fill='%23fff' d='M182.3 166.5c0-.5.5-1 1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M182.3 166.5c0-.5.5-1 1-1a1 1 0 0 1 0 2 1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M185.2 165c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M185.2 165c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M188.3 164c0-.6.5-1 1-1 .7 0 1.1.4 1.1 1 0 .5-.4 1-1 1s-1-.5-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M188.3 164c0-.6.5-1 1-1 .7 0 1.1.4 1.1 1 0 .5-.4 1-1 1s-1-.5-1-1z'/%3e%3cpath fill='%23fff' d='M191.6 163.4c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M191.6 163.4c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M194.9 163.5c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M194.9 163.5c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M198.2 164c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M198.2 164c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23fff' d='M201.3 165.1c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.4' d='M201.3 165.1c0-.5.5-1 1-1 .7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M174.7 228.9h-1v-1h-1.5v3.6h1.6v2.5h-3.4v7h1.8v14.3h-3.5v7.3h27.2v-7.3h-3.5V241h1.8v-7h-3.4v-2.5h1.6V228h-1.6v.9h-.8v-1h-1.6v1h-1.1v-1h-1.6v3.6h1.6v2.5H184v-7.8h1.7v-3.5H184v.9h-1v-1h-1.5v1h-.9v-1H179v3.6h1.7v7.8h-3.3v-2.5h1.6V228h-1.6v.9h-.9v-1h-1.8v1zm-6 33.7H196m-27.3-1.8H196m-27.3-1.8H196m-27.3-1.7H196m-27.3-2H196m-23.8-1.6h20.2m-20.2-1.8h20.2m-20.2-2h20.2m-20.2-1.7h20.2m-20.2-1.8h20.2m-20.2-1.8h20.2m-20.2-1.7h20.2m-22-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-20.4-1.7h17m-10.2-1.8h3.4m-3.4-1.8h3.4m-3.4-1.8h3.4m-3.4-1.7h3.4m-5.1-2.2h6.8m-12 7.5h3.6m-5-2.2h6.6m-6.7 32.6v-1.8m0-1.8v-1.7m-1.8 1.7v1.8m3.4 0V259m1.7 3.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m-1.7 7.4v-2m-3.4 2v-2m7 0v2m1.5-2v-1.6m-5.1-1.8v1.8m3.5-1.8v1.8m3.3-1.8v1.8M179 252v-2m1.7-1.7v1.7m0-5.3v1.8m-1.7-3.6v1.8m1.7-3.5v1.7m-3.3-1.7v1.7m-3.5-1.7v1.7m-1.6-3.5v1.8m3.3-1.8v1.8m3.4-1.8v1.8m1.7-3.6v1.8m-3.3-1.8v1.8m-3.5-1.8v1.8m-1.6-3.6v1.8m6.7-1.8v1.8m-3.4-5.3v1.8m15.3-1.8h-3.5m5-2.2h-6.6m6.7 32.6v-1.8m0-1.8v-1.7m1.8 1.7v1.8m-3.4 0V259m-1.7 3.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m1.7 7.4v-2m3.4 2v-2m-7 0v2m-1.5-2v-1.6m5.1-1.8v1.8m-3.5-1.8v1.8m-3.3-1.8v1.8m1.7-1.8v-2m-1.7-1.7v1.7m0-5.3v1.8m1.7-3.6v1.8m-1.7-3.5v1.7m3.3-1.7v1.7m3.5-1.7v1.7m1.6-3.5v1.8m-3.3-1.8v1.8m-3.4-1.8v1.8m-1.7-3.6v1.8m3.3-1.8v1.8m3.5-1.8v1.8m1.6-3.6v1.8m-6.7-1.8v1.8m3.4-5.3v1.8m-7 18v-2m0-5.4v-1.8m0 5.4v-1.8m0-5.3v-1.8m0-1.8v-1.7m0-3.6v-1.8m0-1.7v-1.8m-8.3 4.6h3.5m3.3-5.3h3.4m3.3 5.3h3.5'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='M186.8 262.6v-4.7c0-.8-.4-3.5-4.6-3.5-4 0-4.4 2.7-4.4 3.5v4.7h9z'/%3e%3cpath fill='%23c8b100' stroke='%23000' stroke-width='.4' d='m179.3 258.2-2.2-.3c0-.9.2-2.2.9-2.6l2 1.5c-.3.2-.7 1-.7 1.4zm6 0 2.2-.3c0-.9-.2-2.2-.9-2.6l-2 1.5c.3.2.7 1 .7 1.4zm-2.2-2.3 1-2a5.3 5.3 0 0 0-2-.4l-1.7.4 1.1 2h1.6zm-4.2-5.5v-4.9c0-1.3-1-2.4-2.5-2.4s-2.4 1-2.4 2.4v4.9h4.9zm6.8 0v-4.9c0-1.3 1-2.4 2.5-2.4s2.4 1 2.4 2.4v4.9h-4.9zm-1.7-12 .4-4.4h-4.2l.2 4.4h3.6zm3.3 0-.4-4.4h4.4l-.5 4.4h-3.5zm-10 0 .2-4.4h-4.2l.5 4.4h3.5z'/%3e%3cpath fill='%230039f0' d='M185.3 262.6v-4c0-.7-.5-2.7-3.1-2.7-2.4 0-2.9 2-2.9 2.7v4h6zm-6.9-12.7v-4.2c0-1-.6-2.2-2-2.2s-2 1.1-2 2.2v4.3h4zm7.8 0v-4.2c0-1 .7-2.2 2-2.2s2 1.1 2 2.2v4.3h-4z'/%3e%3cpath fill='%23ad1519' d='M190.8 269.8c0-9.7 7-17.6 15.6-17.6s15.6 7.9 15.6 17.6-7 17.5-15.6 17.5-15.6-7.8-15.6-17.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.6' d='M190.8 269.8c0-9.7 7-17.6 15.6-17.6s15.6 7.9 15.6 17.6-7 17.5-15.6 17.5-15.6-7.8-15.6-17.5z'/%3e%3cpath fill='%23005bbf' d='M195.4 269.7c0-7 5-12.8 11-12.8s11 5.7 11 12.8c0 7.2-5 13-11 13s-11-5.8-11-13'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.6' d='M195.4 269.7c0-7 5-12.8 11-12.8s11 5.7 11 12.8c0 7.2-5 13-11 13s-11-5.8-11-13z'/%3e%3cpath fill='%23c8b100' d='M201.2 260.9s-1.3 1.4-1.3 2.7a6 6 0 0 0 .6 2.4c-.2-.5-.8-.8-1.4-.8-.8 0-1.4.6-1.4 1.3l.2.8.5.9c.1-.3.5-.5 1-.5s1 .4 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5 1-.4.8.9.8-.9 1 .4-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .7.3 1 .6l.4-1 .2-.7a1.4 1.4 0 0 0-1.4-1.3c-.7 0-1.2.3-1.4.9 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M201.2 260.9s-1.3 1.4-1.3 2.7a6 6 0 0 0 .6 2.4c-.2-.5-.8-.8-1.4-.8-.8 0-1.4.6-1.4 1.3l.2.8.5.9c.1-.3.5-.5 1-.5s1 .4 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5 1-.4.8.9.8-.9 1 .4-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .7.3 1 .6l.4-1 .2-.7a1.4 1.4 0 0 0-1.4-1.3c-.7 0-1.2.3-1.4.9 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3e%3cpath fill='%23c8b100' d='M199.2 269.9h4.1v-1h-4.1v1z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M199.2 269.9h4.1v-1h-4.1v1z'/%3e%3cpath fill='%23c8b100' d='M211.4 260.9s-1.3 1.4-1.3 2.7c0 1.3.6 2.4.6 2.4-.2-.5-.7-.8-1.4-.8-.8 0-1.4.6-1.4 1.3l.2.8.5.9c.2-.3.5-.5 1-.5a1 1 0 0 1 1 1 .9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5 1-.4.8.9.8-.9 1 .4-.7-1.5h1v-1h-1.1a.8.8 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .8.3 1 .6l.4-1 .2-.7a1.4 1.4 0 0 0-1.4-1.3c-.6 0-1.2.3-1.4.9 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M211.4 260.9s-1.3 1.4-1.3 2.7c0 1.3.6 2.4.6 2.4-.2-.5-.7-.8-1.4-.8-.8 0-1.4.6-1.4 1.3l.2.8.5.9c.2-.3.5-.5 1-.5a1 1 0 0 1 1 1 .9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5 1-.4.8.9.8-.9 1 .4-.7-1.5h1v-1h-1.1a.8.8 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .8.3 1 .6l.4-1 .2-.7a1.4 1.4 0 0 0-1.4-1.3c-.6 0-1.2.3-1.4.9 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3e%3cpath fill='%23c8b100' d='M209.4 269.9h4.1v-1h-4.1v1z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M209.4 269.9h4.1v-1h-4.1v1z'/%3e%3cpath fill='%23c8b100' d='M206.3 269.6s-1.3 1.5-1.3 2.8.6 2.4.6 2.4c-.2-.5-.7-.9-1.4-.9-.8 0-1.4.6-1.4 1.4l.2.7.5 1c.1-.4.5-.6 1-.6a1 1 0 0 1 1 1 .9.9 0 0 1 0 .3h-1.2v1h1l-.8 1.5 1-.4.8.9.8-1 1 .5-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .7.2.9.6l.5-1 .2-.7a1.4 1.4 0 0 0-1.4-1.4c-.7 0-1.2.4-1.4 1 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3e%3cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='.3' d='M206.3 269.6s-1.3 1.5-1.3 2.8.6 2.4.6 2.4c-.2-.5-.7-.9-1.4-.9-.8 0-1.4.6-1.4 1.4l.2.7.5 1c.1-.4.5-.6 1-.6a1 1 0 0 1 1 1 .9.9 0 0 1 0 .3h-1.2v1h1l-.8 1.5 1-.4.8.9.8-1 1 .5-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3 1 1 0 0 1 1-1c.4 0 .7.2.9.6l.5-1 .2-.7a1.4 1.4 0 0 0-1.4-1.4c-.7 0-1.2.4-1.4 1 0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3e%3cpath fill='%23c8b100' d='M204.3 278.6h4.1v-1h-4.1v1z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M204.3 278.6h4.1v-1h-4.1v1z'/%3e%3cpath fill='%23c8b100' d='M237.6 223.4h-.3a1.5 1.5 0 0 1-.3.4c-.2.2-.6.2-.8 0a.5.5 0 0 1-.1-.4.5.5 0 0 1-.5 0c-.3-.1-.3-.5-.1-.7v-.5h-.3l-.1.2c-.2.3-.5.3-.7.2a.6.6 0 0 1 0-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1 1.2c0 .6-.3 1.2-.3 1.2a9 9 0 0 1 2.9 1.6 9 9 0 0 1 2.2 2.3l1.2-.5c.6-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4v-.2a.7.7 0 0 1-.2 0c-.2-.2-.2-.4 0-.7l.2-.1v-.3h-.3l-.2.1c-.2.3-.6.3-.8 0a.4.4 0 0 1-.1-.4.6.6 0 0 1-.5 0c-.2-.2-.3-.5 0-.8l.2-.3v-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M237.6 223.4h-.3a1.5 1.5 0 0 1-.3.4c-.2.2-.6.2-.8 0a.5.5 0 0 1-.1-.4.5.5 0 0 1-.5 0c-.3-.1-.3-.5-.1-.7v-.5h-.3l-.1.2c-.2.3-.5.3-.7.2a.6.6 0 0 1 0-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1 1.2c0 .6-.3 1.2-.3 1.2a9 9 0 0 1 2.9 1.6 9 9 0 0 1 2.2 2.3l1.2-.5c.6-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4v-.2a.7.7 0 0 1-.2 0c-.2-.2-.2-.4 0-.7l.2-.1v-.3h-.3l-.2.1c-.2.3-.6.3-.8 0a.4.4 0 0 1-.1-.4.6.6 0 0 1-.5 0c-.2-.2-.3-.5 0-.8l.2-.3v-.3z'/%3e%3cpath d='M235.4 224h.2v.3h-.1c-.1 0-.1-.2 0-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M235.4 224h.2v.3h-.1c-.1 0-.1-.2 0-.2z'/%3e%3cpath d='m236.3 224.8-.3-.2v-.2h.1l.4.3.3.2v.2h-.2l-.3-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='m236.3 224.8-.3-.2v-.2h.1l.4.3.3.2v.2h-.2l-.3-.3'/%3e%3cpath d='m234.6 223.7-.2-.2s-.1 0 0-.1l.3.1.3.1v.2h-.1l-.3-.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='m234.6 223.7-.2-.2s-.1 0 0-.1l.3.1.3.1v.2h-.1l-.3-.1'/%3e%3cpath d='M233.7 223h.2v.2h-.2s-.1-.1 0-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M233.7 223h.2v.2h-.2s-.1-.1 0-.2z'/%3e%3cpath d='M237.3 225.5v-.2h-.3l.1.2h.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M237.3 225.5v-.2h-.3l.1.2h.2z'/%3e%3cpath d='m237.9 226.2.2.2h.1c.1 0 0-.1 0-.2l-.2-.2-.2-.2h-.1v.2l.2.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='m237.9 226.2.2.2h.1c.1 0 0-.1 0-.2l-.2-.2-.2-.2h-.1v.2l.2.2'/%3e%3cpath d='M238.8 227v-.3h-.3v.2h.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M238.8 227v-.3h-.3v.2h.3z'/%3e%3cpath fill='%23c8b100' d='M236.2 221.1h-.6l-.1.9v.1h.2l.7-.5-.3-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M236.2 221.1h-.6l-.1.9v.1h.2l.7-.5-.3-.5'/%3e%3cpath fill='%23c8b100' d='M234.6 221.6v.5l.9.1h.1v-.2l-.5-.7-.5.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M234.6 221.6v.5l.9.1h.1v-.2l-.5-.7-.5.3'/%3e%3cpath fill='%23c8b100' d='m236.4 222.6-.4.3-.6-.7v-.1h1.1v.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m236.4 222.6-.4.3-.6-.7v-.1h1.1v.5'/%3e%3cpath fill='%23c8b100' d='M235.3 222a.3.3 0 0 1 .4 0 .3.3 0 0 1 0 .3.3.3 0 0 1-.3 0 .3.3 0 0 1-.1-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M235.3 222a.3.3 0 0 1 .4 0 .3.3 0 0 1 0 .3.3.3 0 0 1-.3 0 .3.3 0 0 1-.1-.3z'/%3e%3cpath fill='%23c8b100' d='m233.2 221.1-.2-.7-.4-.4s.4-.2.8.1c.4.3 0 .9 0 .9l-.2.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m233.2 221.1-.2-.7-.4-.4s.4-.2.8.1c.4.3 0 .9 0 .9l-.2.1z'/%3e%3cpath fill='%23c8b100' d='m234.2 221.4-.4.4-.6-.6v-.2h1v.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m234.2 221.4-.4.4-.6-.6v-.2h1v.4'/%3e%3cpath fill='%23c8b100' d='m233.1 221 .3-.1v.3c0 .2-.1.2-.2.2l-.1-.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m233.1 221 .3-.1v.3c0 .2-.1.2-.2.2l-.1-.3z'/%3e%3cpath fill='%23c8b100' d='M238.3 222.5h-.5l-.3.7v.2h.2l.8-.4-.2-.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M238.3 222.5h-.5l-.3.7v.2h.2l.8-.4-.2-.5'/%3e%3cpath fill='%23c8b100' d='M236.7 222.8v.5l.8.2h.1v-.2l-.4-.7-.5.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M236.7 222.8v.5l.8.2h.1v-.2l-.4-.7-.5.2'/%3e%3cpath fill='%23c8b100' d='m238.4 224-.5.2-.4-.7v-.2h.1l.9.2-.1.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m238.4 224-.5.2-.4-.7v-.2h.1l.9.2-.1.5'/%3e%3cpath fill='%23c8b100' d='M237.3 223.2h.4a.3.3 0 0 1 0 .4.3.3 0 0 1-.3 0 .3.3 0 0 1 0-.4'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M237.3 223.2h.4a.3.3 0 0 1 0 .4.3.3 0 0 1-.3 0 .3.3 0 0 1 0-.4z'/%3e%3cpath fill='%23c8b100' d='m240.2 224.3.1.5-.8.3h-.2v-.2l.4-.8.5.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m240.2 224.3.1.5-.8.3h-.2v-.2l.4-.8.5.2'/%3e%3cpath fill='%23c8b100' d='m240 225.8-.5.1-.3-.8v-.1h.2l.8.3-.1.5'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m240 225.8-.5.1-.3-.8v-.1h.2l.8.3-.1.5'/%3e%3cpath fill='%23c8b100' d='m238.6 224.3-.2.5.9.3h.1v-.1l-.3-.8-.5.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m238.6 224.3-.2.5.9.3h.1v-.1l-.3-.8-.5.1'/%3e%3cpath fill='%23c8b100' d='M239.5 225.2a.3.3 0 0 0 0-.3.3.3 0 0 0-.4 0 .3.3 0 0 0 0 .3.3.3 0 0 0 .4 0'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M239.5 225.2a.3.3 0 0 0 0-.3.3.3 0 0 0-.4 0 .3.3 0 0 0 0 .3.3.3 0 0 0 .4 0z'/%3e%3cpath fill='%23c8b100' d='M240.8 227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2l-.2.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M240.8 227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2l-.2.2z'/%3e%3cpath fill='%23c8b100' d='m240.3 226.1-.3.5.8.5v-.1h.2l-.1-1-.6.1'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='m240.3 226.1-.3.5.8.5v-.1h.2l-.1-1-.6.1'/%3e%3cpath fill='%23c8b100' d='M241 227s.1-.1 0-.2h-.3c-.2 0-.2.1-.1.2h.3'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.3' d='M241 227s.1-.1 0-.2h-.3c-.2 0-.2.1-.1.2h.3zm38-21.9v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3e%3cpath fill='none' d='M134.4 217.1v-1.2m-.4 1.2v-1.2m-.2 1.2v-1.2m-.3 1.2v-1.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M133.2 217.1v-1.2m-.5 1.1v-1m.2 1v-1m-.7 1v-1m.2 1v-1m-.9 1v-1m.2 1v-1m.3 1v-1m-.7 1v-1m-.3.9v-.8m-.1.8v-.8m-.5.7v-.6m.2.6v-.6m-.4.5v-.5m-.2.5v-.4m-.3.3v-.3m-.3.3v-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M129.2 216.6v-.2'/%3e%3cpath fill='none' d='M135.7 217v-1m-.5 1v-1m-.4 1.2V216m143 1.1V216m-.4 1.1V216m-.3 1.1V216m-.3 1.2V216'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.1' d='M276.6 217.1V216m-.6 1v-1m.3 1v-1m-.8 1v-1m.3 1v-1m-.9 1v-1m.2 1v-1m.2 1v-1m-.6 1v-1m-.3.9v-.8m-.2.8v-.8m-.4.7v-.6m.2.6v-.6m-.5.6v-.6m-.2.5v-.4m-.3.4v-.4m-.2.3v-.2'/%3e%3cpath fill='none' stroke='%23000' stroke-width='.2' d='M272.6 216.6v-.2'/%3e%3cpath fill='none' d='M279.1 217v-1m-.6 1v-1m-.4 1.1V216'/%3e%3c/svg%3e");
}

.desktop .pt {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 640 480'%3e%3cpath fill='red' d='M256 0h384v480H256z'/%3e%3cpath fill='%23060' d='M0 0h256v480H0z'/%3e%3cg fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.6'%3e%3cpath d='M339.5 306.2c-32.3-1-180-93.2-181-108l8.1-13.5c14.7 21.3 165.7 111 180.6 107.8l-7.7 13.7'/%3e%3cpath d='M164.9 182.8c-2.9 7.8 38.6 33.4 88.4 63.8 49.9 30.3 92.9 49 96 46.4l1.5-2.8c-.6 1-2 1.3-4.3.6-13.5-3.9-48.6-20-92.1-46.4-43.6-26.4-81.4-50.7-87.3-61a6.3 6.3 0 0 1-.6-3.1h-.2l-1.2 2.2-.2.3zm175.3 123.8c-.5 1-1.6 1-3.5.8-12-1.3-48.6-19.1-91.9-45-50.4-30.2-92-57.6-87.4-64.8l1.2-2.2.2.1c-4 12.2 82.1 61.4 87.2 64.6 49.8 30.8 91.8 48.9 95.5 44.2l-1.3 2.3z'/%3e%3cpath d='M256.2 207.2c32.2-.3 72-4.4 95-13.6l-5-8c-13.5 7.5-53.5 12.5-90.3 13.2-43.4-.4-74.1-4.5-89.5-14.8l-4.6 8.6c28.2 12 57.2 14.5 94.4 14.6'/%3e%3cpath d='M352.5 193.8c-.8 1.3-15.8 6.4-37.8 10.2a381.2 381.2 0 0 1-58.6 4.3 416.1 416.1 0 0 1-56.2-3.6c-23.1-3.6-35-8.6-39.5-10.4l1.1-2.2c12.7 5 24.7 8 38.7 10.2A411.5 411.5 0 0 0 256 206a391.8 391.8 0 0 0 58.3-4.3c22.5-3.7 34.8-8.4 36.6-10.5l1.6 2.7zm-4.4-8.1c-2.4 2-14.6 6.3-36 9.7a388.2 388.2 0 0 1-55.8 4c-22 0-40.1-1.6-53.8-3.6-21.8-2.8-33.4-8-37.6-9.4l1.3-2.2c3.3 1.7 14.4 6.2 36.5 9.3a385 385 0 0 0 53.6 3.4 384 384 0 0 0 55.4-4c21.5-3 33.1-8.4 34.9-9.8l1.5 2.6zM150.3 246c19.8 10.7 63.9 16 105.6 16.4 38 .1 87.4-5.8 105.9-15.6l-.5-10.7c-5.8 9-58.8 17.7-105.8 17.4-47-.4-90.7-7.6-105.3-17v9.5'/%3e%3cpath d='M362.8 244.5v2.5c-2.8 3.4-20.2 8.4-42 12a434 434 0 0 1-65.4 4.4 400 400 0 0 1-62-4.3 155 155 0 0 1-44.4-12v-2.9c9.7 6.4 35.9 11.2 44.7 12.6 15.8 2.4 36.1 4.2 61.7 4.2 26.9 0 48.4-1.9 65-4.4 15.7-2.3 38-8.2 42.4-12.1zm0-9v2.5c-2.8 3.3-20.2 8.3-42 11.9a434 434 0 0 1-65.4 4.5 414 414 0 0 1-62-4.3 155 155 0 0 1-44.4-12v-3c9.7 6.5 36 11.2 44.7 12.6a408 408 0 0 0 61.7 4.3c26.9 0 48.5-2 65-4.5 15.7-2.2 38-8.1 42.4-12zm-107 68.8c-45.6-.2-84.7-12.4-93-14.4l6 9.4a249.8 249.8 0 0 0 87.4 14.3c34.7-1 65-3.7 86.3-14.1l6.2-9.8c-14.5 6.9-64 14.6-93 14.6'/%3e%3cpath d='M344.9 297.3a143 143 0 0 1-2.8 4c-10 3.6-26 7.4-32.6 8.4a295.5 295.5 0 0 1-53.7 5c-40.4-.6-73.5-8.5-89-15.3l-1.3-2.1.2-.4 2.1.9a286.5 286.5 0 0 0 88.2 14.5c18.8 0 37.5-2.1 52.6-4.8 23.2-4.7 32.6-8.2 35.5-9.8l.7-.4zm5.3-8.8a287.2 287.2 0 0 1-2 3.5c-5.4 2-20 6.2-41.3 9.2-14 1.9-22.7 3.8-50.6 4.3a347.4 347.4 0 0 1-94.2-14L161 289a390 390 0 0 0 95.4 14c25.5-.5 36.4-2.4 50.3-4.3 24.8-3.8 37.3-8 41-9.1a2.9 2.9 0 0 0 0-.2l2.6-1z'/%3e%3cpath d='M350.8 237.6c.1 30-15.3 57-27.6 68.8a99.3 99.3 0 0 1-67.8 28.2c-30.3.5-58.8-19.2-66.5-27.9a101 101 0 0 1-27.5-67.4c1.8-32.8 14.7-55.6 33.3-71.3a99.6 99.6 0 0 1 64.2-22.7 98.2 98.2 0 0 1 71 35.6c12.5 15.2 18 31.7 20.9 56.7zM255.6 135a106 106 0 0 1 106 105.2 105.6 105.6 0 1 1-211.4 0c-.1-58 47.3-105.2 105.4-105.2'/%3e%3cpath d='M255.9 134.5c58.2 0 105.6 47.4 105.6 105.6S314.1 345.7 256 345.7s-105.6-47.4-105.6-105.6c0-58.2 47.4-105.6 105.6-105.6zM152.6 240c0 56.8 46.7 103.3 103.3 103.3 56.6 0 103.3-46.5 103.3-103.3s-46.7-103.3-103.3-103.3S152.6 183.2 152.6 240z'/%3e%3cpath d='M256 143.3a97 97 0 0 1 96.7 96.7 97.1 97.1 0 0 1-96.7 96.8c-53 0-96.7-43.6-96.7-96.8a97.1 97.1 0 0 1 96.7-96.7zM161.6 240c0 52 42.6 94.4 94.4 94.4s94.4-42.5 94.4-94.4c0-52-42.6-94.4-94.4-94.4a94.8 94.8 0 0 0-94.4 94.4z'/%3e%3cpath d='M260.3 134h-9.1v212.3h9z'/%3e%3cpath d='M259.3 132.8h2.3v214.7h-2.2V132.8zm-9 0h2.4v214.7h-2.3V132.8z'/%3e%3cpath d='M361.6 244.2v-7.8l-6.4-6-36.3-9.6-52.2-5.3-63 3.2-44.8 10.6-9 6.7v7.9l22.9-10.3 54.4-8.5h52.3l38.4 4.2 26.6 6.4z'/%3e%3cpath d='M256 223.8c24.9 0 49 2.3 68.3 6 19.8 4 33.7 9 38.5 14.5v2.8c-5.8-7-24.5-12-39-15-19-3.6-43-6-67.9-6-26.1 0-50.5 2.6-69.3 6.2-15 3-35.1 9-37.6 14.8v-2.9c1.3-4 16.3-10 37.3-14.3 18.9-3.7 43.3-6.1 69.6-6.1zm0-9.1a383 383 0 0 1 68.3 6c19.8 4 33.7 9 38.5 14.6v2.7c-5.8-6.9-24.5-12-39-14.9-19-3.7-43-6-67.9-6a376 376 0 0 0-69.2 6.2c-14.5 2.7-35.4 8.9-37.7 14.7v-2.8c1.4-4 16.6-10.3 37.3-14.3 19-3.7 43.3-6.2 69.7-6.2zm-.6-46.2c39.3-.2 73.6 5.5 89.3 13.5l5.7 10c-13.6-7.4-50.6-15-94.9-14-36.1.3-74.7 4-94 14.4l6.8-11.4c15.9-8.3 53.3-12.5 87.1-12.5'/%3e%3cpath d='M256 176.7a354 354 0 0 1 61.3 4.3c16 3 31.3 7.4 33.5 9.8l1.7 3c-5.3-3.4-18.6-7.3-35.6-10.5s-38.7-4.3-61-4.2c-25.3-.1-45 1.2-61.8 4.2a108.9 108.9 0 0 0-33.3 10.3l1.7-3.1c6-3 15.3-6.7 31.1-9.6 17.5-3.2 37.4-4.1 62.4-4.2zm0-9c21.4-.2 42.6 1 59.1 4a96 96 0 0 1 30.6 10l2.5 4c-4.2-4.7-20-9.2-34.1-11.6-16.4-2.9-36.7-4-58.1-4.2a361 361 0 0 0-59.5 4.4 97.3 97.3 0 0 0-29.6 9.1l2.2-3.3c5.8-3 15.2-5.8 27-8.1a357 357 0 0 1 59.9-4.4zM308.4 284a276.4 276.4 0 0 0-52.5-4c-65.5.8-86.6 13.5-89.2 17.3l-5-8c16.8-12 52.4-18.8 94.6-18.2 21.9.4 40.8 1.9 56.6 5l-4.5 8'/%3e%3cpath d='M255.6 278.9c18.2.3 36 1 53.3 4.2l-1.2 2.2c-16-3-33.2-4-52-4-24.3-.2-48.7 2.1-70 8.2-6.7 1.9-17.8 6.2-19 9.8l-1.2-2c.4-2.2 7-6.6 19.6-10 24.4-7 47.2-8.3 70.5-8.4zm.8-9.2a327 327 0 0 1 57.3 5l-1.3 2.3a299 299 0 0 0-56-4.9c-24.2 0-49.9 1.8-73.3 8.6-7.5 2.2-20.6 7-21 10.7l-1.2-2.2c.2-3.4 11.5-7.9 21.7-10.8 23.5-6.9 49.3-8.6 73.8-8.7z'/%3e%3cpath d='m349.4 290.5-7.8 12.3-22.7-20.1-58.6-39.5-66.2-36.3-34.3-11.7 7.3-13.6 2.5-1.3 21.3 5.3 70.4 36.3 40.6 25.6L336 272l13.9 16z'/%3e%3cpath d='M158.6 195.5c6-4 50.2 15.6 96.6 43.6 46.1 28 90.3 59.6 86.3 65.5l-1.3 2.1-.6.5c.1-.1.8-1 0-3.1-2-6.5-33.4-31.5-85.3-62.9-50.7-30.1-92.9-48.3-97-43.1l1.3-2.6zM351 290.4c3.8-7.6-37.2-38.5-88.1-68.6-52-29.5-89.6-46.9-96.5-41.7L165 183c0 .1 0-.2.4-.5 1.2-1 3.3-1 4.2-1 11.8.2 45.5 15.7 92.8 42.8 20.8 12 87.6 55 87.3 67 0 1 .1 1.2-.3 1.8l1.7-2.6z'/%3e%3c/g%3e%3cg transform='translate(0 26.7) scale(1.06667)'%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.7' d='M180.6 211a58.7 58.7 0 0 0 17.5 41.7 59 59 0 0 0 41.8 17.6 59.4 59.4 0 0 0 42-17.4 59 59 0 0 0 17.4-41.8v-79.2l-118.7-.2V211z'/%3e%3cpath fill='red' stroke='%23000' stroke-width='.5' d='M182.8 211.1a56.4 56.4 0 0 0 16.8 40 57 57 0 0 0 40.2 16.8 56.9 56.9 0 0 0 40.2-16.6 56.4 56.4 0 0 0 16.7-40v-77H183v76.8m91-53.7v48.9l-.1 5.1a33.2 33.2 0 0 1-10 24 34 34 0 0 1-24 10c-9.4 0-17.7-4-23.9-10.2a34 34 0 0 1-10-24v-54l68 .2z'/%3e%3cg id='e'%3e%3cg id='d' fill='%23ff0' stroke='%23000' stroke-width='.5'%3e%3cpath stroke='none' d='M190.2 154.4c.1-5.5 4-6.8 4-6.8.1 0 4.3 1.4 4.3 6.9h-8.3'/%3e%3cpath d='m186.8 147.7-.7 6.3h4.2c0-5.2 4-6 4-6 .1 0 4 1.1 4.1 6h4.2l-.8-6.4h-15zm-1 6.4h17c.3 0 .6.3.6.7 0 .5-.3.8-.6.8h-17c-.3 0-.6-.3-.6-.8 0-.4.3-.7.7-.7z'/%3e%3cpath d='M192 154c0-3.3 2.3-4.2 2.3-4.2s2.3 1 2.3 4.2H192m-5.8-9h16.3c.3 0 .6.4.6.8 0 .3-.3.6-.6.6h-16.3c-.3 0-.6-.3-.6-.7 0-.3.3-.6.6-.6zm.4 1.5H202c.3 0 .6.3.6.7 0 .4-.3.7-.6.7h-15.5c-.4 0-.6-.3-.6-.7 0-.4.2-.7.6-.7zm5-10.6h1.2v.8h.9v-.8h1.3v.9h.9v-1h1.2v2c0 .4-.2.6-.5.6h-4.4c-.3 0-.6-.2-.6-.5v-2zm4.6 2.7.3 6.4h-4.3l.3-6.5h3.7'/%3e%3cpath id='a' d='M191 141.6v3.4h-4v-3.4h4z'/%3e%3cuse xlink:href='%23a' width='100%25' height='100%25' x='10.6'/%3e%3cpath id='b' d='M186.3 139h1.2v1h.9v-1h1.2v1h.9v-1h1.2v2c0 .4-.2.6-.5.6h-4.3a.6.6 0 0 1-.6-.6v-2z'/%3e%3cuse xlink:href='%23b' width='100%25' height='100%25' x='10.6'/%3e%3cpath fill='%23000' stroke='none' d='M193.9 140.6c0-.6.9-.6.9 0v1.6h-.9v-1.6'/%3e%3cpath id='c' fill='%23000' stroke='none' d='M188.6 142.8c0-.6.8-.6.8 0v1.2h-.8v-1.2'/%3e%3cuse xlink:href='%23c' width='100%25' height='100%25' x='10.6'/%3e%3c/g%3e%3cuse xlink:href='%23d' width='100%25' height='100%25' y='46.3'/%3e%3cuse xlink:href='%23d' width='100%25' height='100%25' transform='rotate(-45.2 312.8 180)'/%3e%3c/g%3e%3cuse xlink:href='%23d' width='100%25' height='100%25' x='45.7'/%3e%3cuse xlink:href='%23e' width='100%25' height='100%25' transform='matrix(-1 0 0 1 479.8 0)'/%3e%3cg id='f' fill='%23fff'%3e%3cpath fill='%23039' d='M232.6 202.4a8.3 8.3 0 0 0 2.2 5.7 7.2 7.2 0 0 0 5.3 2.4c2.1 0 4-1 5.3-2.4a8.3 8.3 0 0 0 2.2-5.7v-10.8h-15v10.8'/%3e%3ccircle cx='236.1' cy='195.7' r='1.5'/%3e%3ccircle cx='244.4' cy='195.7' r='1.5'/%3e%3ccircle cx='240.2' cy='199.7' r='1.5'/%3e%3ccircle cx='236.1' cy='203.9' r='1.5'/%3e%3ccircle cx='244.4' cy='203.9' r='1.5'/%3e%3c/g%3e%3cuse xlink:href='%23f' width='100%25' height='100%25' y='-26'/%3e%3cuse xlink:href='%23f' width='100%25' height='100%25' x='-20.8'/%3e%3cuse xlink:href='%23f' width='100%25' height='100%25' x='20.8'/%3e%3cuse xlink:href='%23f' width='100%25' height='100%25' y='25.8'/%3e%3c/g%3e%3c/svg%3e");
}

.desktop .ua {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3e%3cg fill-rule='evenodd' stroke-width='1pt'%3e%3cpath fill='%23ffd500' d='M0 0h640v480H0z'/%3e%3cpath fill='%23005bbb' d='M0 0h640v240H0z'/%3e%3c/g%3e%3c/svg%3e");
}