@import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic|Open+Sans:400italic,400,600);
/*--Whatsapp--*/
.whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 65px;
    right: 16px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 6px;
    width: 40px;
    height: 40px;
}
/*--END Whatsapp--*/
/*texto parpadeante*/
.rotulo {
    text-align: center;
    color: crimson;
}

.imagen_center {
    margin: auto;
    display: block;
}

.text {
    font-size: 28px;
    font-family: helvetica;
    font-weight: bold;
    color: #00E9FF;
    text-transform: uppercase;
}

.parpadea {
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

/*webinar extracomunitarios*/

#webinar-extracomunitarios {
    min-height: 400px !important;
    background-image: url("../images/webinar-extracomunitarios.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
    margin-bottom: 20px;
    padding: 10px 0px 10px 0px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    #webinar-extracomunitarios .destacado {
        color: rgba(255,255,255,1.00);
        padding: 5px;
        background-color: #001a35;
        display: block;
        margin-left: 10px;
    }

    #webinar-extracomunitarios .titulo {
        width: 90%;
        margin-left: 10px;
        position: absolute;
    }

    #webinar-extracomunitarios .descripcion {
        width: 90%;
    }
/*FIN webinar extracomunitarios*/
/*webinar estudiantes*/
#webinar-estudiantes {
    min-height: 400px !important;
    background-image: url("../images/webinar-estudiantes.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
    margin-bottom: 20px;
    padding: 10px 0px 10px 0px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    #webinar-estudiantes .destacado {
        color: rgba(255,255,255,1.00);
        padding: 5px;
        background-color: #00b2da;
        display: block;
        margin-right: 10px;
    }

    #webinar-estudiantes .titulo {
        width: 90%;
        margin-left: 10px;
        position: absolute;
    }

    #webinar-estudiantes .descripcion {
        width: 90%;
    }
/*FIN webinar estudiantes*/
/*webinar repetidores*/
#webinar-repetidores {
    min-height: 400px !important;
    background-image: url("../images/webinar-repetidores.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
    margin-bottom: 20px;
    padding: 10px 0px 10px 0px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    #webinar-repetidores .destacado {
        color: rgba(255,255,255,1.00);
        padding: 5px;
        background-color: #001a35;
        display: block;
        margin-right: 10px;
    }

    #webinar-repetidores .titulo {
        width: 90%;
        margin-left: 10px;
        position: absolute;
    }

    #webinar-repetidores .descripcion {
        width: 90%;
    }
/*FIN webinar repetidores*/
.enlace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
/*Banner información médicos extracomunitarios*/
.banner-webinar {
    background-image: url("../images/webinar.jpg");
    background-repeat: no-repeat;
    position: relative;
}

    .banner-webinar .contenido {
        /*background-color: #5caab6;*/
        background-color: #001a35;
        padding: 40px 10px 10px 25px;
        min-height: 341px;
    }

    .banner-webinar h1 {
        color: rgba(255,255,255,1.00);
        font-size: 28px;
        line-height: 35px;
    }

    .banner-webinar h2 {
        color: rgba(255,255,255,1.00);
    }

    .banner-webinar a {
        color: #FFFFFF
    }

        .banner-webinar a:link {
            color: #FFFFFF !important
        }

        .banner-webinar a:visited {
            color: #FFFFFF !important
        }

        .banner-webinar a:hover {
            color: #FFFFFF !important
        }

        .banner-webinar a:active {
            color: #FFFFFF !important
        }
/*--------------------------------------------*/

.banner-postMIR {
    background-image: url("../images/servicios-postmir.jpg");
    background-repeat: no-repeat;
    position: relative;
}

    .banner-postMIR .modalidades {
        /*background-color: #5caab6;*/
        background-color: #001a35;
        padding: 40px 10px 10px 25px;
        min-height: 341px;
    }

    .banner-postMIR h1 {
        color: rgba(255,255,255,1.00);
        font-size: 28px;
        line-height: 35px;
    }

    .banner-postMIR h2 {
        color: rgba(255,255,255,1.00);
    }

    .banner-postMIR a {
        color: #FFFFFF
    }

        .banner-postMIR a:link {
            color: #FFFFFF !important
        }

        .banner-postMIR a:visited {
            color: #FFFFFF !important
        }

        .banner-postMIR a:hover {
            color: #FFFFFF !important
        }

        .banner-postMIR a:active {
            color: #FFFFFF !important
        }



@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

