html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

a {
    text-decoration: none !important;
}

body {
    margin-bottom: 60px;
    scroll-behavior: smooth;
}

main.content {
    padding-top: 0px;
}

.capa-site {
    width: 100%;
    height: auto;
}


/* ------------------CORES-----------------------------------------------------------------------*/
:root {
    --branco: #fff;
    --azulEsaj: #5171ff;
    --preto: #272727;
    --cinza: #cecece;
    --azulEsajHover: #3c57cf;
    --azulClaro: #e3e8fc;
    --azulClaroHover: #cfd4e9;
    --verde: #198754;
    --verdeHover: #116B41;
    --vermelho: #dc3545;
    --vermelhoHover: #AA2532;
    --amarelo: #ffa500;
    --amareloHover: #D48900;
    --azul: #0246ac;
    --azulHover: #003883;
    --roxo: #ac5dcb;
    --roxoHover: #934fad;
    --cinzaClaro: #f5f7fb;
}

/* ------------------SIDEBAR---------------------------------------------------------------------*/

a.sidebar-link:hover {
    border-left: 5px solid var(--azulEsaj);
    color: black;
    background: var(--azulClaroHover);
    transition: all 0.2s ease-in-out;
}

.divisor-sidebar {
    color: #27272780;
    margin: .4rem 0 !important;
    border: 1.5px solid;
}

.sidebar-btn {
    height: 40px !important;
    width: 40px !important;
    color: var(--preto);
    margin: 20px 0px 0px 10px;
    background: var(--azulClaro);
    border-radius: 50px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.version-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #888;
    padding: 10px 0;
}

/* ------------------GERAL-----------------------------------------------------------------------*/

.foto-perfil-container {
    position: relative;
    display: inline-block;
}

.foto-perfil {
    max-width: 150px;
    width: 150px;
    height: 150px;
    margin: 25px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.foto-menu {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editar-foto {
    background-color: var(--azulEsaj);
    bottom: 10px;
    right: 20px;
    transition: opacity 0.3s ease;
    color: var(--branco);
}

    .editar-foto:hover {
        background-color: var(--azulEsajHover);
        transform: scale(1.05);
        cursor: pointer;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

.excluir-foto {
    background-color: var(--vermelho);
    bottom: 10px;
    left: 20px;
    transition: opacity 0.3s ease;
    color: var(--branco);
}

    .excluir-foto:hover {
        background-color: var(--vermelhoHover);
        transform: scale(1.05);
        cursor: pointer;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

.foto-perfil-container:hover .foto-perfil {
    transform: scale(1.05);
}

.foto-perfil-container:hover .foto-menu {
    opacity: 1;
}

.subtitulo {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--preto);
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.subtitulo-pequeno {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--azulEsaj);
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
}

.horas-historico {
    margin-top: 25px;
    color: var(--preto);
    font-weight: 100;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

.divisor-pagina {
    height: 2px;
    border: none;
    background: var(--azulEsaj);
    border-radius: 25px;
    margin-top: 6px;
    opacity: .8 !important;
}

.card-informativo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-informativo {
    color: var(--preto);
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-family: "Poppins", serif;
    opacity: .7;
}

    .btn-informativo:hover {
        background: var(--azulClaro);
        color: var(--preto);
        border-radius: 3px;
    }

.texto-informativo {
    font-size: 15px;
    opacity: .9;
}

.btn-avisos {
    color: var(--preto);
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}

    .btn-avisos:hover {
        background: var(--azulClaro);
        color: var(--preto);
        border-radius: 3px;
    }

.rotate-up {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ------------------BOTÕES TELA INICIAL--------------------------------------------------------------*/

.inscr-texto {
    text-align: center;
    margin: 10px 0px;
    font-size: 18px;
}

.ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0;
}

.ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
}

.ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: var(--azulClaro);
    overflow: hidden;
    position: relative;
    color: var(--preto);
    transition: all 0.4s ease-in-out;
    min-height: 250px;
}

/*#inscricoes .ag-courses_item {
    max-width: 350px;
}*/

.categoria {
    max-width: 350px;
    min-width: 300px;
}

.adm-esaj .ag-courses-item_link {
    min-height: 40px;
}

.categoria .ag-courses-item_link {
    min-height: 40px;
}

.ag-courses-item_link:hover, .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: var(--branco);
}

    .ag-courses-item_link:hover .ag-courses-item_bg {
        -webkit-transform: scale(10);
        -ms-transform: scale(10);
        transform: scale(10);
    }

.ag-courses-item_title {
    min-height: 65px;
    overflow: hidden;
    font-weight: bold;
    font-size: 30px;
    z-index: 2;
    position: relative;
}

.adm-esaj .ag-courses-item_title {
    min-height: 40px;
}

.categoria .ag-courses-item_title {
    min-height: 40px;
}

.ag-courses-item_date-box {
    font-size: 18px;
    z-index: 2;
    position: relative;
}

.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: var(--azulEsaj);
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

@media only screen and (max-width: 979px) {
    .ag-courses_item {
        -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
    }

    .ag-courses-item_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }
}

