body {
    background-color: #fff;
    font-family: 'Instrument Sans', sans-serif;
    color: #292929;
    font-kerning: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    transition: .4s ease;
}

a {
    text-decoration: none;
    color: #34a1d2;
}

a:hover {
    color: #313e6a;
}

.cabecera-bg {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.96);
    width: 100%;
    height: 50px;
    border-bottom: 1px solid transparent;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.14);
    z-index: 2;
    top: 0;
}

.cabecera {
    max-width: 1320px;
    padding: 10px 15px 7px 15px;
    margin: auto;
    font-family: 'Instrument Sans', Sans-serif;
    font-weight: 600;
    font-size: 1.25rem;

    a {
        color: #014479;
    }

    span {
        color: #07a5d5;
        font-family: 'Playfair', serif;
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: -.4px;
    }

    a:hover {
        opacity: .6;
    }
}

@media only screen and (max-width: 991px) {
    .cabecera {
        margin: auto;
        text-align: center;
    }
}

/***************************************/
/*              PORTADA                */
/***************************************/
.portada {
    .buscador-bg::before {
        background-color: #dce4ef;
        width: 100%;
        height: 162px;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .buscador { 
        margin-top: 78px;
        
        .form-control {
            border-radius: 40px;
            border: 5px solid #c9d4e4;
            padding: 9px 20px;
            font-weight: 500;
        }
    }

    h2 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 25px;
        margin-top: 70px;
    }

    hr {
        margin: 50px 0;
        color: #e7e8eb;
        opacity: 1;
    }

    .card {
        border-color: #e7e8eb;
        position: relative;
        transition: .2s all;
        bottom: 0;
    }

    .card:hover {
        box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, .2);
        bottom: 10px;
        border-color: #d8dfe5;
        cursor: pointer;
    }

    .card-body {
        background-color: #f7f7f7;
        padding: 20px 26px;
        border-radius: 0 0 6px 6px;
    }

    .card-title {
        margin: 0;
    }

    .leermas {
        margin-top: 20px;
        display: flex;
        font-family: 'DM Sans', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: .9rem;
        font-weight: 600;
        justify-content: space-between;
        color: #598dc9;

        .bi.bi-arrow-right {
            color: #878687;
        }
    }

    .principales {
        gap: 50px;

        .card-title {
            font-size: 1.4rem;
            color: #000;
        }

        .titular {
            display: flex;
            height: 55px;
            overflow: hidden;
            color: #002147;
        }

        .titular:hover {
            color: #598dc9;
        }

        .card-img {
            height: auto;
            object-fit: cover;
            width: 100%;
            border-radius: 5px 5px 0 0;
        }
    }

    .publicaciones { 
        margin: 0 -23px;

        .card {
            margin-right: 10px;
            margin-left: 10px;
            margin-bottom: 50px;
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 600;
        }

        .titular {
            display: flex;
            height: 45px;
            overflow: hidden;
            color: #002147;
        }

        .titular:hover {
            color: #598dc9;
        }
    }

    .card-img {
        height: 250px;
        object-fit: cover;
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
}

