nav {
	font-family: 'Helvetica', 'Arial', Sans-Serif;
}
nav ul,
nav ol,
nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}


html {
	font-size: 62.5%;
}

body,
input,
select,
textarea {
	font-family: 'Merriweather', 'Georgia', 'Arial', Serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;

	font-size: 1.5em;
	line-height: 2em;
	font-weight: 400;

	color: #404040;
}
input,
select,
textarea {
	font-family: 'Helvetica', 'Arial', Sans-Serif;
}

::-moz-selection {
    color: #222;
    background: #D6EDFF;
    text-shadow: none;
}

::selection {
    color: #222;
    background: #D6EDFF;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Helvetica', 'Arial', Sans-Serif;
	color: #000;
	margin: 32px 0;
}

h1 {
	font-size: 2.25em; /* 36px */
	line-height: 1.333em; /* 48px */
	padding: 8px 0;
	text-indent: -1px;
}
h2 {
	font-size: 2em; /* 32px */
	line-height: 1.25em; /* 40px */
	padding: 12px 0;
	text-indent: -1px;
}
h3 {
	font-size: 1.5em; /* 24px */
	line-height: 1.333em; /* 32px */
}

h4 {
	font-size: 1.25em; /* 20px */
	line-height: 1.2em; /* 24px */
	padding: 4px 0;
}

h5 {
	font-size: 1.1em;
	line-height: 1.7em;
}

h6 {
	font-size: 1em;
	line-height: 2em;
}

