@charset "UTF-8"

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display: block;
}

*{
	margin:0;
	padding:0
}

html, body{
	font-family: Helvetica,Verdana,Arial,sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	color: #555555;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2){
	html, body{
		font-size: 95%;
	}
}

a img{
	border: none;
	text-decoration: none;
}

h1, h2, h3, h4{
	font-family: 'Exo 2', Helvetica,Verdana,Arial,sans-serif;
	font-weight: lighter;
	color: #333333;
}

h1{
	font-size: 2rem;
}

h2{
	font-size: 1.75rem;
}

h3{
	font-size: 1.5rem;
}

h4{
	font-size: 1.25rem;
}

a{
	color: #171795;
	text-decoration: none;
	outline: none;
}

a:hover{
	text-decoration: underline;
}

p{
	float: left;
	margin: 8px 0;
	line-height: 1.4rem;
}

.contenedor{
	/*margin: 0 auto;*/
	/*max-width: 1300px;*/
	margin: 0px 3%;
	overflow: hidden;
}






.boton{
	border: 0;
	border-radius: 5px;
	color: #FFFFFF;
	padding: 0px 20px;
	font-family: 'Exo 2',Helvetica,Verdana,Arial,sans-serif;
	font-size: 1em;
	line-height: 40px;
	text-align: center;
	background: #171795;
	z-index: 10;
}

.boton:hover{
	background: #3131CC;
	text-decoration: none;
}





/*//// CABECERA ////*/

header{
	float: left;
	width: 100%;
	background-color: #FFFFFF;
	margin-bottom: 20px;
}

#logo{
	float: left;
	width: 70%;
	margin: 16px 0px;
}

#logo img{
	width: 100%;
}

#social_cabecera{
	float: left;
	width: 25%;
	margin-left: 5%;
	margin-top: 3.3%;
}

#social_contenido{
	margin: 0 auto;
	width: 60%;
	max-width: 170px;
}

#siguenos{
	float: left;
	width: 100%;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	color: #171795;
	font-size: 0.90rem;
}

.logo_social{
	float: left;
	width: 31%;
	margin: 10% 1%;
}

.logo_social img{
	width: 100%;
}

@media only screen and (max-width: 900px){
	#siguenos{
		font-size: 0.75rem;
	}
}

@media only screen and (max-width: 750px){
	#siguenos{
		font-size: 0.70rem;
	}
}

@media only screen and (max-width: 640px){
	#logo{
		margin: 12px 0;
	}
}



#boton_menu{
	display: none;
}

header nav{
	float: left;
	width: 99.8%;
	top: 15px;
	border-radius: 6px;
	border: 1px solid #171795;
	background: url("../img/fondo_menu.jpg") no-repeat scroll right center #171795;
	z-index: 1000;
}

header nav a{
	display: block;
	padding: 12px 20px 10px;
	font-size: 0.80rem;
	line-height: 20px;
	color: #FFFFFF;
	background: url("../img/separador.jpg") no-repeat scroll right center transparent;
	background-color: #171795;
	transition: color 0.3s, background-color 0.3s;
}

header nav a:hover{
	background-color: #3131CC;
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 5px;
}

.menu_activo{
	background: none;
	background-color: #FFFFFF;
	color: #171795;
	border-radius: 5px;
}

.menu_activo:hover{
	background: url("../img/separador.jpg") no-repeat scroll right center transparent;
	background-color: #3131CC;
}

header nav ul{
	list-style: none;
}

header nav ul li{
	float: left;
}

header nav ul li ul{
	visibility: hidden;
	float: left;
	position: absolute;
	width: 200px;
	z-index: 999;
	background: #171795;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	opacity: 0;
	transition: opacity 0.5s;
}

header nav ul li:hover ul{
	visibility: visible;
	opacity: 1;
}

header nav ul li ul li{
	float: left;
	width: 100%;
	border-top: 1px dotted #4141FF;
	border-radius: 5px;
}

