@font-face {
font-family: 'CooperHewitt';
src: url('/font/CooperHewitt-Book.eot'); /* IE9 Compat Modes */
src: url('/font/CooperHewitt-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/font/CooperHewitt-Book.woff') format('woff'), /* Modern Browsers */
url('/font/CooperHewitt-Book.ttf') format('truetype'), /* Safari, Android, iOS */
url('/font/CooperHewitt-Book.svg#svgFontName') format('svg'); /* Legacy iOS */
font-display: swap;}

@font-face {
font-family: 'CooperHewittBold';
src: url('/font/CooperHewitt-Semibold.eot'); /* IE9 Compat Modes */
src: url('/font/CooperHewitt-Semibold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/font/CooperHewitt-Semibold.woff') format('woff'), /* Modern Browsers */
url('/font/CooperHewitt-Semibold.ttf') format('truetype'), /* Safari, Android, iOS */
url('/font/CooperHewitt-Semibold.svg#svgFontName') format('svg'); /* Legacy iOS */
font-display: swap;}

@font-face {
font-family: 'Charter';
src: url('/font/charter_regular-webfont.eot'); /* IE9 Compat Modes */
src: url('/font/charter_regular-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/font/charter_regular-webfont.woff') format('woff'), /* Modern Browsers */
url('/font/charter_regular-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('/font/charter_regular-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
font-display: swap;}

@font-face {
font-family: 'CharterBold';
src: url('/font/charter_bold-webfont.eot'); /* IE9 Compat Modes */
src: url('/font/charter_bold-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/font/charter_bold-webfont.woff') format('woff'), /* Modern Browsers */
url('/font/charter_bold-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('/font/charter_bold-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
font-display: swap;}


/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
  
  Color code I am always looking for is #A2DEDB
*/

body {
	margin-left:0;
	padding-left:0;
}

[class*='grid'],
[class*='col-'],
[class*='mobile-'],
.grid:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}

[class*='col-'] {
	float: left;
  	min-height: 1px;
	padding-right: 10px; /* column-space */
}

[class*='col-'] [class*='col-']:last-child {
	padding-right: 0;
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 10px; /* grid-space to left */
	padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}

/* Typography */
body, html {
	color:#222;
	background: #fff;
 	font-family: 'Charter';
	font-style: normal;
	font-weight: 400;
	text-rendering: auto;
	font-size: 16px;
	font-size: 1.05em;
	line-height: 1.8;
}
sup {
	line-height:0;
}
a, a:visited {
	text-decoration: none;
	color: #000;
	border-bottom: 1px #ccc solid;
}
b, strong {
font-style: normal;
font-family: 'CharterBold';
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'CooperHewittBold';
	font-weight: 400;
}
h2, h3, h4, h5, h6 {
	text-transform: uppercase;
}
h2, h3 {
	padding-top: 1.5em;
}
.entry-content h2, .entry-content h3, entry-content h4, .entry-content h5, .entry-content h6 {
	margin-bottom:-0.75em;
	color: #111;
	font-size: 1.2em;
}
.post h2 a {
	border-bottom: none;
	font-size: 1.5em;
	line-height: 1.2;
	padding-bottom: 0;
	text-transform: none;
}

.site-title, .site-title a {
	font-family: 'CooperHewittBold';
	font-style: normal;
	border-bottom: none;
	text-align: center;
	font-size: 1.65em;
	line-height: 1.2;
	padding-bottom: 0;
	margin-bottom: 0;
	padding-top: 0;
	margin-top: 0;
	text-transform: uppercase;
}
.site-description {
	font-size:1.2em;
	font-family: 'CooperHewitt';
	text-align: center;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 1.7;
	padding-top: 0;
	margin-top: 0;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px #A2DEDB;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.header-img {
  max-height: 250px;
  width: auto;
}
.header-img a {
	border-bottom: none;
	text-decoration: none;
}
.posted-on {
font-style: normal;
font-family: 'CooperHewittBold';
font-size:0.75em;
color:#666;
margin-top: 0;
padding-top: 4px;
padding-left: 4px;
padding-right: 4px;
padding-bottom: 1px;
}
.posted-on a {
	border-bottom: none;
	color:#666;
	font-family: 'CooperHewittBold';
}
.subhead {
	font-size: 1.15em;
	font-family: 'Charter';
	font-style: italic;
	color:#444;
}
.subhead-article {
	font-size: 1.15em;
	font-family: 'Charter';
	font-style: italic;
	color:#444;
	margin-bottom: 0;
	text-align: center;
	margin-top: 0;
}
.subhead-article p {
	margin-top: -0.5em;
	padding-top: 0;
}
.tldr-sub {
	color:#ccc;
	padding-bottom: -2em;
	margin-bottom: -2em;
	line-height: 0;
	font-size: 1.5em;
}
.author-stuff {
	margin-top:0;
	margin-bottom: 2em;
	border-bottom: 1px solid #eee;
	font-family: 'CooperHewittBold';
}
.posts h2 a {
	border-bottom: none;
	text-transform: none;}

.callout h4 {
	text-align:center;
}
.site-footer {
	font-size: 0.75em;
	}
.site-info {
	text-align: center;
	padding-top: 3em;
}
.tiny {
	font-size: 0.45em;
}
.entry-title {
 font-size: 2.5em;
 text-align: center;
 line-height: 1.3;
 margin-bottom: 0.5em;
}

/* NAVIGATION */

#menu ul {
  margin: 0;
  padding: 0;
  color:#222;
font-style: normal;
border-bottom: none;
font-family: 'CooperHewittBold';
}

