/* Makeshift CSS Reset */
*{
	margin: 0;
	padding: 0;
	outline: none;
}

/* Tell the browser to render HTML 5 elements as block */
header, footer, aside, nav, article {
	display: block;
}

body {
	margin: 0 auto;
	width: 1050px;
	font: 16px Calibri, Helvetica, Arial, sans-serif;
	background-color: #FFF;
}