header nav ul li ul li a{
	background-image: none;
	border-radius: 5px;
}

@media only screen and (max-width: 905px){
	header nav a{
		font-size: 0.75rem;
		padding: 12px 15px 10px;
	}
}

@media only screen and (max-width: 790px){
	header nav a{
		font-size: 0.70rem;
		padding: 12px 10px 10px;
	}
}

@media only screen and (min-width: 671px){
	
	header nav{
		display: inline !important;
	}
}

@media only screen and (max-width: 670px){

	#social_cabecera{
		display: none;
	}

	#boton_menu{
		display: block;
		position: relative;
		float: right;
		top: 20px;
	}
	
	#boton_menu img{
		width: 45px;
	}

	header{
		margin: 0;
	}

	header nav{
		position: absolute;
		display: none;
		top: 75px;
		left: 0px;
		width: 99.5%;
		background-image: none;
	}
	
	header nav a{
		float: left;
		width: 96%;
		padding: 2% 2%;
		background-image: none;
		font-size: 0.85rem;
	}

	header nav a:hover{
		background-color: #171795;
	}
	
	header nav li{
		float: left;
		width: 100%;
		border-bottom: 1px dotted #4141FF;
	}

	header nav ul li a.tiene-sub{
		background-image: url("../img/expandir.png") !important;
		background-repeat: no-repeat;
		background-position: right center;
	}

	header nav ul li:hover ul{
		display: none;
	}

	.tap .tiene-sub{
		background-color: #3131CC;
		color: #FFFFFF;
	}

	.tap ul{
		display: block;
		position: relative;
		width: 100%;
		background: #3131CC;
		opacity: 1;
		visibility: visible;
	}

	.tap:hover ul{
		display: block;
	}

	.tap ul li{
		padding-left: 3%;
		width: 97%;
		background: url("../img/submenu.png") no-repeat scroll left center transparent;
	}

	.menu_activo{
		background-color: #171795;
		color: #FFFFFF;
	}

	.menu_activo:hover{
		background-color: #171795;
	}
}

@media only screen and (max-width: 520px){
	#boton_menu{
		top: 15px;
	}

	header nav{
		top: 65px;
	}

	header nav a{
		width: 94%;
		padding: 2.5% 3%;
	}

	.tap ul li{
		padding-left: 4%;
		width: 96%;
	}
}

@media only screen and (max-width: 400px){
	#boton_menu{
		top: 10px;
	}

	#boton_menu img{
		width: 40px;
	}

	header nav{
		top: 55px;
	}

	header nav a{
		width: 92%;
		padding: 3% 4%;
	}

	.tap ul li{
		padding-left: 5%;
		width: 95%;
		background: url("../img/submenu.png") no-repeat scroll left center transparent;
	}

}

#contenido_pagina{
	float: left;
	height: auto !important;
    min-height: 100px;
    width: 100%;
}


/*//// SECCIONES GENERAL ////*/

.titulo_seccion{
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

.titulo_seccion h1{
	color: #171795;
	border-bottom: 1px solid #171795;
}


.contenedor_seccion{
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

#menu_lateral{
	float: left;
	width: 25%;
	margin-right: 3%;
}

#menu_lateral ul li{
	float: left;
	width: 100%;
	margin-bottom: 2px;
	list-style: none;
}

#menu_lateral ul li a{
	float: left;
	width: 94%;
	padding: 3%;
	background: #F4F4F4;
	color: #555555;
	transition: color 0.3s, background 0.3s;
	border-radius: 5px;
}

#menu_lateral ul li a span{
	color: #171795;
}

#menu_lateral ul li a:hover span, #menu_lateral .submenu_activo span{
	color: #4141FF;
}

#menu_lateral ul li a:hover, #menu_lateral .submenu_activo{
	background: #171795;
	color: #FFFFFF;
	text-decoration: none;
}