#menu .main-menu {
  display: none;
}

#tm:checked + .main-menu {
  display: block;
}

#menu input[type="checkbox"], 
#menu ul span.drop-icon {
  display: none;
}

#menu li, 
#toggle-menu, 
#menu .sub-menu {
  border-style: solid;
  border-color: rgba(0, 0, 0, .05);
  font-style: normal;
border-bottom: none;
font-family: 'CooperHewittBold';
}

#menu li, 
#toggle-menu {
  border-width: 0 0 1px;
}

#menu .sub-menu {
  border-width: 1px 1px 0;
  margin: 0 1em;
}

#menu .sub-menu li:last-child {
  border-width: 0;
}

#menu li, 
#toggle-menu, 
#menu a {
  position: relative;
  display: block;
  color: #222;
  background-color: #fff;
}

#menu, 
#toggle-menu {
color: #000;
}

#toggle-menu, 
#menu a {
  padding: 1em 1.5em;
}

#menu a {
  transition: all .125s ease-in-out;
  -webkit-transition: all .125s ease-in-out;
}

#menu a:hover {
  background-color: #A2DEDB;
}

#menu .sub-menu {
  display: none;
  background-color: #fff;
}

#menu input[type="checkbox"]:checked + .sub-menu {
  display: block;
}

#menu .sub-menu a:hover {
  background-color: #A2DEDB;
}

#toggle-menu .drop-icon, 
#menu li label.drop-icon {
  position: absolute;
  right: 1.5em;
  top: 1.25em;
}

#menu label.drop-icon, #toggle-menu span.drop-icon {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  text-align: center;
  background-color: #A2DEDB;
  color: #444;
}

#menu .drop-icon {
  line-height: 1;
}



.cta {
	text-align: center;
	font-size: 2em;
	text-transform: uppercase;
	font-family: 'CooperHewittBold';
	text-shadow: 2px 2px 0px #A2DEDB;
}
.cta a {
	border-bottom: 1px solid #A2DEDB;
}

/* INDEX STYLING */
.post {
margin-bottom: 2.5em;
}
.posts ul {
	list-style: none;
	padding-left: 0;
}
.posts li {
/* margin-bottom: 1em; */
}
.author-stuff, .author-stuff a {
	margin:auto;
	color:#333;
	text-align: center;
	font-family: 'CooperHewittBold';
}
.readmore {
	text-align: center;
	margin-top: 2em;
	margin-bottom: 3em;
	font-family: 'CooperHewitt';
}

.nav-link {
	font-size: 1.2em;
	text-transform: uppercase;
	font-family: 'CooperHewittBold';
	color: #333;
	margin-top:3em;
}
.newer {
	margin-top:1em;
}

.readmore a {
	font-size: 1.2em;
	font-family: 'CooperHewittBold';
	text-transform: uppercase;
	border-bottom: 1px solid #ccc;
	color: #333;
}
.readmorelinks {
	font-size: 0.8em;
	font-family: 'CooperHewittBold';
	text-transform: uppercase;
	margin-bottom: 1em;
}
.linklist ul {
	list-style: none;
	padding-left: 0;
}
.linklist li {
	padding-bottom: 0.8em;
}
.link-list-main {
	font-size:0.90em;
}

.recommended {
	margin-top:3em;
}
.recommended ul {
	list-style: none;
	padding-left: 0;
}
.recommended li {
	padding-bottom: 0.8em;
	font-size: 0.9em;
}
.site-footer li {
	text-transform: uppercase;
	font-family: 'CooperHewittBold';
	font-size: 1.3em;
}
.footerlist li a {
	border-bottom: none;
	color: #fff;
}
.footer {
		margin-top:2em;
		margin-bottom: 1em;
}
.site-footer h4 {
	font-style: italic;
	font-size: 1.6em;
}
.footer ul {
	list-style-type: none;
	padding-left: 1em;
}
.footer li {
	padding-bottom: 0.5em;
} 
.search {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#search input {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	font-family: inherit;
	color: #222;
	background-color: #fff;
	font-family: 'CooperHewittBold';
	font-size: 2em;
}
#search button {
	background-color: #222;
	color:#fff;
	border: 1px solid #fff;
	font-family: 'CooperHewittBold';
	font-size: 2em;
	padding-top: 2px;
	border-radius: 4px;
	font-weight: normal;
}
.callout {
	border-top: 4px #eee solid;
	border-bottom: 2px #eee solid;
	text-align: center;
}
.copyright {
	text-transform: uppercase;
	font-size: 1.3em;
	font-family: 'CooperHewitt';
}
.linklist, .reccomended, .join-main {
	margin-bottom: 2em;
}

