/*CSS Reset*/body, div, dl, dt, dd, li, pre,form, fieldset, input, textarea, p, blockquote, th, td, button { margin: 0; padding: 0; }h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-size: 100%; font-weight: normal; }address, caption, cite, code, dfn, em, strong, var { font-style: normal; font-weight: normal; }ol, ul { list-style: none; margin: 0; padding: 0; }table { border-collapse: collapse; border-spacing: 0; } caption, th { text-align: left; font-weight: normal; font-style: normal; }acronym, abbr, fieldset, img { border: 0;}:focus { outline: 0; }

@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);

body {
	margin: 0;
	padding: 0;
	background-color: #2e3a43;
	font-size: 13px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #0f0f0f;
}

h1 {
	font-size: 2em;
	margin-bottom: 2px;
}

h2 {
	font-size: 1.3em;
	text-decoration: underline;
	margin-bottom: 2px;
}

p {
	margin-bottom: 10px;
}

#container {
	min-width: 585px;
	width: 100%;
	margin: 0 auto;
}

#menu {
	padding: 20px;
	position: fixed;
	width: 140px;
	top: 0;
	left: 0;
	text-align: center;
	color: white;
	font-size: 16px;
	background-color: #2e3a43;
	margin-left: 20px;
	height: 100%;
}

#menu nav a {
	display: block;
	margin-bottom: 10px;
}

#menu nav {
	margin-top: 35px;
}

header, .page, footer {
	padding: 0 20px 0 220px;
	width: 100%;
	box-sizing: border-box;
}

header h1 {
	font-size: 40px;
	clear: both;
	color: white;
	margin-top: 48px;
}

.page {
	background-color: white;
	padding-bottom: 20px;
	padding-top: 20px;
}

.page:nth-child(even) {
	background-color: #ccc;
}

section{
	max-width: 750px;
}

footer {
	color: white;
	padding-top: 10px;
	padding-bottom: 10px;
}