@charset "utf-8";
/* CSS Document */
/* Simplify width and height calculations */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style:none;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body{
	margin:0px;
	padding:0px;
	color:#333;
	font-family:'source_sans_proregular';
	font-style:normal;
	font-size:1em;
	background-color:#CCC;
}
#wrapper{
	width:100%;
	margin:0 auto;
	max-width:1000px;
	background-color:#FFF;
}
header h1{
	color:#09F;
	font-size:3em;
	text-align:center;
	padding:2% 0px;
	font-style:normal;
	
}
header ul{
	/*ponemos fondo negro a la lista*/
	background:#333;
	/*quitamos decoracion de la lista*/
	list-style:none;
	/*quitamos margenes y rellenos*/
	margin:0px;
	padding:0px;
	/*ancho maximo*/
	width:100%;
}
header li{
	/*mostrar uno al lado de otro*/
	display:inline-block;
	/*hacerlos mas anchos*/
	width:19%;
	text-align:center;
}
header li a{
	color:#fff;
	text-decoration:none;
	/*vamos a darle relleno*/
	display:block;
	padding:10px 20px;
	/*centrar texto*/
	text-align:center;
}
header li a:hover{
	background:#c1c1c1;
	color:#000;
}
#hero{
	position:relative;
}
figure figcaption{
	width:50%;
	margin-left:3%;
	font-size:0.75em;
}
#hero img{
	max-width:100%;
	
}
#hero p{
	position:absolute;
	border:2px solid #fff;
	top:65%;
	left:45%;
	bottom:5%;
	padding:2%;
	width:50%;
	color:#fff;
	font-weight:bold;
}
#content{
	width:70%;
	float:left;	
	padding:1% 2% 1% 1%;
}
#content img{
	padding:1%;
	border: 1px solid #CCC;
	-webkit-box-shadow: 12px 6px 18px -3px rgba(0,0,0,0.75);
	-moz-box-shadow: 12px 6px 18px -3px rgba(0,0,0,0.75);
	box-shadow: 12px 6px 18px -3px rgba(0,0,0,0.75);
}
#content h2, aside h2 {
	font-size:1.5em;
	font-weight:500;
	color:#1e1e1e;

}

#content p, aside p{
	text-align:justify;	
	padding:1% 0%;
}
aside{
	float:left;
	width:25%;
	padding:1%;	
}
footer{
	clear:both;
	}
#footer_top{
	background-color:#474747;
	overflow:hidden;
	}
#footer_top section{
	float:left;
	width:25%;
	padding:2%;
	color:#fff;	
	}
#footer_top h3{
	color:#06F;
	font-weight:bold;
	padding-bottom:1%;
	}
#footer_top p{
	font-size:0.75em;
	color:#FFF;
	text-align:justify;	
	}
#footer_top a{
	display:block;
	color:#00a855;
	}
#footer_top a:hover{
	color:#a85500;
	text-decoration:none;
	}
#redes_sociales ul{
	margin-left:1em;
	padding-left:0;
	list-style-position:inside;
	}
#redes_sociales ul li{
	border-bottom:solid 0.15em rgba(255,255,255,.1);
	list-style-type:circle;
	color:#00a855;
	}
#redes_sociales a{
	color:#FFF;
	text-decoration:none;
	display:block;
	border-bottom:solid 0.15em rgba(255,255,255,.1);
	}
	
#footer_down{
	overflow:hidden;
	background-color:#09F;
	}
#footer_down p{
	padding:2%;
	float:left;
	widht:20%;
	color:#FFF;
	}
#footer_down ul{
	list-style:none;
	padding:2% 0 2% 3%;
	float:left;
	width:75%;
	}
#footer_down ul li{
	display:inline-block;
	list-style-position:inside;
	width:17%;
	}
#footer_down ul li a{
	display:block;
	color:#FFF;
	text-decoration:none;
	}