<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --theme-base-color: var(--theme-color);
    --theme-base-color-text: var(--tpl-color-base-text);
    --theme-color1: var(--tpl-color1);
    --theme-color2: var(--tpl-color2);
    --theme-color3: var(--tpl-color3);
    --theme-color4: var(--tpl-color4);
    --theme-color5: var(--tpl-color5);
    --theme-color6: var(--tpl-color6);
    --theme-font-color: var(--font-cover);
    
    --theme-color-background1: var(--tpl-color-background1);
    --theme-color-background2: var(--tpl-color-background2);
    --theme-color-background3: var(--tpl-color-background3);
    --theme-color-background4: var(--tpl-color-background4);
    --theme-color-background5: var(--tpl-color-background5);
    --theme-color-background6: var(--tpl-color-background6);
    
    --little-box-height: var(--little-box-height);
    --bloc-text-color: var(--bloc-text-color);
}

*{
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    /*
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    position: fixed;
    overflow-y: auto;
    */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
}
.cover-container{
    display: flex;
    font-family: "Libre Franklin", sans-serif;
    margin: 1vw 1vw 0 1vw;
    /*
    border: 13px solid white;
    border-radius: 5px 5px 0 0;
    height: 98vh;
    overflow-y: auto;
    scrollbar-width: none;
    */

}
.cover-container.license{
    max-height: 100vh;
    overflow: hidden;
}
.cover-container h1,
.cover-container h3{
    margin-bottom: 1rem;
}

.cover-container h2 {
    margin-bottom: 0;
}

.cover-container h1 {
    font-weight: 900;
}

.cover-container h2,
.cover-container h3{
    font-weight:700;
}
.header{
    display: flex;
    width: 50vw;
    max-width: 100%;
    min-height: 100vh;
    color: var(--theme-base-color-text);
    /*
    background-color: rgba(0,0,0,0.4);
    background-attachment: fixed;
    min-height: 94vh;
    height: 94vh;
    */
}
.header-content{
    position: fixed;
    display: flex;
    width: 100%;
    max-width: 100%;
    /*
    height: 94vh;
    */
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    color:black; 
    background-color: rgba(0,0,0,0.4);
    background-attachment: fixed;
    border-top: 13px solid #fff;
    border-right: 6px solid #fff;
    border-left: 13px solid #fff;
    border-radius: 5px 0 0 0;

}
.header-content img{
    max-width: 100%;
}
.header-content .logo img{
    max-width: 40vw;
}
.header-content .description{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.header-content .description img{
    width:auto;
    max-width: 70%;
    height: auto;
    max-height: 70%;
    margin: 0 auto;
}

.coverimg{
    display: flex;
    max-width: 100%;
    overflow: hidden;
}
.coverimg img{
    max-width: 100%;
}
.main{
    width: 50vw;
    padding: 0;
}
.blocs{
    /*height: 97vh;*/
}
.bloc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 50%;
    min-height: calc(97vh / 3);
    padding: 0;
    --bloc-text-color:#000000;
    background-color: rgba(255,255,255,0);
    text-align: center;
    border: 6px solid #fff;
    /*
    border-left: 13px solid #fff;
    border-bottom: 13px solid #fff;
    */
    --little-box-height: 50%;
}
.bloc:hover {
    background: rgba(255, 255, 255, 0.8);
    --little-box-height: 100%;
    --bloc-text-color: var(--tpl-bloc-text-color-hover);
    --tpl-color-back-bloc: rgba(255,255,255,1);
}
.bloc:last-of-type {
    flex-grow: 1;
}

.bloc a{
    display: flex;
    align-items:flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color:var(--bloc-text-color);
    text-align:left;
}
.bloc a:hover,
.bloc a:active,
.bloc a:focus,{
    text-decoration: underline;
}

/*.bloc:nth-child(1n) {
    background-color: var(--theme-color-background1);
}
.bloc:nth-child(2n) {
    background-color: var(--theme-color-background2);
}
.bloc:nth-child(3n) {
    background-color: var(--theme-color-background3);
}
.bloc:nth-child(4n) {
    background-color: var(--theme-color-background4);
}
.bloc:nth-child(5n) {
    background-color: var(--theme-color-background5);
}
.bloc:nth-child(6n) {
    background-color: var(--theme-color-background6);
}
.bloc:nth-child(7n) {
    background-color: var(--theme-color-background1);
}
.bloc:nth-child(8n) {
    background-color: var(--theme-color-background2);
}
.bloc:nth-child(9n) {
    background-color: var(--theme-color-background3);
}
.bloc:nth-child(10n) {
    background-color: var(--theme-color-background4);
}
.bloc:nth-child(11n) {
    background-color: var(--theme-color-background5);
}
.bloc:nth-child(12n) {
    background-color: var(--theme-color-background6);
}
.bloc:nth-child(13n) {
    background-color: var(--theme-color-background1);
}
.bloc:nth-child(14n) {
    background-color: var(--theme-color-background2);
}
.bloc:nth-child(15n) {
    background-color: var(--theme-color-background3);
}
.bloc:nth-child(16n) {
    background-color: var(--theme-color-background4);
}
.bloc:nth-child(17n) {
    background-color: var(--theme-color-background5);
}
.bloc:nth-child(18n) {
    background-color: var(--theme-color-background6);
}*/

.footer{
    display: flex;
    /*margin-top: 1rem;*/
    align-items: center;
    padding:1.6vw;
    background-color:white;
}

.footer img{
    max-width: 60px;
}

