/*
   style.css

   Created by Ryan Rorison on 2007-05-12.
*/
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

/* CSS Reset */
/* ========= */
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
/*	outline: 1px solid red;*/
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ul, ol, dl {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* Sensible defaults for certain tags */
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
small {
	font-size: x-small;
}
ol {
	list-style: decimal inside;
}
ul {
	list-style: square inside;
}

/* Start styles */
/* ============ */
@media screen,print {
	body {
		font: 62.5%/1 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
		color: #394959;
	}

	/* Base Elements */
	/* ====================================== */

	em {
		font-style: italic;
	}
	strong {
		font-weight: bold;
	}
	p {
		font-size: 1.6em;
		line-height: 1.5;
		margin: 0.25em 0;
	}
	li {
		font-size: 1.6em;
		line-height: 1.5;
		margin: 0.25em 0;
		list-style: disc;
	}

	h1, h2, h3, h4 {
		font-family:  'Lato', serif;
		font-weight: 400;
		letter-spacing: 1px;
	}
	h2 a, h3 a, h4 a {
		color: inherit;
		text-decoration: none;
	}

	h1 {
		font-weight: 700;
		font-size: 2.8em;
		line-height: 1;
		margin: 1em 0 0.5em 0;
		color: #111;
	}
	h2 {
		font-size: 2.1em;
		line-height: 1.5;
		letter-spacing: 1px;
		margin: 1em 0 0 0;
		color: #111;
	}
	h3 {
		font-weight: normal;
		font-size: 1.8em;
		line-height: 1.5;
		margin: 0.3333em 0;

		color: #ea5353;
	}
	h4 {
		font-size: 1.6em;
		line-height: 1;
		font-weight: normal;
		color: #777;
		letter-spacing: 1px;
		margin: 0 0 1em 0;
	}

	a {
		color: #0053ea;
		text-decoration: none;
	}
	a:hover {
		color: #5300ea;
	}

	ol, ul {
		list-style-position: outside;
		margin: 1em 0;
	}

	/* Specific Elements */
	/* ====================================== */
	#package {
		max-width: 60em;
		width: 100%;
		margin: 2.1em auto;
		text-align: left;
	}
	footer {
		text-align: right;
		margin: 1em 0;
	}
}
@media print {
	body {
		font-size 10pt;
	}
	h1 {
		font-size: 2.1em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1.4em;
	}
	h4 {
		font-size: 1.2em;
	}
	a {
		color: inherit;
	}
	p {
		margin: 0.5em 0;
	}
	p, li {
		font-size: 1em;
		line-height: 1.2;
	}
	ol, ul {
		margin: 0.5em 0;
	}
	#package {
		margin: 2.8em;
	}
 	nav {
		display: none;
	}
}