/*
=====================================================================
SJORANM — Journal Style Sheet
Swiss Journal of Radiology and Nuclear Medicine
Version: 1.4 — 30 August 2026

Consolidated replacement stylesheet for OJS 3.5.x.
Supersedes SJORANM v1.3 while preserving its visual identity and fixes.

v1.4 adds:
- removal of the legacy OJS sidebar and full-width main content
- refined primary/secondary CTA interaction
- subtle accordion interaction
- improved responsive behaviour, including Editorial Board cards
- reduced-motion accessibility support

Brand palette:
Navy:       #172234
Petrol:     #007b82
Teal light: #65c4c8
Text:       #334354
Muted:      #6b7b87
Line:       #dce3e8
Wash:       #f3f7f8
White:      #ffffff
=====================================================================
*/

:root {
    --sjoranm-navy: #172234;
    --sjoranm-petrol: #007b82;
    --sjoranm-teal: #65c4c8;
    --sjoranm-text: #334354;
    --sjoranm-muted: #6b7b87;
    --sjoranm-line: #dce3e8;
    --sjoranm-wash: #f3f7f8;
    --sjoranm-white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    color: var(--sjoranm-text);
    line-height: 1.65;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

p, li, dd, dt, input, select, textarea, button {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p { line-height: 1.7; }

a {
    color: var(--sjoranm-petrol);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #005f66;
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 2px;
}

/* =================================================================
   1. HEADER
   ================================================================= */

.pkp_structure_head {
    background: var(--sjoranm-navy);
    border-bottom: 0;
    box-shadow: none;
}

.pkp_head_wrapper { max-width: 1280px; }

.pkp_site_name {
    padding-top: 18px;
    padding-bottom: 16px;
}

.pkp_site_name .is_text,
.pkp_site_name a,
.pkp_site_name a:link,
.pkp_site_name a:visited {
    color: var(--sjoranm-white) !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.pkp_site_name .is_text {
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.2;
}

.pkp_site_name img {
    max-height: 90px;
    width: auto;
}

/* =================================================================
   2. PRIMARY NAVIGATION
   ================================================================= */

.pkp_navigation_primary_wrapper {
    background: var(--sjoranm-navy);
    border-top: 1px solid rgba(255,255,255,0.10);
}

.pkp_navigation_primary {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pkp_navigation_primary > li > a {
    color: #e8eef2 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    padding-top: 13px;
    padding-bottom: 13px;
    text-decoration: none !important;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: var(--sjoranm-teal) !important;
}

.pkp_navigation_primary ul {
    background: #ffffff;
    border: 1px solid var(--sjoranm-line);
    box-shadow: 0 8px 24px rgba(23,34,52,0.12);
}

.pkp_navigation_primary ul a {
    color: var(--sjoranm-navy) !important;
    font-size: 13px;
    text-decoration: none !important;
}

.pkp_navigation_primary ul a:hover,
.pkp_navigation_primary ul a:focus {
    color: var(--sjoranm-petrol) !important;
    background: var(--sjoranm-wash);
}

.pkp_navigation_search_wrapper a { color: #e8eef2 !important; }
.pkp_navigation_search_wrapper a:hover,
.pkp_navigation_search_wrapper a:focus { color: var(--sjoranm-teal) !important; }

/* =================================================================
   3. PAGE WIDTH / MAIN LAYOUT — v1.4
   Remove the legacy OJS sidebar and use the available reading width.
   ================================================================= */

.pkp_structure_content,
.pkp_structure_content.has_sidebar {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.pkp_structure_sidebar {
    display: none !important;
}

.pkp_structure_main,
.pkp_structure_content.has_sidebar .pkp_structure_main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    color: var(--sjoranm-text);
    box-sizing: border-box;
}

.pkp_structure_main::before,
.pkp_structure_main::after { background: transparent; }

/* =================================================================
   4. HEADINGS / PAGE TITLES
   ================================================================= */

.pkp_structure_main h1,
.pkp_structure_main h2,
.pkp_structure_main h3,
.pkp_structure_main h4,
.page h1,
.page h2,
.page h3,
.page h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--sjoranm-navy);
}

.pkp_structure_main h1,
.page h1 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.pkp_structure_main h2,
.page h2 {
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.pkp_structure_main h3,
.page h3 {
    font-weight: 650;
    line-height: 1.3;
}

.page > h1,
.page_about > h1,
.page_contact > h1,
.page_submissions > h1,
.page_search > h1,
.page_issue_archive > h1,
.page_editorial_team > h1 {
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--sjoranm-petrol);
}

/* =================================================================
   5. HOMEPAGE — GENERAL
   ================================================================= */

.page_index_journal .homepage_image { margin-bottom: 28px; }
.page_index_journal .homepage_image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page_index_journal .additional_content { color: var(--sjoranm-text); }
.page_index_journal .additional_content h2,
.page_index_journal .additional_content h3 { color: var(--sjoranm-navy); }

.page_index_journal .journal_description {
    margin-bottom: 38px;
}

/* Hide the default About heading when the custom landing hero is present. */
#homepageAbout > h2,
.homepage_about > h2,
.page_index_journal .journal_description > h2 {
    display: none;
}

#homepageAbout,
.homepage_about,
.page_index_journal .journal_description {
    margin-top: 18px;
    margin-bottom: 34px;
}

/* =================================================================
   6. LEGACY HOMEPAGE COMPONENT CLASSES
   Retained for compatibility with earlier SJORANM blocks.
   ================================================================= */

.sjoranm-home-about { margin: 0 0 34px 0; }

.sjoranm-home-about-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px 0;
    padding: 32px 34px 30px 34px;
    background:
        linear-gradient(135deg, rgba(0,123,130,0.08), rgba(0,123,130,0.015)),
        #f7f9fa;
    border: 1px solid var(--sjoranm-line);
    border-left: 5px solid var(--sjoranm-petrol);
}

.sjoranm-home-about-eyebrow {
    margin: 0 0 7px 0;
    color: var(--sjoranm-petrol);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sjoranm-home-about-title {
    max-width: 760px;
    margin: 0 0 14px 0;
    color: var(--sjoranm-navy);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.sjoranm-home-about-lead {
    max-width: 790px;
    margin: 0;
    color: #405363;
    font-size: 16px;
    line-height: 1.75;
}

.sjoranm-home-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 22px 0;
}

.sjoranm-home-fact {
    min-height: 96px;
    padding: 16px 17px;
    background: #ffffff;
    border: 1px solid var(--sjoranm-line);
    border-top: 3px solid var(--sjoranm-petrol);
}

.sjoranm-home-fact-label {
    display: block;
    margin-bottom: 5px;
    color: var(--sjoranm-muted);
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sjoranm-home-fact-value {
    display: block;
    color: var(--sjoranm-navy);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.sjoranm-home-about-copy {
    margin: 0 0 20px 0;
    color: var(--sjoranm-text);
}

.sjoranm-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 0 0;
}

.sjoranm-home-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--sjoranm-petrol);
    border-radius: 3px;
    color: var(--sjoranm-petrol) !important;
    background: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background-color 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, filter 0.18s ease;
}

.sjoranm-home-action:hover,
.sjoranm-home-action:focus {
    color: #ffffff !important;
    background: var(--sjoranm-petrol);
    text-decoration: none !important;
}

.sjoranm-home-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.11);
}

.sjoranm-home-action-primary {
    color: #ffffff !important;
    background: var(--sjoranm-petrol);
}

.sjoranm-home-action-primary:hover,
.sjoranm-home-action-primary:focus {
    background: #005f66;
    border-color: #005f66;
}

.sjoranm-home-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.16);
}

.sjoranm-home-action:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 3px;
}

.sjoranm-home-trademark-note {
    margin: 22px 0 0 0;
    padding-top: 15px;
    border-top: 1px solid var(--sjoranm-line);
    color: #71808b;
    font-size: 11px;
    line-height: 1.6;
}

.sjoranm-home-trademark-note strong { color: #536573; }

/* =================================================================
   7. CURRENT LANDING HERO / FACTS / CTAs
   ================================================================= */

.sjoranm-landing-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 18px 0;
    padding: 38px 40px 34px 40px;
    background:
        linear-gradient(135deg, rgba(0,123,130,0.18) 0%, rgba(0,123,130,0.02) 58%),
        #172234;
    border-left: 5px solid #49b7bc;
    color: #ffffff;
}

.sjoranm-landing-eyebrow {
    margin: 0 0 10px 0;
    color: #72d0d4;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.sjoranm-landing-title {
    max-width: 780px;
    margin: 0 0 17px 0;
    color: #ffffff !important;
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sjoranm-landing-title span { color: #74d1d5; }

.sjoranm-landing-lead {
    max-width: 800px;
    margin: 0;
    color: #d8e3e9;
    font-size: 16px;
    line-height: 1.75;
}

.sjoranm-landing-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px 0;
}

.sjoranm-landing-fact {
    min-height: 86px;
    padding: 15px 16px;
    background: #f5f8f8;
    border: 1px solid #dce3e8;
    border-top: 3px solid #007b82;
}

.sjoranm-landing-fact-label {
    display: block;
    margin-bottom: 4px;
    color: #6b7b87;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sjoranm-landing-fact-value {
    display: block;
    color: #172234;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.sjoranm-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px 0;
}

.sjoranm-landing-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #007b82;
    border-radius: 3px;
    background: #ffffff;
    color: #007b82 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background-color 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, filter 0.18s ease;
}

.sjoranm-landing-action:hover,
.sjoranm-landing-action:focus {
    background: #007b82;
    color: #ffffff !important;
    text-decoration: none !important;
}

.sjoranm-landing-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.11);
}

.sjoranm-landing-action-primary {
    background: #007b82;
    color: #ffffff !important;
}

.sjoranm-landing-action-primary:hover,
.sjoranm-landing-action-primary:focus {
    background: #005f66;
    border-color: #005f66;
}

.sjoranm-landing-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.16);
}

.sjoranm-landing-action:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 3px;
}

.sjoranm-landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    margin: 0;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid #dce3e8;
    color: #6b7b87;
    font-size: 11px;
    line-height: 1.4;
}

