/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html{
			font-size: 62.5%;
		}
		body{
			margin: 0 auto;
			padding-top: 5px;
			font-size: 1.4rem;
			font-family: arial;
		}
		#main_container{
		    width:90%;
		    margin-left:5%;
		    padding-top:5px;
		    padding-bottom:5px;
		    float:left;
		    border: 3px outset;
		}
		.content{
		    width:90%;
		    margin-top:5px;
		    margin-left:5%;
		    padding-bottom:50px;
		    background:#ffffff;
		    border: 1px dashed;
		    height: auto;
		    float:left;
		}
		.content article{
		    padding: 3%;
		    font-size: 2.4rem;
		}
		.content article h2{
			font-size: 3.0rem;
			color: #FD9104;
			font-family: arial;
		}
		.content aside{
			width:40%;
			margin-top: 5px;
			margin-left: 30px;
			background: #FDECAA;
			border-style: outset;
			font-family: arial;
			font-size: 1.4rem;
		}
		.content aside h2{
			font-size: 2.0rem;
			font-style: oblique;
			font-weight: bold;
		}
		nav{
			background: #A5DBFD;
			margin: 10px;
			padding: 5px;
			width: 300px;
			font-size: 1.2rem;
			float: left;
		}
		.cabecera{
			width:90%;
    		margin-top:5px;
    		margin-left:5%;
    		background:#ffffff;
    		border: 3px outset;
   			height: 200px;
    		float:left;
		}
		.cabecera h1{
			font-size: 3.0rem;
			color: #2B1901;
		}
		.top_menu ul{
    		list-style:none;
    		float:left;
    		border: 0px dashed;
    		padding: 2%;
    		width:400px;
		}
		.top_menu ul li{
		    float:left;
		    margin-right:20px;
		    margin-bottom:10px;
		    background: #ff812d;
		    padding:5px;
		    border-radius: 15%;
		}
		.top_menu ul li a{
    		color: #FFFFFF;
    		text-decoration:none;
		}
		.top_menu ul li a:hover{
    		color: blue;
		}
		.footer{
		    width:90%;
		    margin-top:5px;
		    margin-left:5%;
		    background:#ffffff;
		    border: 3px outset;
		    height: 60px;
		    float:left;
		}
		.footer_msg{
		    margin-top: 10px;
			float: left;
			margin-left: 5%;
			font-size: 1.4rem;
			color: rgb(126, 126, 126);
		}