/*----------*/
/*menu horizontal matrículas 2021-*/
ul.menu2021 {
    background: #134D0E;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

    ul.menu2021 li {
        float: left;
        width: 20%;
    }

        ul.menu2021 li a {
            border-left: 1px solid #FFFFFF;
            border-right: 1px solid #FFFFFF;
            text-align: center;
            color: #FFF;
            display: block;
            padding: .3em;
            text-decoration: none;
        }

        ul.menu2021 li:last-child {
            border-right: 0px;
        }
/*-----------*/

/*video responsive*/

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .video-responsive iframe, .video-responsive object, .video-responsive embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


.fondo_blanco {
    background-color: rgba(255,255,255,1.00)
}

.destacado_naraja {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #fff;
    font-weight: normal;
    line-height: 19px;
    /*	text-align:justify;*/
    background-color: rgba(255,152,5,1.00);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
}

.scroll {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 423px;
    margin-right: 20px;
}

.efecto2 {
    position: relative;
}

    .efecto2:before, .efecto2:after {
        /* Posiciona la sobora por detras del color de la caja*/
        z-index: -1;
        position: absolute;
        /* no aplico ningun contenidos HTML */
        content: "";
        /* posiciona la sombra con respecto al borde inferior, izquierdo y superior */
        bottom: 15px;
        left: 10px;
        top: 80%;
        /* configura el ancho */
        width: 50%;
        /* color de fondo */
        background: #777;
        /* definicion de la sombra estandar para box-shadow */
        -webkit-box-shadow: 0 15px 10px #777;
        -moz-box-shadow: 0 15px 10px #777;
        box-shadow: 0 15px 10px #777;
        /* rotacion de la sombra */
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    .efecto2:after {
        /* rotacion de la sombra */
        -webkit-transform: rotate(3deg);
        -moz-transform: rotate(3deg);
        -o-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        /* posiciona la sombra con respecto al borde izquierdo y derecho */
        right: 10px;
        left: auto;
    }

.texto-gris {
    color: #999;
}

.navbar .brand {
    display: block;
    float: left;
    padding: 0px 20px 0px;
    margin-left: -20px;
    font-size: 20px;
    font-weight: 200;
    color: #666666;
    text-shadow: 0 1px 0 #eeeeee;
}

section {
    margin-top: 10px;
    padding-top: 10px;
    border: 0px;
}

div.subnav-fixed {
    top: 61px;
}
/* cambia aspecto de nav-pills no activas */
/*.nav-pills li {
  float: right;
  background:#f9f9ff;
}*/
.subrayado_gris {
    display: block;
    margin: 20px 0 25px 0;
    border-bottom: 1px dotted #b1b1b1;
}

.subrayado_azul {
    color: #585f69;
    margin: 0 0 -2px 0;
    padding-right: 10px;
    display: inline-block;
    text-shadow: 0 0 1px #f6f6f6;
    border-bottom: 2px solid #72c02c;
}

#footer a {
    color: #444 !important
}

    #footer a:link {
        color: #444 !important
    }

    #footer a:visited {
        color: #444 !important
    }

    #footer a:hover {
        color: #444 !important
    }

    #footer a:active {
        color: #444 !important
    }

#footer h3 {
    font-family: "Noto Sans", Lucida, sans-serif;
    font-size: 15px;
    font-style: normal;
    color: #666666;
    font-weight: normal;
    line-height: 25px;
    margin: 0 0 -2px 0;
    padding-right: 10px;
    display: inline-block;
    border-bottom: 2px solid #019bdf;
}

#footer h4 {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    color: #333333;
    font-weight: normal;
    line-height: 20px;
}

#footer p {
    font-family: "Noto Sans", Lucida, sans-serif;
    font-size: 10px;
    font-style: normal;
    color: #666666;
    font-weight: normal;
    line-height: 15px;
    margin: 0 0 -2px 0;
    padding-right: 10px;
}

.page-header {
    padding-bottom: 9.5px;
    border-bottom: 0px solid #eeeeee;
}

#links_gris a:link {
    text-decoration: none;
    color: #666
}

#links_gris a:visited {
    text-decoration: none;
    color: #666
}

#links_gris a:hover {
    text-decoration: none;
    color: #0099dd
}

#links_gris a:active {
    text-decoration: none;
    color: #666
}

#links_gris_2 a:link {
    text-decoration: none;
    color: #666
}

#links_gris_2 a:visited {
    text-decoration: none;
    color: #666
}

#links_gris_2 a:hover {
    text-decoration: none;
    color: #0099dd
}

#links_gris_2 a:active {
    text-decoration: none;
    color: #666
}

#links_gris_2 p {
    line-height: 18px;
    text-align: left
}
/*#links_gris_2 ul{list-style:none;text-align:left}*/

#links_gris_3 a:link {
    text-decoration: none;
    color: #666
}

#links_gris_3 a:visited {
    text-decoration: none;
    color: #666
}

#links_gris_3 a:hover {
    text-decoration: none;
    color: #0099dd
}

#links_gris_3 a:active {
    text-decoration: none;
    color: #666
}

#links_gris_3 p {
    line-height: 18px;
    text-align: left
}

#links_gris_4 a:link {
    text-decoration: none;
    color: #666
}

#links_gris_4 a:visited {
    text-decoration: none;
    color: #666
}

