@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/fonts/Inter/static/Inter_18pt-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../assets/fonts/Inter/static/Inter_18pt-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/Inter/static/Inter_18pt-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 7 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/fontawesome/otfs/Font Awesome 7 Free-Regular-400.otf') format('opentype');
}

@font-face {
    font-family: 'Font Awesome 7 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../assets/fonts/fontawesome/otfs/Font Awesome 7 Free-Solid-900.otf') format('opentype');
}

@font-face {
    font-family: 'Font Awesome 7 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/fontawesome/otfs/Font Awesome 7 Brands-Regular-400.otf') format('opentype');
}

.fa,
.fas,
.far,
.fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa,
.fas {
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
}

.far {
    font-family: 'Font Awesome 7 Free';
    font-weight: 400;
}

.fab {
    font-family: 'Font Awesome 7 Brands';
    font-weight: 400;
}

.fa-bars::before { content: '\f0c9'; }
.fa-home::before { content: '\f015'; }
.fa-shopping-bag::before { content: '\f290'; }
.fa-book::before { content: '\f02d'; }
.fa-coins::before { content: '\f51e'; }
.fa-info-circle::before { content: '\f05a'; }
.fa-question-circle::before { content: '\f059'; }
.fa-user-shield::before { content: '\f505'; }
.fa-moon::before { content: '\f186'; }
.fa-shopping-cart::before { content: '\f07a'; }
.fa-share-alt::before { content: '\f1e0'; }
.fa-envelope::before { content: '\f0e0'; }
.fa-search::before { content: '\f002'; }
.fa-chevron-down::before { content: '\f078'; }
.fa-1::before { content: '\31'; }
.fa-2::before { content: '\32'; }
.fa-3::before { content: '\33'; }
.fa-4::before { content: '\34'; }
.fa-5::before { content: '\35'; }
.fa-flag-usa::before { content: '\f74d'; }
.fa-flag::before { content: '\f024'; }

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #8eace2;
    --primary-dark: #8eace2;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --light-color: #f7f1e8;
    --surface-color: #fbf6ef;
    --dark-color: #1e293b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* dark mode palette material dark gray */
:root.dark {
    --light-color: #121212;
    --dark-color: #ffffff;
    --secondary-color: #c9c9c9;
    --border-color: #2a2a2a;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* respect os preference by default */
@media (prefers-color-scheme: dark) {
    :root:not(.light) {
        --light-color: #121212;
        --dark-color: #ffffff;
        --secondary-color: #c9c9c9;
        --border-color: #2a2a2a;
        --shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { background: var(--surface-color); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; padding: 6px; border-radius: 12px; background: transparent; }
.logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: block;
}
.logo-text { font-size: 24px; font-weight: 700; color: var(--dark-color); letter-spacing: -0.5px; }
.logo-subtext { font-size: 12px; color: var(--secondary-color); letter-spacing: 1px; text-transform: uppercase; }

.dropdown-container { position: relative; }
.dropdown-toggle { background: none; border: 2px solid var(--border-color); border-radius: var(--border-radius); padding: 10px 20px; font-family: inherit; font-weight: 500; font-size: 16px; color: var(--dark-color); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.dropdown-toggle:hover { border-color: var(--primary-color); background-color: rgba(142, 172, 226, 0.05); }
.dropdown-toggle i { transition: transform 0.3s ease; }
.dropdown-toggle.active i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; right: 0; background: var(--surface-color); border-radius: var(--border-radius); box-shadow: var(--shadow); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); z-index: 1000; margin-top: 8px; }
.dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 14px 20px; text-decoration: none; color: var(--dark-color); border-bottom: 1px solid var(--border-color); transition: var(--transition); font-weight: 500; font-synthesis: none; }
.dropdown-menu a:visited,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active {
    font-weight: 500;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background-color: rgba(142, 172, 226, 0.05); color: var(--primary-color); padding-left: 25px; }
.dropdown-menu a i { margin-right: 10px; width: 20px; text-align: center; }
.dropdown-menu a.active { color: var(--primary-color); }

/* home page centering */
.home .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
.home .hero-text {
    text-align: center;
}
.home .animated-textbox,
.home .textbox-content {
    text-align: center;
}
.home .animated-textbox {
    margin-bottom: 60px;
}

