/**************************************
*************************************** 
TEMAS DE INTERÉS
***************************************
**************************************/

article {
    padding-bottom: 66px;
    position: relative;
}

article > header {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    font-size: 1.56em;
    color: white;
    padding: 26px 65px 25px 65px;
    display: table;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
    background: url(../img/icono-tema.png), #43c8fa; /* Old browsers */
    background: url(../img/icono-tema.png), -moz-linear-gradient(top,  #43c8fa 0%, #035676 100%); /* FF3.6+ */
    background: url(../img/icono-tema.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#43c8fa), color-stop(100%,#035676)); /* Chrome,Safari4+ */
    background: url(../img/icono-tema.png), -webkit-linear-gradient(top,  #43c8fa 0%,#035676 100%); /* Chrome10+,Safari5.1+ */
    background: url(../img/icono-tema.png), -o-linear-gradient(top,  #43c8fa 0%,#035676 100%); /* Opera 11.10+ */
    background: url(../img/icono-tema.png), -ms-linear-gradient(top,  #43c8fa 0%,#035676 100%); /* IE10+ */
    background: url(../img/icono-tema.png), linear-gradient(to bottom,  #43c8fa 0%,#035676 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43c8fa', endColorstr='#035676',GradientType=0 ); /* IE6-9 */
    
    background-repeat: no-repeat;
    background-position: 23px center, center;
    
    margin-left: 45px;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-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: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .temas {
    margin-top: 20px;
    max-height: 600px;
    overflow: auto;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-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: 1.2s;
	-moz-animation-delay: 1.2s;
	-o-animation-delay: 1.2s;
	animation-delay: 1.2s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .temas .tema {
    width: 806px;
    display: table;
    margin: 0 auto;
    text-decoration: none;
}

article > .temas .tema > .nombre {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    font-size: 1.37em;
    color: #2C667C;
    line-height: 120%;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .temas .tema:hover > .nombre {
    color: #15A6FE;
}

article > .temas .tema > .texto-y-foto {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    
    position: relative;
    top: -20px;
}

article > .temas .tema > .texto-y-foto > .texto {
    width: 650px;
    padding: 42px 0 55px 20px;
    color: #055979;
    background: url(../img/sombra-arriba.png), url(../img/sombra-abajo.png);
    background-position: right top, right bottom;
    background-repeat: no-repeat;
    position: relative;
    line-height: 150%;
}

article > .temas .tema > .texto-y-foto > .texto > .enlace {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-family: pt-sans-italic, Arial, Helvetica, sans-serif;
    color: #0F73D7;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .temas .tema:hover > .texto-y-foto > .texto > .enlace {
    bottom: 35px;
}

article > .temas .tema > .texto-y-foto > .foto {
    width: 122px;
    height: 122px;
    border: solid 6px white;
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .temas .tema:hover > .texto-y-foto > .foto {
    background-size: 105%;
    
    -webkit-box-shadow: 0 0 14px 2px rgba(87,187,240,1);
    box-shadow: 0 0 14px 2px rgba(87,187,240,1);
}

article > .enlace {
    position: absolute;
    right: 38px;
    bottom: 0;
	
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-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: 1.4s;
	-moz-animation-delay: 1.4s;
	-o-animation-delay: 1.4s;
	animation-delay: 1.4s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .enlace > a {
    font-family: pt-sans-italic, Arial, Helvetica, sans-serif;
    font-size: 1.12em;
    line-height: 100%;
    color: white;
    text-decoration: none;
    background-color: #7DD040;
    background-image: url(../img/fondo-boton-oferta.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px 26px;
    
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
    -webkit-box-shadow: 4px 4px 9px 0 rgba(70,124,31,.65);
    box-shadow: 4px 4px 9px 0 rgba(70,124,31,.65);
    
    position: relative;
    top: 0;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .enlace:hover > a {
    top: -5px;
}