*{
	margin:0;
	padding:0;
}

body {
	background:#fff;
	font-family:Arial, Helvetica, sans-serif;
	text-align:justify;
}

.contenedor {
	width:80%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
}

header {
	background:#2ecc71;
	margin:10px 0;
	border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
	box-shadow:0px 2px 2px #000;
		.moz-box-shadow:0px 2px 2px #000;
		-webkit-box-shadow:0px 2px 2px #000;
}

.button {
	background:#fff;
	color:#000;
	display:inline-block;
	font-family:Arial;
	font-size:16px;
	margin:10px;
	padding:10px 0px;
	float:right;
	text-align:center;
	width:100px;
	text-decoration:none;
}

header h1 {
	color:#fff;
	padding:20px 0;
	text-align:center;
}

.main {
	width:70%;
	background:#fff;
	padding:20px;
	float:left;
	box-sizing:border-box;
}

.main img {
	width:100%;
	height:auto;
	border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
	box-shadow:0px 3px 3px #000;
		.moz-box-shadow:0px 3px 3px #000;
		-webkit-box-shadow:0px 3px 3px #000;
}

aside {
	width:30%;
	padding:20px;
	box-sizing:border-box;
	background:#ccc;
	float:left;
	border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
	box-shadow:0px 2px 2px #000;
		.moz-box-shadow:0px 2px 2px #000;
		-webkit-box-shadow:0px 2px 2px #000;
}

aside img {
	width:100%;
	padding:10px;
	box-sizing:border-box;
	height:auto;
	border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
	box-shadow:0px 3px 3px #000;
		.moz-box-shadow:0px 3px 3px #000;
		-webkit-box-shadow:0px 3px 3px #000;
} 

footer {
	clear:both;
	float:left;
	text-align:center;
	margin-top:20px;
	box-sizing:border-box;
	width:100%;
	padding:20px;
	color:#fff;
	background:#000;
	border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
}

table {
	border:0px;
	border-collapse:collapse;
	width:100%;
}

table td {
	border:0px;
	padding:10px;
}

@media screen and (max-width: 800px){
	.main {
		width:100%;
	}

	aside {
		width:100%;
	}
}

@media screen and (max-width: 400px){
	.comtenedor {
		width:100%;
	}

	aside {
		display:none;
	}
}