#contenido_con_menu{
	float: left;
	width: 72%;
}

.img_seccion{
	width: 100%;
	margin-bottom: 8px;
}

#contenido_con_menu h2{
	float: left;
	width: 100%;
	color: #171795;
}

@media only screen and (max-width: 640px){
	.titulo_seccion{
		background-color: #171795;
		padding-bottom: 3px;
		margin-bottom: 15px;
	}

	.titulo_seccion h1{
		color: #FFFFFF;
		border-bottom: none;
	}

	#menu_lateral{
		display: none;
	}

	#contenido_con_menu{
		width: 100%;
	}
}

/*//// SECCIÓN INICIO ////*/

.contenedor.separador{
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #BBBBBB
}

#izq_inicio{
	float: left;
	width: 40%;
	margin-right: 5%;
	margin-top: 10px;
}

#izq_inicio h3{
	color: #171795;
	border-bottom: 1px solid #171795
}

.noticia_inicio{
	float: left;
	width: 100%;
	padding-bottom: 20px;
	margin-top: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid #BBBBBB;
}

.noticia_inicio h2{
	font-weight: bold;
}

.noticia_inicio img{
	float: left;
	width: 100%;
	margin: 12px 0px;
}

.noticia_inicio.mini img{
	width: 45%;
	margin: 12px 5% 0px 0px;
}

.noticia_inicio.mini p{
	float: left;
	width: 50%;
	padding-bottom: 8px;
	border-bottom: 1px solid #F4F4F4;
}

.noticia_inicio .categorias_noticia_inicio{
	float: right;
	clear: right;
	margin-top: 5px;
	font-size: 0.8rem;
	color: #BBBBBB;
	text-align: right;
}

.noticia_inicio .categorias_noticia_inicio a{
	color: #BBBBBB;
}

.noticia_inicio .fecha_noticia_inicio{
	float: right;
	margin-top: 5px;
	text-align: right;
	font-style: italic;
	font-size: 0.8rem;
	color: #BBBBBB;
}

#med_inicio{
	float: left;
	width: 25%;
	margin-right: 5%;
	margin-top: 10px;
}

#proximos_eventos, #convocatorias{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

#proximos_eventos h3, #convocatorias h3{
	color: #171795;
	border-bottom: 1px solid #171795;
	margin-bottom: 20px;
}

.evento{
	float: left;
	width: 100%;
	padding-bottom: 12px;
	margin-bottom: 7px;
	border-bottom: 1px solid #BBBBBB;
}

.fecha_evento{
	float: left;
	width: 50px;
	margin-right: 10px;
}

.mes_evento{
	float:left;
	width: 48px;
	padding: 3px 0px 1px;
	border: 1px solid #171795;
	border-radius: 5px 5px 0px 0px;
	background-color: #171795;
	text-align: center;
	color: #FFFFFF;
	font-size: 0.7rem;
}

.dia_evento{
	float: left;
	width: 48px;
	padding-top: 5px;
	border-left: 1px solid #171795;
	border-right: 1px solid #171795;
	color: #555555;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.dia_semana_evento{
	float: left;
	width: 48px;
	border-left: 1px solid #171795;
	border-right: 1px solid #171795;
	border-bottom: 1px solid #171795;
	border-radius: 0px 0px 5px 5px;
	color: #171795;
	font-size: 0.7rem;
	text-align: center;
}

.datos_evento{
	overflow: hidden;
}

.titulo_evento, .lugar_evento{
	float: left;
	width: 100%;
	margin-bottom: 10px;
}

.evento img{
	margin-bottom: -2px;
}

#columna_twitter, #columna_facebook{
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

/* Make the Facebook Like box responsive (fluid width)
https://developers.facebook.com/docs/reference/plugins/like-box/ */

/* This element holds injected scripts inside iframes that in 
some cases may stretch layouts. So, we're just hiding it. */

#fb-root {
  display: none;
}