#links_gris_4 a:hover {
    text-decoration: none;
    color: #0099dd
}

#links_gris_4 a:active {
    text-decoration: none;
    color: #666
}

#links_gris_5 a:link {
    text-decoration: none;
    color: #666
}

#links_gris_5 a:visited {
    text-decoration: none;
    color: #666
}

#links_gris_5 a:hover {
    text-decoration: none;
    color: #0099dd
}

#links_gris_5 a:active {
    text-decoration: none;
    color: #666
}

.background_negro_transparente {
    background-image: url(../images/bg_trans.png);
    background-repeat: repeat;
}

    .background_negro_transparente img {
        vertical-align: top !important
    }

#bajo_footer img {
    vertical-align: top !important;
}

.transparencia {
    opacity: .25;
    -moz-opacity: .25;
    filter: alpha(opacity=25);
}

.background_naranja {
    background-color: #ffb400;
}

.background_verde {
    background-color: #a4ca01;
}

.background_gris {
    background-color: #fbfbfb;
}

.background_gris_oscuro {
    background-color: #7c828d;
}

.background_gris_muy_oscuro {
    background-color: #585f69;
}

.background_blanco {
    background-color: #ffffff;
}

.background_textura {
    background-image: url(../images/back.png)
}

.background_footer {
    background-image: url(../images/background_footer.jpg)
}

.background_azul_claro {
    background-color: #d4e3f5;
}

.background_azul_medio {
    background-color: #80aadf;
}

.background_azul_oscuro {
    background-color: #558ed5;
}

.background_azul_muy_oscuro {
    background-color: #3f5882;
}

.background_azul_muy_muy_oscuro {
    background-color: #003a66;
}

.texto_blanco_centrado {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #fff;
    font-weight: normal;
    line-height: 19px;
    text-align: center;
}
/*.table td {
	text-align: center;
	valign: middle;
}*/

.text_azul {
    color: #0088cc;
    font-weight: bold;
}

.text_align_center {
    text-align: center;
}

.bordes_blancos {
    border-bottom-style: solid;
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-right-color: #FFF;
    border-bottom-color: #FFF;
}

.borde_derecho_blanco {
    border-right-width: 1px;
    border-right-color: #FFF;
    border-right-style: solid;
    margin-right: -2px;
}

.borde_bottom_blanco {
    border-bottom-width: 1px;
    border-bottom-color: #CCC;
    border-bottom-style: solid;
    margin-bottom: -2px;
}