.cover-btn{
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.cover-btn a{
    display: block;
    width: 50px;
}
/*.cover-btn:hover,*/
.cover-btn:active,
.cover-btn:focus{
    background-color: rgba(0,0,0,.1);
}
.cover-btn:focus{
    outline-color: #222;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    border-radius: 5px;
}

.cover-btn img{
    max-width: 50px;
}

.hide{
    display: none;
}

/* Accessibilitat */
.btn-license span.sr-only, .btn-search span.sr-only, .btn-print span.sr-only {
 color:#000000;
 background-color:#ffffff;
}

#bloctitol {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    border-top: 13px solid white;
    width:100%;
    min-height:45%;
}

#bloctitol-text {
    padding: 0.8vw;
    width: 95%;
    border-right: 13px solid white;
    background-color: var(--tpl-color-back-bloc);
    transition: 0.2s;
}

#bloctitol-base-color {
    display: inline-block;
    width: 7%;
    background-color: white;
}

#bloctitol-color {
    background-color: var(--theme-base-color);
    height: var(--little-box-height);
    transition: 0.2s;
}

.main {
    background-color: rgba(255,255,255,0.4);
}

.cover-bottom {
background-color: rgba(255,255,255,0.8);
border-top: 13px solid #fff;
display: flex;
flex-direction: column;
}

.cover-bottom-top{
display:flex;
}

div.cover-bottom div.title{
width: 100%;
padding: 1.6vw;
/*
width: 95%;
*/
border-right: 13px solid white;
}

.brand {
padding: 1.6vw;
}

.boxtitle-base-color {
    display:inline-block;
    width: 4.8%;
    background-color:white;
}
.boxtitle-color {
    background-color: var(--theme-base-color);
    height: 100%;
}
a.clink img{
    transition: 0.2s;
}
a.clink img:hover {
    transform: scale(1.2);
    background-color: white;
}

/* Small devices */
@media only screen and (max-width: 767.98px) {
    .brand {
        min-height:35vh;
    }
    .cover-container{
        flex-direction: column;
        max-width: 100%;
    }
    .cover-container h1{
        /*margin-left: 10px;
        margin-right: 10px;*/
        font-size: 1.2rem;
    }
    .header{
        width: 100vw;
        max-width: 100%;
        /*height: 43%;
        min-height: 43%;*/
        display:contents;
    }
    .header-content{
        position: static;
        width: 100%;
        height: 50%;
        border-top: 13px solid #fff;
        border-right: 13px solid #fff;
        border-left: 13px solid #fff;
        border-radius: 5px 5px 0 0;
    }
    .cover-btn {
        margin-right: 10px;
    }
    .cover-btn img {
        max-width: 40px;
    }
    .main{
        width: 100vw;
        max-width: 100%;
    }
    .blocs{
        display: block;
        border-left: 6px solid #fff;
        border-right: 6px solid #fff;
    }
    .bloc{
        min-height: 200px;
        align-items: flex-end;
        /*border-left:0;*/
    }
    .bloc h2{
        font-size: 1rem;
        word-break: break-word;
    }
    .credits-container{
        padding: 20px !important;
    }
    .credits-title{
        font-size: 1.5rem !important;
    }
    .credits-body{
        max-height: 90% !important;
        font-size: 11px !important;
    }
    .footer{
        padding: 1.6vw;
    }
    #bloctitol-text {
        padding: 1.6vw;
    }
    #bloctitol-base-color {
        width:5%;
    }
    
/*Prueba lista en modo mobile*/

    div.cover-bottom div.title {
        min-height: 8vh;
    }
    #bloctitol {
        min-height: 7vh;
        border-top:0;
    }
    .bloc {
        min-height: 0;
    }
    

}
/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .cover-container h1{
      font-size: 1.8rem;
    }
    .header{
        width: 50vw;
        /*
        min-height: 99vh;
        height: 94vh;
        */
    }
    .header-content{
        position: fixed;
        /*
        width: 48.5vw;
        width: calc(49vw - 6px);
        */
        width: 49vw;
        min-height: 99vh;
        border-right: 13px solid #fff;
    }
    .cover-btn {
        margin-right: 10px;
    }
    .main{
        width: 50vw;
    }
    .blocs{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        min-height: 99vh;
        border-top: 6px solid #fff;
        border-right: 6px solid #fff;
        border-radius: 0 5px 0 0;
        /*
        height:94vh;
        */
    }
    .bloc h2{
        font-size: 1rem;
    }
    .boxtitle-base-color {
        width: 3.6%;
    }
}
/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .bloc h2{
        font-size: 1.2rem;
    }
    .boxtitle-base-color {
    width: 4.2%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .bloc h2{
        font-size: 1.2rem;
    }
    .boxtitle-base-color {
        width: 4.8%;
    }
}

/** Credits
 * ----------------- */
.credits.open .credits-backdrop {
    position: fixed !important;
}

/* Strange devices 1*/
@media only screen and (min-width:768px) and (max-width: 1500px) {

    #bloctitol {
        min-height:55%;
    }
}

/* Strange devices 2*/
@media only screen and (min-width:768px) and (max-height: 800px) {

    #bloctitol {
        min-height:60%;
    }
}

/* Strange devices 3*/
@media only screen and (min-width:768px) and (max-width: 1500px) and (max-height: 800px) {

    #bloctitol {
        min-height:65%;
    }
}

/* Strange devices 4*/
@media only screen and (min-width:768px) and (max-width: 1500px) and (max-height: 640px) {

    #bloctitol {
        min-height:75%;
    }
}
</pre></body></html>