@charset "utf-8";



/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
	#noticias[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
	#noticias[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	#noticias[data-columns]::before {
		content: '3 .column.size-1of3';
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	#noticias[data-columns]::before {
		content: '3 .column.size-1of3';
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	#noticias[data-columns]::before {
		content: '4 .column.size-1of4';
	}
}
.column { float: left; width: 100%; }
.size-1of1 { width: 100%; }
.size-1of2 { width: 50%; }
.size-1of3 { width: 33.333%; }
.size-1of4 { width: 25%; }

/*#noticias[data-columns]::before {
	content: '4 .column.size-1of4';
}*/

#noticias figure {
	position: relative;
	width: 100%;
	-webkit-transition: filter 0.25s;
	transition: filter 0.25s;
}

/*#noticias figure:hover { 
   filter: opacity(80%);
    -webkit-filter: opacity(80%);
	
}*/
/*#noticias figure div {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color:rgba(255,255,255,0);
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}*/
#noticias figure:hover{
	/*background-color:rgba(249,138,140,0.51);*/
	/*filter:sepia(100%);*/
	filter:drop-shadow(8px 8px 10px black);
}

#noticias figcaption {
	position: absolute;
	bottom: 50%;
	display: block;
	margin-left: 2.3em;
	margin-right: 1em;
	padding: 0.4em;
	text-align:center;
	font-size: 1.1em;
	font-weight: bold;
}

#noticias p {
	text-align:right;
}