.esquinas_redondeadas_con_sombra {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.esquinas_cuadradas_con_sombra {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.sombra_gris {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.esquinas_top_redondeadas_sombra_bottom {
    -webkit-box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px 6px 0px 0px;
    border-radius: 6px 6px 0px 0px;
}

.sombra_interior {
    -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.esquinas_redondeadas {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.padding_top_20 {
    padding-top: 20px;
}

.padding30 {
    padding-right: 35px !important;
    padding-left: 35px !important;
}

.padding_right_20 {
    padding-right: 20px;
}

.padding_left_20 {
    padding-left: 20px;
}

.padding_right_30 {
    padding-right: 30px;
}

.padding_top_40 {
    padding-top: 40px;
}

.padding_bottom_15 {
    padding-bottom: 15px;
}

.destacado_azul_oscuro {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #fff;
    font-weight: normal;
    line-height: 19px;
    /*	text-align:justify;*/
    background-color: #0088cc;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
}

.destacado_azul_mas_oscuro {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    color: #fff;
    font-weight: normal;
    line-height: 19px;
    /*	text-align:justify;*/
    background-color: rgba(46,62,78,1.00);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
}

.destacado_verde_oscuro {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    color: #fff;
    font-weight: normal;
    line-height: 19px;
    /*	text-align:justify;*/
    background-color: rgba(101,153,79,1.00);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
}

.padding_top_7 {
    padding-top: 7px;
}

.padding_bottom_7 {
    padding-bottom: 7px;
}

.padding_bottom_25 {
    padding-bottom: 25px;
}

.padding_top_10 {
    padding-top: 10px;
}

.padding_bottom_10 {
    padding-bottom: 10px;
}

.padding_top_100 {
    padding-top: 100px;
}

.padding_top_150 {
    padding-top: 150px;
}

.padding_top_200 {
    padding-top: 200px;
}

.padding_top_30 {
    padding-top: 30px;
}

.margin-negativo-lef-rigth {
    margin-left: -28px;
    margin-rigth: -40px;
}

.padding_left_rigth_3 {
    padding-left: 3px;
    padding-rigth: 3px;
}

.padding_left_rigth_20 {
    padding-left: 20px;
    padding-rigth: 20px;
}

.padding_top_-10 {
    padding-top: -10px;
}

.tabla_banner {
    vertical-align: bottom;
    width: 100%;
    height: 150px;
    padding: 0 15px 0 15px;
}

.degradado_barra_modalidades {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #666;
    font-weight: normal;
    line-height: 19px;
    margin-top: 2px;
    padding-bottom: 5px;
    padding-top: 5px;
    -webkit-box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0px 0px 6px 6px;
    border-radius: 0px 0px 6px 6px;
    border-bottom-style: solid;
    /*border-right-style: solid;*/
    /*//border-right-width: 1px;*/
    border-bottom-width: 1px;
    /*border-right-color: #FFF;*/
    border-bottom-color: #f0f0f0;
    margin-bottom: 20px;
    background: rgb(239,239,239); /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMWUxZTEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(239,239,239,1) 0%, rgba(225,225,225,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239,239,239,1)), color-stop(100%, rgba(225,225,225,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(239,239,239,1) 0%, rgba(225,225,225,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(239,239,239,1) 0%, rgba(225,225,225,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(239,239,239,1) 0%, rgba(225,225,225,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(239,239,239,1) 0%, rgba(225,225,225,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#e1e1e1', GradientType=0 ); /* IE6-8 */
}

.font-size_15px {
    font-size: 15px;
}

.margin_bottom_10 {
    margin-bottom: 10px;
}

.margin_bottom_20 {
    margin-bottom: 20px;
}

.margin_bottom_30 {
    margin-bottom: 30px;
}

.margin_top_bottom_20 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.margin_top_bottom_30 {
    margin-bottom: 30px;
    margin-top: 30px;
}

.margin_separador {
    margin-bottom: 60px;
    margin-top: 60px;
}

.margin_left_20 {
    margin-left: 20px;
}

.margin_left_5_right_10 {
    margin-left: 5px;
    margin-right: 10px;
}

.margin_right_5 {
    margin-right: 5px;
}

.texto_tabla {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #666666;
    font-weight: normal;
    text-align: justify
}

.texto_pie_ilustracion {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-style: normal;
    color: #666666;
    font-weight: normal;
    text-align: left
}

h1 {
    font-family: "Noto Sans", Lucida, sans-serif;
    font-size: 25px;
    font-style: normal;
    color: #000000;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 20px;
}

h2 {
    font-family: "Noto Sans", Lucida, sans-serif;
    font-size: 20px;
    font-style: normal;
    color: #000000;
    font-weight: normal;
    line-height: 25px;
}

h3 {
    font-family: "Noto Sans", Lucida, sans-serif;
    font-size: 15px;
    font-style: normal;
    color: #333;
    font-weight: normal;
    line-height: 25px;
}

p {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #666;
    font-weight: normal;
    line-height: 19px;
    text-align: justify;
}

body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #666;
    font-weight: normal;
    margin-top: 00px;
}

ul {
    text-align: justify;
    font-size: 12px !important;
}

/* index */

/*.tooltip-inner {
	max-width: 500px;
}

.hero-unit {
	padding-bottom: 5px;
	background-color: #F3F3F3;
	border: 1px solid #ddd;
	text-align: center;
}

.hero-unit h1,
.hero-unit p {
	margin-bottom: 15px;
}

#social {
	display: inline-block;
	margin-top: 45px;
	text-align: center;
}

#gh-star {
	margin-right: 10px;
}

.twitter-share-button  {
	margin-right: 15px;
}

.rss-button {
	width: 40px;
	height: 14px;
	font-size: 11px;
	line-height: 14px;
	font-weight: bold;
	margin: 0 0 10px;
	padding: 2px 5px 2px 4px;
}

.index h3 {
	text-align: center;
	font-size: 20px;
}

#ticker {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.4;
}

.about {
	margin-top: 40px;
	margin-bottom: 40px;
}

.about > div {
	margin-bottom: 20px;
}

.about h3 {
	margin: 0;
	text-align: left;
}

.about i {
	margin-right: 8px;
	font-size: 1.3em;
}

#gallery {
	padding-top: 60px;
}

.thumbnail {
	margin-bottom: 20px;
	background-color: #f3f3f3;
	background-color: rgba(0, 0, 0, 0.05);
}

.thumbnail img {
	width: 100%;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.thumbnail .caption {
	color: inherit;
}

.thumbnail .caption p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thumbnail h3 {
	text-align: left;
	margin-bottom: 0;
}

.thumbnail .btn-toolbar {
	margin-top: 15px;
	text-align: right;
}

#more {
	margin-top: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.links {
	margin-bottom: 20px;
}

.links > a {
	margin-right: 10px;
}

.bsa {
	float: right;
	max-width: 400px;
	padding: 0;
}

body .one .bsa_it_ad {
	margin-bottom: -10px;
	padding: 25px 25px 15px 25px;
	background: none;
	border: none;
	font-family: inherit;
	color: inherit;
}

body .one .bsa_it_ad .bsa_it_t,
body .one .bsa_it_ad .bsa_it_d {
	color: inherit;
	font-size: inherit;
}

body .one .bsa_it_p {
	display: none;
}

.bsap img {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

#footer {
	margin-bottom: 20px;
}

#footer .links a {
	margin-right: 10px;
}*/

@media (max-width: 480px) {
    .hero-unit {
        padding: 20px 20px 0;
        margin: 0 0 20px;
    }

        .hero-unit h1 {
            font-size: 36px;
        }

        .hero-unit iframe {
            margin-right: 0 !important;
        }

    #social {
        margin-top: 0px;
        margin-bottom: 20px;
    }

        #social > span {
            display: block;
        }

    #ticker {
        margin-top: 0;
    }

    .about {
        margin-top: 0;
    }

        .about h3 {
            margin-top: 30px;
        }

        .about p {
            margin-bottom: 0;
        }

    .thumbnail .btn {
        font-size: 15px;
    }

    .modal {
        position: fixed !important;
        top: 25% !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .hero-unit {
        margin-top: 0;
        padding: 30px;
    }

    .about {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding-top: 40px;
    }

    .bsa {
        float: none;
    }
}

@media (max-width: 979px) and (min-width: 768px) {
    .index .navbar {
        margin-bottom: 0;
    }

    .hero-unit {
        border-radius: 0;
    }

    section {
        padding-top: 80px;
    }

    .thumbnail .btn {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (min-width: 980px) {
    .index {
        padding-top: 40px;
    }

    .preview {
        padding-top: 100px;
    }
}

@media (max-width: 1200px) and (min-width: 979px) {
    .navbar-brand img {
        width: 90px;
        margin-top: 13px
    }
}
/* preview */

.subhead {
    padding-bottom: 0;
    margin-bottom: 9px;
}

    .subhead h1 {
        font-size: 54px;
    }

    .subhead > div:first-child {
        min-height: 200px;
    }
/* subnav */

.subnav {
    margin-bottom: 30px;
    width: 100%;
    /*height: 36px;*/
    background-color: #eeeeee; /* Old browsers */
    background-repeat: repeat-x; /* Repeat the gradient */
    background-image: -moz-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #eeeeee)); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Chrome 10+,Safari 5.1+ */
    background-image: -ms-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* IE10+ */
    background-image: -o-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Opera 11.10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#eeeeee', GradientType=0 ); /* IE6-9 */
    background-image: linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* W3C */
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .subnav .nav {
        margin-bottom: 0;
        text-align: center;
    }

        .subnav .nav > li > a {
            margin: 0;
            padding-top: 11px;
            padding-bottom: 11px;
            border-left: 1px solid #f5f5f5;
            border-right: 1px solid #e5e5e5;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
        }

        .subnav .nav > .active > a, .subnav .nav > .active > a:hover {
            padding-left: 13px;
            color: #777;
            background-color: #e9e9e9;
            border-right-color: #ddd;
            border-left: 0;
            -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
            -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
            box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
        }

            .subnav .nav > .active > a .caret, .subnav .nav > .active > a:hover .caret {
                border-top-color: #777;
            }

        .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
            border-left: 0;
            padding-left: 12px;
            -webkit-border-radius: 4px 0 0 4px;
            -moz-border-radius: 4px 0 0 4px;
            border-radius: 4px 0 0 4px;
        }

        .subnav .nav > li:last-child > a {
            border-right: 0;
        }

    .subnav .dropdown-menu {
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
    }

@media (max-width: 767px) {
    .subnav {
        position: static;
        top: auto;
        z-index: auto;
        width: auto;
        height: auto;
        background: #fff; /* whole background property since we use a background-image for gradient */
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        .subnav .nav > li {
            float: none;
        }

            .subnav .nav > li > a {
                border: 0;
            }

            .subnav .nav > li + li > a {
                border-top: 1px solid #e5e5e5;
            }

            .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
                -webkit-border-radius: 4px 4px 0 0;
                -moz-border-radius: 4px 4px 0 0;
                border-radius: 4px 4px 0 0;
            }
    /*table{
		display:none;
	}
	
	table tr td{
		font-size:10px;
	}*/
}

@media (min-width: 980px) {
    .subnav-fixed {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        z-index: 1020; /* 10 less than .navbar-fixed to prevent any overlap */
        border-color: #d5d5d5;
        border-width: 0 0 1px; /* drop the border on the fixed edges */
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
        -moz-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
        box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); /* IE6-9 */
    }

        .subnav-fixed .nav {
            width: 938px;
            margin: 0 auto;
            padding: 0 1px;
        }

    .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
}

@media (min-width: 1210px) {
    .subnav-fixed .nav {
        width: 1168px; /* 2px less to account for left/right borders being removed when in fixed mode */
    }
}

.tabla_borde_blancos {
    width: 100%;
    margin-bottom: 21px;
}

    .tabla_borde_blancos th, .tabla_borde_blancos td {
        padding: 5px;
        line-height: 21px;
        text-align: center;
        vertical-align: middle;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }

    .tabla_borde_blancos th {
        font-weight: bold;
        text-align: center;
    }

    .tabla_borde_blancos thead th {
        vertical-align: middle;
    }

    .tabla_borde_blancos caption + thead tr:first-child th, .tabla_borde_blancos caption + thead tr:first-child td, .tabla_borde_blancos colgroup + thead tr:first-child th, .tabla_borde_blancos colgroup + thead tr:first-child td, .tabla_borde_blancos thead:first-child tr:first-child th, .tabla_borde_blancos thead:first-child tr:first-child td {
        border-top: 0;
    }

    .tabla_borde_blancos tbody + tbody {
        border-top: 2px solid #dddddd;
    }

.navbar .nav > li {
    line-height: 40px;
}

.navbar .nav .dropdown-toggle .caret {
    margin-top: 18px;
}

/******************* MEDIA QUERIES *************/

@media (max-width: 979px) {
    .navbar .nav > li {
        line-height: 22px;
    }

    .navbar .nav .dropdown-toggle .caret {
        margin-top: 8px;
    }
}
/*
.tabla_borde_blancos .table{
	border-style:solid;
	border:3px;
	border-color:#CCC;
}

.tabla_borde_blancos table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 5;
}

.tabla_borde_blancos .table {
  width: 100%;
  margin-bottom: 21px;
}

.tabla_borde_blancos .table th,
.tabla_borde_blancos .table td {
  padding: 8px;
  line-height: 21px;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #ffffff;
}

.tabla_borde_blancos .table th {
  font-weight: bold;
}

.tabla_borde_blancos .page-header {
	margin-top:0px;
}*/

.nohand {
    cursor: default;
}
/* links/iconos para cargar contenido en div */
#cont_carga_1 {
    text-align: center;
}

#carga_1 {
    display: table;
    height: 60px;
}

    #carga_1 li {
        display: table-cell;
        vertical-align: bottom;
        width: 55px;
    }

.carga_1 {
    width: 50px;
    height: 50px;
}

.destacado_1 {
    background-image: url(../images/back_destacado_02.png);
    background-repeat: no-repeat;
    background-position: center top;
}

.destacado_2 {
    background-image: url(../images/back_destacado.png);
    background-repeat: no-repeat;
    background-position: center top;
}

.thumb {
    margin: 5px;
    cursor: pointer;
}

.imagen_cargar {
    cursor: pointer
}

.destacado_3 {
    background-image: url(../images/fondoweb.gif);
    background-repeat: repeat;
}

.destacado_4 {
    background-image: url(../images/background-lineas.jpg);
    background-repeat: repeat;
}

.oculto {
    display: none;
}

.tres_columas_1 {
    margin: 0 20px 0 40px;
}

.tres_columas_2 {
    margin: 0 25px 0 25px;
}

.tres_columas_3 {
    margin: 0 40px 0 20px;
}

.titulo_index {
    margin: 0 30px 0 30px;
}

.tres_columas_imagen {
    /*	float:right;*/
    /*	padding:10px;
*/ margin: 20px 20px 0 20px;
}

.margin_auto {
    margin: 0 20px 0 20px;
}

#nav_resumen {
    font-size: 12px !important;
}

#nav_metodo {
    font-size: 12px !important;
}

#nav_modalidades {
    font-size: 12px !important;
}

#nav_sedes {
    font-size: 12px !important;
}

#nav_examenmir {
    font-size: 12px !important;
}

