.osdn-navtext {
    FONT-SIZE: 11px;
    COLOR: #777777;
    FONT-FAMILY: arial, sans-serif
}

.osdn-navtext2 {
    FONT-SIZE: 12px;
    COLOR: #FFFFFF;
    FONT-FAMILY: arial, sans-serif
}

/* Estilos nav */

.logo {
    text-decoration: none;
    font-size: 1.7em;
    color: white;
    flex: 1;
    text-align: center;
    font-family: Calibri, sans-serif;
    margin-right: 40px;
    margin-left: 40px;
}

.nav {
    background: linear-gradient(to right, #ffffff, rgb(10, 119, 10), rgb(0, 128, 0));
    padding: 10px 0;
    position: relative;
}

.nav-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1.2em;
}

.nav-links a:hover {
    color: white;
}

.informacion_institucional{
    list-style-type: none;
}

.avisos{
    list-style-type: none;
}

/* Hamburguer del nav para mÃ³vil */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* Estilos LÃ­nea bajo el nav que muestra la Ãºltima fecha de modificaciÃ³n */
.texto_bienvenida {
    background-color: green;
    color: white;
    font-size: medium;
    padding: 10px;
}

/* Estilos para el panel de InformaciÃ³n importante nada mÃ¡s entrar a la pÃ¡gina */

.contenedor1 {
    display: flex;
    flex-direction: row;
}

.sub_contenedor1_1 {
    width: 75%;
    flex-grow: 1;
}

.sub_contenedor1_2{
    width: 25%;
    text-align: right;
}

.sub_contenedor1_2 img{
    width:97%;
    height:100%;
    margin-right: 3%;
}

.important-info {
    margin: 30px;
}

/* Estilos para los avisos */
.contenedor2 {
    text-align: left;
}

/*Aviso Legal*/
.aviso_legal {
    font-size: smaller;
    margin: 20px;
}

/* Footer pegado al fondo */
.footer_abajo{
    position: fixed;
    bottom: 0;
    width: 100%;
}


@media only screen and (max-width: 900px) {
    .footer_abajo{
        position:static;
    }
}

/* Media queries para visualizaciÃ³n en mÃ³vil */
@media only screen and (max-width: 768px) {
    /* NAV PARA EL MOVIL */
    .nav-item {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 22px;
        right: 0px;
    }

    .logo {
        order: 1;
    }

    .nav-item ul.nav-links {
        order: 2;
        width: 100%;
    }
    
    .contenedor1{
        display: flex;
        flex-direction: column;
    }
    
    .sub_contenedor1_1{
        width: 95%;
    }
	
    .sub_contenedor1_2{
        text-align: center;
        width: 100%;
    }
    .sub_contenedor1_2 img{
        width: 50%;
    }
    .contenedor2{
    	width: 95%;
    }
}

/* Estilos para la pÃ¡gina de la autoevaluaciÃ³n */

.aviso{
    color: red;
    text-align: center;
    font-style: italic;
}

.titulo_autoev{
    color: blue;
    font-size:x-large;
    font-weight: bold;
    font-style: italic;
}