.hero { padding: 80px 0; display: flex; align-items: center; min-height: 80vh; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { max-width: none; text-align: center; margin: 0 auto; }
.hero-title { font-size: 3.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 24px; color: var(--dark-color); letter-spacing: -0.5px; }
.hero-title span { color: var(--primary-color); position: relative; }
.hero-title span::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background-color: rgba(142, 172, 226, 0.2); z-index: -1; }
.hero-subtitle { font-size: 1.25rem; color: var(--secondary-color); margin-bottom: 40px; line-height: 1.7; }
.animated-textbox { width: 100%; background: #f1f5f9; border-radius: var(--border-radius); padding: 40px; box-shadow: var(--shadow); border-top: 5px solid var(--primary-color); position: relative; overflow: hidden; animation: fadeInUp 0.6s ease-out 0.3s both; }
.animated-textbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}
.textbox-title { font-size: 1.8rem; font-weight: 600; margin-bottom: 20px; color: var(--dark-color); animation: fadeIn 0.5s ease-out 0.5s both; }
.textbox-content { font-size: 1.1rem; line-height: 1.8; color: var(--dark-color); position: relative; overflow: visible; overflow-wrap: anywhere; z-index: 1; }
.text-message { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.text-message.active { opacity: 1; position: relative; }
.message-indicators { display: flex; justify-content: center; gap: 8px; margin-top: 25px; position: relative; z-index: 2; }
.message-indicator { width: 10px; height: 10px; border-radius: 50%; background-color: var(--border-color); cursor: pointer; transition: var(--transition); }
.message-indicator.active { background-color: var(--primary-color); transform: scale(1.2); }
.textbox-features { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; animation: fadeIn 0.5s ease-out 0.7s both; }
.feature { display: flex; align-items: center; gap: 8px; background: rgba(142, 172, 226, 0.08); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--primary-dark); }
.feature i { color: var(--primary-color); }
.hero-image { width: 50%; height: auto; display: block; margin-left: auto; margin-right: auto; border-radius: var(--border-radius); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); animation: none; }
.hero-image2 { width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto; border-radius: var(--border-radius); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); animation: none; margin-bottom: 12px; }


.cta-buttons { display: flex; gap: 16px; margin-top: 40px; justify-content: center; animation: fadeIn 0.5s ease-out 0.9s both; color: var(--dark-color); }
.btn,
.btn:link,
.btn:visited {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--border-color);
    font-family: inherit;
    color: inherit;
}
.btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; box-shadow: 0 4px 12px rgba(142, 172, 226, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(142, 172, 226, 0.4); }
.btn-secondary { background: var(--surface-color); color: var(--dark-color); border: 2px solid var(--border-color); }
.btn-secondary:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-3px); }

.page-content { padding: 80px 0; }
.page-header { text-align: center; margin-bottom: 60px; }
.page-title { font-size: 2.5rem; font-weight: 700; color: var(--dark-color); margin-bottom: 16px; }
.page-subtitle { font-size: 1.2rem; color: var(--secondary-color); max-width: 700px; margin: 0 auto; }

.textbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 60px; }
.textbox { background: var(--surface-color); border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); border-top: 5px solid var(--primary-color); transition: var(--transition); overflow-wrap: anywhere; overflow: visible; }
.textbox:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.textbox-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.textbox summary.textbox-header { list-style: none; cursor: pointer; margin-bottom: 0; }
.textbox summary.textbox-header::-webkit-details-marker { display: none; }
.textbox summary.textbox-header::after {
    content: '+';
    margin-left: auto;
    font-weight: 700;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}
.textbox[open] summary.textbox-header::after {
    content: '–';
    transform: rotate(180deg);
    color: var(--primary-color);
}
.textbox-body {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}
.textbox[open] .textbox-body {
    margin-top: 20px;
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}
.textbox-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; flex: 0 0 50px; }
.textbox-flag { font-size: 26px; line-height: 1; }
.textbox-flag-dual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    line-height: 1;
}
.textbox-flag-dual i { font-size: 18px; line-height: 1; }
.textbox h3 { font-size: 1.5rem; font-weight: 600; color: var(--dark-color); overflow-wrap: anywhere; word-break: break-word; }
.textbox p { color: var(--secondary-color); line-height: 1.8; margin-bottom: 15px; overflow-wrap: anywhere; word-break: break-word; }
.textbox ul { padding-left: 20px; margin-bottom: 20px; color: var(--secondary-color); overflow-wrap: anywhere; word-break: break-word; }
.textbox li { margin-bottom: 8px; line-height: 1.6; overflow-wrap: anywhere; word-break: break-word; }