#nav_cursomirasturias {
    font-size: 12px !important;
}

#nav_demos {
    font-size: 12px !important;
}

#nav_socialmir {
    font-size: 12px !important;
}

.linkblanco a:link {
    text-decoration: none;
    color: #fff
}

.linkblanco a:visited {
    text-decoration: none;
    color: #fff
}

.linkblanco a:hover {
    text-decoration: underline;
    color: #fff
}

.linkblanco a:active {
    text-decoration: none;
    color: #fff
}

#linkblanco a:link {
    text-decoration: none;
    color: #fff
}

#linkblanco a:visited {
    text-decoration: none;
    color: #fff
}

#linkblanco a:hover {
    text-decoration: underline;
    color: #fff
}

#linkblanco a:active {
    text-decoration: none;
    color: #fff
}

#linkblanco2 a:link {
    text-decoration: none;
    color: #fff
}

#linkblanco2 a:visited {
    text-decoration: none;
    color: #fff
}

#linkblanco2 a:hover {
    text-decoration: underline;
    color: #fff
}

#linkblanco2 a:active {
    text-decoration: none;
    color: #fff
}

#linkblanco3 a:link {
    text-decoration: none;
    color: #fff
}

#linkblanco3 a:visited {
    text-decoration: none;
    color: #fff
}