.sjoranm-landing-trust strong { color: #172234; }
.sjoranm-landing-trust a {
    color: #007b82 !important;
    font-weight: 700;
}

/* =================================================================
   8. HOMEPAGE IMAGES / ANNOUNCEMENTS / CURRENT ISSUE
   ================================================================= */

.page_index_journal .journal_description img,
.page_index_journal .additional_content img {
    max-width: 100%;
    height: auto;
}

.page_index_journal .journal_description img[alt*="DOAJ" i],
.page_index_journal .additional_content img[alt*="DOAJ" i] {
    max-width: 260px !important;
    height: auto !important;
}

.page_index_journal .journal_description img[alt*="LinkedIn" i],
.page_index_journal .journal_description img[alt*="Truth" i],
.page_index_journal .additional_content img[alt*="LinkedIn" i],
.page_index_journal .additional_content img[alt*="Truth" i] {
    max-height: 42px !important;
    width: auto !important;
}

.page_index_journal #homepageAbout img,
.page_index_journal .homepage_about img {
    max-width: 240px !important;
    height: auto !important;
}

.page_index_journal .cmp_announcements {
    margin-top: 24px;
    margin-bottom: 28px;
}

.page_index_journal .cmp_announcements > h2 {
    font-size: 20px;
    border-bottom-width: 2px;
}

.obj_announcement_summary,
.cmp_announcements .obj_announcement_summary {
    margin-bottom: 20px;
    padding: 20px 22px;
    background: var(--sjoranm-wash);
    border-left: 4px solid var(--sjoranm-petrol);
}

.page_index_journal .obj_announcement_summary { padding: 16px 18px; }

.obj_announcement_summary h2,
.obj_announcement_summary h3,
.obj_announcement_summary .title {
    color: var(--sjoranm-navy);
    font-weight: 700;
}

.obj_announcement_summary .date {
    color: var(--sjoranm-muted);
    font-size: 13px;
}

.obj_announcement_summary .read_more {
    color: var(--sjoranm-petrol);
    font-weight: 600;
}

.page_index_journal .obj_announcement_summary .summary { color: #4a5c6b; }

.page_index_journal .current_issue {
    margin-top: 30px;
    padding-top: 0;
}

.page_index_journal .current_issue > h2,
.page_index_journal .cmp_announcements > h2 {
    padding-bottom: 10px;
    border-bottom: 3px solid var(--sjoranm-petrol);
    color: var(--sjoranm-navy);
}

.page_index_journal .current_issue > h2 {
    font-size: 27px;
    margin-bottom: 18px;
}

.page_index_journal .current_issue .current_issue_title,
.page_index_journal .current_issue .title {
    color: var(--sjoranm-navy);
    font-weight: 700;
}

.page_index_journal .current_issue .cover { margin-right: 26px; }

.page_index_journal .current_issue .cover img {
    max-width: 190px;
    border: 1px solid #d6dee3;
    box-shadow: 0 10px 28px rgba(23,34,52,0.12);
}

.page_index_journal .current_issue .obj_article_summary {
    margin-bottom: 20px;
    padding-bottom: 18px;
}

.page_index_journal .current_issue .obj_article_summary .title { font-size: 17px; }
.page_index_journal .current_issue .obj_article_summary .authors {
    margin-top: 5px;
    margin-bottom: 4px;
}

/* =================================================================
   9. ISSUES / ARTICLE LISTS / ARTICLE DETAILS
   ================================================================= */

.obj_issue_summary { border-bottom-color: var(--sjoranm-line); }
.obj_issue_summary .title,
.obj_issue_summary .title a {
    color: var(--sjoranm-navy) !important;
    font-weight: 700;
}
.obj_issue_summary .description { color: var(--sjoranm-text); }
.obj_issue_toc .heading { border-bottom-color: var(--sjoranm-line); }

.obj_issue_toc .section > h2,
.obj_issue_toc .section > h3 {
    margin-top: 34px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--sjoranm-line);
    color: var(--sjoranm-navy);
}

.obj_article_summary {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sjoranm-line);
}

.obj_article_summary .title,
.obj_article_summary .title a {
    color: var(--sjoranm-navy) !important;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none !important;
}

.obj_article_summary .title a:hover,
.obj_article_summary .title a:focus { color: var(--sjoranm-petrol) !important; }
.obj_article_summary .authors { color: #4d5d6b; }
.obj_article_summary .pages,
.obj_article_summary .published {
    color: var(--sjoranm-muted);
    font-size: 13px;
}

.obj_article_details .page_title,
.obj_article_details h1 {
    color: var(--sjoranm-navy);
    font-weight: 700;
    line-height: 1.25;
}

.obj_article_details .authors,
.obj_article_details .authors a { color: #455766; }

.obj_article_details .abstract {
    line-height: 1.75;
    color: var(--sjoranm-text);
}

.obj_article_details .abstract h2,
.obj_article_details .item.references h2,
.obj_article_details .item.keywords h2 {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sjoranm-line);
    color: var(--sjoranm-navy);
}

.obj_article_details .item { margin-top: 30px; }

/* =================================================================
   10. GALLEYS / BUTTONS / FORMS / TABLES
   ================================================================= */

.obj_galley_link,
.cmp_button,
.pkp_button,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    border-radius: 3px;
}

.obj_galley_link {
    color: var(--sjoranm-petrol) !important;
    border-color: var(--sjoranm-petrol) !important;
    background: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
}

.obj_galley_link:hover,
.obj_galley_link:focus {
    color: #ffffff !important;
    background: var(--sjoranm-petrol) !important;
    border-color: var(--sjoranm-petrol) !important;
}

.cmp_button,
.pkp_button,
button:not(.close),
input[type="submit"],
input[type="button"] {
    background: var(--sjoranm-petrol);
    color: #ffffff;
    border: 1px solid var(--sjoranm-petrol);
    font-weight: 600;
}

.cmp_button:hover,
.pkp_button:hover,
button:not(.close):hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #005f66;
    border-color: #005f66;
    color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
textarea,
select {
    border: 1px solid #cfd9df;
    border-radius: 3px;
    background: #ffffff;
    color: var(--sjoranm-text);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: var(--sjoranm-petrol);
    box-shadow: 0 0 0 2px rgba(0,123,130,0.10);
}

.pkp_structure_main table {
    width: 100%;
    border-collapse: collapse;
}

.pkp_structure_main th {
    color: var(--sjoranm-navy);
    font-weight: 700;
    background: var(--sjoranm-wash);
}

.pkp_structure_main th,
.pkp_structure_main td { border-color: var(--sjoranm-line); }

/* =================================================================
   11. BREADCRUMBS / STATIC PAGE HELPERS
   ================================================================= */

.cmp_breadcrumbs {
    color: var(--sjoranm-muted);
    font-size: 13px;
}
.cmp_breadcrumbs a { color: var(--sjoranm-muted); }
.cmp_breadcrumbs a:hover,
.cmp_breadcrumbs a:focus { color: var(--sjoranm-petrol); }

.sjoranm-page {
    max-width: 920px;
    margin: 0 auto;
    color: var(--sjoranm-text);
}

.sjoranm-intro {
    margin: 0 0 42px 0;
    padding: 28px 32px;
    background: var(--sjoranm-wash);
    border-left: 5px solid var(--sjoranm-petrol);
}