/* To fill the container and nothing else */

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}

#twitter-widget-0{
   width: 100% !important;  
}


#der_inicio{
	float: left;
	width: 25%;
	margin-top: 10px;
}

.bloque_derecha{
	float: left;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #BBBBBB;
}

.titulo_bloque{
	float: left;
	width: 100%;
	font-size: 0.7rem;
	color: #BBBBBB;
	margin-bottom: 10px;
	text-align: left;
}

.bloque_derecha img{
	float: left;
	width: 97%;
	max-width: 350px;
	padding: 1%;
	border: 1px solid #BBBBBB;
	margin-bottom: 10px;
}

.bloque_derecha.patrocinadores{
	text-align: center;
}

.bloque_derecha.patrocinadores img{
	float: none;
	border: none;
	max-width: 250px;
}

.bloque_derecha.enlaces img{
	float: left;
	width: 60%;
	max-width: 300px;
	padding: 2% 19.5%;
	border: 1px solid #BBBBBB;
	margin-bottom: 5px;
}


@media only screen and (max-width: 980px){
	#izq_inicio{
		width: 100%;
		margin-right: 0;
	}

	.noticia_inicio h2{
		float: right;
		width: 50%;
	}

	#med_inicio{
		width: 60%;
	}

	#der_inicio{
		width: 35%;
	}
}

@media only screen and (max-width: 700px){

	.noticia_inicio h2{
		float: left;
		width: 100%;
	}

	#med_inicio{
		width: 50%;
	}

	#der_inicio{
		width: 45%;
	}
}

@media only screen and (max-width: 500px){

	.noticia_inicio h2{
		font-size: 1.3rem;
	}
	.noticia_inicio.mini img{
		width: 100%;
		margin: 12px 0px 0px 0px;
	}

	.noticia_inicio.mini p{
		float: left;
		width: 100%;
		margin-top: 10px;
		padding-bottom: 8px;
		border-bottom: 1px solid #F4F4F4;
	}

	#med_inicio{
		width: 100%;
		margin-right: 0;
	}

	#columna_twitter, #columna_facebook{
		width: 90%;
	}

	#der_inicio{
		width: 100%;
	}
}



/*//// SECCION NOTICIAS ////*/

#listado_noticias{
	float: left;
	width: 100%;}

.fila_noticias{
	float: left;
	width: 100%;
}

.noticia{
	float: left;
	width: 48%;
	margin-bottom: 30px;
}

.noticia.impar{
	margin-right: 4%;
}

.noticia h2{
	font-weight: bold;
}

.noticia .imagen_noticia{
	float: left;
	width: 100%;
	text-align: center;
}

.noticia img{
	width: 100%;
	max-width: 500px;
	margin: 0px;
}

.noticia.mini{
	padding-top: 20px;
	border-top: 1px solid #BBBBBB;
}

.noticia.mini .imagen_noticia{
	width: 35%;
	margin: 6px 5% 0px 0px;
}


.noticia.mini h2{
	width: 50% !important;
	font-size: 1rem;
}

.noticia.mini p{
	float: left;
	width: 60%;
	padding-bottom: 8px;
	border-bottom: 1px solid #F4F4F4;
	font-size: 0.9rem;
	line-height: 1.1rem;
}

.noticia .categorias_noticia{
	float: right;
	clear: right;
	margin-top: 5px;
	font-size: 0.8rem;
	color: #BBBBBB;
	text-align: right;
}

.noticia .categorias_noticia a{
	color: #BBBBBB;
}

.noticia .fecha_noticia{
	float: right;
	margin-top: 5px;
	text-align: right;
	font-style: italic;
	font-size: 0.8rem;
	color: #BBBBBB;
}

#boton_mas_noticias{
	float: left;
	width: 100%;
	text-align: center;
}

#boton_mas_noticias .boton{
	display: inline-block;
}

#cargando_noticias{
	float: left;
	width: 100%;
	text-align: center;
	display: none;
}