#linkblanco3 a:hover {
    text-decoration: underline;
    color: #fff
}

#linkblanco3 a:active {
    text-decoration: none;
    color: #fff
}


@media (min-width: 1200px) {
    #_preload_div_, #animation_container, #canvas {
        /*	width: 1170px !important;
	height: 420px !important;*/
    }

    #animation_container_2020, #canvas_2020 {
        width: 569px !important;
        height: 399px !important;
    }
}

@media (min-width: 979px) and (max-width: 1024px) {
    #_preload_div_, #animation_container, #canvas {
        width: 600px !important;
        height: 400px !important;
    }

    #animation_container_2020, #canvas_2020 {
        width: 455px !important;
        height: 319px !important;
    }
}

@media (min-width: 600px) and (max-width: 979px) {
    #_preload_div_, #animation_container, #canvas {
        width: 600px !important;
        height: 400px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 350px !important;
        height: 248px !important;
    }
}

.bannermatriculadosmilveinticinco .matricularse {
    width: 90%;
}

/* ----------- dispositivos móviles ----------- */
/* cambios css para modo vertical y horizontal */
@media only screen and (min-device-width: 320px) and (max-device-width: 750px) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 365px !important;
        height: 257px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 365px !important;
        height: 257px !important;
    }
}

/* cambios css solo para modo vertical */
@media only screen and (min-device-width: 320px) and (max-device-width: 750px) and (orientation: portrait) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 365px !important;
        height: 257px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 365px !important;
        height: 257px !important;
    }
}