.sjoranm-intro-label {
    margin: 0 0 8px 0;
    color: var(--sjoranm-petrol);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.sjoranm-intro-text {
    margin: 0 0 14px 0;
    color: var(--sjoranm-navy);
    font-size: 20px;
    line-height: 1.5;
}

.sjoranm-section {
    margin: 0 0 44px 0;
    padding: 0 0 38px 0;
    border-bottom: 1px solid var(--sjoranm-line);
}

.sjoranm-section-title {
    margin: 0 0 24px 0;
    padding: 10px 16px;
    border-left: 4px solid var(--sjoranm-petrol);
    background: #f7f9fa;
    color: var(--sjoranm-navy);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.sjoranm-info-box {
    margin: 0 0 24px 0;
    padding: 24px 26px;
    background: #f5f8f8;
    border: 1px solid #dde5e8;
    border-top: 3px solid var(--sjoranm-petrol);
}

.sjoranm-editor-box {
    margin: 0 0 22px 0;
    padding: 24px 27px;
    background: var(--sjoranm-navy);
    border-left: 5px solid #49b7bc;
    color: #d9e4ea;
}
.sjoranm-editor-box strong { color: #ffffff; }

.sjoranm-language-divider {
    margin: 70px 0 52px 0;
    padding: 30px 32px;
    background: var(--sjoranm-navy);
    border-left: 5px solid #49b7bc;
    color: #ffffff;
}

/* Subtle interaction for policy accordions. Inline page styles remain authoritative. */
.pkp_structure_main details {
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.pkp_structure_main details:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.055);
}

.pkp_structure_main summary {
    transition: color 0.15s ease;
}

/* =================================================================
   12. EDITORIAL TEAM
   ================================================================= */

.page_editorial_team .sjoranm-editor,
.page_editorial_team .editor,
.page_editorial_team [class*="editor-card"] {
    border-radius: 5px;
}

.page_editorial_team h2,
.page_editorial_team h3 { margin-top: 34px; }

/* =================================================================
   13. FOOTER / PKP BRANDING
   ================================================================= */

.pkp_structure_footer_wrapper {
    background: var(--sjoranm-navy);
    color: #d9e2e8;
}

.pkp_structure_footer { max-width: 1280px; }
.pkp_structure_footer a { color: #ffffff; }
.pkp_structure_footer a:hover,
.pkp_structure_footer a:focus { color: var(--sjoranm-teal); }

.sjoranm-footer {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--sjoranm-navy);
    color: #d9e2e8;
}

.sjoranm-footer-journal {
    color: #ffffff !important;
    font-size: 26px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

.sjoranm-footer-label {
    color: #91a3b0;
    font-size: 12px;
}

.sjoranm-footer-value { color: #ffffff; }
.sjoranm-footer-service {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.22);
}

.sjoranm-footer-trademark-name {
    color: var(--sjoranm-navy) !important;
    font-weight: 800 !important;
}

.sjoranm-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.20fr 1.35fr 0.85fr;
    gap: 34px;
}

.sjoranm-footer-column { min-width: 0; }
.sjoranm-footer-column:first-child { min-width: 170px; }
.sjoranm-footer-column h3 {
    overflow-wrap: normal;
    word-break: normal;
}
.sjoranm-footer-value { overflow-wrap: normal; }

.pkp_brand_footer {
    opacity: 0.32;
    transition: opacity 0.15s ease;
}

.pkp_brand_footer:hover { opacity: 0.55; }
.pkp_brand_footer img,
.pkp_brand_footer svg {
    max-width: 120px !important;
    height: auto !important;
}

/* =================================================================
   14. SMALL VISUAL REFINEMENTS
   ================================================================= */

hr {
    border: 0;
    border-top: 1px solid var(--sjoranm-line);
}

blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: var(--sjoranm-wash);
    border-left: 4px solid var(--sjoranm-petrol);
    color: #455766;
}

::selection { background: rgba(0,123,130,0.18); }

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

/* =================================================================
   15. FULL ISSUE OPEN ACCESS GALLEY FIX — retained from v1.3
   OJS may incorrectly render a full-issue galley with the "restricted"
   class even when the journal/file is publicly accessible.
   Scope is deliberately limited to full-issue galleys in issue TOCs.
   ================================================================= */

.obj_issue_toc .galleys .obj_galley_link.restricted {
    border-color: #007b82 !important;
    color: #007b82 !important;
    background: #ffffff !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted.pdf::before {
    content: "\f1c1" !important;
    color: #007b82 !important;
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    margin-right: 0.35em;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:not(.pdf)::before {
    content: "\f0f6" !important;
    color: #007b82 !important;
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    margin-right: 0.35em;
}

.obj_issue_toc .galleys .obj_galley_link.restricted .pkp_screen_reader {
    display: none !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:hover,
.obj_issue_toc .galleys .obj_galley_link.restricted:focus {
    border-color: #007b82 !important;
    background: #007b82 !important;
    color: #ffffff !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:hover::before,
.obj_issue_toc .galleys .obj_galley_link.restricted:focus::before {
    color: #ffffff !important;
}

/* =================================================================
   16. RESPONSIVE
   ================================================================= */

@media (max-width: 1050px) {
    .sjoranm-home-facts,
    .sjoranm-landing-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sjoranm-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 36px;
    }
}

@media (max-width: 992px) {
    .pkp_site_name {
        padding-top: 14px;
        padding-bottom: 13px;
    }

    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        max-width: 100%;
    }

    .sjoranm-intro { padding: 24px 26px; }
}

@media (max-width: 768px) {
    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .pkp_structure_main,
    .pkp_structure_content.has_sidebar .pkp_structure_main {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body { font-size: 15px; }
    .pkp_site_name .is_text { font-size: 21px; }
    .pkp_structure_main h1,
    .page h1 { font-size: 28px; }
    .pkp_structure_main h2,
    .page h2 { font-size: 22px; }

    .obj_article_summary {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }

    .sjoranm-intro { padding: 22px 20px; }
    .sjoranm-intro-text { font-size: 18px; }
    .sjoranm-section-title {
        font-size: 20px;
        padding: 9px 13px;
    }
    .sjoranm-editor-box { padding: 22px 20px; }
    .sjoranm-language-divider {
        margin-top: 50px;
        padding: 24px 22px;
    }

    .sjoranm-home-about-hero { padding: 24px 21px; }
    .sjoranm-home-about-title { font-size: 25px; }

    .sjoranm-home-facts,
    .sjoranm-landing-facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sjoranm-home-fact,
    .sjoranm-landing-fact {
        min-height: auto;
        padding: 14px 16px;
    }

    .sjoranm-home-actions,
    .sjoranm-landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sjoranm-home-action,
    .sjoranm-landing-action {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 0.2rem;
    }

    .sjoranm-footer-grid { grid-template-columns: 1fr; }
    .sjoranm-footer-journal { font-size: 22px !important; }
}

@media (max-width: 650px) {
    .sjoranm-landing-hero { padding: 27px 22px 25px 22px; }
    .sjoranm-landing-title { font-size: 30px; }
    .sjoranm-landing-lead { font-size: 15px; }

    /* Editorial Board: convert inline two-column profile cards to one column. */
    .pkp_structure_main details > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .pkp_structure_main details > summary {
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
    }

    .pkp_structure_main details > summary > span:last-child {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }
}

/* =================================================================
   17. ACCESSIBILITY — REDUCED MOTION
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .sjoranm-home-action:hover,
    .sjoranm-landing-action:hover {
        transform: none !important;
    }
}

/* END SJORANM v1.4 */

/* SJORANM header wordmark v1.8 – 13 September 2026.
   Existing stylesheet preserved above. SVG uses paths; no font dependency. */
.pkp_structure_head .pkp_site_name_wrapper { height: auto; }
.pkp_structure_head .pkp_site_name {
  position: relative; left: auto; right: auto; width: auto;
  overflow: visible; white-space: normal;
}
.pkp_structure_head .pkp_site_name > a.is_img {
  display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px);
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.pkp_structure_head .pkp_site_name > a.is_img > img {
  display: block; flex: 0 0 auto; width: 200px; height: auto;
  max-width: 28%; max-height: none; object-fit: contain;
}
.pkp_structure_head .pkp_site_name > a.is_img::after {
  content: ""; display: block; flex: 1 1 0; min-width: 0;
  max-width: 377px; aspect-ratio: 1060 / 306;
  transform: translateY(-0.71px);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201060%20306%22%20preserveAspectRatio%3D%22xMidYMid%20meet%22%20role%3D%22img%22%20aria-labelledby%3D%22wordmark-title%22%3E%3Ctitle%20id%3D%22wordmark-title%22%3ESJORANM%20%E2%80%94%20Swiss%20Journal%20of%20Radiology%20and%20Nuclear%20Medicine%3C%2Ftitle%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M10.0%20137.6690837178642%2039.5988824585911%20134.14370468029006Q42.271003791658345%20152.40013183915622%2050.4415286369986%20160.96176664469345Q58.61205348233885%20169.52340145023072%2072.48652963480343%20169.52340145023072Q87.18319696667331%20169.52340145023072%2094.63430453003392%20161.90606460118656Q102.08541209339452%20154.2887277521424%20102.08541209339452%20144.09030982201713Q102.08541209339452%20137.54317732366513%2098.95080822191179%20132.9475939353988Q95.81620435042905%20128.3520105471325%2088.00538814607862%20124.95253790375742Q82.66114547994411%20122.68622280817402%2063.647974456196366%20116.89452867501647Q39.187786868888445%20109.46605141727092%2029.321492716024743%2098.63810151615029Q15.447016563560167%2083.40342781806196%2015.447016563560167%2061.49571522742255Q15.447016563560167%2047.394199077125904%2021.9731590500898%2035.11832564271589Q28.499301536619434%2022.842452208305872%2040.78078227898622%2016.421226104152936Q53.06226302135302%2010.0%2070.43105168629016%2010.0Q98.79664737577329%2010.0%20113.13360606665336%2025.23467369808833Q127.47056475753342%2040.46934739617666%20128.18998203951307%2065.90243902439025L97.76890840151665%2067.53922214897824Q95.81620435042905%2053.31179960448253%2089.39283576132507%2047.07943309162822Q82.9694671722211%2040.847066578773905%2070.12272999401317%2040.847066578773905Q56.86489722610257%2040.847066578773905%2049.36240271402913%2047.52010547132497Q44.53202953502294%2051.8009228740936%2044.53202953502294%2058.977587343441Q44.53202953502294%2065.524719841793%2049.05408102175214%2070.18325642715887Q54.8094192775893%2076.10085695451549%2077.00858112153261%2082.52208305866841Q99.20774296547594%2088.94330916282135%20109.84484134903212%2095.80520764667105Q120.4819397325883%20102.66710613052076%20126.49421273198962%20114.56526038233355Q132.50648573139094%20126.46341463414633%20132.50648573139094%20143.96440342781807Q132.50648573139094%20159.82860909690177%20125.31231291159449%20173.67831245880024Q118.11814009179804%20187.52801582069873%20104.9630812213131%20194.26400791034936Q91.80802235082817%20201.0%2072.17820794252644%20201.0Q43.60706445819197%20201.0%2028.293753741768107%20184.8210283454186Q12.980443025344242%20168.64205669083717%2010.0%20137.6690837178642Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M212.46457792855716%2013.147659854976922H242.7828776691279V129.9887936717205Q242.7828776691279%20152.90375741595253%20239.49411295150668%20165.2425840474621Q235.07483536220315%20181.35860250494397%20223.46138495310316%20191.11634805537244Q211.84793454400318%20200.8740936058009%20192.83476352025542%20200.8740936058009Q170.53282777888646%20200.8740936058009%20158.50828178008382%20185.57646671061303Q146.48373578128118%20170.27883981542516%20146.38096188385552%20140.69083717864206L175.05487926561565%20136.66183256427158Q175.56874875274397%20152.5260382333553%20178.8575134703652%20159.0731707317073Q183.79066054679703%20169.0197758734344%20193.86250249451206%20169.0197758734344Q204.03711833965275%20169.0197758734344%20208.25084813410496%20161.90606460118656Q212.46457792855716%20154.7923533289387%20212.46457792855716%20132.38101516150294Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M268.9902215126721%20106.57020435069215Q268.9902215126721%2078.36717205009887%20275.8760726401916%2059.22940013183916Q281.01476751147476%2045.12788398154251%20289.90470963879466%2033.922214897824645Q298.79465176611455%2022.71654581410678%20309.3803632009579%2017.302570863546464Q323.4603871482738%2010.0%20341.85691478746753%2010.0Q375.1556575533825%2010.0%20395.1451806026741%2035.3071852340145Q415.13470365196565%2060.614370468028994%20415.13470365196565%20105.68885959129861Q415.13470365196565%20150.385629531971%20395.2993414488126%20175.62986156888596Q375.4639792456595%20200.8740936058009%20342.2680103771702%20200.8740936058009Q308.66094591897826%20200.8740936058009%20288.8255837158252%20175.75576796308502Q268.9902215126721%20150.63744232036913%20268.9902215126721%20106.57020435069215ZM300.3362602274995%20105.31114040870138Q300.3362602274995%20136.66183256427158%20312.1552584314508%20152.840804218853Q323.9742566354021%20169.0197758734344%20342.1652364797445%20169.0197758734344Q360.356216324087%20169.0197758734344%20372.0210536818998%20152.96671061305207Q383.6858910397126%20136.91364535266973%20383.6858910397126%20104.80751483190507Q383.6858910397126%2073.07910349373763%20372.3293753741768%2057.46671061305208Q360.97285970864095%2041.854317732366525%20342.1652364797445%2041.854317732366525Q323.35761325084815%2041.854317732366525%20311.8469367391738%2057.655570204350695Q300.3362602274995%2073.45682267633487%20300.3362602274995%20105.31114040870138Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M438.9782478547196%20197.726433750824V13.147659854976922H503.006385950908Q527.1582518459389%2013.147659854976922%20538.103671921772%2018.120962425840474Q549.0490919976053%2023.094264996704027%20555.6266214328477%2035.81081081081081Q562.2041508680902%2048.52735662491759%20562.2041508680902%2064.89518787079763Q562.2041508680902%2085.66974291364535%20552.2350828178008%2099.20468029004614Q542.2660147675115%20112.73961766644693%20522.4306525643584%20116.26499670402109Q532.2969467172221%20123.31575477916941%20538.720315306326%20131.75148319050757Q545.1436838954301%20140.18721160184575%20556.0377170225504%20161.71720500988792L574.4342446617442%20197.726433750824H538.0522849730593L516.0586709239673%20157.56229400131838Q504.3424466174416%20136.0323005932762%20500.02594292556375%20130.42946605141728Q495.7094392336859%20124.82663150955834%20490.8790660546797%20122.74917600527357Q486.0486928756735%20120.67172050098878%20475.5657553382558%20120.67172050098878H469.399321492716V197.726433750824ZM469.399321492716%2091.20962425840474H491.90680502893633Q513.7976451806027%2091.20962425840474%20519.2446617441628%2088.94330916282135Q524.691678307723%2086.67699406723797%20527.7748952304929%2081.13711272247858Q530.8581121532628%2075.59723137771918%20530.8581121532628%2067.28740936058009Q530.8581121532628%2057.97033618984838%20526.798543204949%2052.24159525379038Q522.7389742566354%2046.512854317732376%20515.3392536419876%2045.00197758734345Q511.63939333466374%2044.372445616348045%20493.1400917980443%2044.372445616348045H469.399321492716Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M726.7451606465776%20197.726433750824H693.6519656755139L680.496906805029%20155.79960448253132H620.2714029135901L607.8357613250848%20197.726433750824H575.5647575334265L634.2486529634804%2013.147659854976922H666.4168828577131ZM670.7333865495909%20124.70072511535926%20649.9730592696069%2056.2076466710613%20629.6238275793255%20124.70072511535926Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M743.1889842346836%20197.726433750824V13.147659854976922H772.7878666932747L834.4522051486729%20136.41001977587342V13.147659854976922H862.7150269407304V197.726433750824H832.1911794053083L771.4518060267411%2077.35992089650625V197.726433750824Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M894.4721612452604%20197.726433750824V13.147659854976922H940.0009978048294L967.3388545200559%20139.05405405405406L994.3683895430054%2013.147659854976922H1040.0V197.726433750824H1011.7371782079425V52.430454845089L981.8299740570744%20197.726433750824H952.5394132907603L922.7349830373179%2052.430454845089V197.726433750824Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M12.0%20261.69719042663894%2015.881620076806286%20261.372528616025Q16.15736357953023%20263.60457856399586%2017.16488791640618%20265.03511966701353Q18.17241225328213%20266.46566077003126%2020.29351612038939%20267.3483350676379Q22.41461998749665%20268.2310093652446%2025.06599982138073%20268.2310093652446Q27.420425113869786%20268.2310093652446%2029.223363400910955%20267.5613943808533Q31.026301687952127%20266.891779396462%2031.90655979280164%20265.7250260145682Q32.786817897651154%20264.55827263267435%2032.786817897651154%20263.17845993756504Q32.786817897651154%20261.7783558792924%2031.938376350808248%20260.7333506763788Q31.089934803965345%20259.6883454734652%2029.138519246226668%20258.97814776274714Q27.887067964633385%20258.5114464099896%2023.60243815307672%20257.5273152965661Q19.31780834152005%20256.54318418314256%2017.599714209163167%20255.6706555671176Q15.372555148700544%20254.55463059313217%2014.280186657140305%20252.9008844953174Q13.187818165580065%20251.24713839750262%2013.187818165580065%20249.1977107180021Q13.187818165580065%20246.94536940686785%2014.524113601857639%20244.9872528616025Q15.860409038135213%20243.02913631633717%2018.426944717334997%20242.0145681581686Q20.993480396534785%20241.00000000000003%2024.13271411985353%20241.00000000000003Q27.590113423238368%20241.00000000000003%2030.230887737786908%20242.06529656607702Q32.871662052335445%20243.13059313215402%2034.29280164329731%20245.2003121748179Q35.713941234259174%20247.2700312174818%2035.81999642761454%20249.88761706555673L31.874743234795034%20250.17169614984394Q31.556577654728944%20247.3511966701353%2029.721822809681164%20245.91050988553593Q27.887067964633385%20244.46982310093654%2024.302402429222113%20244.46982310093654Q20.569259623113332%20244.46982310093654%2018.86177101009199%20245.77861602497399Q17.154282397070645%20247.08740894901146%2017.154282397070645%20248.93392299687827Q17.154282397070645%20250.53694068678462%2018.363311601321783%20251.57180020811657Q19.55112976690185%20252.60665972944852%2024.56754041261052%20253.69224765868887Q29.58395105831919%20254.77783558792925%2031.45052246137358%20255.58949011446413Q34.165535411270874%20256.786680541103%2035.45940877020631%20258.6230489073881Q36.75328212914174%20260.4594172736733%2036.75328212914174%20262.8537981269511Q36.75328212914174%20265.22788761706556%2035.33214253817987%20267.3280437044745Q33.91100294721801%20269.42819979188346%2031.249017593998396%20270.5949531737773Q28.58703224077878%20271.7617065556712%2025.25689916942038%20271.7617065556712Q21.03590247387693%20271.7617065556712%2018.183017772617664%20270.58480749219564Q15.330133071358398%20269.4079084287201%2013.707488613021344%20267.04396462018735Q12.08484415468429%20264.6800208116546%2012.0%20261.69719042663894Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M46.04371706707153%20271.2544224765869%2039.15012949897294%20249.70499479708639H43.095382691792445L46.68004822720371%20262.1436004162331L48.01634366348129%20266.7700312174818Q48.10118781816558%20266.4250780437045%2049.18295079039028%20262.32622268470345L52.767616325801555%20249.70499479708639H56.691658479949986L60.06421362865053%20262.2044745057232L61.18839867821738%20266.32362122788766L62.48227203715281%20262.16389177939647L66.34268107528803%20249.70499479708639H70.05461284272573L63.01254800392962%20271.2544224765869H59.04608377243905L55.46141823702777%20258.34911550468263L54.591765651513796%20254.6763787721124L50.031392337233186%20271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M73.27869072072878%20245.7075962539022V241.50728407908431H77.09667768152184V245.7075962539022ZM73.27869072072878%20271.2544224765869V249.70499479708639H77.09667768152184V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M81.38130749307851%20264.8220603537981%2085.15687237652942%20264.25390218522375Q85.47503795659551%20266.4250780437045%2086.92799410556398%20267.5816857440167Q88.38095025453246%20268.73829344432886%2090.98990801107439%20268.73829344432886Q93.6200768062874%20268.73829344432886%2094.89273912655176%20267.7135796045786Q96.1654014468161%20266.68886576482834%2096.1654014468161%20265.3090530697191Q96.1654014468161%20264.0712799167534%2095.04121639724926%20263.3610822060354Q94.25640796641957%20262.8740894901145%2091.1383852817719%20262.12330905306976Q86.93859962489952%20261.1087408949012%2085.31595516656247%20260.3681061394381Q83.69331070822541%20259.62747138397503%2082.85547468071805%20258.3186784599376Q82.01763865321068%20257.00988553590014%2082.01763865321068%20255.42715920915714Q82.01763865321068%20253.98647242455777%2082.70699741002053%20252.75884495317382Q83.3963561668304%20251.53121748178984%2084.58417433241047%20250.71956295525496Q85.47503795659551%20250.09053069719045%2087.01283826024829%20249.65426638917796Q88.55063856390105%20249.21800208116548%2090.31115477360007%20249.21800208116548Q92.96253460748414%20249.21800208116548%2094.96697776190051%20249.94849115504684Q96.97142091631687%20250.67898022892822%2097.92591765651514%20251.92689906347556Q98.8804143967134%20253.17481789802292%2099.24100205412164%20255.26482830385018L95.50785924801286%20255.75182101977109Q95.25332678395999%20254.08792924037462%2094.03369206037331%20253.15452653485954Q92.81405733678665%20252.22112382934446%2090.586898276324%20252.22112382934446Q87.95672948111101%20252.22112382934446%2086.83254443154416%20253.0530697190427Q85.70835938197732%20253.8850156087409%2085.70835938197732%20255.00104058272635Q85.70835938197732%20255.71123829344435%2086.17500223274091%20256.2793964620187Q86.64164508350451%20256.86784599375653%2087.63856390104492%20257.2533818938606Q88.21126194516388%20257.4562955254943%2091.01111904974547%20258.18678459937564Q95.06242743592034%20259.2216441207076%2096.66386085558632%20259.88111342351715Q98.2652942752523%20260.54058272632676%2099.17736893810843%20261.7986472424558Q100.08944360096454%20263.0567117585848%20100.08944360096454%20264.923517169615Q100.08944360096454%20266.7497398543184%2098.97586407073322%20268.36290322580646Q97.86228454050192%20269.9760665972945%2095.76239171206572%20270.8587408949012Q93.66249888362954%20271.7414151925078%2091.01111904974547%20271.7414151925078Q86.62043404483343%20271.7414151925078%2084.31903634902206%20269.9963579604579Q82.01763865321068%20268.25130072840795%2081.38130749307851%20264.8220603537981Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M103.10141109225687%20264.8220603537981%20106.87697597570778%20264.25390218522375Q107.19514155577387%20266.4250780437045%20108.64809770474236%20267.5816857440167Q110.10105385371082%20268.73829344432886%20112.71001161025275%20268.73829344432886Q115.34018040546576%20268.73829344432886%20116.61284272573012%20267.7135796045786Q117.88550504599448%20266.68886576482834%20117.88550504599448%20265.3090530697191Q117.88550504599448%20264.0712799167534%20116.76131999642762%20263.3610822060354Q115.97651156559793%20262.8740894901145%20112.85848888095026%20262.12330905306976Q108.65870322407788%20261.1087408949012%20107.03605876574082%20260.3681061394381Q105.41341430740377%20259.62747138397503%20104.5755782798964%20258.3186784599376Q103.73774225238904%20257.00988553590014%20103.73774225238904%20255.42715920915714Q103.73774225238904%20253.98647242455777%20104.4271010091989%20252.75884495317382Q105.11645976600876%20251.53121748178984%20106.30427793158883%20250.71956295525496Q107.19514155577387%20250.09053069719045%20108.73294185942663%20249.65426638917796Q110.2707421630794%20249.21800208116548%20112.03125837277842%20249.21800208116548Q114.6826382066625%20249.21800208116548%20116.68708136107887%20249.94849115504684Q118.69152451549523%20250.67898022892822%20119.6460212556935%20251.92689906347556Q120.60051799589176%20253.17481789802292%20120.9611056533%20255.26482830385018L117.22796284719122%20255.75182101977109Q116.97343038313835%20254.08792924037462%20115.75379565955167%20253.15452653485954Q114.53416093596499%20252.22112382934446%20112.30700187550238%20252.22112382934446Q109.67683308028937%20252.22112382934446%20108.55264803072252%20253.0530697190427Q107.42846298115568%20253.8850156087409%20107.42846298115568%20255.00104058272635Q107.42846298115568%20255.71123829344435%20107.89510583191927%20256.2793964620187Q108.36174868268287%20256.86784599375653%20109.35866750022328%20257.2533818938606Q109.93136554434224%20257.4562955254943%20112.73122264892382%20258.18678459937564Q116.7825310350987%20259.2216441207076%20118.38396445476468%20259.88111342351715Q119.98539787443066%20260.54058272632676%20120.89747253728677%20261.7986472424558Q121.8095472001429%20263.0567117585848%20121.8095472001429%20264.923517169615Q121.8095472001429%20266.7497398543184%20120.6959676699116%20268.36290322580646Q119.58238813968028%20269.9760665972945%20117.4824953112441%20270.8587408949012Q115.3826024828079%20271.7414151925078%20112.73122264892382%20271.7414151925078Q108.34053764401179%20271.7414151925078%20106.03913994820041%20269.9963579604579Q103.73774225238904%20268.25130072840795%20103.10141109225687%20264.8220603537981Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M136.80575154059125%20262.81321540062436%20140.51768330802895%20262.32622268470345Q140.66616057872645%20265.73517169614985%20141.85397874430652%20266.99323621227893Q143.04179690988659%20268.25130072840795%20145.14168973832278%20268.25130072840795Q146.69009556131107%20268.25130072840795%20147.81428061087792%20267.571540062435Q148.93846566044476%20266.891779396462%20149.3626864338662%20265.7250260145682Q149.78690720728767%20264.55827263267435%20149.78690720728767%20262.00156087408953V241.50728407908431H153.90184870947576V261.7783558792924Q153.90184870947576%20265.5119667013528%20152.95795748861303%20267.5613943808533Q152.0140662677503%20269.6108220603538%20149.9672010359918%20270.6862643080125Q147.92033580423328%20271.7617065556712%20145.16290077699384%20271.7617065556712Q141.06917031347683%20271.7617065556712%20138.8950388496919%20269.509365244537Q136.72090738590694%20267.2570239334027%20136.80575154059125%20262.81321540062436Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M158.71675448780923%20260.4797086368367Q158.71675448780923%20254.49375650364206%20162.19536482986516%20251.6123829344433Q165.1012771278021%20249.21800208116548%20169.2798517460034%20249.21800208116548Q173.9250692149683%20249.21800208116548%20176.8734035902474%20252.12981269510928Q179.8217379655265%20255.04162330905308%20179.8217379655265%20260.1753381893861Q179.8217379655265%20264.3350676378772%20178.51725908725552%20266.7193028095734Q177.21278020898455%20269.10353798126954%20174.72048316513352%20270.4224765868887Q172.22818612128248%20271.7414151925078%20169.2798517460034%20271.7414151925078Q164.5497901223542%20271.7414151925078%20161.63327230508173%20268.8397502601457Q158.71675448780923%20265.9380853277836%20158.71675448780923%20260.4797086368367ZM162.64079664195768%20260.4797086368367Q162.64079664195768%20264.61914672216443%20164.52857908368316%20266.6787200832466Q166.4163615254086%20268.73829344432886%20169.2798517460034%20268.73829344432886Q172.12213092792712%20268.73829344432886%20174.00991336965257%20266.66857440166496Q175.89769581137804%20264.59885535900105%20175.89769581137804%20260.3579604578564Q175.89769581137804%20256.36056191467225%20173.99930785031705%20254.30098855359003Q172.10091988925606%20252.24141519250782%20169.2798517460034%20252.24141519250782Q166.4163615254086%20252.24141519250782%20164.52857908368316%20254.29084287200834Q162.64079664195768%20256.34027055150887%20162.64079664195768%20260.4797086368367Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M199.06015004018934%20271.2544224765869V268.08896982310097Q196.42998124497635%20271.7414151925078%20191.91203000803787%20271.7414151925078Q189.91819237295704%20271.7414151925078%20188.18949272126463%20271.01092611862646Q186.46079306957222%20270.2804370447451%20185.62295704206485%20269.17455775234134Q184.78512101455746%20268.0686784599376%20184.44574439582033%20266.46566077003126Q184.21242297043852%20265.39021852237255%20184.21242297043852%20263.0567117585848V249.70499479708639H188.0304099312316V261.6566077003122Q188.0304099312316%20264.5176899063476%20188.2637313566134%20265.5119667013528Q188.6243190140216%20266.95265348595217%20189.7909261409306%20267.7744536940687Q190.9575332678396%20268.59625390218525%20192.67562740019648%20268.59625390218525Q194.39372153255337%20268.59625390218525%20195.89970527819952%20267.75416233090533Q197.40568902384567%20266.9120707596254%20198.0314146646423%20265.46123829344435Q198.65714030543896%20264.0104058272633%20198.65714030543896%20261.25078043704474V249.70499479708639H202.47512726623202V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M208.41421809413237%20271.2544224765869V249.70499479708639H211.85040635884613V252.9719042663892Q213.16549075645264%20250.67898022892822%20214.27907028668395%20249.94849115504684Q215.39264981691525%20249.21800208116548%20216.72894525319282%20249.21800208116548Q218.65914977226043%20249.21800208116548%20220.65298740734127%20250.394901144641L219.33790300973476%20253.78355879292405Q217.93797445744397%20252.99219562955255%20216.53804590515318%20252.99219562955255Q215.2865946235599%20252.99219562955255%20214.2896758060195%20253.71253902185225Q213.29275698847906%20254.43288241415195%20212.86853621505762%20255.71123829344435Q212.23220505492543%20257.65920915712803%20212.23220505492543%20259.97242455775233V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M222.92256854514602%20271.2544224765869V249.70499479708639H226.35875680985978V252.76899063475548Q228.84044833437528%20249.21800208116548%20233.52808788068234%20249.21800208116548Q235.5643475931053%20249.21800208116548%20237.27183620612664%20249.9180541103018Q238.979324819148%20250.6181061394381%20239.8277663659909%20251.7544224765869Q240.6762079128338%20252.8907388137357%20241.01558453157097%20254.45317377731533Q241.22769491828168%20255.4677419354839%20241.22769491828168%20258.00416233090533V271.2544224765869H237.40970795748862V258.14620187304894Q237.40970795748862%20255.91415192507807%20236.9642761453961%20254.80827263267432Q236.51884433330358%20253.70239334027056%20235.3840537644012%20253.04292403746098Q234.2492631954988%20252.38345473465142%20232.72206841118157%20252.38345473465142Q230.2827989640082%20252.38345473465142%20228.51167723497366%20253.86472424557755Q226.74055550593908%20255.34599375650367%20226.74055550593908%20259.4854318418314V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M261.78119139055104%20268.59625390218525Q259.6600875234438%20270.3210197710718%20257.6980664463696%20271.0312174817898Q255.73604536929534%20271.7414151925078%20253.48767527016165%20271.7414151925078Q249.77574350272394%20271.7414151925078%20247.7819058676431%20270.00650364203955Q245.7880682325623%20268.2715920915713%20245.7880682325623%20265.5728407908429Q245.7880682325623%20263.9901144640999%20246.54106010538538%20262.68132154006247Q247.29405197820844%20261.372528616025%20248.5136867017951%20260.5811654526535Q249.7333214253818%20259.789802289282%20251.26051620969903%20259.3839750260146Q252.38470125926588%20259.09989594172737%20254.65428239707066%20258.83610822060353Q259.27828882736446%20258.3085327783559%20261.46302581048496%20257.5780437044745Q261.48423684915605%20256.82726326742977%20261.48423684915605%20256.6243496357961Q261.48423684915605%20254.3922996878252%20260.4024738769313%20253.4791883454735Q258.9389122086273%20252.24141519250782%20256.05421094936145%20252.24141519250782Q253.36040903813523%20252.24141519250782%20252.07714119853534%20253.14438085327785Q250.79387335893543%20254.0473465140479%20250.17875323747433%20256.34027055150887L246.44561043136554%20255.85327783558796Q246.95467535947128%20253.56035379812698%20248.12128248638027%20252.15010405827266Q249.28788961328928%20250.73985431841834%20251.49383763508084%20249.9789281997919Q253.6997856568724%20249.21800208116548%20256.60569795480933%20249.21800208116548Q259.4903992140752%20249.21800208116548%20261.29333750111635%20249.86732570239337Q263.0962757881575%20250.51664932362124%20263.9447173350004%20251.50078043704474Q264.79315888184334%20252.48491155046827%20265.1325355005805%20253.98647242455777Q265.3234348486202%20254.91987513007285%20265.3234348486202%20257.35483870967744V262.2247658688866Q265.3234348486202%20267.31789802289285%20265.5673617933375%20268.66727367325706Q265.8112887380548%20270.01664932362127%20266.5324640528713%20271.2544224765869H262.54478878270965Q261.95087969991965%20270.1181061394381%20261.78119139055104%20268.59625390218525ZM261.46302581048496%20260.4391259105099Q259.3843440207198%20261.25078043704474%20255.2269804411896%20261.81893860561917Q252.87255514870054%20262.1436004162331%20251.89684736983122%20262.5494276795005Q250.92113959096187%20262.95525494276797%20250.39086362418504%20263.73647242455775Q249.86058765740825%20264.5176899063476%20249.86058765740825%20265.471383975026Q249.86058765740825%20266.9323621227888%20251.0165892649817%20267.90634755463066Q252.17259087255516%20268.88033298647247%20254.39974993301777%20268.88033298647247Q256.60569795480933%20268.88033298647247%20258.3237920871662%20267.9570759625391Q260.0418862195231%20267.03381893860563%20260.84790568902383%20265.4308012486993Q261.46302581048496%20264.1930280957336%20261.46302581048496%20261.7783558792924Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M271.1564704831651%20271.2544224765869V241.50728407908431H274.97445744395816V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M291.5402786460659%20260.4797086368367Q291.5402786460659%20254.49375650364206%20295.0188889881218%20251.6123829344433Q297.9248012860587%20249.21800208116548%20302.10337590426%20249.21800208116548Q306.74859337322494%20249.21800208116548%20309.69692774850404%20252.12981269510928Q312.64526212378314%20255.04162330905308%20312.64526212378314%20260.1753381893861Q312.64526212378314%20264.3350676378772%20311.34078324551217%20266.7193028095734Q310.0363043672412%20269.10353798126954%20307.54400732339013%20270.4224765868887Q305.0517102795391%20271.7414151925078%20302.10337590426%20271.7414151925078Q297.3733142806108%20271.7414151925078%20294.4567964633384%20268.8397502601457Q291.5402786460659%20265.9380853277836%20291.5402786460659%20260.4797086368367ZM295.4643208002143%20260.4797086368367Q295.4643208002143%20264.61914672216443%20297.35210324193974%20266.6787200832466Q299.23988568366525%20268.73829344432886%20302.10337590426%20268.73829344432886Q304.94565508618376%20268.73829344432886%20306.83343752790927%20266.66857440166496Q308.7212199696347%20264.59885535900105%20308.7212199696347%20260.3579604578564Q308.7212199696347%20256.36056191467225%20306.8228320085737%20254.30098855359003Q304.9244440475127%20252.24141519250782%20302.10337590426%20252.24141519250782Q299.23988568366525%20252.24141519250782%20297.35210324193974%20254.29084287200834Q295.4643208002143%20256.34027055150887%20295.4643208002143%20260.4797086368367Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M318.0328659462356%20271.2544224765869V252.5457856399584H314.66031079753503V249.70499479708639H318.0328659462356V247.4120707596254Q318.0328659462356%20245.24089490114466%20318.435875680986%20244.18574401664935Q318.98736268643387%20242.76534859521334%20320.3766857193891%20241.88267429760668Q321.76600875234436%20241.00000000000003%20324.26891131553094%20241.00000000000003Q325.8809502545325%20241.00000000000003%20327.8323658122711%20241.3652445369407L327.2596677681522%20244.55098855359003Q326.0718496025721%20244.3480749219563%20325.0112976690185%20244.3480749219563Q323.27199249799054%20244.3480749219563%20322.5508171831741%20245.05827263267432Q321.8296418683576%20245.76847034339232%20321.8296418683576%20247.71644120707597V249.70499479708639H326.22032687326964V252.5457856399584H321.8296418683576V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M341.81044029650803%20271.2544224765869V241.50728407908431H355.5976154327052Q359.7549790122354%20241.50728407908431%20361.91850495668484%20242.3087929240375Q364.08203090113426%20243.11030176899067%20365.37590426006966%20245.1394380853278Q366.6697776190051%20247.16857440166496%20366.6697776190051%20249.6238293444329Q366.6697776190051%20252.78928199791886%20364.5274627132268%20254.96045785639961Q362.38514780744845%20257.13163371488037%20357.90961864785214%20257.7200832466181Q359.5428686255247%20258.47086368366286%20360.39131017236764%20259.20135275754427Q362.1942484594088%20260.7840790842872%20363.8062873984103%20263.15816857440166L369.2151022595338%20271.2544224765869H364.0396088237921L359.92466732160403%20265.06555671175863Q358.12172903456286%20262.3870967741936%20356.95512190765385%20260.9667013527576Q355.7885147807449%20259.54630593132157%20354.8658345985532%20258.9781477627472Q353.94315441636155%20258.40998959417277%20352.98865767616326%20258.18678459937564Q352.2886934000179%20258.0447450572321%20350.69786549968745%20258.0447450572321H345.9253817986961V271.2544224765869ZM345.9253817986961%20254.63579604578567H354.7703849245334Q357.59145306778606%20254.63579604578567%20359.1822809681165%20254.07778355879293Q360.7731088684469%20253.51977107180022%20361.60033937661876%20252.29214360041624Q362.4275698847906%20251.06451612903228%20362.4275698847906%20249.6238293444329Q362.4275698847906%20247.51352757544225%20360.8261364651246%20246.15400624349638Q359.2247030454586%20244.79448491155048%20355.7673037420738%20244.79448491155048H345.9253817986961Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M387.3293292846298%20268.59625390218525Q385.20822541752256%20270.3210197710718%20383.24620434044834%20271.0312174817898Q381.28418326337413%20271.7414151925078%20379.03581316424044%20271.7414151925078Q375.32388139680273%20271.7414151925078%20373.33004376172187%20270.00650364203955Q371.33620612664106%20268.2715920915713%20371.33620612664106%20265.5728407908429Q371.33620612664106%20263.9901144640999%20372.08919799946415%20262.68132154006247Q372.84218987228724%20261.372528616025%20374.0618245958739%20260.5811654526535Q375.28145931946057%20259.789802289282%20376.80865410377777%20259.3839750260146Q377.9328391533446%20259.09989594172737%20380.2024202911494%20258.83610822060353Q384.8264267214432%20258.3085327783559%20387.0111637045637%20257.5780437044745Q387.0323747432348%20256.82726326742977%20387.0323747432348%20256.6243496357961Q387.0323747432348%20254.3922996878252%20385.9506117710101%20253.4791883454735Q384.48705010270606%20252.24141519250782%20381.6023488434402%20252.24141519250782Q378.908546932214%20252.24141519250782%20377.6252790926141%20253.14438085327785Q376.3420112530142%20254.0473465140479%20375.7268911315531%20256.34027055150887L371.9937483254443%20255.85327783558796Q372.5028132535501%20253.56035379812698%20373.6694203804591%20252.15010405827266Q374.83602750736804%20250.73985431841834%20377.0419755291596%20249.9789281997919Q379.24792355095116%20249.21800208116548%20382.1538358488881%20249.21800208116548Q385.03853710815395%20249.21800208116548%20386.8414753951951%20249.86732570239337Q388.6444136822363%20250.51664932362124%20389.49285522907917%20251.50078043704474Q390.3412967759221%20252.48491155046827%20390.68067339465927%20253.98647242455777Q390.87157274269896%20254.91987513007285%20390.87157274269896%20257.35483870967744V262.2247658688866Q390.87157274269896%20267.31789802289285%20391.1154996874163%20268.66727367325706Q391.3594266321336%20270.01664932362127%20392.0806019469501%20271.2544224765869H388.0929266767884Q387.4990175939984%20270.1181061394381%20387.3293292846298%20268.59625390218525ZM387.0111637045637%20260.4391259105099Q384.9324819147986%20261.25078043704474%20380.77511833526836%20261.81893860561917Q378.4206930427793%20262.1436004162331%20377.44498526391%20262.5494276795005Q376.4692774850406%20262.95525494276797%20375.9390015182638%20263.73647242455775Q375.408725551487%20264.5176899063476%20375.408725551487%20265.471383975026Q375.408725551487%20266.9323621227888%20376.56472715906045%20267.90634755463066Q377.7207287666339%20268.88033298647247%20379.94788782709657%20268.88033298647247Q382.1538358488881%20268.88033298647247%20383.871929981245%20267.9570759625391Q385.5900241136019%20267.03381893860563%20386.3960435831026%20265.4308012486993Q387.0111637045637%20264.1930280957336%20387.0111637045637%20261.7783558792924Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M411.4038581762972%20271.2544224765869V268.5353798126951Q409.26154327051887%20271.7414151925078%20405.10417969098864%20271.7414151925078Q402.4103777797624%20271.7414151925078%20400.15140216129316%20270.3210197710718Q397.89242654282396%20268.9006243496358%20396.6515807805662%20266.35405827263264Q395.41073501830846%20263.80749219562955%20395.41073501830846%20260.5Q395.41073501830846%20257.273673257024%20396.5349200678753%20254.64594172736736Q397.65910511744215%20252.01821019771074%20399.90747521657585%20250.6181061394381Q402.15584531570954%20249.21800208116548%20404.93449138162003%20249.21800208116548Q406.970751094043%20249.21800208116548%20408.56157899437346%20250.03980228928202Q410.1524068947039%20250.86160249739856%20411.1493257122443%20252.1805411030177V241.50728407908431H414.9461016343663V271.2544224765869ZM399.3347771724569%20260.5Q399.3347771724569%20264.6394380853278%20401.15892649816914%20266.68886576482834Q402.9830758238814%20268.73829344432886%20405.4647673483969%20268.73829344432886Q407.9676699115834%20268.73829344432886%20409.7175806019469%20266.78017689906346Q411.4674912923104%20264.8220603537981%20411.4674912923104%20260.8043704474506Q411.4674912923104%20256.3808532778356%20409.6857640439403%20254.31113423517172Q407.9040367955702%20252.24141519250782%20405.2950790390283%20252.24141519250782Q402.7497543984996%20252.24141519250782%20401.0422657854782%20254.22996878251823Q399.3347771724569%20256.21852237252864%20399.3347771724569%20260.5Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M420.97003661695095%20245.7075962539022V241.50728407908431H424.788023577744V245.7075962539022ZM420.97003661695095%20271.2544224765869V249.70499479708639H424.788023577744V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M429.17870858265604%20260.4797086368367Q429.17870858265604%20254.49375650364206%20432.65731892471194%20251.6123829344433Q435.56323122264894%20249.21800208116548%20439.7418058408502%20249.21800208116548Q444.3870233098151%20249.21800208116548%20447.3353576850942%20252.12981269510928Q450.2836920603733%20255.04162330905308%20450.2836920603733%20260.1753381893861Q450.2836920603733%20264.3350676378772%20448.97921318210234%20266.7193028095734Q447.67473430383137%20269.10353798126954%20445.18243725998036%20270.4224765868887Q442.6901402161293%20271.7414151925078%20439.7418058408502%20271.7414151925078Q435.011744217201%20271.7414151925078%20432.0952263999285%20268.8397502601457Q429.17870858265604%20265.9380853277836%20429.17870858265604%20260.4797086368367ZM433.10275073680447%20260.4797086368367Q433.10275073680447%20264.61914672216443%20434.99053317853%20266.6787200832466Q436.8783156202554%20268.73829344432886%20439.7418058408502%20268.73829344432886Q442.58408502277393%20268.73829344432886%20444.4718674644994%20266.66857440166496Q446.3596499062249%20264.59885535900105%20446.3596499062249%20260.3579604578564Q446.3596499062249%20256.36056191467225%20444.46126194516387%20254.30098855359003Q442.56287398410285%20252.24141519250782%20439.7418058408502%20252.24141519250782Q436.8783156202554%20252.24141519250782%20434.99053317853%20254.29084287200834Q433.10275073680447%20256.34027055150887%20433.10275073680447%20260.4797086368367Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M454.67437706528534%20271.2544224765869V241.50728407908431H458.4923640260784V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M462.9891042243458%20260.4797086368367Q462.9891042243458%20254.49375650364206%20466.4677145664017%20251.6123829344433Q469.3736268643387%20249.21800208116548%20473.55220148253994%20249.21800208116548Q478.19741895150486%20249.21800208116548%20481.14575332678396%20252.12981269510928Q484.09408770206306%20255.04162330905308%20484.09408770206306%20260.1753381893861Q484.09408770206306%20264.3350676378772%20482.7896088237921%20266.7193028095734Q481.4851299455211%20269.10353798126954%20478.9928329016701%20270.4224765868887Q476.50053585781905%20271.7414151925078%20473.55220148253994%20271.7414151925078Q468.82213985889075%20271.7414151925078%20465.90562204161824%20268.8397502601457Q462.9891042243458%20265.9380853277836%20462.9891042243458%20260.4797086368367ZM466.9131463784942%20260.4797086368367Q466.9131463784942%20264.61914672216443%20468.8009288202197%20266.6787200832466Q470.6887112619452%20268.73829344432886%20473.55220148253994%20268.73829344432886Q476.3944806644637%20268.73829344432886%20478.28226310618913%20266.66857440166496Q480.17004554791464%20264.59885535900105%20480.17004554791464%20260.3579604578564Q480.17004554791464%20256.36056191467225%20478.2716575868536%20254.30098855359003Q476.3732696257926%20252.24141519250782%20473.55220148253994%20252.24141519250782Q470.6887112619452%20252.24141519250782%20468.8009288202197%20254.29084287200834Q466.9131463784942%20256.34027055150887%20466.9131463784942%20260.4797086368367Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M487.86965258551396%20273.0400624349636%20491.58158435295167%20273.56763787721127Q491.81490577833347%20275.21123829344435%20492.87545771188707%20275.9620187304891Q494.29659730284897%20276.97658688865766%20496.7570777886934%20276.97658688865766Q499.40845762257743%20276.97658688865766%20500.8508082522104%20275.9620187304891Q502.29315888184334%20274.9474505723205%20502.80222380994906%20273.12122788761707Q503.0991783513441%20272.00520291363165%20503.077967312673%20268.43392299687827Q500.57506474948644%20271.2544224765869%20496.84192194337766%20271.2544224765869Q492.19670447441274%20271.2544224765869%20489.65137983388405%20268.0483870967742Q487.10605519335536%20264.8423517169615%20487.10605519335536%20260.3579604578564Q487.10605519335536%20257.273673257024%20488.2726623202643%20254.66623309053074Q489.43926944717333%20252.05879292403748%20491.65582298830043%20250.6383975026015Q493.87237652942747%20249.21800208116548%20496.86313298204874%20249.21800208116548Q500.8508082522104%20249.21800208116548%20503.43855497008127%20252.30228928199793V249.70499479708639H506.9595873894793V268.3324661810614Q506.9595873894793%20273.3647242455775%20505.8884299365901%20275.46488033298647Q504.81727248370095%20277.5650364203955%20502.4946637492185%20278.78251821019774Q500.1720550147361%20280.0%20496.77828882736446%20280.0Q492.7481914798606%20280.0%20490.2664999553451%20278.26508844953173Q487.7848084308297%20276.5301768990635%20487.86965258551396%20273.0400624349636ZM491.0300973475038%20260.0941727367326Q491.0300973475038%20264.3350676378772%20492.7906135572028%20266.2830385015609Q494.5511297669018%20268.2310093652446%20497.2025096007859%20268.2310093652446Q499.8326783959989%20268.2310093652446%20501.614405644369%20266.29318418314256Q503.3961328927391%20264.3553590010406%20503.3961328927391%20260.21592091571284Q503.3961328927391%20256.2591050988554%20501.5613780476913%20254.2502601456816Q499.7266232026435%20252.24141519250782%20497.13887648477265%20252.24141519250782Q494.59355184424396%20252.24141519250782%20492.8118245958739%20254.21982310093654Q491.0300973475038%20256.19823100936526%20491.0300973475038%20260.0941727367326Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M512.5593015986425%20279.55359001040586%20512.135080825221%20276.1243496357961Q513.3865321068143%20276.44901144641%20514.3198178083416%20276.44901144641Q515.5924801286059%20276.44901144641%20516.3560775207645%20276.04318418314256Q517.1196749129231%20275.6373569198752%20517.6075288023578%20274.90686784599376Q517.9681164597661%20274.35900104058277%20518.7741359292668%20272.187825182102Q518.8801911226221%20271.8834547346514%20519.1135125480039%20271.29500520291367L510.5654639635617%20249.70499479708639H514.6804054657498L519.3680450120568%20262.18418314255985Q520.280119674913%20264.55827263267435%20521.0012949897294%20267.17585848074924Q521.6588371885326%20264.6597294484912%20522.5709118513888%20262.26534859521337L527.3858176297223%20249.70499479708639H531.2038045905153L522.634544967402%20271.6196670135276Q521.2558274537822%20275.1706555671176%20520.4922300616237%20276.50988553590014Q519.4741002054121%20278.3158168574402%20518.1590158078056%20279.15790842872013Q516.8439314101992%20280.0%20515.0197820844869%20280.0Q513.9168080735911%20280.0%20512.5593015986425%20279.55359001040586Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M561.2174243100831%20268.59625390218525Q559.0963204429758%20270.3210197710718%20557.1342993659016%20271.0312174817898Q555.1722782888273%20271.7414151925078%20552.9239081896936%20271.7414151925078Q549.2119764222559%20271.7414151925078%20547.2181387871751%20270.00650364203955Q545.2243011520943%20268.2715920915713%20545.2243011520943%20265.5728407908429Q545.2243011520943%20263.9901144640999%20545.9772930249173%20262.68132154006247Q546.7302848977405%20261.372528616025%20547.9499196213271%20260.5811654526535Q549.1695543449139%20259.789802289282%20550.6967491292311%20259.3839750260146Q551.8209341787979%20259.09989594172737%20554.0905153166027%20258.83610822060353Q558.7145217468965%20258.3085327783559%20560.899258730017%20257.5780437044745Q560.920469768688%20256.82726326742977%20560.920469768688%20256.6243496357961Q560.920469768688%20254.3922996878252%20559.8387067964634%20253.4791883454735Q558.3751451281594%20252.24141519250782%20555.4904438688934%20252.24141519250782Q552.7966419576672%20252.24141519250782%20551.5133741180673%20253.14438085327785Q550.2301062784675%20254.0473465140479%20549.6149861570063%20256.34027055150887L545.8818433508976%20255.85327783558796Q546.3909082790033%20253.56035379812698%20547.5575154059122%20252.15010405827266Q548.7241225328213%20250.73985431841834%20550.9300705546128%20249.9789281997919Q553.1360185764044%20249.21800208116548%20556.0419308743413%20249.21800208116548Q558.9266321336072%20249.21800208116548%20560.7295704206483%20249.86732570239337Q562.5325087076895%20250.51664932362124%20563.3809502545325%20251.50078043704474Q564.2293918013754%20252.48491155046827%20564.5687684201125%20253.98647242455777Q564.7596677681522%20254.91987513007285%20564.7596677681522%20257.35483870967744V262.2247658688866Q564.7596677681522%20267.31789802289285%20565.0035947128695%20268.66727367325706Q565.2475216575868%20270.01664932362127%20565.9686969724033%20271.2544224765869H561.9810217022417Q561.3871126194516%20270.1181061394381%20561.2174243100831%20268.59625390218525ZM560.899258730017%20260.4391259105099Q558.8205769402518%20261.25078043704474%20554.6632133607217%20261.81893860561917Q552.3087880682326%20262.1436004162331%20551.3330802893632%20262.5494276795005Q550.3573725104939%20262.95525494276797%20549.8270965437171%20263.73647242455775Q549.2968205769403%20264.5176899063476%20549.2968205769403%20265.471383975026Q549.2968205769403%20266.9323621227888%20550.4528221845137%20267.90634755463066Q551.6088237920872%20268.88033298647247%20553.8359828525498%20268.88033298647247Q556.0419308743413%20268.88033298647247%20557.7600250066982%20267.9570759625391Q559.4781191390551%20267.03381893860563%20560.2841386085558%20265.4308012486993Q560.899258730017%20264.1930280957336%20560.899258730017%20261.7783558792924Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M570.6775475573814%20271.2544224765869V249.70499479708639H574.1137358220952V252.76899063475548Q576.5954273466107%20249.21800208116548%20581.2830668929178%20249.21800208116548Q583.3193266053407%20249.21800208116548%20585.0268152183621%20249.9180541103018Q586.7343038313834%20250.6181061394381%20587.5827453782263%20251.7544224765869Q588.4311869250691%20252.8907388137357%20588.7705635438064%20254.45317377731533Q588.9826739305171%20255.4677419354839%20588.9826739305171%20258.00416233090533V271.2544224765869H585.164686969724V258.14620187304894Q585.164686969724%20255.91415192507807%20584.7192551576316%20254.80827263267432Q584.273823345539%20253.70239334027056%20583.1390327766367%20253.04292403746098Q582.0042422077343%20252.38345473465142%20580.4770474234169%20252.38345473465142Q578.0377779762437%20252.38345473465142%20576.2666562472091%20253.86472424557755Q574.4955345181745%20255.34599375650367%20574.4955345181745%20259.4854318418314V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M609.4513262481021%20271.2544224765869V268.5353798126951Q607.3090113423237%20271.7414151925078%20603.1516477627936%20271.7414151925078Q600.4578458515673%20271.7414151925078%20598.1988702330981%20270.3210197710718Q595.9398946146289%20268.9006243496358%20594.6990488523711%20266.35405827263264Q593.4582030901133%20263.80749219562955%20593.4582030901133%20260.5Q593.4582030901133%20257.273673257024%20594.5823881396802%20254.64594172736736Q595.706573189247%20252.01821019771074%20597.9549432883807%20250.6181061394381Q600.2033133875144%20249.21800208116548%20602.981959453425%20249.21800208116548Q605.018219165848%20249.21800208116548%20606.6090470661784%20250.03980228928202Q608.1998749665088%20250.86160249739856%20609.1967937840493%20252.1805411030177V241.50728407908431H612.9935697061712V271.2544224765869ZM597.3822452442618%20260.5Q597.3822452442618%20264.6394380853278%20599.206394569974%20266.68886576482834Q601.0305438956863%20268.73829344432886%20603.5122354202018%20268.73829344432886Q606.0151379833884%20268.73829344432886%20607.7650486737518%20266.78017689906346Q609.5149593641154%20264.8220603537981%20609.5149593641154%20260.8043704474506Q609.5149593641154%20256.3808532778356%20607.7332321157453%20254.31113423517172Q605.9515048673751%20252.24141519250782%20603.3425471108333%20252.24141519250782Q600.7972224703045%20252.24141519250782%20599.0897338572831%20254.22996878251823Q597.3822452442618%20256.21852237252864%20597.3822452442618%20260.5Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M631.5108064660177%20271.2544224765869V241.50728407908431H635.7318031615612L652.0643029382871%20264.8626430801249V241.50728407908431H656.0095561311066V271.2544224765869H651.7885594355631L635.4560596588373%20247.87877211238296V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M677.1993837635081%20271.2544224765869V268.08896982310097Q674.5692149682951%20271.7414151925078%20670.0512637313566%20271.7414151925078Q668.0574260962758%20271.7414151925078%20666.3287264445834%20271.01092611862646Q664.600026792891%20270.2804370447451%20663.7621907653836%20269.17455775234134Q662.9243547378762%20268.0686784599376%20662.5849781191391%20266.46566077003126Q662.3516566937573%20265.39021852237255%20662.3516566937573%20263.0567117585848V249.70499479708639H666.1696436545503V261.6566077003122Q666.1696436545503%20264.5176899063476%20666.4029650799322%20265.5119667013528Q666.7635527373404%20266.95265348595217%20667.9301598642494%20267.7744536940687Q669.0967669911583%20268.59625390218525%20670.8148611235152%20268.59625390218525Q672.5329552558721%20268.59625390218525%20674.0389390015183%20267.75416233090533Q675.5449227471645%20266.9120707596254%20676.1706483879611%20265.46123829344435Q676.7963740287578%20264.0104058272633%20676.7963740287578%20261.25078043704474V249.70499479708639H680.6143609895508V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M701.2951236938466%20263.3610822060354%20705.0494775386264%20263.82778355879293Q704.4343574171653%20267.5411030176899%20701.8996382959722%20269.64125910509887Q699.364919174779%20271.7414151925078%20695.6741984460123%20271.7414151925078Q691.0501920157185%20271.7414151925078%20688.2397293918013%20268.84989594172737Q685.4292667678842%20265.958376690947%20685.4292667678842%20260.56087408949014Q685.4292667678842%20257.0707596253902%20686.6382959721354%20254.45317377731533Q687.8473251763866%20251.8355879292404%20690.3184111815665%20250.52679500520293Q692.7894971867464%20249.21800208116548%20695.6954094846834%20249.21800208116548Q699.364919174779%20249.21800208116548%20701.698133428597%20250.99349635796048Q704.0313476824149%20252.76899063475548%20704.6888898812182%20256.03590010405827L700.9769581137805%20256.5837669094693Q700.4466821470037%20254.41259105098857%20699.0997811913905%20253.31685744016653Q697.7528802357774%20252.22112382934446%20695.8438867553809%20252.22112382934446Q692.9591854961151%20252.22112382934446%20691.1562472090739%20254.19953173777316Q689.3533089220327%20256.1779396462019%20689.3533089220327%20260.4594172736733Q689.3533089220327%20264.8017689906348%20691.0926140930607%20266.7700312174818Q692.8319192640886%20268.73829344432886%20695.6317763686702%20268.73829344432886Q697.8801464678039%20268.73829344432886%20699.3861302134501%20267.4193548387097Q700.8921139590962%20266.1004162330905%20701.2951236938466%20263.3610822060354Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M708.2311333392873%20271.2544224765869V241.50728407908431H712.0491203000804V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M733.3874252031794%20264.31477627471384%20737.3326783959989%20264.7814776274714Q736.3993926944717%20268.08896982310097%20733.875279092614%20269.91519250780436Q731.3511654907564%20271.7414151925078%20727.427123336608%20271.7414151925078Q722.484951326248%20271.7414151925078%20719.5896445476467%20268.82960457856404Q716.6943377690452%20265.9177939646202%20716.6943377690452%20260.662330905307Q716.6943377690452%20255.22424557752345%20719.6214611056532%20252.22112382934446Q722.5485844422612%20249.21800208116548%20727.2150129498973%20249.21800208116548Q731.7329641868357%20249.21800208116548%20734.5964544074305%20252.16024973985435Q737.4599446280254%20255.1024973985432%20737.4599446280254%20260.4391259105099Q737.4599446280254%20260.76378772112383%20737.4387335893542%20261.4131113423517H720.6395909618648Q720.8517013485755%20264.96409989594173%20722.7394837903009%20266.8511966701353Q724.6272662320264%20268.73829344432886%20727.448334375279%20268.73829344432886Q729.5482272037152%20268.73829344432886%20731.0329999106903%20267.6831425598335Q732.5177726176654%20266.6279916753382%20733.3874252031794%20264.31477627471384ZM720.8517013485755%20258.40998959417277H733.4298472805216Q733.1753148164687%20255.69094693028097%20731.9874966508886%20254.3314255983351Q730.1633473251763%20252.22112382934446%20727.2574350272395%20252.22112382934446Q724.6272662320264%20252.22112382934446%20722.8349334643208%20253.90530697190428Q721.0426006966152%20255.58949011446413%20720.8517013485755%20258.40998959417277Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M756.8256229347146%20268.59625390218525Q754.7045190676073%20270.3210197710718%20752.7424979905331%20271.0312174817898Q750.7804769134589%20271.7414151925078%20748.5321068143252%20271.7414151925078Q744.8201750468875%20271.7414151925078%20742.8263374118067%20270.00650364203955Q740.8324997767259%20268.2715920915713%20740.8324997767259%20265.5728407908429Q740.8324997767259%20263.9901144640999%20741.5854916495489%20262.68132154006247Q742.338483522372%20261.372528616025%20743.5581182459587%20260.5811654526535Q744.7777529695454%20259.789802289282%20746.3049477538626%20259.3839750260146Q747.4291328034294%20259.09989594172737%20749.6987139412342%20258.83610822060353Q754.322720371528%20258.3085327783559%20756.5074573546485%20257.5780437044745Q756.5286683933195%20256.82726326742977%20756.5286683933195%20256.6243496357961Q756.5286683933195%20254.3922996878252%20755.4469054210949%20253.4791883454735Q753.9833437527909%20252.24141519250782%20751.098642493525%20252.24141519250782Q748.4048405822988%20252.24141519250782%20747.1215727426988%20253.14438085327785Q745.838304903099%20254.0473465140479%20745.2231847816379%20256.34027055150887L741.4900419755292%20255.85327783558796Q741.9991069036348%20253.56035379812698%20743.1657140305438%20252.15010405827266Q744.3323211574528%20250.73985431841834%20746.5382691792444%20249.9789281997919Q748.7442172010359%20249.21800208116548%20751.6501294989729%20249.21800208116548Q754.5348307582387%20249.21800208116548%20756.3377690452799%20249.86732570239337Q758.1407073323211%20250.51664932362124%20758.9891488791641%20251.50078043704474Q759.837590426007%20252.48491155046827%20760.1769670447441%20253.98647242455777Q760.3678663927838%20254.91987513007285%20760.3678663927838%20257.35483870967744V262.2247658688866Q760.3678663927838%20267.31789802289285%20760.611793337501%20268.66727367325706Q760.8557202822184%20270.01664932362127%20761.5768955970349%20271.2544224765869H757.5892203268733Q756.9953112440832%20270.1181061394381%20756.8256229347146%20268.59625390218525ZM756.5074573546485%20260.4391259105099Q754.4287755648834%20261.25078043704474%20750.2714119853532%20261.81893860561917Q747.9169866928642%20262.1436004162331%20746.9412789139948%20262.5494276795005Q745.9655711351254%20262.95525494276797%20745.4352951683486%20263.73647242455775Q744.9050192015718%20264.5176899063476%20744.9050192015718%20265.471383975026Q744.9050192015718%20266.9323621227888%20746.0610208091452%20267.90634755463066Q747.2170224167187%20268.88033298647247%20749.4441814771814%20268.88033298647247Q751.6501294989729%20268.88033298647247%20753.3682236313298%20267.9570759625391Q755.0863177636867%20267.03381893860563%20755.8923372331874%20265.4308012486993Q756.5074573546485%20264.1930280957336%20756.5074573546485%20261.7783558792924Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M766.2433241046709%20271.2544224765869V249.70499479708639H769.6795123693847V252.9719042663892Q770.9945967669912%20250.67898022892822%20772.1081762972225%20249.94849115504684Q773.2217558274538%20249.21800208116548%20774.5580512637314%20249.21800208116548Q776.488255782799%20249.21800208116548%20778.4820934178798%20250.394901144641L777.1670090202733%20253.78355879292405Q775.7670804679825%20252.99219562955255%20774.3671519156917%20252.99219562955255Q773.1157006340984%20252.99219562955255%20772.118781816558%20253.71253902185225Q771.1218629990176%20254.43288241415195%20770.6976422255962%20255.71123829344435Q770.061311065464%20257.65920915712803%20770.061311065464%20259.97242455775233V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M793.1813432169331%20271.2544224765869V241.50728407908431H799.3749665088862L806.7351969277485%20262.5697190426639Q807.7533267839599%20265.5119667013528%20808.2199696347235%20266.97294484911555Q808.7502456015004%20265.3496357960458%20809.8744306510672%20262.2044745057232L817.3195052246137%20241.50728407908431H822.8555863177636V271.2544224765869H818.8891220862731V246.3569198751301L809.8532196123962%20271.2544224765869H806.1412878449585L797.1478074484237%20245.93080124869928V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M844.4272126462446%20264.31477627471384%20848.372465839064%20264.7814776274714Q847.4391801375368%20268.08896982310097%20844.9150665356792%20269.91519250780436Q842.3909529338216%20271.7414151925078%20838.4669107796732%20271.7414151925078Q833.5247387693132%20271.7414151925078%20830.6294319907117%20268.82960457856404Q827.7341252121104%20265.9177939646202%20827.7341252121104%20260.662330905307Q827.7341252121104%20255.22424557752345%20830.6612485487184%20252.22112382934446Q833.5883718853264%20249.21800208116548%20838.2548003929625%20249.21800208116548Q842.7727516299009%20249.21800208116548%20845.6362418504957%20252.16024973985435Q848.4997320710905%20255.1024973985432%20848.4997320710905%20260.4391259105099Q848.4997320710905%20260.76378772112383%20848.4785210324194%20261.4131113423517H831.6793784049299Q831.8914887916407%20264.96409989594173%20833.7792712333661%20266.8511966701353Q835.6670536750916%20268.73829344432886%20838.4881218183442%20268.73829344432886Q840.5880146467804%20268.73829344432886%20842.0727873537555%20267.6831425598335Q843.5575600607306%20266.6279916753382%20844.4272126462446%20264.31477627471384ZM831.8914887916407%20258.40998959417277H844.4696347235868Q844.2151022595339%20255.69094693028097%20843.0272840939538%20254.3314255983351Q841.2031347682415%20252.22112382934446%20838.2972224703046%20252.22112382934446Q835.6670536750916%20252.22112382934446%20833.874720907386%20253.90530697190428Q832.0823881396803%20255.58949011446413%20831.8914887916407%20258.40998959417277Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M867.7805662230954%20271.2544224765869V268.5353798126951Q865.6382513173171%20271.7414151925078%20861.4808877377869%20271.7414151925078Q858.7870858265607%20271.7414151925078%20856.5281102080914%20270.3210197710718Q854.2691345896222%20268.9006243496358%20853.0282888273645%20266.35405827263264Q851.7874430651067%20263.80749219562955%20851.7874430651067%20260.5Q851.7874430651067%20257.273673257024%20852.9116281146735%20254.64594172736736Q854.0358131642404%20252.01821019771074%20856.2841832633741%20250.6181061394381Q858.5325533625078%20249.21800208116548%20861.3111994284184%20249.21800208116548Q863.3474591408414%20249.21800208116548%20864.9382870411717%20250.03980228928202Q866.5291149415021%20250.86160249739856%20867.5260337590427%20252.1805411030177V241.50728407908431H871.3228096811646V271.2544224765869ZM855.7114852192551%20260.5Q855.7114852192551%20264.6394380853278%20857.5356345449674%20266.68886576482834Q859.3597838706796%20268.73829344432886%20861.8414753951952%20268.73829344432886Q864.3443779583818%20268.73829344432886%20866.0942886487453%20266.78017689906346Q867.8441993391087%20264.8220603537981%20867.8441993391087%20260.8043704474506Q867.8441993391087%20256.3808532778356%20866.0624720907385%20254.31113423517172Q864.2807448423684%20252.24141519250782%20861.6717870858266%20252.24141519250782Q859.1264624452979%20252.24141519250782%20857.4189738322765%20254.22996878251823Q855.7114852192551%20256.21852237252864%20855.7114852192551%20260.5Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M877.3467446637492%20245.7075962539022V241.50728407908431H881.1647316245422V245.7075962539022ZM877.3467446637492%20271.2544224765869V249.70499479708639H881.1647316245422V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M901.6758060194695%20263.3610822060354%20905.4301598642494%20263.82778355879293Q904.8150397427883%20267.5411030176899%20902.2803206215951%20269.64125910509887Q899.7456015004019%20271.7414151925078%20896.0548807716352%20271.7414151925078Q891.4308743413415%20271.7414151925078%20888.6204117174243%20268.84989594172737Q885.8099490935072%20265.958376690947%20885.8099490935072%20260.56087408949014Q885.8099490935072%20257.0707596253902%20887.0189782977584%20254.45317377731533Q888.2280075020095%20251.8355879292404%20890.6990935071894%20250.52679500520293Q893.1701795123694%20249.21800208116548%20896.0760918103064%20249.21800208116548Q899.7456015004019%20249.21800208116548%20902.0788157542199%20250.99349635796048Q904.4120300080378%20252.76899063475548%20905.0695722068411%20256.03590010405827L901.3576404394034%20256.5837669094693Q900.8273644726266%20254.41259105098857%20899.4804635170135%20253.31685744016653Q898.1335625614004%20252.22112382934446%20896.2245690810039%20252.22112382934446Q893.339867821738%20252.22112382934446%20891.5369295346968%20254.19953173777316Q889.7339912476557%20256.1779396462019%20889.7339912476557%20260.4594172736733Q889.7339912476557%20264.8017689906348%20891.4732964186836%20266.7700312174818Q893.2126015897115%20268.73829344432886%20896.0124586942932%20268.73829344432886Q898.2608287934269%20268.73829344432886%20899.766812539073%20267.4193548387097Q901.2727962847191%20266.1004162330905%20901.6758060194695%20263.3610822060354Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M908.7178708582655%20245.7075962539022V241.50728407908431H912.5358578190586V245.7075962539022ZM908.7178708582655%20271.2544224765869V249.70499479708639H912.5358578190586V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M918.3476824149326%20271.2544224765869V249.70499479708639H921.7838706796464V252.76899063475548Q924.2655622041618%20249.21800208116548%20928.9532017504689%20249.21800208116548Q930.9894614628919%20249.21800208116548%20932.6969500759133%20249.9180541103018Q934.4044386889345%20250.6181061394381%20935.2528802357774%20251.7544224765869Q936.1013217826203%20252.8907388137357%20936.4406984013575%20254.45317377731533Q936.6528087880682%20255.4677419354839%20936.6528087880682%20258.00416233090533V271.2544224765869H932.8348218272752V258.14620187304894Q932.8348218272752%20255.91415192507807%20932.3893900151827%20254.80827263267432Q931.9439582030901%20253.70239334027056%20930.8091676341878%20253.04292403746098Q929.6743770652854%20252.38345473465142%20928.1471822809681%20252.38345473465142Q925.7079128337948%20252.38345473465142%20923.9367911047602%20253.86472424557755Q922.1656693757257%20255.34599375650367%20922.1656693757257%20259.4854318418314V271.2544224765869Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M957.927480575154%20264.31477627471384%20961.8727337679735%20264.7814776274714Q960.9394480664463%20268.08896982310097%20958.4153344645887%20269.91519250780436Q955.8912208627311%20271.7414151925078%20951.9671787085827%20271.7414151925078Q947.0250066982227%20271.7414151925078%20944.1296999196213%20268.82960457856404Q941.2343931410198%20265.9177939646202%20941.2343931410198%20260.662330905307Q941.2343931410198%20255.22424557752345%20944.1615164776279%20252.22112382934446Q947.0886398142359%20249.21800208116548%20951.7550683218719%20249.21800208116548Q956.2730195588103%20249.21800208116548%20959.1365097794052%20252.16024973985435Q962.0%20255.1024973985432%20962.0%20260.4391259105099Q962.0%20260.76378772112383%20961.9787889613289%20261.4131113423517H945.1796463338394Q945.3917567205501%20264.96409989594173%20947.2795391622756%20266.8511966701353Q949.167321604001%20268.73829344432886%20951.9883897472537%20268.73829344432886Q954.0882825756898%20268.73829344432886%20955.5730552826649%20267.6831425598335Q957.05782798964%20266.6279916753382%20957.927480575154%20264.31477627471384ZM945.3917567205501%20258.40998959417277H957.9699026524962Q957.7153701884433%20255.69094693028097%20956.5275520228632%20254.3314255983351Q954.703402697151%20252.22112382934446%20951.7974903992141%20252.22112382934446Q949.167321604001%20252.22112382934446%20947.3749888362954%20253.90530697190428Q945.5826560685898%20255.58949011446413%20945.3917567205501%20258.40998959417277Z%22%2F%3E%3Crect%20x%3D%22990%22%20y%3D%22232%22%20width%3D%2254%22%20height%3D%2254%22%20fill%3D%22%23DA291C%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M1011%20243h12v10h10v12h-10v10h-12v-10h-10v-12h10z%22%2F%3E%3Cpath%20stroke%3D%22%23DA291C%22%20stroke-width%3D%222%22%20d%3D%22M10%20300H1044%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  .pkp_structure_head .pkp_site_name {
    padding: 12px 12px 18px 48px;
  }
  .pkp_structure_head .pkp_site_name > a.is_img {
    flex-direction: column; align-items: center; gap: 12px;
  }
  .pkp_structure_head .pkp_site_name > a.is_img > img {
    width: 136px; max-width: 45%;
  }
  .pkp_structure_head .pkp_site_name > a.is_img::after {
    flex: none; width: 100%; max-width: 256.37px;
    transform: none;
  }
}

/* v1.8: wordmark reduced by 8 percent; closer spacing; logo unchanged. */