@media only screen and (max-width: 990px) {
    .portada {
        .principales {
            gap: 20px;

            .titular {
                height: 68px;
            }

            .card-title {
                font-size: 1.15rem;
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    .portada {
        .card-body {
            width: 100%;
            background-color: #f7f7f7;
            padding: 15px 20px;
        }

        .card-img {
            height: 142px;
            object-fit: cover;
            width: 120px;
            border-radius: 5px 0 0 5px;
        }

        hr {
            margin: 25px 0;
            color: #e7e8eb;
            opacity: 1;
        }

        .card {
            border-color: #e7e8eb;
            display: flex;
            flex-direction: row;
            background-color: #f7f7f7;
        }

        .card:hover {
            bottom: 0;
        }

        .card-title {
            font-size: 1rem !important;
            font-weight: 600;
            height: 100%;
            justify-content: space-between;
            display: flex;
            flex-direction: column;
        }

        .titular {
            display: flex;
            height: 77px !important;
            overflow: hidden;
            color: #002147;
        }

        .leermas {
            font-size: .76rem;
        }

        .publicaciones {
            margin: 0;

            .card {
                margin-right: -12px;
                margin-left: -12px;
                margin-bottom: 20px;
            }
        }

        .principales {
            width: auto;
            gap: 20px;

            .card-img {
                height: 142px;
                object-fit: cover;
                width: 120px;
                border-radius: 5px 0 0 5px;
            }
        }    
    }
}
/***************************************/
  
.barra-container {
    width: 100%;
    height: 1px;
    background: #c8cfd8;
}
  
.barra {
    height: 2px;
    background: #173277;
    width: 0%;
    transition: .1s all;
} 

.pie {
    padding: 30px 0;
    background: #081d35;
    color: #FFF;
    line-height: normal;

    p {
        margin: 0;
        font-size: .85rem;
    }
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-weight: 600;
    font-size: 12px;
    background-color: #e4e8ea;
    padding: 4px 9px;
    margin-right: 8px;
    border-radius: 5px;
    margin-top: 1px;
}

.breadcrumb {
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    height: 27px;
    overflow: hidden;
    max-width: 1320px;
    margin: 80px auto -50px;
    padding: 0 12px;
}

.breadcrumb a {
    color: #004677;
    background-color: #e4e8ea;
    padding: 4px 9px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 28px;
}

.breadcrumb a:hover {
    background-color: #004677;
    color: #FFF;
}

@media (max-width: 767.98px) {
    .breadcrumb-item {
        margin-right: 10px;
    }
}

aside {
    width: 100%;
    transition: .8s ease;
    margin-right: 22px;
    display: block;
    background-color: #fff;
    position: relative;
    border: 1px solid #c8cfd8;
    border-top: 2px solid #c8cfd8;
    padding: 16px 18px;
    border-radius: 0;
    margin-bottom: 0;
    text-align: left;
    color: #1d3d63;
    position: relative;
    z-index: 0;
}

aside a {
    text-align: left;
    color: #1d3d63;
}

aside:hover {
    transition: .3s;
    border: 1px solid #7eb0dc;
    border-top: 2px solid #173277;
}

aside h2 {
    font-weight: 600;
    margin-bottom: 20px;
    margin-right: -18px;
    margin-left: -18px;
    line-height: normal;
    padding: 0 18px 16px;
    border-bottom: 1px solid #c8cfd8;
    font-size: 18px;
}

aside h2 a {
    color: #1d3d63;
}

aside h2 a:hover {
    color: #173277;
}

aside ul {
    list-style: none;
    padding: 0 0 0 15px;
    line-height: normal !important;
}

aside ul li {
    margin-bottom: 1rem;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

aside ul li a:before {
    content: '';
    position: absolute;
    border-right: 1px solid #4e576b;
    border-bottom: 1px solid #4e576b;
    width: 7px;
    height: 7px;
    top: 10px;
    left: -17px;
    transform: translateY(-50%) rotate(-45deg);
    transition: .3s ease;
}

aside ul li a:hover:before {
    left: -14px;
    transition: .1s ease;
}

aside ul .active a:before, aside ul li a:hover:before {
    border-color: #173277;
}

aside ul ul li a:before {
    content: none;
}

aside ul li.active:before {
    transform: translateY(-70%) rotate(45deg);
}

aside .active a, aside ul ul .active a {
    color: #004677;
    font-weight: 600;
}

aside .active ul a {
    color: #576873;
}

aside a:hover, aside ul ul li a:hover {
    color: #173277;
}

aside ul ul {
    padding-top: 15px;
    margin-bottom: 26px;
    list-style: disc;
    font-size: .7rem;
    color: #576873 !important;
}

aside ul ul li a {
    color: #576873;
    font-weight: 400 !important;
}

aside ul ul li {
    font-size: .93rem;
}

aside ul ul li:before {
    display: none;
}

.nodo_57a4fe84541a5 {
    aside ul li a:before {
        content: '\F444';
        border-right: none;
        border-bottom: none;
        transform: none;
        width: auto;
        height: auto;
        top: 1px;
        font-family: 'bootstrap-icons';
        font-weight: 600;
        font-size: 16px;
        color: #0f5083;
    }

    aside ul li {
        margin-left: 2px;
        padding-left: 7px;
    }
}

@media only screen and (max-width: 991px) {
    aside {
        margin-top: 30px;
        margin-right: 0;
    }
}

aside {
    top: 84px;
    z-index: 0;
    position: sticky;
}

.small.retornar {
    margin: 16px -26px -17px;
    font-weight: 600;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    line-height: normal;
    font-size: 15px;
    border-left: 1px solid transparent;
    transition: .5s;
}

.small.retornar a {
    display: block;
    padding: 13px 0 13px 26px;
    transition: .2s;
}

.small.retornar a:hover {
    color: #173277;
    transition: .2s;
}

.small.retornar:hover {
    border-left: 4px solid #173277;
    transition: .2s;
}

.small.retornar a:before {
    content: '\F12F';
    font-family: 'bootstrap-icons';
    color: #173277;
    vertical-align: initial;
    font-size: 13px;
    margin-right: 3px;
}

/* Reglas generales */
.interior {
    font-family: 'Inter', sans-serif;
    flex-direction: row-reverse;
    margin-top: 84px;
    margin-bottom: 70px;

    img {
        border-radius: 6px;
        background-color: #FFF;
    }
}

big {
    color: #306792;
    border-left: 1px solid #07a5d5;
    display: block;
    padding-left: 15px;
    font-size: 1.15rem;
}

cite {
    color: #014479;
    border-left: 3px solid #a2ddef;
    display: block;
    padding-left: 15px;
}

header {
    border-top: 2px solid #1d3d63;
    padding-top: 20px;
    border-bottom: 1px solid #1d3d63;
    padding-bottom: 20px;
    margin-bottom: 2rem;
    
    h1 {
        margin: 0;
        font-size: 1.9em;
        font-weight: bold;
        color: #1d3d63;
        line-height: 1.15em;
    }
}

.nodo {
    max-width: 910px;
}

.nodo.nodo {
    h1 {
        margin-bottom: 20px;
    }

    header {
        padding-bottom: 0;
    }
}

.articulo {
    p {
        margin-bottom: 1.6rem;
        line-height: 1.65rem;
    }

    h1, h2, h3 {
        font-family: 'Instrument Sans', Sans-serif;
    }

    h2 {
        font-size: 1.7rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        font-weight: bold;
        letter-spacing: -.2px;
    }

    h3 {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 1rem;
        margin-top: 2.5rem;
        line-height: normal;
    }

    h4 {
        font-size: .95rem;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

    h5 {
        font-size: 1.08rem;
        margin-bottom: .9rem;
        margin-top: 2.3rem;
        font-weight: bold;
    }

    li {
        margin-bottom: .5rem;
    }

    ul, ol {
        margin-bottom: 2rem;
        margin-left: -.85rem;
        text-align: left;
    }
    
    ul ul, ol ol {
        margin-top: 1rem;
        text-align: left;
    }

    ul li {
        list-style: none;
        position: relative;
    }

    ul li::before {
        content: '\F287';
        font-family: 'bootstrap-icons';
        font-weight: 600;
        position: absolute;
        left: -18px;
        font-size: 9px;
        top: 6px;
    }

    ul ul li::before {
        color: #98d0f1;
    }

    li.no-bullet::before {
        content: '';
    }
    
    .punto-aparte {
        display: block;
        margin-top: 1rem;
    }

    .pie-imagen {
        margin-top: -1rem;
        font-size: .9rem;
        line-height: 1.3rem;
        color: #555;
        text-align: center;
    }

    table ul, table ol {
        margin: .5rem 0;
    }

    .btn.btn-primary {
        background-color: #1d3d63;
        border: 0;
        border-radius: 7px;
        padding: 0px 18px 2px 8px;
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        width: fit-content;
        align-items: center;
        justify-content: center;
    }

    .btn.btn-primary:before {
        content: '\F124';
        font-family: 'bootstrap-icons';
        margin-right: 7px;
        font-size: 30px;
        font-weight: 100;
    }

    .btn.btn-primary:hover {
        background-color: #598dc9;
    }

/* Colores generales */
    h1, h2, .nombre {
        color: #313e6a;
    }

    h3, h4, li::before {
        color: #34a1d2;
    }

    h4 {
        color: #086893;
    }

    .recuadro {
        background-color: #eaf2f5;
        border-radius: 7px;
        border: none;
        padding-top: 30px;
    }

    h2.r-titulo {
        color: #34a1d2;
    }

    header {
        border-top: 2px solid #313e6a;
        border-bottom: 1px solid #313e6a;
    }
    
    table td, table th {
        border-color: #8696ce;
    }
    
    thead, thead td {
        background: #313e6a;
    }
    
    ::selection, ::-moz-selection {
        color: #FFF;
        background: #313e6a;
    }
    
    .notas-al-pie a, a.fn {
        color: #34a1d2;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #313e6a;
    }
}


@media only screen and (max-width: 768px) {
    .articulo .btn.btn-primary {
        width: auto;
    }
}

.no-bullet {
    list-style: none;
}

/*Notas al pie*/
.notas-al-pie {
    border-top: 1px solid #c9d8ea;
    padding-top: 25px;
    font-size: .9rem;
    margin-top: 30px;

    p {
        margin-bottom: 12px;
        line-height: normal;
    }
}

/* Gráficos y Figuras */
.figura {
    color: #000;

    p {
        margin: 0;
        line-height: unset;
    }

    .nombre {
        letter-spacing: .6px;
        font-size: .9rem;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 2px;
    }

    .titulo {
        font-weight: 600;
    }

    img {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .fuente {
        margin-bottom: 35px;
    }

    .fuente, .nota, .cita {
        font-size: .84rem;
        line-height: normal;
    }

    .nota, .cita {
        margin-bottom: 8px;
    }
    
    .nota {
        font-style: italic;
    }
}

/*Tabla*/
table {
    border: none;
    width: 100%;
    height: auto;
    text-align: center;
    border-collapse: collapse;
    margin: 1rem auto;
    font-size: .9rem;

    td, th {
        border: 1px solid #000;
        padding: .5rem;
    }
    
    tbody {
        background: #FFF;
    }

    tr:nth-child(even) {
        background: #F1F5F4;
    }

    thead {
        background: #222;
    }

    thead th, thead tr {
        font-weight: bold;
        color: #FFF;
        text-align: center;
        font-family: 'Instrument Sans', serif;
    }
}

/* Recuadros */
.recuadro {
    background-color: #f4f4f4;
    padding: 10px 30px;
    border: 1px solid #ccc;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 0;

    p {
        margin-bottom: 1.2rem;
    }

    h2.r-titulo {
        margin-top: 0;
        margin-bottom: .4rem;
        text-transform: uppercase;
        font-size: 1.2rem;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }

    h2.r-sub {
        margin-top: 0;
        font-size: 1.5rem;
        font-family: 'Instrument Sans', serif;
        letter-spacing: .6px;
    }
}

/* EHP */
.nodo_27a8c0a1ab336 h1 {
    font-family: 'Instrument Sans', serif;
}

  .nodo_79899652ab336 .articulo
, .nodo_a605a442ab336 .articulo
, .nodo_020d5982ab336 .articulo 
, .nodo_fb2e7ee1bf336 .articulo
, .nodo_d82a57f001436 .articulo
, .nodo_5fb5588b01436 .articulo
, .nodo_1ecd0fa211436 .articulo
, .nodo_e7fdb35b71436 .articulo
, .nodo_00138b18c1436 .articulo
, .nodo_c1dcef10d1436 .articulo
, .nodo_2e695336d1436 .articulo {
    h1, h2, h3 {
        font-family: 'Instrument Sans', serif;
    }
}


/* Recuadro Feminista */
  .nodo_fb2e7ee1bf336 .fem.recuadro
, .nodo_d82a57f001436 .fem.recuadro
, .nodo_5fb5588b01436 .fem.recuadro
, .nodo_e7fdb35b71436 .fem.recuadro {
    background-color: #f2eef6;
    border-color: #775797;
    
    h1, h2, .nombre, .articulo li::before {
        color: #816daf;
    }

    h3 {
        color: #775797;
    }

    h2.r-titulo {
        color: #775797;
    }

    header {
        border-top: 2px solid #816daf;
        border-bottom: 1px solid #816daf;
    }

    table td, table th {
        border-color: #816daf;
    }

    thead {
        background: #775797;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #816daf;
    }
}

/* Capitulo I y Mensaje del Ministro */
.nodo_79899652ab336, .nodo_a605a442ab336 {
    h1, h2, h3, .nombre, .articulo li::before {
        color: #99815a;
    }

    .recuadro {
        background-color: #f9f9f6;
        border-color: #c3a676;
    }

    h2.r-titulo {
        color: #735627;
    }

    header {
        border-top: 2px solid #99815a;
        border-bottom: 1px solid #99815a;
    }
    
    table td, table th {
        border-color: #c3a676;
    }
    
    thead {
        background: #c3a676;
    }
    
    ::selection, ::-moz-selection {
        color: #FFF;
        background: #876f48;
    }
    
    .notas-al-pie a, a.fn {
        color: #99815a;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #583c0e;
    }
}

/* Capitulo II */
.nodo_020d5982ab336 {
    h1, h2, .nombre, .articulo li::before {
        color: #40676c;
    }

    h3 {
        color: #6f8d97;
    }

    .recuadro {
        background-color: #f1f5f4;
        border-color: #6f8d97;
    }

    h2.r-titulo {
        color: #6f8d97;
    }

    header {
        border-top: 2px solid #40676c;
        border-bottom: 1px solid #40676c;
    }
    
    table td, table th {
        border-color: #40676c;
    }
    
    thead {
        background: #6f8d97;
    }
    
    ::selection, ::-moz-selection {
        color: #FFF;
        background: #40676c;
    }
    
    .notas-al-pie a, a.fn {
        color: #548191;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #40676c;
    }
}

/* Capitulo III */
.nodo_fb2e7ee1bf336 {
    h1, h2, .nombre, .articulo li::before {
        color: #29abe3;
    }

    h3 {
        color: #0073aa;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #0073aa;
    }

    h2.r-titulo {
        color: #0073aa;
    }

    header {
        border-top: 2px solid #29abe3;
        border-bottom: 1px solid #29abe3;
    }

    table td, table th {
        border-color: #29abe3;
    }

    thead {
        background: #0073aa;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #29abe3;
    }
    
    .notas-al-pie a, a.fn {
        color: #29abe3;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #006492;
    }
}

/* Capitulo IV */
.nodo_d82a57f001436 {
    h1, h2, h4, .nombre, .articulo li::before {
        color: #55b25d;
    }

    h3 {
        color: #2d6c56;
    }
    
    h4 {
        font-size: .95rem;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        margin-top: 2.5rem;
    }

    .recuadro {
        background-color: #f8f9f8;
        border-color: #2d6c56;
    }

    h2.r-titulo {
        color: #2d6c56;
    }

    header {
        border-top: 2px solid #55b25d;
        border-bottom: 1px solid #55b25d;
    }

    table td, table th {
        border-color: #55b25d;
    }

    thead {
        background: #2d6c56;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #55b25d;
    }
    
    .notas-al-pie a, a.fn {
        color: #55b25d;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #2d6c56;
    }
}

/* Capitulo V */
.nodo_5fb5588b01436 {
    h1, h2, .nombre, .articulo li::before {
        color: #cd154c;
    }

    h3 {
        color: #a3004b;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #a3004b;
    }

    h2.r-titulo {
        color: #a3004b;
    }

    header {
        border-top: 2px solid #cd154c;
        border-bottom: 1px solid #cd154c;
    }

    table td, table th {
        border-color: #cd154c;
    }

    thead {
        background: #a3004b;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #cd154c;
    }
}

/* Capitulo VI */
.nodo_1ecd0fa211436 {
    h1, h2, .nombre, .articulo li::before {
        color: #688cb1;
    }

    h3 {
        color: #4478a4;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #4478a4;
    }

    h2.r-titulo {
        color: #4478a4;
    }

    header {
        border-top: 2px solid #688cb1;
        border-bottom: 1px solid #688cb1;
    }

    table td, table th {
        border-color: #688cb1;
    }

    thead {
        background: #4478a4;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #688cb1;
    }
}

/* Capitulo VII */
.nodo_e7fdb35b71436 {
    h1, h2, h4, .nombre, .articulo li::before {
        color: #3a529f;
    }

    h3 {
        color: #075ea4;
    }
    
    h4 {
        font-size: .95rem;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #075ea4;
    }

    h2.r-titulo {
        color: #2aaddd;
    }

    header {
        border-top: 2px solid #3a529f;
        border-bottom: 1px solid #3a529f;
    }

    table td, table th {
        border-color: #3a529f;
    }

    thead {
        background: #2aaddd;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #3a529f;
    }
}

/* Capitulo VIII */
.nodo_00138b18c1436 {
    h1, h2, h4, .nombre, .articulo li::before {
        color: #4a315a;
    }
    
    header {
        border-top: 2px solid #4a315a;
        border-bottom: 1px solid #4a315a;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #4a315a;
    }
    
    .notas-al-pie a, a.fn {
        color: #9153b7;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #4a315a;
    }
}

/* Capitulo IX */
.nodo_c1dcef10d1436 {
    h1, h2, h4, .nombre, .articulo li::before {
        color: #29366e;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #29366e;
    }

    h2.r-titulo {
        color: #ff005c;
    }

    header {
        border-top: 2px solid #29366e;
        border-bottom: 1px solid #29366e;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #29366e;
    }
    
    .notas-al-pie a, a.fn {
        color: #ff005c;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #29366e;
    }
}

/*Capítulo X*/
.nodo_2e695336d1436 {
    h1, h2, h4, .nombre, .articulo li::before {
        color: #e58714;
    }

    h3 {
        color: #ab7d47;
    }
    
    h4 {
        font-size: .95rem;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

    .recuadro {
        background-color: #f9f9fb;
        border-color: #e58714;
    }

    h2.r-titulo {
        color: #ab7d47;
    }

    header {
        border-top: 2px solid #e58714;
        border-bottom: 1px solid #e58714;
    }

    table td, table th {
        border-color: #f0b367;
    }

    thead {
        background: #e58714;
    }

    ::selection, ::-moz-selection {
        color: #FFF;
        background: #e58714;
    }
    
    .notas-al-pie a, a.fn {
        color: #ff8000;
    }
    
    .notas-al-pie a:hover, a.fn:hover {
        color: #b94100;
    }
}

.integrantes {
    text-align: left;

    td {
        padding: 10px;
        border: none;
    }

    tr {
        display: flex;
        margin-bottom: 40px;
    }

    img {
        width: 160px;
    }

    p {
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }

    h2 {
        margin: 0.7rem 0 1rem 0;
        font-size: 1.4rem;
    }
}

/*
Efecto Zoom
*/
img[data-action="zoom"] {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
}

.zoom-img,
.zoom-img-wrap {
    position: relative;
    z-index: 666;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

img.zoom-img {
    cursor: pointer;
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
}

.zoom-overlay {
    z-index: 420;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    filter: "alpha(opacity=0)";
    opacity: 0;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
    filter: "alpha(opacity=100)";
    opacity: 1;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
    cursor: default;
}
