﻿
@font-face {
    font-family: 'Irsans';
    src: url('public/font/IranianSans/IranianSans-Light/IranianSans-Light.eot');
    src: url('public/font/IranianSans/IranianSans-Light/IranianSans-Light.eot?#iefix') format('embedded-opentype'), url('public/font/IranianSans/IranianSans-Light/IranianSans-Light.woff') format('woff'), url('public/font/IranianSans/IranianSans-Light/IranianSans-Light.ttf') format('truetype');
    font-weight: 400; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Irsans';
    src: url('public/font/IranianSans/IranianSans-Bold/IRANSansWeb(FaNum)_Bold.eot');
    src: url('public/font/IranianSans/IranianSans-Bold/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype'), url('public/font/IranianSans/IranianSans-Bold/IRANSansWeb(FaNum)_Bold.woff') format('woff'), url('public/font/IranianSans/IranianSans-Bold/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

html {
    font-family: 'Irsans';
    font-size: 62.5%;
}

body {
    background-color: #f8f9fa;
    font-family: 'Irsans';
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #666;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    background: #aaa;
}

    ::-webkit-scrollbar-thumb:hover {
        background: white;
    }
/************************* Utils ************************/

.ml-1 {
    margin-left: 4px;
}

.ml-auto {
    margin-left: auto
}

mr-auto {
    margin-right: auto;
}

.gap-3 {
    gap: 5px
}

.right-5p {
    left: unset !important;
    right: 5% !important;
}

.green-background {
    background-color: forestgreen !important;
}

.red-background {
    background-color: red !important;
}

.yellow-background {
    background-color: coral !important;
}

.green-color {
    color: forestgreen !important;
}

.red-color {
    color: red !important;
}

.yellow-color {
    color: coral !important;
}

.justify-between {
    justify-content: space-between;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* transparent backdrop */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/************************* page styles ************************/
.login-user-section {
    min-height: 100vh;
    background-image: url("/Content/riraAmouz/public/images/Login-User-Mobile.svg");
    object-fit: cover;
    padding: 18px 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.login-user-back-btn-mobile {
    margin-right: auto;
    margin-bottom: 20px;
    width: 24px;
    height: 24px;
}

    .login-user-back-btn-mobile img {
        width: 36px;
        height: 36px;
    }

.login-user-slider-box {
    display: none;
}

.user-login-header-logo-box {
    display: flex;
    align-items: center;
}


.login-user-back-lang-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .login-user-back-lang-logo img {
        height: 42px;
        width: 42px;
    }

.login-user-lang-chips {
    display: flex;
    background-color: #A3A5DC;
    border-radius: 40px;
    padding: 2px;
}

    .login-user-lang-chips a {
        text-decoration: none;
        width: 29px;
        height: 26px;
        color: #6A6E70 !important;
        display: inline-flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .login-user-lang-chips a.active {
            background-color: #313582;
            color: white !important;
            border-radius: 40px;
        }

.user-login-card-box-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-user-card {
    background-color: #f6f6fe;
    border-radius: 12px;
    padding: 32px 16px;
}

    .login-user-card h2 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .login-user-card h3 {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 31px;
        line-height: 1.6;
        color: #666666;
    }

        .login-user-card h3 span {
            color: black;
        }

.user-login-label {
    margin-bottom: 8px;
    color: #262626;
    font-size: 14px;
}

.user-login-input:active,
.user-login-input:focus {
    outline: none;
    border-bottom: 1px solid #464bb9;
}

.user-login-input {
    width: 100%;
    padding: 10px 20px;
    background-color: #ededf8;
    border: unset;
    border-radius: 4px;
    position: relative;
    font-size: 12px;
}

.user-login-username-wrapper {
    margin-bottom: 10px;
}

.user-login-password-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
}

.user-login-resetpass-wrapper {
    margin-bottom: 25px;
}

.user-login-password-icon {
    cursor: pointer;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.login-user-reset-pass-btn {
    color: #464bb9 !important;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid #464bb9;
}

#user-login-captcha {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.user-login-captcha-input {
    margin-bottom: 60px;
    border-radius: 4px;
}

.user-login-captcha-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

    .user-login-captcha-inner img {
        width: 125px;
        height: 32px;
    }

.user-login-captcha-retry {
    cursor: pointer;
    width: 12px !important;
    height: 12px !important;
}

.user-login-captcha-failed {
    background-color: #f7d4d4;
    border: 1px solid #d92626;
}

    .user-login-captcha-failed input {
        background-color: #f7d4d4;
    }

        .user-login-captcha-failed input:active,
        .user-login-captcha-failed input:focus {
            border: unset
        }

.login-user-submit-btn {
    border: 1px solid #464bb9;
    border-radius: 4px;
    padding: 6px 0;
    font-size: 14px;
    display: block;
    text-decoration: none;
    background-color: #464bb9;
    text-align: center;
    color: #f6f6f3;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.login-user-submit-btn-secondary {
    color: #262626 !important;
    border-radius: 4px;
    padding: 6px 0;
    font-size: 14px;
    display: block;
    text-decoration: none;
    border: 1px solid #b3b3b3;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    background-color: #f6f6fe;
    cursor: pointer;
}

.login-user-sipad {
    text-align: center;
    margin: 0 auto;
}

    .login-user-sipad a {
        text-decoration: none;
        color: #464bb9 !important;
    }

.user-login-card-header {
    display: none;
}

.user-login-captcha-res-msg {
    padding: 2px;
    margin-top: 5px;
    font-size: 12px;
    border-radius: 4px;
    color: #d92626
}

.user-login-fail-res-msg {
    padding: 2px;
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 12px;
    height: 36px;
    background-color: #F7D4D4;
    border: 1px solid #d92626;
    border-radius: 4px;
    color: #d92626
}

.login-user-back-btn {
    font-size: 14px;
    font-weight: 400;
    display: inline-flex !important;
    color: #666;
    box-shadow: 0 2px 4px rgba(67, 69, 145, 0.10);
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: #ededf8;
    justify-content: center;
    align-items: center;
}

    .login-user-back-btn:hover {
        background-color: #e3e3ff;
        box-shadow: 0 2px 4px rgba(67, 69, 145, 0.15);
    }

.login-user-backbtn-wrapper-mobile {
    margin-bottom: 20px;
}

.user-login-policy {
    text-align: center;
    font-size: 10px;
}
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
/************************* Reset INITIAL ************************/
.user-login-reset-password-method {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    background-color: #a3a5dc;
    border: 1px solid #c8c9ea;
    border-radius: 4px;
    margin-bottom: 30px;
}

    .user-login-reset-password-method div {
        flex: 1;
        color: #262626 !important;
        text-decoration: none;
        padding: 6px 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 4px;
        cursor: pointer;
    }

.active-btn-reset-method {
    background-color: white;
    border: 1px solid #a3a5dc;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.14);
}

.reset-login-password-noticed-label {
    margin-bottom: 30px;
    color: #666666;
}

.login-user-slider-box-tablet-inner h4 {
    display: none;
}

/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/
/************************* CODE ENTRY ************************/

.user-login-reset-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60vh;
}

.reset-code-entry-card {
    min-height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-login-code-entry-wrapper {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-direction: row-reverse;
    font-size: 12px;
}

    .user-login-code-entry-wrapper input {
        display: flex;
        width: 60px;
        height: 60px;
        padding: 18px 0;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
        border: none;
        background: #ededf8;
        text-align: center;
    }

        .user-login-code-entry-wrapper input:focus,
        .user-login-code-entry-wrapper input:active {
            border: 1.125px solid #464bb9;
            outline: #464bb9;
        }

    .user-login-code-entry-wrapper + div {
        text-align: center;
        color: #666666;
    }

.user-login-code-entry-btn-wrapper {
    width: 100%;
}

.login-user-resend-btn {
    cursor: pointer;
    padding: 6px 0;
    display: block;
    text-decoration: none;
    text-align: center;
    color: #262626 !important;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
}

/************************* New Pass ************************/
/************************* New Pass ************************/
/************************* New Pass ************************/
/************************* New Pass ************************/
/************************* New Pass ************************/
/************************* New Pass ************************/
/************************* New Pass ************************/

.login-user-new-pass-card h3 {
    margin-bottom: 43px;
}

.user-login-input-secondary-style {
    margin-bottom: 182px;
}

.login-user-field-wrapper ul {
    display: flex;
    padding: 0;
    margin-top: 5px;
    gap: 10px;
    width: 100%;
}

    .login-user-field-wrapper ul li {
        flex: 1;
        width: 100%;
        height: 2px;
        background-color: #dbdbdb;
        list-style: none;
    }

        .login-user-field-wrapper ul li span {
            display: block;
            color: #dbdbdb;
            text-align: left;
        }

.login-user-validate-wrapper {
    margin-bottom: 182px;
}

.user-login-info-mobile-notice {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 12px;
    color: #666666;
}

.user-login-info-sub {
    margin-bottom: 59px;
    font-size: 16px;
}

.user-login-pass-validation {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}

.user-login-pass-validation-error-icon {
    background-color: #AD1F1F
}

.user-login-pass-validation-ok-icon {
    background-color: #328032
}

.user-login-pass-validation-none-icon {
    background-color: #999
}

.user-login-pass-validation-error-text {
    font-size: 10px;
    color: #AD1F1F
}

.user-login-pass-validation-ok-text {
    font-size: 10px;
    color: #328032
}

.user-login-pass-validation-none-text {
    font-size: 10px;
    color: #999
}

.user-login-redirect-container {
    background-image: url(/Content/riraAmouz/public/images/SuccessfulLoginWithDirectLink-Mobile.svg);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.user-login-redirect-text-box {
    padding: 10%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
}
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
@media (min-width: 768px) {
    .login-user-backbtn-wrapper-mobile {
        margin-bottom: 24px;
    }

    .login-user-back-btn {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }

    .login-user-section {
        display: flex;
        flex-direction: column;
        background-image: none;
        padding: 0;
        gap: unset;
    }

    .login-user-back-btn-mobile {
        display: none;
    }

    .login-user-slider-box {
        background-image: url(/Content/riraAmouz/public/images/Login-User-Tablet.svg);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 231px;
        max-width: 100%;
    }

    .login-user-back-lang-logo {
        background-color: #595CC0;
        padding: 8px 32px;
    }

    .login-user-back-btn-tablet {
        position: absolute;
        top: 10%;
        left: 2%;
        cursor: pointer;
    }

    .login-user-slider-box-tablet-inner img {
        display: block;
        width: 205px;
        height: 125px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .login-user-slider-box-tablet-inner h2 {
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        color: white;
        margin-bottom: 20px;
    }

    .login-user-slider-box-tablet-inner h3 {
        display: none;
    }

    .login-user-slider-box-tablet-inner ul {
        padding: 0;
        display: flex;
        text-align: center;
        justify-content: center;
        gap: 5px;
        list-style: none;
    }

        .login-user-slider-box-tablet-inner ul li {
            text-decoration: unset;
            background-color: white;
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

    .ul-active-slider-item {
        width: 20px !important;
        height: 5px !important;
        border-radius: 12px !important;
    }

    .login-user-card {
        padding: 40px 72px;
        flex: 1;
    }

        .login-user-card h2 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .login-user-card h3 {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
        }

    .user-login-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .user-login-username-wrapper {
        margin-bottom: 32px;
    }

    .user-login-password-wrapper {
        position: relative;
        width: 100%;
    }

    .user-login-password-icon {
        font-size: 14px;
        cursor: pointer;
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .login-user-reset-pass-btn {
        color: #464bb9 !important;
        font-size: 12px;
        text-decoration: none;
        border-bottom: 1px solid #464bb9;
    }

    .user-login-save-password-label {
        font-size: 12px;
    }

    .user-login-code-entry-wrapper + div {
        margin-top: 24px;
        margin-bottom: 48px;
        font-size: 14px;
    }

    .login-user-submit-btn {
        padding: 8px 0;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .login-user-submit-btn-secondary {
        padding: 8px 0;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .login-user-resend-btn {
        padding: 8px 0;
        font-size: 16px;
    }

    .login-user-slider-box-tablet-inner h4 {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 70%;
        font-size: 14px;
        color: white;
    }

    .user-login-reset-password-method div {
        font-size: 15px;
    }

    .reset-login-password-noticed-label {
        font-size: 16px;
    }

    .user-login-input-secondary-style {
        margin-bottom: 180px;
    }

    .user-login-policy {
        font-size: 12px;
    }

    .user-login-code-entry-wrapper {
        font-size: 14px;
    }

    .user-login-info-sub {
        margin-bottom: 90px;
    }

    .login-user-validate-wrapper {
        margin-bottom: 180px;
    }

    .user-login-redirect-container {
        background-image: url(/Content/riraAmouz/public/images/SuccessfulLoginWithDirectLink-Tablet.svg);
    }

    .user-login-redirect-text-box {
        font-size: 20px;
        font-weight: 600;
    }

}
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/

@media (min-width: 1024px) {
    .login-user-backbtn-wrapper-mobile {
        display: none;
    }

    .login-user-back-btn-tablet {
        display: none;
    }

    .login-user-section {
        flex-direction: row-reverse;
        padding: 20px;
        background-color: #f6f6fe;
    }

    .login-user-back-lang-logo {
        display: none;
    }

    .user-login-card-box-wrapper {
        flex-direction: row-reverse;
        justify-content: unset;
    }

    .slider-box-wrapper-login {
        margin: 0 auto;
        width: 50%;
        overflow-x: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 100px;
    }

    .login-user-slider-box {
        background-image: url(/Content/riraAmouz/public/images/Login-User-Desktop.svg);
        flex-basis: 55%;
        border-radius: 24px;
        background-repeat: no-repeat;
        max-width: 55%;
    }

    .login-user-lang-chips {
        padding: 3px 4px;
        font-size: 16px;
    }

        .login-user-lang-chips a {
            width: 36px;
            height: 30px;
        }

    .login-user-slider-box-tablet-inner {
        opacity: 0;
        transition: opacity 1.5s ease;
    }

    .login-user-slider-box-tablet-inner-active {
        opacity: 1;
    }

    .login-user-slider-box-tablet-inner ul {
        padding: 0;
        display: flex;
        text-align: center;
        justify-content: center;
        gap: 8px;
        list-style: none;
    }

        .login-user-slider-box-tablet-inner ul li {
            text-decoration: unset;
            background-color: white;
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

    .ul-active-slider-item {
        width: 30px !important;
        height: 7px !important;
        border-radius: 12px !important;
    }

    .login-user-slider-box-tablet-inner img {
        width: 310px;
        height: 192px;
    }

    .login-user-slider-box-tablet-inner h3 {
        display: block;
        font-weight: 200;
        width: 80%;
        line-height: 1.6;
        margin: 0 auto;
        margin-bottom: 80px;
        text-align: center;
        font-size: 12px;
        color: white;
    }

    .login-user-card {
        max-height: 100%;
        flex-basis: 45%;
        padding: 21px 42px;
    }

        .login-user-card h2 {
            font-size: 24px;
        }

    .reset-code-entry-card h2 {
        margin-top: 20px;
    }

    .user-login-card-header {
        display: block;
    }

    .user-login-logo-container-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .user-login-card-header div img {
        width: 45px;
        height: 45px;
    }

    .user-login-card-header div span {
        font-size: 18px;
        margin-right: 5px;
    }

    .login-user-backbtn-wrapper-desktop {
        width: fit-content;
        display: flex;
        gap: 10px;
        align-items: center;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .login-user-back-btn-text {
        color: #666666;
    }

    .user-login-input {
        font-size: 14px;
    }

    .login-user-reset-pass-btn {
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #464bb9;
    }

    .user-login-save-password-label {
        font-size: 14px;
    }

    .user-login-captcha-inner {
        gap: 15px;
    }

    .user-login-captcha-retry {
        width: 18px !important;
        height: 18px !important;
    }

    .reset-code-entry-card {
        justify-content: normal;
        /* gap: 40px; */
    }

        .reset-code-entry-card h3 {
            margin-bottom: 90px;
        }

    .user-login-reset-container {
        margin-top: 48px;
    }

    .user-login-code-entry-wrapper + div {
        margin-bottom: 48px;
        height: 63px;
    }

    .login-user-sipad {
        font-size: 12px;
    }

    .login-user-field-wrapper ul li span {
        font-size: 14px;
    }
}
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
@media (min-width: 1440px) {
    .login-user-card {
        padding: 26px 52px;
    }

    .login-user-slider-box-tablet-inner img {
        width: 436.5px;
        height: 270.75px;
        margin-bottom: 45px;
    }

    .login-user-slider-box-tablet-inner h2 {
        font-size: 20px;
    }

    .login-user-slider-box-tablet-inner h3 {
        font-size: 14px;
    }

    .user-login-card-header {
        margin-bottom: 46px;
    }

        .user-login-card-header div img {
            height: 58px;
            width: 58px;
        }

        .user-login-card-header div span {
            font-size: 22px;
        }

    .login-user-back-btn-text {
        font-size: 14px;
    }

    .user-login-reset-container {
        margin-top: unset;
    }

    .user-login-info-sub {
        margin-bottom: 100px;
    }
    .user-login-redirect-container {
        background-image: url(/Content/riraAmouz/public/images/SuccessfulLoginWithDirectLink-Desktop.svg);
    }

    .user-login-redirect-text-box {
        font-size: 24px;
        font-weight: 600;
        gap: 20px;
    }

}
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
/************************* MEDIA QUERIES ************************/
@media (min-width: 1920px) {
    .login-user-card {
        padding: 20px 60px;
    }

    .login-user-slider-box-tablet-inner img {
        width: 582px;
        height: 361px;
        margin-bottom: 68px;
    }

    .login-user-slider-box-tablet-inner h2 {
        font-size: 24px;
    }

    .login-user-slider-box-tablet-inner h3 {
        font-size: 16px;
        margin-bottom: 115px;
    }

/*    .user-login-card-header {
        margin-bottom: 100px;
    }*/

        .user-login-card-header div img {
            height: 64px;
            width: 64px;
        }

        .user-login-card-header div span {
            font-size: 24px;
        }

    .login-user-back-btn-text {
        font-size: 16px;
    }

    .user-login-captcha-input {
        margin-bottom: 75px;
    }
}
