/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Begin of page styling */
@charset "UTF-8";
/* CSS Document */

body {
	font-family: Arial, sans-serif;
	color: black;
	background-color: #241F1E;
}
main {
	margin: auto;
	width: 1020px;
	background-color: #D9EAF8;
}
nav {
	float: right;
	width: 320px;
}
article {
	float: left;
	padding: 25px;
	width: 570px;
}
footer {
	clear: both;
	padding: 25px;
	background-color: #5C1B06;
	color: white;
}

/*** typography ***/
h2 {
	font-size: 32px;
	font-weight: bold;
	color: #5C1B06;
	margin-bottom: 16px;
}
p {
	margin-bottom: 16px;
	line-height: 22px;
}
/*** Navigation Styles ***/
nav ul {
	margin-bottom: 60px;
}
nav ul li a {
	display: block;
	background-color: #5F676D;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 60px;
	height: 60px;
	text-transform: uppercase;
	text-decoration: none;
	padding-left: 25px;
	border-bottom: 5px solid #929EA7;
}
nav ul li a:hover {
	background: #929EA7;
}
header img {
	display: block;
}