a {
	color: #e56439;
	font-weight: 400;
	text-decoration: none;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

a:hover,
a:focus {
	color: #000;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000;
    font-weight: inherit;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus {
	color: #000;
}


p, ul, ol {
	margin: 32px 0;
    padding: 0;
}

.post-article ul {
	list-style: none;
}
.post-article ul li {
	position: relative;
}
.post-article ul li:before {
	font-family: 'FontAwesome';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f0da';
	position: absolute;
	top: 0.5em;
	left: -1.5em;
	width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	color: #2e3033;	
}
.post-article ul li li:before {
	content: '\f105';
}

ol ol, ul ul, ul ol, ol ul {
	padding-left: 2.4em;
	margin: 8px 0;
}
@media only screen and (max-width: 480px) {
	ul, ol {
		margin-left: 2.4em;
	}
}
hr {
    display: block;
    height: 0;
    border: 0;
    border-top: 1px solid #b6babf;
	margin: 48px 0 47px;
    padding: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}
iframe {
	max-width: 100%;
}
iframe body {
	margin: 0 !important;
	padding: 0 !important;
}

blockquote {
	font-family: 'Vollkorn', 'Georgia', serif;
	font-size: 1.2em;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 32px 0;
    margin-left: -24px;
    padding: 0 0 0 16px;
    border-left: #dadce0 8px solid;
	font-style: italic;
}
blockquote ul,
blockquote ol {
	padding-left: 24px;
}
blockquote p,
blockquote > ul,
blockquote > ol {
	margin: 32px 0;
}

em, q {
	font-family: 'Vollkorn', 'Georgia', serif;
	font-size: 1.2em;
	font-style: italic;
	font-weight: 400;
}
blockquote em,
blockquote q {
	font-size: 1em;
}
b, strong {
	font-weight: 700;
}

small {
    font-size: 0.875em;
    color: #757a80;
}


dl {
	margin: 32px 0;
}

dl dt {
    font-weight: bold;
}

dl dd {
	margin: 16px 0;
    margin-left: 2.4em;
    padding: 0;
}

mark {
    background-color: #ffc336;
}

code, tt {
    padding: 2px 4px;
    margin: 0 2px;
    font-family: 'Inconsolata', monospace, sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    white-space: pre;
    border: 1px solid #dadce0;
    background: #e4e6eb;
    color: #232529;
    vertical-align: top;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

pre {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 105%;
	margin: 16px -2.5%;
    padding: 16px 2.5%;
    font-family: 'Inconsolata', monospace, sans-serif;
	font-weight: 400;
    white-space: pre;
    overflow: auto;
    background: #e6e8eb;
    color: #757a80;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

pre code, pre tt {
    font-size: inherit;
    line-height: 1.6em;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    background: transparent;
    border: none;
    margin: -16px -2.5%;
    padding: 16px 2.5%;
    vertical-align: inherit;
    border: 1px solid #292e33;
    background: #303840;
    color: #a7bf60;
}

kbd {
    display: inline-block;
    margin-bottom: 0.4em;
    padding: 1px 8px;
    border: #ccc 1px solid;
    color: #666;
    text-shadow: #fff 0 1px 0;
    font-size: 0.875em;
    font-weight: bold;
    background: #f4f4f4;
    border-radius: 4px;
    box-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.2), 
        0 1px 0 0 #fff inset;
}

table {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 32px -2.5%;
    width: 105%;
    max-width: 105%;
    background-color: transparent;
}

table th,
table td {
    padding: 16px 16px 16px 8px;
    line-height: 1.6em;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #dfe1e5;
}
table th[align="left"],
table td[align="left"] {
	text-align: left;
}
table th[align="center"],
table td[align="center"] {
	text-align: center;
}
table th[align="right"],
table td[align="right"] {
	text-align: right;
}

table th { color: #000; }

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

table tbody + tbody { border-top: 2px solid #efefef; }

table table table { background-color: #fff; }

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: #edeff2;
}
table img {
	display: inline;
}

.clear {
	clear: both;
}
.visuallyhidden {
	display: none;
}



form input[type="url"],
form input[type="tel"],
form input[type="text"],
form input[type="email"],
form input[type="month"],
form input[type="number"],
form input[type="search"],
form input[type="password"],
form textarea {
	background: #f9f9f9;
	border: 1px solid #ccc;
	color: #323232;
	
	font-size: 0.8em;
	line-height: 1.6;
	
	margin: 2px 0 0;
	padding: 8px;
	width: 100%;
	-webkit-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
	
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
form select {
	width: 99%;
}
form input[type="url"]:hover,
form input[type="tel"]:hover,
form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="month"]:hover,
form input[type="number"]:hover,
form input[type="search"]:hover,
form input[type="password"]:hover,
form textarea:hover {
	background: #fcfcfc;
	border: 1px solid #999;
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1) inset;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
form input[type="url"]:focus,
form input[type="tel"]:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="month"]:focus,
form input[type="number"]:focus,
form input[type="search"]:focus,
form input[type="password"]:focus,
form textarea:focus {
    background: #fcfcfc;
    border: 1px solid #59A0E2;
    box-shadow: 0 0 5px rgba(89, 160, 226, 0.4) inset;
}
form button,
form input[type="reset"],
form input[type="button"],
form input[type="submit"] {
	border: 0;
	color: #fff;
	background: #757a80;
	cursor: pointer;
	font-size: 0.8em;
	margin: 0;
	padding: 0.8em 1.2em;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-border-radius: 2px;
	border-radius: 2px;
}
form button:hover,
form input[type="reset"]:hover,
form input[type="button"]:hover,
form input[type="submit"]:hover {
	background: #2e3033;
}
form button:focus,
form input[type="reset"]:focus,
form input[type="button"]:focus,
form input[type="submit"]:focus {
	background: #2e3033;
}


.post-article a[href*="/feed"],
.post-article a[href*="mailto:"],
.post-article a[href*="tumblr.com"],
.post-article a[href*="flickr.com"],
.post-article a[href*="github.com"],
.post-article a[href*="tumblr.com"],
.post-article a[href*="youtube.com"],
.post-article a[href*="twitter.com"],
.post-article a[href*="facebook.com"],
.post-article a[href*="plus.google.com"] {
	display: inline-block;
}

.post-article a[href*="/feed"]:before,
.post-article a[href*="mailto:"]:before,
.post-article a[href*="tumblr.com"]:before,
.post-article a[href*="flickr.com"]:before,
.post-article a[href*="github.com"]:before,
.post-article a[href*="youtube.com"]:before,
.post-article a[href*="twitter.com"]:before,
.post-article a[href*="facebook.com"]:before,
.post-article a[href*="plus.google.com"]:before {
	font-family: 'FontAwesome';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	margin: 0 0.5em 0 0.25em;
	color: #bfbfbf;
	width: 1.2857142857142858em;
	text-align:center;
}

.post-article a[href*="/feed"]:before {
	content: '\f09e';
	color: #ee9900;
}
.post-article a[href*="mailto:"]:before {
	content: '\f0e0';
 	color: #000;
}
.post-article a[href*="tumblr.com"]:before {
	content: '\f173';
	color: #4f6e84;
}
.post-article a[href*="flickr.com"]:before {
	content: '\f16e';
	color: #ff0084;
}
.post-article a[href*="github.com"]:before {
	content: '\f09b';
	color: #4183c4;
}
.post-article a[href*="youtube.com"]:before {
	content: '\f16a';
	color: #c6312b;
}
.post-article a[href*="twitter.com"]:before {
	content: '\f099';
	color: #3ea9dd;
}
.post-article a[href*="facebook.com"]:before {
	content: '\f09a';
	color: #3c5a98;
}
.post-article a[href*="plus.google.com"]:before {
	content: '\f0d5';
	color: #d14836;
}