/**************************************
*************************************** 
INICIO 2
***************************************
**************************************/

body > div.secuencia {
	width: 100%;
    height: 478px;
    padding-top: 25px;
    background-color: white;
    
    position: relative;
    z-index: 3;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > div.secuencia {
        height: 270px;
    }
}

@media screen and (max-width: 480px) {
    body > div.secuencia {
        height: 162px;
    }
}

body > div.secuencia img {
	width: 100%;
    height: 478px;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > div.secuencia img {
        height: 270px;
    }
}

@media screen and (max-width: 480px) {
    body > div.secuencia img {
        height: 162px;
    }
}

body > div.secuencia div.fecha {
	height: 100%;
    opacity: 1;
    background-color: black;
    position: absolute;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

body > div.secuencia div.fecha > div.dia, body > div.secuencia div.fecha > div.mes-y-anio {
	width: 60px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    body > div.secuencia div.fecha > div.dia, body > div.secuencia div.fecha > div.mes-y-anio {
        width: 50px;
    }
}

body > div.secuencia div.fecha > div.dia {
    background-color: white;
    font-size: 1.875em;
    color: #ED217C;
}

body > div.secuencia div.fecha > div.mes-y-anio {
    background-color: #ED217C;
    font-size: 1.125em;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: white;
}

@media screen and (max-width: 800px) {
    body > div.secuencia div.fecha > div.mes-y-anio {
        font-size: .875em;
    }
}

body > article.bienvenida {
	background-color: white;
    padding: 100px 0 50px;
    
    -webkit-box-shadow: 0 0 7px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 7px 0 rgba(0,0,0,.65);
    
    position: relative;
    z-index: 2;
}

body > article.bienvenida > div.zona-segura {
	padding: 0 20px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media screen and (max-width: 800px) {
    body > article.bienvenida > div.zona-segura {
        padding: 0 5%;
    }
}

@media screen and (max-width: 480px) {
    body > article.bienvenida > div.zona-segura {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        justify-content: space-around;
    }
}

body > article.bienvenida > div.zona-segura > figure {
	margin-right: 16px;
}

body > article.bienvenida > div.zona-segura > figure > img {
	display: table;
    width: 150px;
    border: solid 4px #ED217C;
}

body > article.bienvenida > div.zona-segura > div.contenido {
	text-align: center;
    position: relative;
}

body > article.bienvenida > div.zona-segura > div.contenido > h3 {
	font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    text-align: center;
    line-height: 120%;
    color: #EB1F79;
}

@media screen and (max-width: 800px) {
    body > article.bienvenida > div.zona-segura > div.contenido > h3 {
        font-size: 1.75em;
    }
}

@media screen and (max-width: 480px) {
    body > article.bienvenida > div.zona-segura > div.contenido > h3 {
        margin-top: 20px;
    }
}

body > article.bienvenida > div.zona-segura > div.contenido > div.texto {
	margin-top: 10px;
    font-size: 1.125em;
    color: #3F3F51;
    line-height: 150%;
}

@media screen and (max-width: 480px) {
    body > article.bienvenida > div.zona-segura > div.contenido > div.texto {
        font-size: 1em;
    }
}

body > article.bienvenida > div.zona-segura > div.contenido > a.ver-mas {
	display: table;
    font-style: italic;
    color: #3F3F51;
    position: absolute;
    right: 0;
    bottom: -25px;
}

body > article.bienvenida > div.zona-segura > div.contenido > a.ver-mas:hover {
	text-decoration: underline;
}

body > main > div.zona-segura {
	padding: 100px 10px;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura {
        padding: 50px 5% 100px;
    }
}

body > main > div.zona-segura > nav.comcavis-y-socios {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a {
	display: block;
    width: 425px;
    min-height: 126px;
    padding: 12px;
    border: solid 1px #713392;
    background-color: #DBDBEA;
    
    perspective: 500px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura > nav.comcavis-y-socios > a {
        margin-top: 50px;
    }
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.comcavis-y-socios > a {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

body > main > div.zona-segura > nav.comcavis-y-socios > a > div.letras {
	width: 270px;
    text-align: center;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.comcavis-y-socios > a > div.letras {
        margin-top: 10px;
    }
}

body > main > div.zona-segura > nav.comcavis-y-socios > a > div.letras > h2 {
	font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    color: #3A1B4B;
    font-weight: bold;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a > div.letras > div.texto {
	margin-top: 10px;
    font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    line-height: 120%;
    color: #7F39A3;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a > div.letras > div.ver-mas {
	margin-top: 10px;
    font-size: 1.125em;
    color: #7F3AA3;
    font-style: italic;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a:hover > div.letras > div.ver-mas {
	text-decoration: underline;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a > div.icono {
	width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -ms-transition: all 1.25s ease;
    -o-transition: all 1.25s ease;
    transition: all 1.25s ease;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a:hover > div.icono {
	-moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

body > main > div.zona-segura > nav.comcavis-y-socios > a.comcavis {
	-webkit-animation-name: aparecer-hacia-derecha;
	-moz-animation-name: aparecer-hacia-derecha;
	-o-animation-name: aparecer-hacia-derecha;
	animation-name: aparecer-hacia-derecha;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a.comcavis > div.icono {
	background-image: url(../img/fondo-inicio-comcavis.png);
}

body > main > div.zona-segura > nav.comcavis-y-socios > a.socios {
	-webkit-animation-name: aparecer-hacia-izquierda;
	-moz-animation-name: aparecer-hacia-izquierda;
	-o-animation-name: aparecer-hacia-izquierda;
	animation-name: aparecer-hacia-izquierda;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > nav.comcavis-y-socios > a.socios > div.icono {
	background-image: url(../img/fondo-inicio-socios.png);
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos {
	margin-top: 100px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos {
        margin-top: 50px;
    }
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div {
	width: 280px;
    perspective: 500px;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div {
        margin-top: 50px;
    }
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > div.icono {
	width: 126px;
    height: 126px;
    margin: 0 auto;
    border: solid 2px #727284;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    
    -webkit-border-radius: 50%;
    border-radius: 50%;
    
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -ms-transition: all 1.25s ease;
    -o-transition: all 1.25s ease;
    transition: all 1.25s ease;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div:hover > div.icono {
	-moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div.actividades > div.icono {
	background-image: url(../img/fondo-inicio-actividades.jpg);
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div.documentacion > div.icono {
	background-image: url(../img/fondo-inicio-documentacion.jpg);
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div.proyectos > div.icono {
	background-image: url(../img/fondo-inicio-proyectos.jpg);
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > h2 {
	margin-top: 20px;
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.375em;
    text-align: center;
    line-height: 120%;
    color: #31313F;
    font-weight: bold;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.enlace {
	display: block;
    /*padding: 5px 0;*/
	padding: 10px 0;
    font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    line-height: 120%;
    text-align: center;
    color: #727284;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.enlace:before {
	content: '- ';
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.enlace {
        font-size: 1em;
    }
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.enlace:hover {
	text-decoration: underline;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.enlace:first-of-type {
	margin-top: 10px;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.boton {
	display: table;
    margin: 25px auto 0;
    padding: 10px 30px;
    border: solid 3px white;
    font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: white;
    cursor: pointer;
    
    -webkit-border-radius: 30px;
    border-radius: 30px;
    
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d36f9e+0,b71461+100 */
    background: #d36f9e; /* Old browsers */
    background: -moz-linear-gradient(top,  #d36f9e 0%, #b71461 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #d36f9e 0%,#b71461 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #d36f9e 0%,#b71461 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d36f9e', endColorstr='#b71461',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > nav.actividades-documentacion-y-proyectos > div > a.boton:hover {
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8795c1+0,2359a3+100 */
    background: #8795c1; /* Old browsers */
    background: -moz-linear-gradient(top,  #8795c1 0%, #2359a3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #8795c1 0%,#2359a3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #8795c1 0%,#2359a3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8795c1', endColorstr='#2359a3',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > nav.migracion-y-prensa {
	margin-top: 100px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura > nav.migracion-y-prensa {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > nav.migracion-y-prensa > a {
	width: 400px;
    max-width: 100%;
}

body > main > div.zona-segura > nav.migracion-y-prensa > a.migracion {
	-webkit-animation-name: aparecer-hacia-derecha;
	-moz-animation-name: aparecer-hacia-derecha;
	-o-animation-name: aparecer-hacia-derecha;
	animation-name: aparecer-hacia-derecha;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > nav.migracion-y-prensa > a.prensa {
	-webkit-animation-name: aparecer-hacia-izquierda;
	-moz-animation-name: aparecer-hacia-izquierda;
	-o-animation-name: aparecer-hacia-izquierda;
	animation-name: aparecer-hacia-izquierda;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura > nav.migracion-y-prensa > a {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > nav.migracion-y-prensa > a > div.imagen {
	margin: 0 auto;
    width: 400px;
    height: 200px;
    border: solid 5px #DBDBEA;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
    
    -webkit-box-shadow: 0 0 4px 0 #000;
    box-shadow: 0 0 4px 0 #000;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.migracion-y-prensa > a > div.imagen {
        width: 250px;
        height: 125px;
    }
}

body > main > div.zona-segura > nav.migracion-y-prensa > a:hover > div.imagen {
	opacity: .7;
}

body > main > div.zona-segura > nav.migracion-y-prensa > a > div.imagen > h2 {
	width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, .80);
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    font-weight: bold;
    color: #2864B6;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.migracion-y-prensa > a > div.imagen > h2 {
        height: 40px;
        font-size: 1.2em;
    }
}

body > main > div.zona-segura > nav.migracion-y-prensa > a > div.texto {
	margin-top: 25px;
    padding: 0 15%;
    font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    font-size: 1.25em;
    color: #3F3F51;
    text-align: center;
    line-height: 120%;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > nav.migracion-y-prensa > a > div.texto {
        font-size: 1em;
    }
}

body > main > div.zona-segura > nav.migracion-y-prensa > a > div.ver-mas {
	display: table;
    margin: 25px auto 0;
    padding: 10px 30px;
    border: solid 3px white;
    font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: white;
    cursor: pointer;
    
    -webkit-border-radius: 30px;
    border-radius: 30px;
    
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8795c1+0,2359a3+100 */
    background: #8795c1; /* Old browsers */
    background: -moz-linear-gradient(top,  #8795c1 0%, #2359a3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #8795c1 0%,#2359a3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #8795c1 0%,#2359a3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8795c1', endColorstr='#2359a3',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > nav.migracion-y-prensa > a:hover > div.ver-mas {
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d36f9e+0,b71461+100 */
    background: #d36f9e; /* Old browsers */
    background: -moz-linear-gradient(top,  #d36f9e 0%, #b71461 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #d36f9e 0%,#b71461 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #d36f9e 0%,#b71461 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d36f9e', endColorstr='#b71461',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > div.noticias-y-botones {
	margin-top: 100px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias {
	width: 600px;
    padding-bottom: 50px;
    border-bottom: solid 2px black;
    perspective: 300px;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > h2 {
	display: table;
    padding: 10px 15px;
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    color: white;
    
    -webkit-box-shadow: 4px 4px 4px 0 rgba(99,99,152,.65);
    box-shadow: 4px 4px 4px 0 rgba(99,99,152,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#73bc4a+0,5a9537+100 */
    background: #73bc4a; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  #73bc4a 0%, #5a9537 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover,  #73bc4a 0%,#5a9537 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center,  #73bc4a 0%,#5a9537 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73bc4a', endColorstr='#5a9537',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    
    -webkit-animation-name: flip-x;
	-moz-animation-name: flip-x;
	-o-animation-name: flip-x;
	animation-name: flip-x;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias {
	margin-top: 60px;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article {
	border-top: solid 2px black;
    padding: 60px 10px;
    
    position: relative;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article {
		padding: 80px 10px;
	}
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article:first-of-type {
	margin-top: 10px;
    border-top: none;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > h4 {
	padding-left: 40px;
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.75em;
    font-weight: bold;
    line-height: 120%;
    text-align: left;
    color: #78017A;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > h4 {
        padding-left: 0;
        font-size: 1.25em;
        text-align: center;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido {
	margin-top: 20px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;

        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;

        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido > figure {
	margin-right: 25px;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido > figure {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido > figure > img {
	display: table;
    
    -webkit-box-shadow: 3px 3px 8px 0 rgba(0,0,0,.65);
    box-shadow: 3px 3px 8px 0 rgba(0,0,0,.65);
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.contenido > div.texto {
	line-height: 150%;
    color: #636398;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > time {
	position: absolute;
    left: 50px;
    top: 32px;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > time {
        left: 0;
        top: 60px;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales {
	position: absolute;
    right: 0;
    /*top: 30px;*/
	top: 15px;
	
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales {
		top: 15px;
	}
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales a {
	display: table;
	margin: 0 5px;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales a:first-child {
	margin-left: 0;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales a:last-child {
	margin-right: 0;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales a img {
	display: table;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.redes-sociales a:hover img {
	-webkit-filter: brightness(1.25);
	filter: brightness(1.25);
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.autor {
	font-size: .875em;
    position: absolute;
    left: 120px;
    bottom: 30px;
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > div.autor {
        left: 0;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > a.ver-mas {
	padding-left: 25px;
    font-size: 1.125em;
    color: #464637;
    text-decoration: underline;
    background-image: url(../img/fondo-articulo-ver-mas.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    position: absolute;
    right: 0;
    bottom: 30px;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > div.noticias > article > a.ver-mas:hover {
	background-position: 5px center;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > a.boton {
	display: table;
    margin: 25px auto 0;
    padding: 10px 30px;
    border: solid 3px white;
    font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: white;
    cursor: pointer;
    
    -webkit-border-radius: 30px;
    border-radius: 30px;
    
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d36f9e+0,b71461+100 */
    background: #d36f9e; /* Old browsers */
    background: -moz-linear-gradient(top,  #d36f9e 0%, #b71461 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #d36f9e 0%,#b71461 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #d36f9e 0%,#b71461 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d36f9e', endColorstr='#b71461',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > div.noticias-y-botones > section.ultimas-noticias > a.boton:hover {
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8795c1+0,2359a3+100 */
    background: #8795c1; /* Old browsers */
    background: -moz-linear-gradient(top,  #8795c1 0%, #2359a3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #8795c1 0%,#2359a3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #8795c1 0%,#2359a3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8795c1', endColorstr='#2359a3',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones {
	width: 310px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura > div.noticias-y-botones > nav.botones {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a {
	display: block;
    width: 100%;
    padding: 15px 10px 12px 120px;
    border-top: solid 10px #dadada;
    
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    
    -webkit-animation-name: aparecer-hacia-izquierda;
	-moz-animation-name: aparecer-hacia-izquierda;
	-o-animation-name: aparecer-hacia-izquierda;
	animation-name: aparecer-hacia-izquierda;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media screen and (max-width: 800px) {
    body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a {
        margin-top: 50px;
    }
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.revista {
	background-color: #0A7096;
    background-image: url(../img/fondo-boton-revista.png);
    background-repeat: no-repeat;
    background-position: 10px 20px;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.revista:hover {
	background-position: 10px 15px;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.denuncia {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6b2c91+0,8e59a5+100 */
    background: url(../img/fondo-boton-denuncia.png), #6b2c91; /* Old browsers */
    background: url(../img/fondo-boton-denuncia.png), -moz-linear-gradient(top,  #6b2c91 0%, #8e59a5 100%); /* FF3.6-15 */
    background: url(../img/fondo-boton-denuncia.png), -webkit-linear-gradient(top,  #6b2c91 0%,#8e59a5 100%); /* Chrome10-25,Safari5.1-6 */
    background: url(../img/fondo-boton-denuncia.png), linear-gradient(to bottom,  #6b2c91 0%,#8e59a5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b2c91', endColorstr='#8e59a5',GradientType=0 ); /* IE6-9 */

    background-repeat: no-repeat;
    background-position: 10px 20px, center;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.denuncia:hover {
	background-position: 10px 15px, center;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.video {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6b2c91+0,8e59a5+100 */
    background: url(../img/fondo-boton-video.png), #D96C00; /* Old browsers */
    background: url(../img/fondo-boton-video.png), -moz-linear-gradient(top,  #D96C00 0%, #FF8204 100%); /* FF3.6-15 */
    background: url(../img/fondo-boton-video.png), -webkit-linear-gradient(top,  #D96C00 0%,#FF8204 100%); /* Chrome10-25,Safari5.1-6 */
    background: url(../img/fondo-boton-video.png), linear-gradient(to bottom,  #D96C00 0%,#FF8204 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D96C00', endColorstr='#FF8204',GradientType=0 ); /* IE6-9 */

    background-repeat: no-repeat;
    background-position: 10px 20px, center;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.video:hover {
	background-position: 10px 15px, center;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.voluntariado {
	padding: 12px 10px;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#03598d+0,0474b9+100 */
    background: #03598d; /* Old browsers */
    background: -moz-linear-gradient(top,  #03598d 0%, #0474b9 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #03598d 0%,#0474b9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #03598d 0%,#0474b9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03598d', endColorstr='#0474b9',GradientType=0 ); /* IE6-9 */
    
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a > h2 {
	font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    text-align: center;
    color: white;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.voluntariado > h2 {
	color: #03619A;
    background-color: white;
    padding: 10px 0;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a.voluntariado > div.imagen {
	width: 100%;
    height: 107px;
    background-image: url(../img/fondo-inicio-boton-voluntariado.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a > div.ver-mas {
	display: table;
    margin: 10px auto 0;
    padding: 10px 30px;
    border: solid 3px white;
    font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: #3F3F3F;
    cursor: pointer;
    
    -webkit-border-radius: 30px;
    border-radius: 30px;
    
    -webkit-box-shadow: 0 0 4px 0 rgba(255,255,255,.65);
    box-shadow: 0 0 4px 0 rgba(255,255,255,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b4b4b8+0,e6e6e6+50 */
    background: #b4b4b8; /* Old browsers */
    background: -moz-linear-gradient(top,  #b4b4b8 0%, #e6e6e6 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #b4b4b8 0%,#e6e6e6 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #b4b4b8 0%,#e6e6e6 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4b4b8', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a:hover > div.ver-mas {
	-webkit-box-shadow: 0 0 4px 1px rgba(255,255,255,.65);
    box-shadow: 0 0 4px 1px rgba(255,255,255,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e6e6e6+50,b4b4b8+100 */
    background: #e6e6e6; /* Old browsers */
    background: -moz-linear-gradient(top,  #e6e6e6 50%, #b4b4b8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #e6e6e6 50%,#b4b4b8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #e6e6e6 50%,#b4b4b8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6e6', endColorstr='#b4b4b8',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > div.noticias-y-botones > nav.botones > a:first-child {
	margin-top: 0;
}

body > main > div.zona-segura > section.video {
	margin-top: 100px;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > section.video > h2 {
	font-family: cicle-gordita, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    color: #31313F;
    text-align: center;
}

body > main > div.zona-segura > section.video > iframe {
	display: table;
    margin: 15px auto 0;
    width: 100%;
    max-width: 100%;
    height: 700px;
}

@media screen and (min-width: 481px) and (max-width: 800px) {
    body > main > div.zona-segura > section.video > iframe {
        width: 400px;
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    body > main > div.zona-segura > section.video > iframe {
        width: 250px;
        height: 187px;
    }
}

body > main > div.zona-segura > section.video > a.boton {
	display: table;
    margin: 25px auto 0;
    padding: 10px 30px;
    border: solid 3px white;
    font-family: oxygen, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    color: white;
    cursor: pointer;
    
    -webkit-border-radius: 30px;
    border-radius: 30px;
    
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d36f9e+0,b71461+100 */
    background: #d36f9e; /* Old browsers */
    background: -moz-linear-gradient(top,  #d36f9e 0%, #b71461 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #d36f9e 0%,#b71461 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #d36f9e 0%,#b71461 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d36f9e', endColorstr='#b71461',GradientType=0 ); /* IE6-9 */
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > section.video > a.boton:hover {
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    box-shadow: 0 0 4px 1px rgba(0,0,0,.65);
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8795c1+0,2359a3+100 */
    background: #8795c1; /* Old browsers */
    background: -moz-linear-gradient(top,  #8795c1 0%, #2359a3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #8795c1 0%,#2359a3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #8795c1 0%,#2359a3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8795c1', endColorstr='#2359a3',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > div.galeria-y-widgets {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

body > main > div.zona-segura > div.galeria-y-widgets div.contenedor {
	display: table;
    margin-top: 100px;
    max-width: 300px;
    
    -webkit-animation-name: aparecer-hacia-arriba;
	-moz-animation-name: aparecer-hacia-arriba;
	-o-animation-name: aparecer-hacia-arriba;
	animation-name: aparecer-hacia-arriba;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria {
	width: 280px;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > h2 {
	padding: 10px;
    font-family: caviar-dreams, Arial, Helvetica, sans-serif;
    font-size: 1.375em;
    line-height: 120%;
    text-align: center;
    color: white;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b40e1b+0,d66570+100 */
    background: #b40e1b; /* Old browsers */
    background: -moz-linear-gradient(top,  #b40e1b 0%, #d66570 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #b40e1b 0%,#d66570 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #b40e1b 0%,#d66570 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b40e1b', endColorstr='#d66570',GradientType=0 ); /* IE6-9 */
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > div.fotos {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > div.fotos > a {
	opacity: 1;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > div.fotos > a:hover {
	opacity: .7;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > div.fotos > a > img {
	display: table;
	width: 140px;
	height: 105px;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > a.ver-mas {
	display: table;
    margin: 10px auto 0;
    font-style: italic;
    color: #31313F;
    text-transform: uppercase;
}

body > main > div.zona-segura > div.galeria-y-widgets section.galeria > a.ver-mas:hover {
	text-decoration: underline;
}