/* Post Styling */
blockquote {
	margin: 1em 0em;
	border-left:4px solid #212121;
	padding-left:1em;
	line-height:1.7;
	font-size:0.95em;
	font-style: italic;
}
.entry-header {
	margin-bottom: 0;
	padding-bottom: 0;
}
.details {
	margin-top: 0;
	padding-top: 0;
	padding-left: 2em;
	padding-right: 0;
	font-family: 'CooperHewitt';
}
.details h4 {
	background-color: #222;
	text-transform: uppercase;
	margin-bottom: 1em;
	font-family: 'CooperHewittBold';
	color: #fff;
	padding-left: 6px;
	padding-top: 4px;
}
.tldr-text {
	font-style: italic;
	font-size: 1.4em;
}
.author-stuff .posted-on {
	background-color: #fff;
	color:#222;
	border-bottom: none;
	border-top: none;
	font-family: 'CooperHewittBold';
}
.left-pad {
	padding-left: 2.5%;
}
.entry-content img, .short-post img {	
	max-width: 100%;
}
.readingtime {
	font-style: none;
	font-size: 0.75em;
	padding-left: 4px;
	font-family: 'CooperHewittBold';
	/* text-transform: uppercase; */
}
article ul {
	padding-left: 1em;
	padding-bottom: 0;
}
article li {
	padding-bottom: 1em;
	line-height: 1.5;
}
article ol {
	padding-left: 1.3em;
}

#colophon {
	margin-top: 8em;
	
}
.dark {
	color: #fff;
	background-color: #222;
}
.short-post ul, .short-post ol {
	padding-left: 1em;
	line-height: 1.5;
}
.short-post li {
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	margin-bottom: 0;
}
.short-post ul {
	list-style-type: disc;
}
.footnotes ol {
	margin-top: 1em;
	line-height: 1.5;

}
.footnotes li {
	padding: 0;
	font-size: 0.75em;
	margin-left: 1.5em;
}

li .backlink {
	border-bottom: none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before, 
.clearfix:after {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}

/* Pages */

.aboutimage {
	Display:block;
	width:50%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	}

.archivelist li {
list-style-type: none;
}
.entry-content {
	padding-left: 15px;
	margin-top: 2.5em;
}

.author {
	font-style: italic;
	color: #777;
	font-size: 0.85em;
}

@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 10px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}

	[class*='col-'] {
		width: auto;
		float: none;
		margin: 10px 0;
		padding-left: 0;
		padding-right: 10px; /* column-space */
	}

	[class*='col-'] [class*='col-'] {
		padding-right: 0;
	}

	/* Mobile Layout */

	[class*='mobile-col-'] {
		float: left;
		margin: 0 0 10px;
		padding-left: 0;
		padding-right: 10px; /* column-space */
		padding-bottom: 0;
	}

	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */

	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 {
		width: 58.33%
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
	.aboutimage {
		width: 100%;
	}
	.site-title, .site-title a {
		font-size: 1.55em;
		text-align: center;
	}
	.site-description {
		text-align: center;
		font-size: 0.6em;
		padding-left: 5px;
	}
	.site-branding {
		border-bottom: 2px solid #777;
	}
	#search input {
	width: 80%;
	font-size: 1.3em;
}
p {
	font-size: 1.1em;
	line-height: 155%;
}
.entry-title {
	font-size: 1.45em;
}
.footer {
	/* padding-left: 2.5%; */
}
article ul {
	font-size: 1.05em;
}
article ol {
	font-size: 1.05em;
}
.entry-content {
	padding-left:0;
}
.short-post ul, .short-post ol, .entry-content ul, .entry-content ol {
	font-size: 1.05em;
}
header {
	width:100%;
}

}


@media handheld, only screen and (max-width: 450px) {
	.site-title, .site-title a {
		font-size: 1.3em;
		text-align: center;
		line-height: 1;
		padding-left: 4px;
	}
.header-img {
	max-height: 150px;
	width: auto;
	margin-bottom: 1em;
	padding-left:20px;	
}
.header-img a {
	border-bottom: none;
	text-decoration: none;
}
#menu .main-menu {
  border-top:none;
}


}