@media only screen and (max-width: 639px) {
    .ag-courses_item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .ag-courses-item_title {
        min-height: 72px;
        line-height: 1;
        font-size: 24px;
    }

    .ag-courses-item_link {
        padding: 22px 40px;
    }

    .ag-courses-item_date-box {
        font-size: 16px;
    }
}

.btn-piscando {
    display: inline-block;
    animation: pulsar 1.5s ease-in-out infinite;
}

@keyframes pulsar {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-piscar {
    display: inline-block;
    animation: piscar 1.5s ease-in-out infinite;
}

@keyframes piscar {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* ------------------CARROSSEL----------------------------------------------------------------------*/

.carrossel-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

    .carrossel-container::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background-image: linear-gradient(to top, #e3e8fc, transparent);
        z-index: 1;
    }

.carrossel {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

    .slide img {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 0;
    }

.carrossel-controls {
    position: relative;
    padding: 5px;
    background-color: var(--azulClaro);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.btn-carousel {
    background-color: rgba(0, 0, 0, 0.0);
    color: var(--azulEsaj);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
}

.prev, .next {
    transition: transform 0.2s ease;
}

    .prev:hover, .next:hover {
        transform: scale(1.0); /* Aumenta a seta em 20% */
    }

.btn-info {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.4em 2em;
    border: 3px solid var(--azulEsaj);
    border-radius: 15px;
    position: relative;
    color: var(--azulEsaj) !important;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
    background: transparent;
}

    .btn-info:before {
        transition: 0.5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: '';
        background-color: var(--azulEsaj);
        z-index: -1;
        border-radius: 8px;
    }

    .btn-info:hover, .btn-info:focus {
        color: var(--branco) !important;
    }

        .btn-info:hover:before, .btn-info:focus:before {
            transition: 0.5s all ease;
            left: 0;
            right: 0;
            opacity: 1;
        }

    .btn-info:active {
        transform: scale(0.9);
    }


/* ------------------CARDS----------------------------------------------------------------------*/
.card {
    margin-top: 30px;
}

.card-body {
    text-align: left;
}

.detalhes-inscricao .card-body {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.card-header {
    font-weight: bold;
}

.card-usuario {
    width: 14rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border-radius: 10px !important;
}

.check-sucess {
    color: var(--verde) !important;
    width: 30px !important;
    height: 30px !important;
}

.check-fail {
    color: var(--vermelho) !important;
    width: 30px !important;
    height: 30px !important;
}

.card-inscricao {
    width: 14rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border-radius: 10px !important;
    box-shadow: 0 !important;
}

.card-inscricao-hora {
    width: 18rem !important;
}

.card-usuario-titulo {
    font-weight: bold;
    padding: 10px !important;
}

.card-usuario-res {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--azulEsaj);
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.card-icone {
    height: 30px !important;
    width: 30px !important;
}

.card-topicos {
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.card-avisos {
    width: 100%;
    background: var(--azulClaro);
    border-radius: 0.5rem;
    padding: 20px;
}

.texto-avisos {
    font-size: 18px;
    text-align: center;
}

.instrutor-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card-instrutor {
    background-color: var(--branco);
    padding: 5px;
    height: fit-content;
    width: 50%;
    max-width: 350px;
    min-width: 320px;
    box-shadow: 0 0 .875rem 0 rgba(33, 37, 41, .05);
    border-radius: 0.25rem;
}


/* ------------------Formulários----------------------------------------------------------------------*/
.inativo {
    color: var(--vermelho);
}

.texto-block {
    color: var(--vermelho);
}

.form-corpo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-corpo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 15px;*/
}

.form-btn-inscr:active {
    opacity: .7;
}

.input-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--azulClaro) !important;
    border-radius: 5px !important;
    border: 0px !important;
    font-size: 16px !important;
}

.form-titulo {
    font-family: "Nunito", serif;
    color: var(--azulEsaj);
    font-weight: 600;
}

.form-titulo-data {
    font-family: "Nunito", serif;
    color: var(--azulEsaj);
    font-weight: 600;
    text-align: center;
}

.form-topico {
    margin: 15px 0px 5px;
    font-size: 18px;
    border-left: 4px solid var(--azulEsaj);
    padding-left: 8px;
}

.form-texto {
    text-align: center;
    margin: 15px 0px 5px;
    font-size: 20px;
}

.form-btn {
    align-items: center;
    background: var(--azulEsaj);
    border: 0;
    border-radius: 5px;
    color: var(--branco);
    cursor: pointer;
    display: inline-flex;
    font-family: sans-serif;
    height: 48px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
    font-size: 17px;
    margin: 15px;
}

.form-btn-ver {
    align-items: center;
    background: var(--vermelho);
    border: 0;
    border-radius: 5px;
    color: var(--branco);
    cursor: pointer;
    display: inline-flex;
    font-family: sans-serif;
    height: 48px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
    font-size: 17px;
    margin: 15px;
}

.form-btn:hover {
    transform: translateY(-1px);
    background: var(--azulEsajHover);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.form-btn-ver:hover {
    transform: translateY(-1px);
    background: var(--vermelhoHover);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.form-btn:active {
    opacity: .7;
}

.form-btn-ver:active {
    opacity: .7;
}

.tabelas {
    margin-top: 40px;
}

.form-tabela-topico {
    font-weight: bold;
    width: 10%;
}

.modal .form-btn {
    margin: 0px;
}

.modal-footer {
    gap: 15px;
}


/* ------------------QR-Code----------------------------------------------------------------------*/

.box-qrcode {
    padding: 3px;
    border: 1px solid #ccd0e1;
    background-color: var(--branco);
}

.tabela-qrcode {
    font-size: small;
    margin-top: 50px;
    width: 100%;
}

/* ------------------PAGINA-INSCRIÇÕES------------------------------------------------------------*/

.inscr-topo {
    background: white;
    padding: 15px;
    margin: 20px 0px;
}

.bloco-topo {
    display: flex;
    justify-content: center;
    margin: 30px;
}

.topo-topico {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.topo-info {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.instrutores-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.instrutor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(20% - 20px);
    min-width: 150px;
}

    .instrutor > .foto {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 5px solid;
        border-radius: 100%;
        overflow: hidden;
    }

    .instrutor > .nome {
        padding: 8px 40px;
        font-size: 20px;
        border-radius: 20px;
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
        margin-top: 5px;
    }

.curso-topo {
    text-align: center;
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.cod-palestra {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.nome-palestra {
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 400;
    text-align: center;
}

.desc-palestra {
    font-size: 17px;
    opacity: .7;
    font-weight: 400;
    text-align: center;
}

.form-btn-inscr {
    align-items: center;
    width: 250px;
    border: 0;
    border-radius: 5px;
    color: var(--branco);
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    font-size: 17px;
}

    .form-btn-inscr:hover {
        transform: translateY(-1px);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

/*-------------------ADM-ESAJ-----------------------------------------------------------------------*/

.video-ativo {
    color: var(--verde) !important;
    text-align: center;
    font-size: 16px !important;
}

.video-inativo {
    color: var(--vermelho) !important;
    text-align: center;
    font-size: 16px !important;
}

.videos-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.video-card {
    width: 19rem;
    min-height: 600px;
    min-width: 19rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.salas-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.sala-card {
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    margin: 0px;
}

.nav-prog-semana {
    font-size: 16px;
    font-weight: bold;
    font-family: "Nunito", serif;
    display: flex;
    justify-content: space-around;
}

#prog-semanal .nav-link.active {
    background-color: var(--azulEsaj);
    color: white;
}

.cards-prog-semanal {
    border: 2px solid var(--azulClaro);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0px;
}

.card-cod-curso {
    font-family: "Nunito", serif;
    color: var(--azulEsaj);
    font-size: 16px;
    font-weight: 600;
}

.info-box {
    border: 2px solid #ccd0e1;
    padding: 10px;
    margin-top: 40px;
    border-radius: 15px;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-item {
    flex: 1 1 200px;
}

.impr-topico {
    font-weight: bold;
    font-size: 14px;
}

.info-label {
    font-weight: 100;
    font-size: 14px;
}

@media (max-width: 768px) {
    .info-item {
        flex: 1 1 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.speaker {
    margin: 5px;
}


/*-------------------IMPRESSÃO--------------------------------------------------------------------*/
.topo-impressao {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-impressao {
    width: 5%;
}

#printArea {
    display: none;
}

@media print {
    #printArea {
        display: block;
    }

    body.impressao * {
        visibility: hidden;
    }

    body.impressao #printArea, body.impressao #printArea * {
        visibility: visible;
    }

    body.impressao #printArea {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
}

.impr-topico {
    font-size: 14px;
    border-left: 4px solid var(--azulEsaj);
    padding-left: 8px;
}

/* ------------------COR-INSCRIÇÕES---------------------------------------------------------------*/
.inscr-aovivo .instrutor > .nome, .inscr-aovivo .cod-palestra, .inscr-aovivo .card-topicos, .inscr-aovivo .topo-info, .inscr-aovivo .form-titulo {
    color: var(--amarelo) !important;
}

.inscr-aovivo .instrutor > .foto {
    border-color: var(--amarelo);
}

.inscr-aovivo .form-btn-inscr, .inscr-aovivo .ag-courses-item_bg {
    background: var(--amarelo);
}

    .inscr-aovivo .form-btn-inscr:hover, .inscr-aovivo .ag-courses-item_bg:hover {
        background: var(--amareloHover);
    }


.inscr-ead .instrutor > .nome, .inscr-ead .cod-palestra, .inscr-ead .card-topicos, .inscr-ead .topo-info, .inscr-ead .form-titulo {
    color: var(--roxo) !important;
}

.inscr-ead .instrutor > .foto {
    border-color: var(--roxo);
}

.inscr-ead .form-btn-inscr, .inscr-ead .ag-courses-item_bg {
    background: var(--roxo);
}

    .inscr-ead .form-btn-inscr:hover, .inscr-ead .ag-courses-item_bg:hover {
        background: var(--roxoHover);
    }


.inscr-presencial .instrutor > .nome, .inscr-presencial .cod-palestra, .inscr-presencial .card-topicos, .inscr-presencial .topo-info, .inscr-presencial .form-titulo {
    color: var(--vermelho) !important;
}

.inscr-presencial .instrutor > .foto {
    border-color: var(--vermelho);
}

.inscr-presencial .form-btn-inscr, .inscr-presencial .ag-courses-item_bg {
    background: var(--vermelho);
}

    .inscr-presencial .form-btn-inscr:hover, .inscr-presencial .ag-courses-item_bg:hover {
        background: var(--vermelhoHover);
    }


.inscr-hibrido .instrutor > .nome, .inscr-hibrido .cod-palestra, .inscr-hibrido .card-topicos, .inscr-hibrido .topo-info, .inscr-hibrido .form-titulo {
    color: var(--azul) !important;
}

.inscr-hibrido .instrutor > .foto {
    border-color: var(--azul);
}

.inscr-hibrido .form-btn-inscr, .inscr-hibrido .ag-courses-item_bg {
    background: var(--azul);
}

    .inscr-hibrido .form-btn-inscr:hover, .inscr-hibrido .ag-courses-item_bg:hover {
        background: var(--azulHover);
    }

.status-atualizado {
    color: var(--verde);
}

.status-desatualizado {
    color: var(--vermelho);
}