@media only screen and (max-width: 1000px){
	.noticia{
		width: 100%;
		margin: 0px 0px 30px;
	}
}

@media only screen and (max-width: 600px){
	.noticia.mini .imagen_noticia{
		width: 100%;
		margin: 0px;
	}

	.noticia.mini h2{
		width: 100% !important;
		font-size: 1.2rem;
		margin-top: 10px;
	}

	.noticia.mini p{
		float: left;
		width: 100%;
	}
}


/*//// NOTICIA COMPLETA ////*/

#noticia_completa .noticia{
	width: 100%;
	padding-bottom: none;
	margin-bottom: none;
	border: none;
}

#noticia_completa h2{
	margin-top: -8px;
}

#noticia_completa p{
	float: left;
	width: 100%;
}

#noticia_social{
	float: left;
	width: 100%;
	margin: 10px 0px;
	padding: 6px 0px 2px;
	border-top: 1px solid #BBBBBB;
	border-bottom: 1px solid #BBBBBB;
}

#noticia_social .fecha_noticia{
	float: left;
}

#noticia_social .botones_redes{
	float: right;
}

#noticia_social .boton_compartir, #noticia_social .boton_twittear{
	float: left;
}

#noticia_social .boton_compartir{
	width: 150px;
}
#noticia_social .boton_twittear{
	width: 120px;
}


#noticia_completa img{
	margin-bottom: 20px;
}

@media only screen and (max-width: 700px){
	#noticia_social .botones_redes{
		float: left;
		width: 100%;
		margin-top: 10px;
	}
}

/*//// SECCIÓNES CLUB ////*/

#logros{
	float: left;
	margin-top: 10px;
	margin-bottom: 30px;
}

#logros ul{
	float: left;
	padding-left: 20px;
}

#logros ul li{
	float: left;
	width: 100%;
	margin: 5px 0px;
}

.directiva_1{
	float: left;
	width: 98%;
	margin: 20px 1%;
	padding: 10px 0px;
	text-align: center;
	background-color: #F4F4F4;
}

.directiva_2{
	float: left;
	width: 48%;
	margin: 20px 1%;
	padding: 10px 0px;
	text-align: center;
	background-color: #F4F4F4;
}

.nombre_directiva{
	float: left;
	width: 100%;
	color: #333333;
	font-size: 1.3rem;
}

.cargo_directiva{
	float: left;
	width: 100%;
	font-size: 0.9rem;
	font-style: italic;
	margin-top: 5px;
}

.donde_estamos h2{
	margin-bottom: 10px;
}

.donde_estamos iframe{
	margin-bottom: 30px;
}

#img_entrenamientos{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

#horarios_club, #horarios_club_red{
	float: left;
	width: 100%;
	border: 1px solid #171795;
	border-collapse: collapse;
	line-height: 25px;
	text-align: center;
}

#horarios_club_red{
	display: none;
}

#horarios_club thead, #horarios_club_red thead{
	background-color: #171795;
	color: #FFFFFF;
}

#horarios_club td, #horarios_club_red td{
	border: 1px solid #171795;
	padding: 5px;
}

td.grupo{
	background-color: #F4F4F4;
	color: #333333;
}


@media only screen and (max-width: 875px){
	#horarios_club, #horarios_club_red{
		font-size: 0.75rem;
	}
}


@media only screen and (max-width: 640px){
	.directiva_1, .directiva_2{
		width: 100%;
		margin: 15px 0px;
	}

	.donde_estamos iframe{
		width: 90%;
		height: 300px;
	}
}

@media only screen and (max-width: 500px){
	#horarios_club{
		display: none;
	}

	#horarios_club_red{
		display: table;
	}

	.donde_estamos iframe{
		width: 90%;
		height: 250px;
	}
}


/*//// SECCION ESCUELA ////*/
#img_escuela{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}


#programas_nacionales{
	float: left;
	width: 100%;
}