.textbox-grid video {
    margin-top: 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    width: 80%;
    max-width: 80%;
    height: auto;
}
.step-list { display: grid; gap: 16px; margin-top: 10px; }
.step-item { background: var(--surface-color); border-radius: var(--border-radius); border: 1px solid var(--border-color); box-shadow: var(--shadow); overflow: hidden; }
.step-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--dark-color); }
.step-item summary::-webkit-details-marker { display: none; }
.step-item summary::after { content: '+'; font-weight: 700; transition: transform 0.3s ease; }
.step-item[open] summary::after { content: '–'; transform: rotate(180deg); }
.step-item .step-body { padding: 0 22px 18px; color: var(--secondary-color); line-height: 1.8; max-height: 0; opacity: 0; transform: translateY(-10px); overflow: hidden; transition: var(--transition); }
.step-item[open] .step-body { max-height: 760px; opacity: 1; transform: translateY(0); }
.step-item[open] summary::after { transform: rotate(180deg); }

.step-body video {
    margin-top: 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}

.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.mission-box, .vision-box { background: var(--surface-color); border-radius: var(--border-radius); padding: 40px; box-shadow: var(--shadow); }
.mission-box { border-top: 5px solid var(--primary-color); }
.vision-box { border-top: 5px solid var(--primary-color); }
.mission-box h2, .vision-box h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark-color); }

.search-box { max-width: 600px; margin: 0 auto 50px; position: relative; }
.search-input { width: 100%; padding: 16px 24px; padding-left: 50px; border: 2px solid var(--border-color); border-radius: var(--border-radius); font-size: 16px; font-family: inherit; transition: var(--transition); background: var(--surface-color); color: var(--dark-color); }
.search-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(142, 172, 226, 0.1); }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--secondary-color); }

.faq-container { max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 50px; }
.category-title { font-size: 1.5rem; font-weight: 600; color: var(--dark-color); margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--border-color); }
.faq-item { margin-bottom: 15px; background: var(--surface-color); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border-color); }
.faq-item.active { border-color: var(--primary-color); box-shadow: 0 5px 15px rgba(142, 172, 226, 0.1); }
.faq-question { padding: 22px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 1.1rem; color: var(--dark-color); transition: var(--transition); }
.faq-question:hover { background-color: rgba(142, 172, 226, 0.03); }
.faq-item.active .faq-question { background-color: rgba(142, 172, 226, 0.05); color: var(--primary-color); }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; background: var(--light-color); display: flex; align-items: center; justify-content: center; color: var(--primary-color); transition: var(--transition); flex-shrink: 0; margin-left: 15px; }
.faq-item.active .faq-toggle { transform: rotate(180deg); background: var(--primary-color); color: white; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--secondary-color); line-height: 1.7; }
.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 700px; }

