@charset "utf-8";
/* CSS Document */

* {
	margin:0; padding: 0; /*simple reset*/
}

body {
	font-family: Arial;
	font-size: 16px;
	background-color: #241f1e;
}

header img {
	display: block;
}

section {
	width: 1020px;
	margin: auto;
	background-color: #D9EAF8;
}

nav {
	float: right;
	width: 250px;
}

article {
	float: left;
	width: 740px;
	padding: 15px;
}

footer {
	clear: both;
	color: white;
	background-color: #5C1B06;
	padding: 25px;
}

/*TYPOGRAPHY*/

h2 {
	font-size: 32px;
	font-weight: bold;
	color: #5C1B06;
	margin-bottom: 16px;
}

p {
	margin-bottom: 16px;
	line-height: 22px;
}

/*NAVIGATION STYLES*/

nav ul {
	list-style-type: none;
	margin-bottom: 60px;
}

nav ul li a {
	display: block;
	
	background-color: #5F676D;
	color: #f5f5f5;
	
	font-weight: bold;
	font-size: 18px;
	
	line-height: 60px;
	height: 60px;
	
	text-transform: uppercase;
	text-decoration: none;
	
	padding-left: 15px;
	border-bottom: 5px solid #929EA7;
}

nav ul li a:hover {
	background: #5C1B06;
}

