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

h1 {
	margin:0 0 20px 0;
	}
		

/* LISTADOS DE NOTICIAS */
.listado_noticia {
	width:97.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;
		}	
		
div#content ul.menu_ligastorneos {
	list-style:none;
	padding:0;
	margin:0;
	}
	div#content ul.menu_ligastorneos li {
		background:#f1f1f1;
		margin:2px; 
		transition: all ease-in-out 0.4s;
		-moz-transition: all ease-in-out 0.4s;
		-webkit-transition: all ease-in-out 0.4s;
		-o-transition: all ease-in-out 0.4s;
		}
	div#content ul.menu_ligastorneos li a {
		text-decoration:none;
		display:block;
		color:#dc2c1d;
		padding:10px;
		}
		div#content ul.menu_ligastorneos li.info_activo
		, div#content ul.menu_ligastorneos li:hover {
			background:#dc2c1d;
			color:white;
			}
		div#content ul.menu_ligastorneos li.info_activo a
		,div#content ul.menu_ligastorneos li:hover a {
			color:white;
			}
	
	
	
/* RESOLUCION TABLET */
@media only screen and (max-width: 1200px) {
	
	.listado_noticia {
		width:96%;
		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;
		}
	
	}