/* cambios css solo para modo horizontal */
@media only screen and (min-device-width: 320px) and (max-device-width: 750px) and (orientation: landscape) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 600px !important;
        height: 217px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 600px !important;
        height: 423px !important;
    }
}
/* ----------- dispositivos tablet ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 900px !important;
        height: 324px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 350px !important;
        height: 247px !important;
    }
}

/* cambios css solo para modo vertical */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 720px !important;
        height: 261px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 350px !important;
        height: 247px !important;
    }
}

/* cambios css solo para modo horizontal */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    #_preload_div_, #animation_container, #canvas, #dom_overlay_container {
        width: 940px !important;
        height: 339px !important;
    }

    #animation_container_2020, #canvas_2020, #dom_overlay_containe_2020r {
        width: 455px !important;
        height: 322px !important;
    }
}
/*Banner matricula 2025*/
.bannermatriculadosmilveinticinco {
    background-image: url("../images/matricula_2025_02.jpg");
    background-repeat: no-repeat;
    min-height: 400px;
    background-position: right;
    background-size: cover;
    border-bottom: thick;
    border-bottom-color: rgba(255,172,36,1.00);
    border-bottom-style: solid;
}

    .bannermatriculadosmilveinticinco .matricularse {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: rgba(1,43,78,0.9);
        padding: 36px 0px 23px 22px;
        margin: 51px 24px 15px 41px;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
        width: 35%;
    }

        .bannermatriculadosmilveinticinco .matricularse ul {
            margin: 19px 8px 10px 33px;
        }

        .bannermatriculadosmilveinticinco .matricularse .sedes-agotadas {
            -webkit-border-radius: 10px 10px 0px 0px;
            -moz-border-radius: 10px 10px 0px 0px;
            border-radius: 10px 10px 0px 0px;
            background-color: #c10001;
            padding: 14px;
            margin: 0px 0px 10px 0px;
            color: #FFFFFF;
            text-align: left;
            font-size: 18px;
            border-bottom-style: solid;
            border-bottom-color: rgba(255,255,255,1.00);
            line-height: 24px;
        }


    .bannermatriculadosmilveinticinco .menu {
        /*background-color:rgba(1,43,78,0.9);*/
        min-height: 300px;
    }

    .bannermatriculadosmilveinticinco h1 {
        color: #FFFFFF;
        font-size: 27px;
        text-align: center;
    }

    .bannermatriculadosmilveinticinco li {
        color: #FFFFFF;
        font-size: 16px;
        line-height: 35px;
        text-align: left;
    }

    .bannermatriculadosmilveinticinco .caja {
        /*-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;*/
        background-color: rgba(1,43,78,1);
        border-bottom: thick;
        border-bottom-color: rgba(255,172,36,1.00);
        border-bottom-style: solid;
        padding: 10px;
        margin: 0px;
    }