.contact-promo { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; border-radius: var(--border-radius); padding: 40px; text-align: center; margin-top: 60px; }
.contact-promo h3 { font-size: 1.8rem; margin-bottom: 15px; }
.contact-promo p { margin-bottom: 25px; opacity: 0.9; }
.contact-promo .contact-promo-btn {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer { background: var(--dark-color); color: white; padding: 40px 0; text-align: center; margin-top: auto; }
.footer p { color: #94a3b8; font-size: 0.9rem; }
.footer a { color: #94a3b8; text-decoration: underline; }

/* render optimization for long pages */
.hero,
.page-content,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1000px 600px;
}

/* footer dark mode */
:root.dark .footer {
    background: #1e1e1e;
    color: #ffffff;
}
:root.dark .footer p,
:root.dark .footer a {
    color: #ffffff;
}

@media (prefers-color-scheme: dark) {
    :root:not(.light) .footer {
        background: #1e1e1e;
        color: #ffffff;
    }
    :root:not(.light) .footer p,
    :root:not(.light) .footer a {
        color: #ffffff;
    }
}

/* dark mode surfaces text inversion */
:root.dark .header,
:root.dark .dropdown-menu,
:root.dark .animated-textbox,
:root.dark .btn-secondary,
:root.dark .textbox,
:root.dark .mission-box,
:root.dark .vision-box,
:root.dark .faq-item,
:root.dark .search-input,
:root.dark .step-item {
    background: #1e1e1e;
}
:root.dark .hero-image img {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}
:root.dark .dropdown-menu a,
:root.dark .dropdown-toggle,
:root.dark .feature,
:root.dark .textbox-title,
:root.dark .textbox-content,
:root.dark .hero-title,
:root.dark .hero-subtitle,
:root.dark .page-title,
:root.dark .page-subtitle,
:root.dark .textbox h3,
:root.dark .textbox p,
:root.dark .faq-question,
:root.dark .faq-answer,
:root.dark .category-title,
:root.dark .footer p,
:root.dark .footer a,
:root.dark .search-input {
    color: var(--dark-color);
}
:root.dark .contact-promo {
    background: #2a2f3a;
}
:root.dark .contact-promo .contact-promo-btn {
    background: var(--light-color);
    color: #e2e8f0;
    border: 1px solid #374151;
}
:root.dark .dropdown-toggle {
    border-color: var(--border-color);
}
:root.dark .dropdown-menu a:hover {
    background-color: rgba(142, 172, 226, 0.15);
}
:root.dark .dropdown-menu a.active {
    color: var(--primary-color);
}
:root.dark .logo-icon {
    background: #ffffff;
    padding: 0;
}
:root.dark .logo {
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
}

/* dark mode surfaces text inversion for os preference */
@media (prefers-color-scheme: dark) {
    :root:not(.light) .header,
    :root:not(.light) .dropdown-menu,
    :root:not(.light) .animated-textbox,
    :root:not(.light) .btn-secondary,
    :root:not(.light) .textbox,
    :root:not(.light) .mission-box,
    :root:not(.light) .vision-box,
    :root:not(.light) .faq-item,
    :root:not(.light) .search-input,
    :root:not(.light) .step-item {
        background: #1e1e1e;
    }
    :root:not(.light) .hero-image img {
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    }
    :root:not(.light) .dropdown-menu a,
    :root:not(.light) .dropdown-toggle,
    :root:not(.light) .feature,
    :root:not(.light) .textbox-title,
    :root:not(.light) .textbox-content,
    :root:not(.light) .hero-title,
    :root:not(.light) .hero-subtitle,
    :root:not(.light) .page-title,
    :root:not(.light) .page-subtitle,
    :root:not(.light) .textbox h3,
    :root:not(.light) .textbox p,
    :root:not(.light) .faq-question,
    :root:not(.light) .faq-answer,
    :root:not(.light) .category-title,
    :root:not(.light) .footer p,
    :root:not(.light) .footer a,
    :root:not(.light) .search-input {
        color: var(--dark-color);
    }
    :root:not(.light) .dropdown-toggle {
        border-color: var(--border-color);
    }
    :root:not(.light) .dropdown-menu a:hover {
        background-color: rgba(142, 172, 226, 0.15);
    }
    :root:not(.light) .dropdown-menu a.active {
        color: var(--primary-color);
    }
    :root:not(.light) .logo-icon {
        background: #ffffff;
        padding: 0;
    }
    :root:not(.light) .logo {
        background: #ffffff;
        border-radius: 12px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 20px; }
    .dropdown-container { width: 100%; }
    .dropdown-toggle { width: 100%; justify-content: center; }
    .dropdown-menu { right: auto; left: 0; width: 100%; }
    .textbox-grid { grid-template-columns: 1fr; }
    .textbox { padding: 30px 20px; }
    .mission-vision { grid-template-columns: 1fr; }
    .page-title { font-size: 2rem; }
    .faq-question { padding: 18px 20px; font-size: 1rem; }
    .contact-promo { padding: 30px 20px; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

a:link {
  color: #8eace2;
  background-color: transparent;
  text-decoration: none;
}