.programa_escuela{
	float: left;
	width: 40%;
	margin: 20px 5% 0;
	text-align: center;
}

.programa_escuela img{
	width: 80%;
	max-width: 300px;
}

@media only screen and (max-width: 500px){
	.programa_escuela{
		width: 90%;
	}
}


/*//// SECCION PLANTILLAS ////*/

#img_plantillas{
	float: left;
	width: 100%;
	text-align: center;
	margin-bottom: 4%;
}

#img_plantillas img{
	width: 96%;
}

.foto_plantilla{
	float: left;
	width: 46%;
	margin: 0% 2% 4%;
}

.foto_plantilla img{
	float: left !important;
	width: 100% !important;
	margin: 0 !important;
}

.nombre_plantilla{
	float: left;
	width: 100%;
	padding: 15px 0;
	margin-top: -50px;
	background: rgba(0, 0, 0, 0.7);
	color: #FFFFFF;
	font-size: 1rem;
	font-family: 'Exo 2', Helvetica,Verdana,Arial,sans-serif;
	font-weight: lighter;
	text-align: center;
}

#plantillas img{
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

#plantillas table{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	clear: both;
	border-collapse: collapse;
}

#plantillas th{
	text-align: left;
	font-weight: normal;
}

#plantillas th h3{
	color: #171795;
	margin: 15px 0px 10px;
}

#plantillas td{
	padding: 10px;
}

#plantillas .impar{
	background-color: #F4F4F4;
}

#plantillas .nombre{
	font-size: 1.1rem;
}

#plantillas .perfil{
	min-width: 110px;
}

#plantillas .boton{
	float: right;
	line-height: 30px;
}

@media only screen and (max-width: 500px){
	.foto_plantilla{
		width: 96%;
	}

	#plantillas .nombre{
		font-size: 1.0rem;
	}
}


/*//// SECCION COMPETICIÓN ////*/

.competicion{
	float: left;
	width: 40%;
	margin: 30px 5%;
	text-align: center;
}

.competicion.andalucia{
	width: 90%;
	margin-bottom: 0;
}

.competicion img{
	width: 80%;
	max-width: 200px;
}

.competicion .boton{
	display: inline-block;
	margin-top: 15px;
}

@media only screen and (max-width: 640px){
	.competicion{
		width: 90%;
	}
}



/*//// SECCION EMPRESAS ////*/

.empresas p{
	float: left;
	width: 100%;
	margin: 0px 0px 20px;
}

.empresas h2{
	color: #171795;
	margin-bottom: 10px;
}

#empresas_medios{
	width: 80%;
	margin-bottom: 30px;
}

.medios{
	float: left;
	width: 23%;
	margin: 0px 1% 20px;
}

.medios img{
	width: 100%;
	margin: 10px 0px;
}

@media only screen and (max-width: 950px){
	.medios{
		width: 40%;
		margin: 0px 5% 20px;
	}
}

@media only screen and (max-width: 700px){
	.medios{
		width: 46%;
		margin: 0px 2% 20px;
	}
}

@media only screen and (max-width: 500px){
	.medios{
		width: 90%;
		margin: 0px 5% 20px;
	}
}

@media only screen and (max-width: 640px){
	#empresas_medios{
		width: 100%;
	}
}

/*//// SECCION CONTACTO ////*/

#contacto_iz{
	float: left;
	width: 45%;
	margin-right: 5%;
}

#contacto_iz ul{
	line-height: 1.8em;
}

#contacto_iz img{
	float: left;
	margin-top: 10px;
	margin-right: 10px;
	width: 40px;
}

#contacto_dr{
	float: left;
	width: 50%;
}

#contacto_iz h4, #contacto_dr h4{
	margin-bottom: 20px;
}

#contacto_tl{
	float: left;
	width: 100%;
	height: 300px;
	margin-top: 40px;
	text-align: center;
}