/*Banner tradicional matricula*/
.bannermatricula {
    background-image: url(../images/matricula_2024.jpg);
    background-repeat: no-repeat;
    min-height: 400px;
    background-position: right;
    background-size: cover;
    border-bottom: thick;
    border-bottom-color: rgba(255,172,36,1.00);
    border-bottom-style: solid;
}

    .bannermatricula .matricularse {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: rgba(1,43,78,0.9);
        padding: 36px 0px 23px 22px;
        margin: 51px 24px 15px 41px;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
        width: 35%;
    }

        .bannermatricula .matricularse ul {
            margin: 19px 8px 10px 33px;
        }

        .bannermatricula .matricularse .sedes-agotadas {
            -webkit-border-radius: 10px 10px 0px 0px;
            -moz-border-radius: 10px 10px 0px 0px;
            border-radius: 10px 10px 0px 0px;
            background-color: #c10001;
            padding: 14px;
            margin: 0px 0px 10px 0px;
            color: #FFFFFF;
            text-align: left;
            font-size: 18px;
            border-bottom-style: solid;
            border-bottom-color: rgba(255,255,255,1.00);
            line-height: 24px;
        }


    .bannermatricula .menu {
        /*background-color:rgba(1,43,78,0.9);*/
        min-height: 300px;
    }

    .bannermatricula h1 {
        color: #FFFFFF;
        font-size: 27px;
        text-align: center;
    }

    .bannermatricula li {
        color: #FFFFFF;
        font-size: 16px;
        line-height: 35px;
        text-align: left;
    }

    .bannermatricula .caja {
        /*-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;*/
        background-color: rgba(1,43,78,1);
        border-bottom: thick;
        border-bottom-color: rgba(255,172,36,1.00);
        border-bottom-style: solid;
        padding: 10px;
        margin: 0px;
    }

.plazas-agotadas {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #c10001;
    padding: 10px;
    margin: 15px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}

/*Banner matricula 2024*/
.bannermatriculaveinticuatro {
    min-height: 400px !important;
    background-image: url("../images/matricula_2024_mini.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
    margin-bottom: 20px;
}

    .bannermatriculaveinticuatro .titulo {
        background-color: rgba(1,43,78,1.0);
        margin: 0px;
        padding: 16px;
        color: #FFFFFF;
        text-align: center;
    }

        .bannermatriculaveinticuatro .titulo h2 {
            color: #FFFFFF;
            font-size: 18px;
        }

    .bannermatriculaveinticuatro .aviso {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: #c10001;
        padding: 10px;
        margin: 15px;
        color: #FFFFFF;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
    }

    .bannermatriculaveinticuatro .enlacesmatricula {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: rgba(1,43,78,0.9);
        padding: 10px;
        margin: 31px 15px 15px 15px;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
    }

    .bannermatriculaveinticuatro li {
        color: #FFFFFF;
        font-size: 15px;
        line-height: 36px;
        text-align: left;
    }
/*Banner matricula anterior*/
.bannermatriculaanterior {
    min-height: 400px !important;
    background-image: url("../images/banner-matricula-2022-background.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
    margin-bottom: 20px;
}

    .bannermatriculaanterior .titulo {
        background-color: rgba(1,43,78,1.0);
        margin: 0px;
        padding: 16px;
        color: #FFFFFF;
        text-align: center;
    }

        .bannermatriculaanterior .titulo h2 {
            color: #FFFFFF;
            font-size: 18px;
        }

    .bannermatriculaanterior .aviso {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: #c10001;
        padding: 10px;
        margin: 15px;
        color: #FFFFFF;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
    }

    .bannermatriculaanterior .enlacesmatricula {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: rgba(1,43,78,0.9);
        padding: 10px;
        margin: 31px 15px 15px 15px;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
    }

    .bannermatriculaanterior li {
        color: #FFFFFF;
        font-size: 15px;
        line-height: 36px;
        text-align: left;
    }

/*banner medplus*/
.medplus {
    min-height: 401px !important;
    background-image: url(../images/MEDplus_background.jpg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
}

.medplusdescripcion {
    background-color: rgba(1,43,78,0.8);
    padding: 10px;
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
}

.logoMEDplus {
    margin-bottom: 159px;
    margin-left: 20px;
    width: 100px;
}

.circulo-verde {
    width: 80px;
    height: 80px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #13821b;
    padding: 33px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulo-rojo {
    width: 120px;
    height: 120px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #c10001;
    padding: 33px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    overflow: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

#circulo-verde1 {
    margin: -166px 15px 15px 402px;
}

#circulo-verde2 {
    margin: -50px 15px 15px 221px;
}

#circulo-rojo1 {
    margin: 15px 15px 15px 15px;
}

#circulo-rojo2 {
    margin: 15px 15px 15px 15px;
}

#circulo-rojo3 {
    margin: -204px 15px -170px 783px;
    width: 200px;
    height: 200px;
}

@media (max-width: 1024px) {
    .bannermatricula .matricularse {
        width: 70%
    }

    #circulo-verde1 {
        margin: -164px 15px 15px 290px;
    }

    #circulo-verde2 {
        margin: -47px 15px 15px 173px;
    }
}

@media (max-width: 768px) {
    .bannermatricula .matricularse {
        width: 92%
    }

    #circulo-verde1 {
        margin: -189px 15px 15px 216px;
    }

    #circulo-verde2 {
        margin: 5px 15px 15px 173px;
    }

    .banner-postMIR {
        background-image: none;
    }
}

@media (max-width: 450px) {
    .bannermatriculadosmilveinticinco .matricularse {
        width: 90%;
        margin-left: 5px;
    }
}
