@charset "utf-8";
/* CSS Document */

/* LISTADOS DE NOTICIAS */
.listado_noticia {
	width:98.5%;
	display:block;
	overflow:hidden;
	clear:both;
	color:#666;
	height:auto;
	margin:20px auto;
	padding:15px 0 20px 15px;
	vertical-align:top; 
	border:0;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background-color:#fff;
	border:1px solid #ccc;
	text-align:left;
	}
	.listado_noticia:hover {
		/*background-color:#f7f1f9;*/
		}
	.listado_noticia a.listados_noticia_imagen { 
		display:inline-block;
		width:200px;
		height:150px;
		text-decoration:none;
		overflow:hidden;
		border-radius:10px;
		float:left;
		vertical-align:top;
		margin:0;
		margin-right:20px;
		background-position:top center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		-webkit-transition: all .4s;
		-moz-transition: all .4s;
		-ms-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		}
	.listado_noticia:hover a.listados_noticia_imagen {
		transform: rotate(-3deg);
		box-shadow: 0 21px 8px -15px rgba(0, 0, 0, 0.8);
		}
	.listado_noticia h3 {
		margin:10px;
		border-bottom:1px solid #dc2c1d;
		padding:10px;
		-webkit-transition: all .4s;
		-moz-transition: all .4s;
		-ms-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		}
		.listado_noticia:hover h3 {
			background-color:#dc2c1d;
			border-radius:10px;
			}
		.listado_noticia h3 a {
			font-size:20px;
			margin:0;
			display:block;
			text-decoration:none;
			color:#0b090c;
			-webkit-transition: all .4s;
			-moz-transition: all .4s;
			-ms-transition: all .4s;
			-o-transition: all .4s;
			transition: all .4s;
			}
			.listado_noticia:hover h3 a {
				color:white;
				}
	.listados_noticia_fecha {
		font-size:10px;
		color:#999;
		font-style:italic;
		}
		
		
	/* LISTADO DERECHO */
	div.columna .listado_noticia {
		}
	div.columna .listado_noticia a.listados_noticia_imagen { 
		width:100%;
		display:block;
		margin-bottom:20px;
		}
	/* */
	
	
	
/* RESOLUCION TABLET */
@media only screen and (max-width: 1200px) {
	
	.listado_noticia {
		width:97%;
		margin:15px auto;
		}
		
	.listado_noticia a.listados_noticia_imagen {
		width:30%;
		min-height:200px;
		} 
		
	}
	
	
	
/* RESOLUCION MOVIL */
@media only screen and (max-width: 590px) {
	
	/* LISTADOS DE NOTICIAS */
	.listado_noticia {
		padding:0;
		}		
	.listado_noticia a.listados_noticia_imagen {
		width:100%;
		float:none;
		display:block;
		margin:0;
		border-radius:0;
		}
	.listado_noticia p {
		margin:10px;
		}
	
	}