/* Resetear margin y padding*/
* {
	margin: 0;
	padding: 0;
	}

/* Cambiar etiquetas HTML5 como bloque */
header, footer, section, aside, nav, article {
	display: block;
	}

/* Estilos generales */
body{
	width: 960px;
	margin: 0 auto;
	background: #ccc;
	font-family: trebuchet, verdana, helvetica;
}
h1{
	font-size: 34px;
	padding: 20px 0;
	color: #999;
	text-shadow:2px 2px 2px #000;
	font-family: 'Architects Daughter', cursive;
}

/*BARRA NAVEGACION <nav>*/
nav{
	background: url("../imagenes/intro.png")center center;
	background-repeat: no-repeat;
	height: 200px;
	clear: both;	
	animation: zoom 15s infinite;/*animation es css3*/
	-webkit-animation: zoom 15s infinite;/*el zoom es el nombre de la animacion*/
	-o-animation: zoom 15s infinite;
	-moz-animation: zoom 15s infinite;
	-ms-animation: zoom 15s infinite;
}

nav ul li{
	float: left;
	display: inline;
	padding: 15px;
}

nav ul li a{
	color: #309700;
	text-decoration: none;
}
nav ul li.activo a{
	color: yellow;
}
nav li a:hover{
	color: blue;
}

h2{
	margin-left: 15px;
	font-size: 25px;
	-webkit-border-radius:10px 10px 10px 10px;
	-o-border-radius:10px 10px 10px 10px;
	-ms-border-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	background-color: #84d8fc;
	text-align: center;
	width: 730px;
	height: 50px;
	font-family: 'Architects Daughter', cursive;
	padding: 5px 0 0 0;
	color: green; text-shadow: black 0.1em 0.1em 0.2em
}
p{
	font-size: 15px;
}
#content .post-section img {
  float: left;
  margin: 4px 5px 0 0;
}

article {
	padding: 15px;
	border: 4px solid green;
	margin-bottom: 15px;
	background-color: #f5f5f5;
	-webkit-border-radius:10px 10px 10px 10px;
	-o-border-radius:10px 10px 10px 10px;
	-ms-border-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	width: 745px;
	margin-left: 20px;
	margin-top: 15px;
	text-align: justify;
}

#content{
	background-color: white;
	float: right;
	width: 815px;
	/*height: 200px;*/
	margin-top: 15px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-o-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-ms-border-radius: 10px 10px 10px 10px;
	
}
/*<article> section post section 2*/

aside{
	height: 600px;
	width: 100px;
	padding: 15px;
	/*border: 3px solid green;*/
	margin-top: 15px;
	background-color: #f5f5f5;
	-webkit-border-radius:20px 20px 20px 20px;
	-o-border-radius:20px 20px 20px 20px;
	-ms-border-radius:20px 20px 20px 20px;
	-moz-border-radius:20px 20px 20px 20px;
}

aside ul li{
	float: left;
	padding: 5px 5px 10px 10px;
	margin-left: -5px;
	list-style-type: none;
}

aside ul li a{
	color: #309700;
	text-decoration: none;
}

aside ul li img:hover{ 
-moz-transition: all 0.5s ease-in-out; 
-webkit-transition: all 0.5s ease-in-out; 
-o-transition: all 0.5s ease-in-out; 
-ms-transition: all 0.5s ease-in-out; 
transition: all 0.5s ease-in-out; 
-moz-transform: rotate(-360deg); 
-webkit-transform: rotate(-360deg); 
-o-transform: rotate(-360deg); 
-ms-transform: rotate(-360deg); 
transform: rotate(-360deg); 
} 

/* footer */

footer {
	width: 920px;
	margin-left: 5px;
	margin-top: 55px;
	margin-bottom: 55px;
	background-color: #1cb4f5;
	clear: both;
	padding: 20px 20px 20px 20px;
	-webkit-border-radius:20px 20px 20px 20px;
	-o-border-radius:20px 20px 20px 20px;
	-moz-border-radius:20px 20px 20px 20px;
	-ms-border-radius:20px 20px 20px 20px;
	text-align: right;
}