#contacto form{
	width: 100%;
}

#contacto_dr .input_contacto{
	width: 93%;
	max-width: 690px;
	min-width: 93%;
	font-family: Helvetica,Verdana,Arial,sans-serif;
	font-size: 1em;
	color: #AAAAAA;
	border: 0px solid #2394CE;
	padding: 10px;
	margin-top: 20px;
	border-radius: 2px;
	background-color: #F0F0FF;
}

#contacto_dr .input_contacto_primero{
	margin-top: 5px;
}

#contacto_dr textarea{
	margin-bottom: 0px !important;
	height: 100px;
}

#contacto_dr .boton{
	float: left;
	margin-top: 20px;
	margin-bottom: 10px;
}

#contacto_dr .boton:hover{
	cursor: pointer;
}

#caja_contacto_tl{
	max-width: 360px;
	margin: 0 auto;
	padding: 1px 5% 50px;
	background-color: #F0F0F0;
}

#contacto_tl .input_contacto{
	max-width: 200px;
	min-width: 0;
	text-align: center;
}

#contacto_dr .error_contacto{
	float: left;
	width: 90%;
	padding-left: 20px;
	background: url('../img/error.png') center left no-repeat;
	color: darkred;
}

#acepto_privacidad{
	float: left;
	width: 100%;
	margin-top: 20px;
}

#acepto_privacidad input{
	margin-left: 10px;
}

@media only screen and (max-width: 320px) and (-webkit-min-device-pixel-ratio: 2){
	#acepto_privacidad input{
		margin-left: 5px;
		width: 25px;
		height: 25px;
	}
}

#respuesta_contacto{
	float: left;
    margin-left: 20px;
    margin-top: 20px;
}

.ok_envio{
	padding-left: 24px;
	background: url('../img/ok.png') top left no-repeat;
	color: darkgreen;
}

.error_envio{
	padding-left: 24px;
	background: url('../img/ko.png') top left no-repeat;
	color: darkred;
}

@media only screen and (max-width: 870px){
	#contacto_iz, #contacto_dr{
		width: 100%;
	}
}




/*//// PIE ////*/

footer{
	float: left;
	width: 100%;
	margin-top: 20px;
}

#patrocinadores{
	float: left;
	width: 100%;
}

#patrocinadores h4{
	color: #BBBBBB;
	border-bottom: 1px solid #BBBBBB;
	font-weight: lighter;
}

.logos_patrocinadores, .logos_colaboradores{
	float: left;
	width: 100%;
	padding: 0%;
	text-align: center;
	margin-bottom: 10px;
}

.logos_patrocinadores img{
	width: 60%;
	max-width: 230px;
	margin: 2%;
}

.logos_colaboradores img{
	width: 40%;
	max-width: 145px;
	margin: 2%;
}

#logo_ayuntamiento{
	width: 85%;
	max-width: 400px;
}

#fondo_pie{
	float: left;
	width: 100%;
	padding: 20px 0;
	background: url("../img/fondo_pie.png") no-repeat scroll right center #171795;
	color: #FFFFFF;
	font-size: 0.80rem;
	line-height: 1.5rem;
	border-top: 10px solid #000040;
}

#fondo_pie a{
	color: #FFFFFF;
}

#datos_pie{
	float: left;
	width: 80%;
}

#social_pie{
	float: left;
	width: 100%;
}

#social_pie img{
	float: left;
	width: 40px;
	margin-top: 10px;
	margin-right: 10px;
}

#social_pie #siguenos{
	color: #FFFFFF;
}

#author{
	float: left;
	width: 20%;
	margin-top: 105px;
	text-align: right;
}

@media only screen and (max-width: 700px){
	#fondo_pie{
		background-position: center center;
	}

	#datos_pie{
		width: 100%;
	}

	#author{
		width: 100%;
		margin-top: 10px;
		padding-top: 5px;
		border-top: 1px solid #3131CC;
	}
}