/*
Theme Name: Bedstone by Windmill Design
Theme URI: http://underscores.me/
Author: Windmill Design
Author URI: https://www.windmilldesign.com
Description: A custom theme by Windmill Design.
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bedstone
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 Bedstone is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries

--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 1.2em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.2em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.2em;
}
ul, ol {
	margin: 0 0 1.2em 2em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.2em 1.2em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

input[type="submit"] {
display: inline-block;
overflow: visible;
position: relative;
font: 14px 'Muli', sans-serif;
line-height: 33px;
background: none;
color: #FFF;
border: none;
text-align: center;
text-decoration: none;
letter-spacing: 0.015em;
white-space: nowrap;
outline: none;
cursor: pointer;
text-shadow: none;
-webkit-appearance: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-font-smoothing: subpixel-antialiased;
font-smoothing: subpixel-antialiased;
}

.button-submit {
	display: inline-block;
position: relative;
margin: 0;
padding: 0 18px 0 8px;
height: 33px;
overflow: visible;
position: relative;
font: 14px 'Muli', sans-serif;
line-height: 33px;
background: #5d5753;
background: -moz-linear-gradient(top, rgba(104,97,93,1) 0%, rgba(82,77,73,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(104,97,93,1)), color-stop(100%,rgba(82,77,73,1)));
background: -webkit-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
background: -o-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
background: -ms-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
background: linear-gradient(to bottom, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
color: #FFF;
border: 0;
text-align: center;
text-decoration: none;
letter-spacing: 0.015em;
white-space: nowrap;
outline: none;
cursor: pointer;
text-shadow: none;
-webkit-appearance: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
-webkit-font-smoothing: subpixel-antialiased;
font-smoothing: subpixel-antialiased;
-webkit-transition: color 0.1s ease, background 0.1s ease;
-moz-transition: color 0.1s ease, background 0.1s ease;
transition: color 0.1s ease, background 0.1s ease;
}

.button-submit:after {
font: 14px 'FontAwesome';
content: '\f105';
color: #b4b2b1;
color: rgba(255,255,255,0.5);
display: block;
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 29px;
line-height: 32px;
text-align: center;
text-shadow: 1px 1px 1px rgba(128,83,4,0.5);
background: #4a4542;
background: -moz-linear-gradient(top, rgba(81,75,73,1) 0%, rgba(67,62,59,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(81,75,73,1)), color-stop(100%,rgba(67,62,59,1)));
background: -webkit-linear-gradient(top, rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
background: -o-linear-gradient(top, rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
background: -ms-linear-gradient(top, rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
background: linear-gradient(to bottom, rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	font: 15px 'Muli', sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

input[type="tel"] {
	width: 300px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

.wpcf7-select {
	width: 300px;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	/* color: royalblue; */
}
a:visited {
	/* color: purple; */
}
a:hover,
a:focus,
a:active {
	/* color: midnightblue; */
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	/* text-align: center; */
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*
 *
 * WINDMILL CUSTOM
 *
 */

html {
    font-size: 16px; /* http://j.eremy.net/confused-about-rem-and-em/ */
}

body {
	background: #FFF;
	color: #56534d;
	font-size: 1em;
	line-height: 1.6;
	font-family: 'Lora', Georgia, serif;
	/*
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	*/
}
.body-overlay {
	min-height: 900px; /* make sure our gradients don't get cut off */
	background: url('./images/body-bg-gradient.png') center bottom repeat-x,
				url('./images/body-bg-splash.jpg') center top no-repeat,
				url('./images/body-bg-repeat.jpg') left top repeat-x;
}
.ie8 .body-overlay {
	background: url('./images/body-bg-splash.jpg') center top no-repeat;
}

::selection { background: #d7d2c2; }
::-moz-selection { background: #d7d2c2; }

::-webkit-input-placeholder { color: #838179; }
:-moz-placeholder { color: #838179; }
::-moz-placeholder { color: #838179; }
:-ms-input-placeholder { color: #838179; }

/* -------------------------------------------------------- start layout */
/* --------------------------------------------------------------------- */

.site {
	width: 1240px;
	margin: 0 auto;
	padding-left: 130px;
	padding-right: 130px;
	background: #FFF;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.contained {
	width: 1240px;
	margin: 0 auto;
}
.container {
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.content-area {
	width: 643px;
	float: left;
	margin: 8px 0 35px 0;
}
.sidebar {
	width: 300px;
	float: right;
	margin: 15px 0 35px 0;
}
.home .sidebar {
	margin-top: 48px;
}

/* --------------------------------------------------------------------- */
/* ---------------------------------------------------------- end layout */

h1 {
	font: 1.75em/1.15 'Montserrat', sans-serif;
	font-weight: 700;
	color: #231f20;
	margin: 0 0 12px 0;
	text-transform: uppercase;
}
h2 {
	font: 1.375em/1.15 'Montserrat', sans-serif;
	font-weight: 700;
	margin: 12px 0;
	color: #231f20;
	text-transform: uppercase;
}
h2 a {
	color: #231f20;
	text-decoration: none;
}
h3 {
	font: 1.375em/1.25 'Muli', sans-serif;
	margin: 0 0 10px 0;
}
h3 a {
	color: #58514e;
	text-decoration: none;
}
h3 a:after {
	content: '\00a0\00bb';
}
h4 {
	font: 1em 'Muli', sans-serif;
	color: #231f20;
	margin: 0 0 12px 0;
}

a {
	color: #cf2a28;
	text-decoration: none;
}
a:hover {
	color: #d13432;
}

.entry-content a {
	color: #008d8f;
	text-decoration: none;
}
.entry-content a:hover {
	color: #008d8f;
	text-decoration: underline;
}

a:focus,
a img {
    outline: 0 none;
}

a.click-to-call,
a.click-to-call:visited,
a.click-to-call:hover,
a.click-to-call:active {
    color: inherit;
    text-decoration: inherit;
}

.entry-content form input[type="submit"] {
	padding: 0 14px !important;
}

.button,
.entry-content form input[type="submit"] {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0 38px 0 14px;
	height: 33px;
	overflow: visible;
	position: relative;
	font: 14px 'Muli', sans-serif;
	line-height: 33px;
	background: #5d5753;
	background: -moz-linear-gradient(top, rgba(104,97,93,1) 0%, rgba(82,77,73,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(104,97,93,1)), color-stop(100%,rgba(82,77,73,1)));
	background: -webkit-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
	background: -o-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
	background: -ms-linear-gradient(top, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
	background: linear-gradient(to bottom, rgba(104,97,93,1) 0%,rgba(82,77,73,1) 100%);
	color: #FFF;
	border: 0;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.015em;
	white-space: nowrap;
	outline: none;
	cursor: pointer;
	text-shadow: none;
	-webkit-appearance: none;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;

	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;

	*zoom: 1;
	*display: inline;

	-webkit-transition: color 0.1s ease, background 0.1s ease;
	-moz-transition: color 0.1s ease, background 0.1s ease;
	transition: color 0.1s ease, background 0.1s ease;
}

input::-moz-focus-inner, .button::-moz-focus-inner { /* Firefox */
	border: 0;
	padding: 0;
}

.button:hover,
.button:focus,
.button:active {
	color: #FFF;
	text-shadow: none;
	text-decoration: none;
	background: #544e4a;
	background: -moz-linear-gradient(top,  rgba(92,84,80,1) 0%, rgba(82,77,73,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(92,84,80,1)), color-stop(100%,rgba(82,77,73,1)));
	background: -webkit-linear-gradient(top,  rgba(92,84,80,1) 0%,rgba(82,77,73,1) 100%);
	background: -o-linear-gradient(top,  rgba(92,84,80,1) 0%,rgba(82,77,73,1) 100%);
	background: -ms-linear-gradient(top,  rgba(92,84,80,1) 0%,rgba(82,77,73,1) 100%);
	background: linear-gradient(to bottom,  rgba(92,84,80,1) 0%,rgba(82,77,73,1) 100%);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button:hover:after {
	background: #433f3c;
	background: -moz-linear-gradient(top,  rgba(73,67,64,1) 0%, rgba(67,62,59,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(73,67,64,1)), color-stop(100%,rgba(67,62,59,1)));
	background: -webkit-linear-gradient(top,  rgba(73,67,64,1) 0%,rgba(67,62,59,1) 100%);
	background: -o-linear-gradient(top,  rgba(73,67,64,1) 0%,rgba(67,62,59,1) 100%);
	background: -ms-linear-gradient(top,  rgba(73,67,64,1) 0%,rgba(67,62,59,1) 100%);
	background: linear-gradient(to bottom,  rgba(73,67,64,1) 0%,rgba(67,62,59,1) 100%);
}

#subscribeForm input[type="submit"]:after,
.button:after {
	font: 14px 'FontAwesome';
	content: '\f105';
	color: #b4b2b1;
	color: rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 29px;
	line-height: 32px;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(128,83,4,0.5);
	background: #4a4542;
	background: -moz-linear-gradient(top,  rgba(81,75,73,1) 0%, rgba(67,62,59,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(81,75,73,1)), color-stop(100%,rgba(67,62,59,1)));
	background: -webkit-linear-gradient(top,  rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
	background: -o-linear-gradient(top,  rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
	background: -ms-linear-gradient(top,  rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
	background: linear-gradient(to bottom,  rgba(81,75,73,1) 0%,rgba(67,62,59,1) 100%);
}

.button-cta {
	text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
	background: #cb2e2c;
	background: -moz-linear-gradient(top,  rgba(209,53,51,1) 0%, rgba(197,40,38,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(209,53,51,1)), color-stop(100%,rgba(197,40,38,1)));
	background: -webkit-linear-gradient(top,  rgba(209,53,51,1) 0%,rgba(197,40,38,1) 100%);
	background: -o-linear-gradient(top,  rgba(209,53,51,1) 0%,rgba(197,40,38,1) 100%);
	background: -ms-linear-gradient(top,  rgba(209,53,51,1) 0%,rgba(197,40,38,1) 100%);
	background: linear-gradient(to bottom,  rgba(209,53,51,1) 0%,rgba(197,40,38,1) 100%);
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}
.button-cta:after,
.button-cta:hover:after {
	background: #b40f0d;
}
.button-cta:hover {
	background: #cf2a28;
}

.button-cta--glow-border {
	border: 2px solid rgba(255, 255, 255, .42);
	line-height: 28px;
}
.button-cta--glow-border:after {
	line-height: 28px;
}

.button-disabled {
	cursor: default;
	pointer-events: none;
	opacity: 0.7;
}

/* sidebar call-to-action buttons */

.button-wide {
	width: 100%;
}

.button.button-big {
	width: 100%;
	height: 65px;
	font-size: 1.375em;
	line-height: 65px;
	margin: 0 0 16px 0;
	padding-right: 65px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.button.button-big:after {
	width: 50px;
	line-height: 65px;
	font-size: 18px;
	text-align: left;
	text-indent: 23px;
}
.button.button-big span {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: bold;
	display: block;
	padding-top: 7px;
	width: 100%;
}
.button.button-subscribe {
	line-height: 23px;
	margin-bottom: 20px;
}


a.button-buy-issue,
a.button-subscribe,
a.button-submit-project {
	background: url('./images/sidebar-button-sprite.jpg') -999px -999px no-repeat;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

a.button-plans {
	background: url('./images/button-plans-bg.jpg') 0px 0px;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.button.button-wide.button-plans {
	margin: 0 0 50px 0;
	height: 56px;
	line-height: 58px;
}
.button.button-wide.button-plans:after {
	line-height: 58px;
}
.sidebar .button-plans {
	font-size: 18px;
}

.button.button-view-plan {
background: url('./images/sidebar-button-sprite.jpg') 0 0 no-repeat;
height: 45px;
line-height: 45px;
font-size: 18px;
padding: 0 50px 0 20px;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.button.button-view-plan:after {
	width: 38px;
	line-height: 44px;
}

a.button-buy-issue 		{ background-position: 0 0; }
a.button-subscribe 		{ background-position: 0 -75px }
a.button-submit-project { background-position: 0 -150px }

.button-buy-issue,
.button-buy-issue:after,
a:hover.button-buy-issue { background: #d68e38; }

.button-subscribe,
.button-subscribe:after,
a:hover.button-subscribe { background: #ce3b39; }

.button-submit-project,
.button-submit-project:after,
a:hover.button-submit-project { background: #23a0a1; }

.button-plans,
.button-plans:after,
.button-view-plan:after,
a:hover.button-plans { background: #b7681b; }



a.button-plans--subscribe {
	background: #219ea2;
}
a.button-plans--subscribe:hover {
	background: #1b8285;
}
a.button-plans--subscribe:after {
	background: #046267;
	color: #219ea2;
}
a.button-plans--subscribe:hover:after {
	background: #03464a;
	color: #219ea2;
}
a.button-plans--subscribe--alternate {
	display: none;
}

.button-buy-issue:after,
.button-buy-issue:hover:after,
.button-subscribe:after,
.button-subscribe:hover:after,
.button-submit-project:hover:after,
.button-submit-project:after,
.button-plans:hover:after,
.button-manage-subscription:hover:after,
.button-view-plan:hover:after { background: rgba(0,0,0,0.25) !important; }

a.more:after {
	content: '\00a0\00bb';
}

img.cover {
	-webkit-backface-visibility: hidden; /* smooth rotated images */
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
	-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
	box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* header -------------------------------------------------------------------------- */

.topbar .container {
	height: 110px;
	padding-top: 10px;
	text-align: center;
}

.topbar-home {
	height: 90px;
	background: rgb(174,158,111);
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.43) 19%, rgba(174,158,111,0.43) 59%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.43) 19%,rgba(174,158,111,0.43) 59%);
	background: linear-gradient(to right,  rgba(255,255,255,0.43) 19%,rgba(174,158,111,0.43) 59%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ae9e6f',GradientType=1 );
}
.topbar-home__link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.topbar-home__lead {
	position: absolute;
	top: 22px;
	left: 44px;
	width: 180px;
	font: 700 20px/1.2 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #231f20;
	text-align: right;
	text-shadow: 0 0 1px rgba(255, 255, 255, .78);
}
.topbar-home__items {
	padding: 13px 0 0 255px;
}
.topbar-home__item {
	color: #fff;
	font: 400 15px/1.467 'Montserrat', sans-serif;
	letter-spacing: 1px;
	text-shadow: 0 0 18px rgba(51, 48, 47, .81);
}
.topbar-home__item .fa {
	margin-right: 10px;
	color: #906602;
}


.site-header .container {
	height: 225px;
	float: left; /* clearfix */
}

.logo {
	width: 300px;
	height: 100px;
	position: absolute;
	left: 2px;
	top: 25px;
}
.logo a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('./images/logo-2018.png') center center no-repeat;
	text-indent: -9999px;
	outline: none;
}

/* nav -------------------------------------------------------------------------- */

.switch-nav-main,
.subscribe-box-tablet {
	display: none;
}

.nav-main {
	width: 100%;
	height: 54px;
	margin-top: 153px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.nav-main .menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-main .menu > li {
	flex: 1 0 auto;
	position: relative;
	background: #5c5754;
	background: linear-gradient(to bottom,  rgba(106,98,94,1) 0%,rgba(93,88,84,1) 100%);
}
.nav-main .menu > li:last-child > a {
	border-right: 0;
}
.nav-main .menu > li > a {
	display: block;
	width: 100%;
	color: #FFF;
	font: 20px 'Muli', sans-serif;
	border-left: transparent 0 solid;
	border-right: transparent 0 solid;
	text-decoration: none;
	padding: 0 25px;
	height: 54px;
	line-height: 54px;
	letter-spacing: 0.0125em; /* carefully crafted to make sure the last nav item fills the space! */
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}
.nav-main .menu > li:before {
	content: '';
	position: absolute;
	display: block;
	float: left;
	width: 1px;
	height: 54px;
	line-height: 0;
	font-size: 0;
	background: #494542;
	background: -moz-linear-gradient(top, rgba(103,95,91,1) 0%, rgba(72,67,65,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(103,95,91,1)), color-stop(100%,rgba(72,67,65,1)));
	background: -webkit-linear-gradient(top, rgba(103,95,91,1) 0%,rgba(72,67,65,1) 100%);
	background: -o-linear-gradient(top, rgba(103,95,91,1) 0%,rgba(72,67,65,1) 100%);
	background: -ms-linear-gradient(top, rgba(103,95,91,1) 0%,rgba(72,67,65,1) 100%);
	background: linear-gradient(to bottom, rgba(103,95,91,1) 0%,rgba(72,67,65,1) 100%);
}
.nav-main .menu > li:first-child:before {
	background: transparent;
}
.nav-main .menu > .menu-item-has-children > a:after {
	font: 11px 'FontAwesome';
	font-weight: normal;
	content: '\f107';
	position: absolute;
	color: #e5e2d7;
	width: 0;
	height: 0;
	right: 25px;
	top: 23px;
}
.nav-main .menu > .menu-item-has-children.menu-item--weekly > a:after {
	color: #fabd1a;
}
.nav-main .menu > li a:hover,
.nav-main .menu > li:hover > a {
	color: #FFF;
	border-color: #d55449;
	background: #ca2927;
	background: -moz-linear-gradient(top, rgba(203,43,41,1) 0%, rgba(200,39,37,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(203,43,41,1)), color-stop(100%,rgba(200,39,37,1)));
	background: -webkit-linear-gradient(top, rgba(203,43,41,1) 0%,rgba(200,39,37,1) 100%);
	background: -o-linear-gradient(top, rgba(203,43,41,1) 0%,rgba(200,39,37,1) 100%);
	background: -ms-linear-gradient(top, rgba(203,43,41,1) 0%,rgba(200,39,37,1) 100%);
	background: linear-gradient(to bottom, rgba(203,43,41,1) 0%,rgba(200,39,37,1) 100%);
}
.nav-main .menu > li.current-menu-item > a {
	background: #4b4645;
	border-color: transparent;
}
.menu-item--weekly {
	order: 1; /* move to end of row in flex container */
}
.menu-item--weekly img {
	margin-top: 12px;
	width: 83px;
	height: 33px;
}

/* dropdown -------------------------------------------------------------------------- */

.nav-main .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-main .menu > li > .sub-menu {
	position: absolute;
	z-index: 100;
	top: 54px;
	left: -9999px;
	margin: 0;
	padding: 20px;
	list-style: none;
	border-top: 0;
	opacity: 0;
	min-width: 100%;
	background: #b4110f;
	list-style: none;
	border-top: #c82725 1px solid;

	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.25);
	box-shadow: 0 2px 2px rgba(0,0,0,0.25);

	-webkit-transiton: opacity 0.2s ease 0.1s;
	-moz-transition: opacity 0.2s ease 0.1s;
	-ms-transition: opacity 0.2s ease 0.1s;
	-o-transition: opacity 0.2s ease 0.1s;
	transition: opacity 0.2s ease 0.1s;
}
.nav-main li:hover > .sub-menu {
	left: 0;
	opacity: 1;
}
.nav-main .menu > li.menu-item--submenu-right:hover > .sub-menu {
	left: auto;
	right: 0;
}
.nav-main li > .sub-menu a {
	color: #ebcfcf;
	color: rgba(255,255,255,0.85);
	font: 14px 'Muli', sans-serif;
	display: block;
	width: 100%;
	padding: 6px 15px 6px 3px;
	white-space: nowrap;
	letter-spacing: 0;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	background: url('./images/sub-menu-item-bg.png') left bottom repeat-x;
}
.nav-main li > .sub-menu > li:first-child > a {
	background: url('./images/sub-menu-item-bg.png') left top repeat-x,
				url('./images/sub-menu-item-bg.png') left bottom repeat-x;
}
.nav-main li > .sub-menu a:hover {
	color: #FFF;
	background: url('./images/sub-menu-item-bg.png') left bottom repeat-x;
	text-decoration: underline;
}
.nav-main li > .sub-menu .current-menu-item > a {
	color: #FFF;
}
.nav-main li > .sub-menu > li.menu-item-has-children > a,
.nav-main li > .sub-menu > li.is-pseudo-parent > a,
.nav-main .sub-menu .spacer {
	color: #FFF;
	font: 15px 'Montserrat', sans-serif;
	font-weight: 700;
	background: none;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
.nav-main .sub-menu .menu-item strong {
    color: #FFF;
    font: 15px 'Montserrat', sans-serif;
    font-weight: 700;
}
.nav-main .sub-menu .sub-menu a,
.nav-main .sub-menu .spacer {
	padding: 6px 15px 6px 3px;
}
.nav-main .buffer {
    margin-top: 11px;
}
.nav-main .buffer + .buffer {
    margin-top: 8px;
}
.nav-main li > .sub-menu > li.is-pseudo-parent > a,
.sub-menu-columns.sub-menu {
	width: 450px;
	padding-right: 0;
	overflow: hidden;
}
.sub-menu-columns .menu-item-has-children {
	float: left;
}
.sub-menu-columns .menu-item-has-children .sub-menu {
	width: 190px;
	padding-right: 22px;
	margin-right: 20px;
	background: url('./images/sub-menu-divider-header.png') right center no-repeat;
}
.sub-menu-columns .menu-item-has-children:last-child .sub-menu {
	margin: 0;
	padding: 0;
	background: none;
}
.sub-menu-columns .sub-menu > li > a {
	white-space: normal
}

/* subscribe -------------------------------------------------------------------------- */

.subscribe-box {
	position: absolute;
	right: 0;
	top: -100px;
	width: 228px;
	height: 155px;
	background: #d9d4ca url('./images/subscribe-bg.jpg') center top no-repeat;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.58);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.58);
	box-shadow: 0 0 4px rgba(0,0,0,0.58);
}
.subscribe-box:before {
	content: '';
	display: block;
	position: absolute;
	width: 8px;
	height: 95px;
	left: -10px;
	top: 5px;
	background: url('./images/subscribe-shadow.png') right top no-repeat;
}
.subscribe-box p {
	margin: 0;
	padding: 20px 70px 0 20px;
	color: #8b6300;
	font: 12px 'Montserrat', sans-serif;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
.subscribe-box p em {
	display: block;
	margin-top: 8px;
	font: italic 18px 'Muli', sans-serif;
	color: #000;
	letter-spacing: 0;
	text-transform: none;
}
.subscribe-box .cover {
	position: absolute;
	width: 80px;
	right: -16px;
	top: 20px;
	-webkit-transform: rotate(9deg);
	-moz-transform: rotate(9deg);
	transform: rotate(9deg);
}
.subscribe-box .button {
	position: absolute;
	left: 20px;
	bottom: 20px;
}


.subscribe-box-home {
	position: absolute;
	right: 0;
	top: -100px;
	width: 269px;
	height: 155px;
	background: url('./images/bg-subscribe-box-home.jpg') repeat;
}
.subscribe-box-home__link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.subscribe-box-home--cta {
	padding: 17px 0 0 34px;
	width: 159px;
	color: #fff;
	font: 400 16px/1.25 'Muli', sans-serif;
}
.subscribe-box-home__button {
	margin: 15px 0 0 34px;
}
.subscribe-box-home__cover {
	position: absolute;
	width: 90px;
	box-shadow: 2px 1px 5px rgba(0, 0, 0, .6);
}
.subscribe-box-home__cover--behind {
	-webkit-transform: translateX(184px) translateY(3px) rotate(5.8deg);
	-moz-transform: translateX(184px) translateY(3px) rotate(5.8deg);
	transform: translateX(184px) translateY(3px) rotate(5.8deg);
}
.subscribe-box-home__cover--front {
	-webkit-transform: translateX(204px) translateY(17px) rotate(14.9deg);
	-moz-transform: translateX(204px) translateY(17px) rotate(14.9deg);
	transform: translateX(204px) translateY(17px) rotate(14.9deg);
}



.wd-subscribe-input {
	margin-bottom: 5px;
	clear: both;
}
.wd-subscribe-input label {
	width: 200px;
	float: left;
}
.subscription-notice {
	padding: 10px;
	border: 1px solid #c0c0c0;
	background: #e0e0e0;
	margin-bottom: 10px;
}
.subscription-validation-error {
	padding: 10px;
	border: 1px solid red;
	background: #ffe0e0;
	color: red;
	margin-bottom: 10px;
	display: none;
}
/* search -------------------------------------------------------------------------- */

.search-form {
}
.search-form--back-issue-archive {
}
.search-form--back-issue-archive:after {
	content: '';
	display: block;
	margin-top: 30px;
	width: 100%;
	height: 35px;
	background: url('./images/divider-bg.png') left top repeat-x;
}
.site-header .search-form {
	position: absolute;
	right: 0;
	top: 95px;
}
.site-header .logout-subscription ~ .search-form {
	right: 70px;
}
.search-form .search-query {
    position: relative;
    width: 285px;
    height: 32px;
    border: #cdc7ba 1px solid;
}
.search-form .search-query input {
	height: 100%;
	padding: 0 3px;
	width: 310px;
	margin-left: 6px;
	border: 0;
	outline: none;
	color: #231f20;
	line-height: 26px;
	background: transparent;
	-webkit-appearance: none;
}
.search-form .search-query input {
    width: 270px;
}
.search-form .search-query input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
.search-form .search-query button[type="submit"] {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.search-form .search-query button:before {
	width: 100%;
	display: block;
	text-align: center;
	font: 14px 'FontAwesome';
	line-height: 30px;
	content: '\f002';
	color: #35332e;
}

.archive-content .search-form .search-query {
	width: 370px;
	max-width: 100%;
}
.search-filters {
	margin: 20px 0 30px 0;
	background: #f8f6f4;
	border: #dcdad7 1px solid;
	padding: 10px 12px;
	font: 1em 'Muli', sans-serif;
	color: #231f20;
	vertical-align: middle;
	overflow: hidden; /* clearfix */
	line-height: 32px;
}
.search-filters label {
	font-size: 0.85em;
	font-weight: bold;
}
.search-filters input {
	margin: 0 2px 0 8px;
}
.search-filters > div {
	float: right;
	padding-left: 20px;
}

/* social -------------------------------------------------------------------------- */

.social {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-header .social {
	position: absolute;
	top: 98px;
	right: 300px;
}
.site-header .logout-subscription ~ .social {
	right: 370px;
}
.social li {
	display: inline;
}
.social a {
	display: block;
	width: 28px;
	height: 28px;
	float: left;
	margin-right: 4px;
	font: 20px 'FontAwesome';
	text-align: center;
	line-height: 28px;
	color: #008d8f;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-transition: color 0.15s ease;
	-moz-transition: color 0.15s ease;
	transition: color 0.15s ease;
}
.social a:hover:before {
	color: #006e70;
}

a.social-facebook:before	{ content: '\f09a'; }
a.social-twitter:before		{ content: '\f099'; }
a.social-pinterest:before	{ content: '\f0d2'; }
a.social-rss:before			{ content: '\f09e'; }
a.social-youtube:before		{ content: '\f167'; }
a.social-instagram:before   { content: '\f16d'; }

/* instagram icon looks slightly mis-aligned next to youtube */
a.social-instagram { line-height: 30px; }

/* sharing -------------------------------------------------------------------------- */

.pin-wrapper {
	position: absolute;
}

.sharing {
	text-align: center;
	border: #d0c6b3 1px solid;
}
.sharing-mobile {
	display: none;
}
.sharing-desktop {
	width: 85px;
	padding-top: 15px;
	padding-bottom: 14px;
	position: absolute;
	top: -22px;
	left: -105px;
}
.sharing button.print {
	display: inline-block;
	background: #8b8480;
	background: -moz-linear-gradient(top,  rgba(151,147,145,1) 0%, rgba(135,128,124,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(151,147,145,1)), color-stop(100%,rgba(135,128,124,1)));
	background: -webkit-linear-gradient(top,  rgba(151,147,145,1) 0%,rgba(135,128,124,1) 100%);
	background: -o-linear-gradient(top,  rgba(151,147,145,1) 0%,rgba(135,128,124,1) 100%);
	background: -ms-linear-gradient(top,  rgba(151,147,145,1) 0%,rgba(135,128,124,1) 100%);
	background: linear-gradient(to bottom,  rgba(151,147,145,1) 0%,rgba(135,128,124,1) 100%);
	border: #78726f 1px solid;
	padding: 0;
	width: 60px;
	height: 25px;
	color: #FFF;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
	font: 12px 'Muli', sans-serif;
	line-height: 23px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.sharing button.print:hover {
	background: #8b8480;
}
.sharing button.print:before {
	font: 12px 'FontAwesome';
	content: '\f02f\00a0\00a0';
}

.sharing-desktop button.print {
	margin-bottom: 15px;
}
.sharing-mobile button.print {
	margin-right: 9px
}

/* facebook and twitter */
.sharing-desktop iframe {
	border: none;
	overflow: hidden;
	width: 50px;
	height: 65px;
	margin: 0 auto 4px auto;
}
.sharing-mobile iframe {
	border: none;
	overflow: hidden;
	width: 48px;
	height: 22px;
	margin: 0 10px 0 0;
}
.sharing-addthis {
	/* http://support.addthis.com/customer/portal/articles/1039915-hiding-the-counters-for-addthis-buttons */
	width: 55px !important;
	height: 22px;
	overflow: hidden;
	margin: 0 auto;
}
.sharing .addthis_counter.addthis_pill_style.addthis_nonzero a.addthis_button_expanded { display: none !important; }

/* post-list -------------------------------------------------------------------------- */

.post-list,
.post-list li {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
.post-list li {
	clear: both;
	width: 100%;
	margin-bottom: 25px;
}
.post-list img {
	float: left;
	position: relative;
	z-index: 10;
}
.post-list li > div {
	border-top: #cf2a28 3px solid;
	padding-top: 12px;
}
.post-list li.has-thumbnail > div {
	float: right;
	width: 420px;
}
.post-list h2 {
	margin: 0 0 8px 0;
	position: relative;
}
.post-list p {
	margin-bottom: 14px
}
.post-list a.has-video {
	display: inline-block;
	position: relative;
	font-size: 0;
	line-height: 0;
}
.post-list a.has-video:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 20;
	top: 0;
	left: 0;
	background: url('./images/has-video-icon.png') center center no-repeat;
}

.post-list li.is-premium h2 {
	padding-right: 25px;
}
.post-list li.is-premium h2:after {
	content: '\2605';
	position: absolute;
	right: 0;
	top: 0;
	font: 22px/1 Times, serif;
	color: #b58b22;
}

/* Gallery Override */
.rsDefaultInv .rsThumbs {
	background: #FFF !important;
}

/* content -------------------------------------------------------------------------- */

/* HEADER */

.page-header,
.entry-header {
	position: relative;
	padding-right: 25px; /* room for .rss */
}
.page-header .rss,
.entry-header .rss {
	font: 20px 'FontAwesome';
	color: #837c78;
	position: absolute;
	right: 2px;
	top: 7px;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
.page-header .rss:before,
.entry-header .rss:before {
	content: '\f09e';
}
.page-header .rss:hover:before,
.entry-header .rss:hover:before {
	color: #008d8f;
}

/* META */

.post-categories,
.entry-meta {
	text-transform: uppercase;
	font: 12px/18px 'Muli', sans-serif;
	font-weight: 600;
	color: #687f7f;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}
.post-categories a,
.entry-meta a {
	font-style: normal;
	color: #008082;
}
.post-categories a:hover,
.entry-meta a:hover {
	color: #23898b;
	text-decoration: underline;
}

/* CONTENT */

.archive-content,
.entry-content {
	position: relative; /* for positioning .sharing */
	border-top: #ececea 2px solid;
	margin-top: 15px;
	padding-top: 20px;
}
.entry-image {
	margin-bottom: 20px;
}
.magazine-editorial .entry-image {
    float: left;
    margin-right: 20px;
}

.category-readers-project-gallery .entry-image {
	display: none !important;
}
.entry-taxonomy {
	margin: 20px 0 30px;
	padding: 30px 0 0;
	background: url('./images/divider-bg.png') left top repeat-x;
}
.entry-content h2 {
	font-size: 1em;
	margin-bottom: 0.5rem;
}
.entry-content h3 {
    margin-bottom: .9rem;
    font-size: 1.5em;
    font-weight: 700;
}
.entry-content p {
	margin-bottom: 25px;
	line-height: 1.7em;
}
.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol {
    margin-top: .6rem;
    margin-bottom: 0;
}
.entry-content li {
    margin-bottom: .6rem;
    line-height: 1.333;
}
p.callout {
	color: #696660;
	font: 1.5em/1.4 'Muli', sans-serif;
	font-weight: 300;
	padding-right: 20px;
	margin-bottom: 25px;
}
p.callout a {
	color: #008d8f;
}
p.callout a:hover {
	color: #006667;
}
.entry-content .footnote {
    font-size: .9em;
    font-style: italic;
}
.entry-content .call-to-action {
    font-size: 1.25em;
    font-weight: 700;
}
.entry-content .call-to-action a,
.entry-content .call-to-action a:visited {

}
.entry-content .call-to-action a:after {
    content: '\00a0\00bb';
}
.entry-content .call-to-action a:hover,
.entry-content .call-to-action a:active {

}
.entry-content .call-to-action a:hover:after {

}

.wp-caption-text {
	font: italic 13px 'Muli', sans-serif;
	font-weight: 300;
	color: #6b6867;
}

/* gallery -------------------------------------------------------------------------- */

/* HACK! */

.project-gallery {
	margin: 30px 0;
	padding: 0;
	list-style: none;
	width: 650px;
}
.project-gallery.loading {
	visibility: hidden;
}
.project-gallery .gallery-item {
	width: 30.33%;
	margin: 0 3% 3% 0;
	text-align: left;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.4);
	box-shadow: 0 0 4px rgba(0,0,0,0.4);

	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
.project-gallery .gallery-item:hover {
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.8);
	box-shadow: 0 0 4px rgba(0,0,0,0.8);
}
.project-gallery .gallery-item a > div {
	padding: 8px 15px 15px 15px;
}
.project-gallery .gallery-item h2 {
	font-size: 14px;
	color: #231f20;
	text-transform: none;
	margin: 8px 0;
}
.project-gallery .gallery-item a p {
	font: 14px/1.5 'Muli', sans-serif;
	color: #56534d;
	margin: 0 0 10px 0;;
}
.project-gallery .gallery-item .entry-meta {
	font-size: 11px;
}

/* categories and tags -------------------------------------------------------------------------- */

.post-categories {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden; /* clearfix */
}
.post-categories li {
	display: inline-block;
	float: left;
	font-size: 13px;
	margin-right: 6px;
	margin-bottom: 3px;
}
.post-categories li:before {
	content: '\2022';
	color: #7d9494;
	font-size: 13px;
	padding-right: 6px;
	position: relative;
}

.post-tags {
	margin: 10px 0;
}
.post-tags,
.post-tags a {
	font: 14px 'Muli', sans-serif;
	font-weight: 400;
	color: #6b6867;
}

/* paging -------------------------------------------------------------------------- */

.site-main .paging-navigation {
	margin: 0;
}
.paging-navigation a {
	font: 15px 'Muli', sans-serif;
	color: #008d8f;
}
.paging-navigation a .meta-nav {
	display: none;
}
.paging-navigation .nav-previous,
.paging-navigation .nav-next { width: auto; float: left; }

.paging-navigation .nav-previous { margin-right: 10px; }
.paging-navigation .nav-next { margin-left: 10px; }
.paging-navigation .nav-previous a:before { content: '\00AB\00A0'; }
.paging-navigation .nav-next a:after { content: '\00A0\00BB'; }

.nav-pagination {
  margin: 2rem 0;
  overflow: hidden;
  color: #777570;
  font: 400 13px/1.5 "Montserrat", sans-serif;
}

.nav-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.nav-pagination li {
  display: inline;
  margin: 0;
  padding: 0;
}

.nav-pagination li a,
.nav-pagination li span {
  float: left;
  border: 1px solid #ddd;
  border-left-width: 0;
  padding: 8px 12px;
}

.nav-pagination li a {
	color: #12adb0;
}
.nav-pagination li a:hover,
.nav-pagination li span.current {
	background: #f5f7f7;
}

.nav-pagination li:first-child a,
.nav-pagination li:first-child span {
  border-left-width: 1px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px; }

.nav-pagination li:last-child a,
.nav-pagination li:last-child span {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px; }

/* sidebar -------------------------------------------------------------------------- */

.sidebar .ad,
.sidebar .sideblock,
.sidebar .button {
	display: block;
	margin-bottom: 35px;
	max-width: 300px;
}
.sidebar .button {
	margin-bottom: 15px;
}
.sidebar .button + .sideblock.current-issue,
.sidebar .button + .ad {
	margin-top: 35px;
}
.sidebar .sideblock.current-issue {
	max-width: 100%;
}
.sidebar .ad:last-child,
.sidebar .sideblock:last-child {
	margin-bottom: 0;
}

.sidebar .ad {
	text-decoration: none;
	font-size: 0;
	line-height: 0;position: relative;
}
.sidebar .ad:before {
	display: block;
	position: absolute;
	top: -18px;
	height: 18px;
	line-height: 18px;
	content: 'advertisement';
	font: 10px 'Open Sans', 'Muli', sans-serif;
	color: #6e7274;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.95;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}

/** HOME CARDS ***/

.cards {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: stretch;
	margin-bottom: 18px;
	padding-bottom: 30px;
	border-bottom: 3px solid #b8af9d;
}
.card {
	position: relative;
	margin-bottom: 30px;
	width: calc(33.3333% - 20px); /* 309 x 231 */
	height: 74.757%;
}
.card:before {
	content: '';
	display: block;
	padding-top: 74.757%;
}
.card--article--8 {
	display: none; /* retains a nice 3x3 grid */
}
.card--current-issue {
	background: url('./images/bg-card-current-issue.png') repeat;
}
.card__link {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .6s;
	color: #fff;
}
.card__link:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	color: #fff;
}
.card__cover {
	position: absolute;
	width: 180px;
	box-shadow: 2px 1px 5px rgba(0, 0, 0, .6);
	transition: all ease-out .6s;
}
.card__cover--behind {
	-webkit-transform: translateX(59px) translateY(13px) rotate(-6deg);
	-moz-transform: translateX(59px) translateY(13px) rotate(-6deg);
	transform: translateX(59px) translateY(13px) rotate(-6deg);
}
.card__link:hover .card__cover--behind {
	-webkit-transform: translateX(38px) translateY(26px) rotate(-4deg) scale(1.1);
	-moz-transform: translateX(38px) translateY(26px) rotate(-4deg) scale(1.1);
	transform: translateX(38px) translateY(26px) rotate(-4deg) scale(1.1);
}
.card__cover--front {
	-webkit-transform: translateX(73px) translateY(14px) rotate(9deg);
	-moz-transform: translateX(73px) translateY(14px) rotate(9deg);
	transform: translateX(73px) translateY(14px) rotate(9deg);
}
.card__link:hover .card__cover--front {
	-webkit-transform: translateX(88px) translateY(25px) rotate(6deg) scale(1.1);
	-moz-transform: translateX(88px) translateY(25px) rotate(6deg) scale(1.1);
	transform: translateX(88px) translateY(25px) rotate(6deg) scale(1.1);
}
.card__image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	transform: scale(1, 1);
	transition: all .6s;
}
.card__link:hover .card__image {
	transform: scale(1.07, 1.07);
}
.card__video-button {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('./images/has-video-icon.png') center center no-repeat;
}
.card__overlay {
	position: absolute;
	top: 25%;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	opacity: .61;
}
.card__moreontheweb {
	position: absolute;
	padding: 10px 18px;
	background-color: #913784;
	color: #fff;
	font: 700 12px/1 "Montserrat", sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all .6s;
}
.card__link:hover .card__gated {
	opacity: .6666;
}
.card__gated {
	position: absolute;
	padding: 10px 18px;
	background-color: #219ea2;
	color: #fff;
	font: 700 12px/1 "Montserrat", sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all .6s;
}
.card__link:hover .card__gated {
	opacity: .6666;
}
.card__title {
	position: absolute;
	bottom: 0;
	padding: 16px;
	font: 700 22px/1.1818 "Montserrat", sans-serif;
	letter-spacing: 1px;
	color: #fff;
}
.card__title--secondary {
	font-weight: 600;
	padding-right: 8px;
}
.card__subtitle {
	font: 400 17px/1.4 "Montserrat", sans-serif;
	letter-spacing: 0;
	color: #fff;
}

/* CURRENT ISSUE */

.current-issue {
	height: 180px;
	margin-top: 5px;
	text-decoration: none;
	position: relative;
}
.current-issue .cover {
	position: absolute;
	left: 8px;
	top: 5px;
	width: 115px;
	z-index: 20;
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	transform: rotate(-3deg);
}
.current-issue .cover.clone {
	z-index: 10;
	left: 4px;
	-webkit-transform: rotate(-8deg);
	-moz-transform: rotate(-8deg);
	transform: rotate(-8deg);
}
.current-issue p {
	margin: 0;
	font: 1em 'Muli', sans-serif;
	color: #56534d;
	padding: 20px 15px 0 155px ;
}
.current-issue strong {
	display: block;
	font: 22px/24px 'Montserrat', sans-serif;
	margin: 0 0 5px 0;
	color: #d51e1c;
	font-weight: 700;
	text-transform: uppercase;
}
.current-issue strong:after {
	font: 1em 'FontAwesome';
	content: '\f101';
	padding-left: 10px;
	color: #a99e8a;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
.current-issue span {
	color: #cf2a28
}
.current-issue:hover strong { color: #bb0b09; }
.current-issue:hover strong:after { color: #d51e1c; padding-left: 14px; }
.current-issue:hover span { text-decoration: underline; }

/* ARCHIVES (category, year, author) */

.sideblock-content {
	padding: 20px 25px;
	background: #f9f9f8;
	background: -moz-linear-gradient(top,  rgba(249,249,248,1) 0%, rgba(245,244,240,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,249,248,1)), color-stop(100%,rgba(245,244,240,1)));
	background: -webkit-linear-gradient(top,  rgba(249,249,248,1) 0%,rgba(245,244,240,1) 100%);
	background: -o-linear-gradient(top,  rgba(249,249,248,1) 0%,rgba(245,244,240,1) 100%);
	background: -ms-linear-gradient(top,  rgba(249,249,248,1) 0%,rgba(245,244,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(249,249,248,1) 0%,rgba(245,244,240,1) 100%);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.3);
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.sideblock-content header {
	font: 16px 'Muli', sans-serif;
	color: #3b3839;
}
.sideblock-content .archives {
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: #e2dfdb 1px solid;
}
.sideblock-content .archives ul {
	margin: 8px 0 0 18px;
	font-size: 12px;
	color: #7d9494;
}
.sideblock-content .archives:last-of-type {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}
.sideblock-content .archives ul li {
	margin-bottom: 3px;
}
.sideblock-content .archives ul a {
	font-family: 'Muli', sans-serif;
	color: #008082;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* RELATED ARTICLES */

.related-posts {
	box-shadow: 0 0 1px rgba(0, 0, 0, .25);
	margin: 45px 0;
	background-color: #f5f4f0;
}
.related-posts--endcap {
	margin-top: 20px;
}
.related-posts__heading {
	padding: 20px 30px;
	background-color: #cf2a28;
	color: #fff;
	font: 400 14px/1 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.related-posts__heading--subtle {
	border-bottom: 1px solid #e8e7e2;
	padding: 14px;
	background-color: transparent;
	color: #cf2a28;
	font: 700 13px/1 'Montserrat', sans-serif;
	letter-spacing: .8px;
}
.related-posts__nav {
	display: flex;
	flex-flow: row wrap;
	background-color: #f5f4f0;
}
.related-posts__nav--endcap {
	flex-flow: row nowrap;
	align-items: stretch;
}
.related-posts__item {
	padding: 18px 24px 15px;
	width: 100%;
	transition: all .6s;
}
.related-posts__item--endcap {
	padding: 28px;
	width: 50%;
}
.related-posts__item:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	background-color: #fcfcfb;
}
.related-posts__zoomwrap {
	position: relative;
	overflow: hidden;
	margin: 0 auto 15px;
	width: 252px;
	max-width: 100%;
	height: 188px;
}
.related-posts__zoomwrap--endcap {
	width: 268px;
	height: 197px;
}
.related-posts__image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	transform: scale(1, 1);
	transition: all .6s;
}
.related-posts__item:hover .related-posts__image {
	transform: scale(1.07, 1.07);
}
.related-posts__video-button {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('./images/has-video-icon.png') center center no-repeat;
}
.related-posts__title {
	margin: 0 auto;
	max-width: 252px;
	color: #56534d;
	font: 400 14px/20px 'Montserrat', sans-serif;
	transition: all .6s;
}
.related-posts__item:hover .related-posts__title {
	color: #000e0f;
}
.related-posts__title--endcap {
	max-width: 268px;
	color: #312d2b;
	font: 700 16px/20px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .8px;
}
.related-posts__item:hover .related-posts__title--endcap {
	color: #312d2b;
}
.related-posts__title--gated:after {
	content: '\f005';
	color: #bd9500;
	font: 15px/1 'FontAwesome';
	transition: all .6s;
}
.related-posts__item:hover .related-posts__title--gated:after {
	color: #e1b100;
}
.related-posts__excerpt {
	margin: 10px auto 0;
	max-width: 268px;
	color: #56534d;
	font: 400 14px/20px 'Muli', sans-serif;
}



/* VIDEOS (TubePress) */

#playlist-meta {
	display: none; /* dynamically moved moved into the tubepress shortcode output via JS */
	margin-top: 20px;
	padding-top: 20px;
	border-top: #ececea 2px solid;
}
.entry-content #playlist-meta {
	display: block;
}

.entry-content .playlist-heading {
	border-top: #ececea 2px solid;
	border-bottom: #ececea 2px solid;
	margin: 20px 0;
	padding: 15px 0;
}

.playlist-categories {
	list-style: none;
	margin: 0 0 -1.5% -1.5%;
	padding: 0;
	overflow: hidden; /* clearfix */
}
.playlist-categories li {
	display: inline;
}
.playlist-categories li a {
	display: block;
	float: left;
	width: 23.5%;
	height: 32px;
	margin-left: 1.5%;
	margin-bottom: 1.5%;
	font: 12px 'Montserrat', sans-serif;
	line-height: 32px;
	color: #67605c;
	text-align: center;
	text-decoration: none;
	background: #f1f1eb;
	background: -moz-linear-gradient(top,  rgba(242,242,236,1) 0%, rgba(233,232,227,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,236,1)), color-stop(100%,rgba(233,232,227,1)));
	background: -webkit-linear-gradient(top,  rgba(242,242,236,1) 0%,rgba(233,232,227,1) 100%);
	background: -o-linear-gradient(top,  rgba(242,242,236,1) 0%,rgba(233,232,227,1) 100%);
	background: -ms-linear-gradient(top,  rgba(242,242,236,1) 0%,rgba(233,232,227,1) 100%);
	background: linear-gradient(to bottom,  rgba(242,242,236,1) 0%,rgba(233,232,227,1) 100%);
}
.playlist-categories li a:hover,
.playlist-categories li a.current {
	text-decoration: none;
	color: #FFF;
	background: #138d8e;
	background: -moz-linear-gradient(top,  rgba(31,147,148,1) 0%, rgba(22,138,138,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(31,147,148,1)), color-stop(100%,rgba(22,138,138,1)));
	background: -webkit-linear-gradient(top,  rgba(31,147,148,1) 0%,rgba(22,138,138,1) 100%);
	background: -o-linear-gradient(top,  rgba(31,147,148,1) 0%,rgba(22,138,138,1) 100%);
	background: -ms-linear-gradient(top,  rgba(31,147,148,1) 0%,rgba(22,138,138,1) 100%);
	background: linear-gradient(to bottom,  rgba(31,147,148,1) 0%,rgba(22,138,138,1) 100%);
}

.tubepress-pagination  {
	margin: 15px 0;
}
.tubepress-thumbs {
	width: 102%;
}
.tubepress-big-title {
	font: 1.375em/1.15 'Montserrat', sans-serif;
	font-weight: 700;
	color: #231f20;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.tubepress-normal-player {
	margin-bottom: 30px;
}
.tubepress-thumb {
	display: inline-block;
	position: relative;
	width: 205px;
	margin-right: 10px;
	vertical-align: top;
	margin-bottom: 30px;
}
.tubepress-meta-group {
	width: 205px;
	margin: 8px 0 0 0 !important;
}
.tubepress-meta-group dd {
	padding: 0;
}
.tubepress-meta-group .tubepress-meta-title {
	font: 1.15em/1.35 'Montserrat', sans-serif;
	font-weight: 700;
}
.tubepress-meta-group .tubepress-meta-duration {
	text-transform: uppercase;
	font: 11px/1 Arial, sans-serif;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
	color: #FFF;
	background: #151515;
	padding: 3px 7px !important;
	border-radius: 2px;
	pointer-events: none;
	letter-spacing: 0.05em;
}
.js-tubepress-gallery a {
	color: #cf2a28;
}
.js-tubepress-gallery a:hover {
	color: #9e0604;
}
.home .tubepress-pagination {
	display: none;
}
.home .tubepress-thumbs {
	margin: 20px 0 10px 0;
}

/* WEEKLY */

.sideblock.weekly {
	position: relative;
	background: url('./images/weekly-square.jpg') 0 0 no-repeat;
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.35);
	box-shadow: 1px 1px 1px rgba(0,0,0,0.35);
}
.sidebar .sideblock.weekly {
	height: 265px;
}
.content-area .sideblock.weekly {
	width: 643px;
	height: 115px;
	margin: 30px 0;
	background: url('./images/weekly-wide.jpg') 0 0 no-repeat;
}

.sideblock.weekly input {
	position: absolute;
	width: 160px;
	height: 20px;
	padding: 0;
	line-height: 20px;
	background: transparent;
	border: 0;
	font-size: 12px;
	outline: none;
}
.sidebar .sideblock.weekly input[name="email"] {
	left: 110px;
	top: 146px;
}
.sidebar .sideblock.weekly input[name="email_verified"] {
	left: 110px;
	top: 178px;
}
.sidebar .sideblock.weekly button {
	position: absolute;
	left: 163px;
	top: 214px;
	border: 2px solid #f2bcbe;
	background: #d31d24;
	color: #fff;
	line-height: 31px;
}
.sidebar .sideblock.weekly button:after {
	background: #b31c21;
	color: #fff;
}

.content-area .sideblock.weekly input[name="email"] {
	left: 70px;
	top: 80px;
}
.content-area .sideblock.weekly input[name="email_verified"] {
	left: 344px;
	top: 79px;
}
.content-area .sideblock.weekly button {
	position: absolute;
	right: 10px;
	bottom: 10px;
	border: 2px solid #f2bcbe;
	background: #d31d24;
	color: #fff;
	line-height: 31px;
}
.content-area .sideblock.weekly button:after {
	background: #b31c21;
	color: #fff;
}

/* weekly, magazine -------------------------------------------------------------------------- */

/*body.page-id-14 .entry-title,
body.category-weekly-latest-issue .entry-title,
body.tax-ezine_issue .entry-title {
	height: 100px;
	text-indent: -9999px;
	background: url('./images/weekly-header.jpg') 0 0 no-repeat;
	background-size: contain;
}*/

body.archive.author .entry-title:before {
	content: 'Author: ';
	color: #5c5754;
}

.weekly-issue-header {
	margin: 5px 0 20px 0;
	font-size: 16px;
	padding-bottom: 25px;
	background: url('./images/divider-bg.png') left bottom repeat-x;
}

.magazine-editorial {
	padding-bottom: 20px;
}

.weekly-editorial p,
.magazine-editorial p {
	font-family: 'Muli', sans-serif;
	line-height: 1.45em;
	margin-bottom: 15px;
}
.weekly-editorial strong,
.magazine-editorial strong {
	color: #231f20;
}

.magazine-archive .entry-meta {
	display: none;
}
.magazine-archive.post-list img {
	width: 120px;
}
.magazine-archive.post-list li.has-thumbnail > div {
	width: 500px;
}

.weekly-archive {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}
.weekly-archive li {
	display: block;
	float: left;
	width: 24.0%;
	margin-left: 1.0%;
	margin-bottom: 12px;
}
.weekly-archive li:nth-child(4n + 1) {
	margin-left: 0;
	clear: both;
}
.weekly-archive a {
	text-transform: uppercase;
	color: #231f20;
	font: 1.375em 'Montserrat', sans-serif;
	font-weight: 700;
}
.weekly-archive a:hover {
	color: #008d8f;
}
.weekly-archive a:after {
	color: #008d8f;
	content: '\00a0\00bb';
}

/* products -------------------------------------------------------------------------- */

.products {
	width: 100%;
	min-height: 250px;
	border-top: #b8af9d 3px solid;
	padding-bottom: 20px;
	position: relative;
}
.products .scroller {
	width: 880px;
	margin: 0 auto;
	overflow: hidden;
}
.products .scroller ul {
	margin: 0;
	padding: 0;
	width: 9999px;
	overflow: hidden;
}
.products .scroller-prev,
.products .scroller-next {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 40%;
	z-index: 10;
	outline: none;
	color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.products button:before {
	font: 32px 'FontAwesome';
	display: block;
	color: #c1bfbb;
	width: 100%;
	height: 100%;
	-webkit-transition: color 0.1s ease;
	-moz-transition: color 0.1s ease;
	transition: color 0.1s ease;
}
.products .scroller button:hover:before {
	color: #5f5956;
}

.products .scroller-prev { left: 0; }
.products .scroller-prev:before { content: '\f104'; }

.products .scroller-next { right: 0; }
.products .scroller-next:before { content: '\f105'; }

.products .scroller li {
	display: inline;
}
.products .scroller a {
	display: block;
	float: left;
	width: 178px;
	padding: 20px;
	min-height: 210px; /* background image height */
	background: url('./images/products-item-divider.png') right top no-repeat;
}
.products .scroller p {
	margin: 5px 0 0 0;
	color: #231f20;
	font: 15px 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
.products .scroller .price {
	display: block;
	font-weight: normal;
}

/* ==================================================
  Premium Content
  see also .is-premum post item class
================================================== */

.premium-content-gate {
	margin-bottom: 50px;
	position: relative;
}
.premium-content-gate h2 {
	font-size: 1.5em;
	text-transform: none;
	font-weight: normal;
	margin-bottom: 25px;
	margin-top: 0;
	padding-left: 32px;
	position: relative;
}
.premium-content-gate h2:before {
	content: '\2605';
	position: absolute;
	left: 0;
	top: 2px;
	font: 22px/1 Times, serif;
	color: #b58b22;
}
.premium-content-gate h4 {
	font: 14px 'Montserrat', sans-serif;
	color: #231f20;
	margin: 0 0 15px 0;
}
.premium-content-gate .left {
	width: 340px;
	float: left;
}
.premium-content-gate .right {
	float: right;
}
.premium-content-gate .divider {
	margin: 21px 0 22px 0;
	height: 1px;
	font-size: 0;
	background: #d7d5d0;
}

.premium-content-gate__account-help {
	position: relative;
}
.premium-content-gate__account-help > a {
	position: absolute;
	right: -3px;
	top: 6px;
}
.premium-content-gate__account-help .fa {
	color: #eab935;
}
.premium-content-gate__account-help > a:after {
	content: '';
	position: absolute;
	width: 312px;
	height: 165px;
	top: -170px;
	right: -32px;
	background: url('./images/premium-content-account-help.png') 0 0 no-repeat;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}
.premium-content-gate__account-help > a:hover:after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.form--content-gate {
	padding: 24px;
}
.form--content-gate input {
	width: 100% !important;
	max-width: 270px;
	margin-bottom: 10px;
	padding: 8px;
}

.button-manage-subscription {
	width: 100%;
	height: 50px;
	padding-left: 15px;
	text-align: left;
	line-height: 50px;
	font-size: 1.15em;
	background: url('./images/button-manage-subscription-bg.jpg') 0 0 no-repeat;
	background-size: cover;
	transition: none;
}

a:hover.button-manage-subscription { background: #23a0a1; }

.button-manage-subscription .fa {
	margin-right: 10px;
	opacity: 0.5;
	font-size: 0.9em;
}
.button-manage-subscription:after {
	width: 50px;
	line-height: 50px;
	background: rgba(0,0,0,0.2);
}

.logout-subscription {
	position: absolute;
	right: 0;
	top: 97px;
}
.logout-subscription__link {
	color: #5e5854;
	font: 400 14px/1 'Montserrat', sans-serif;
}

@media (max-width: 680px) {

	.premium-content-gate .left,
	.premium-content-gate .right {
		float: none;
		width: 100%;
		margin-top: 25px;
	}
	.premium-content-gate input,
	.premium-content-gate .button {
		display: block;
	}
	.premium-content-gate input {
		max-width: 100%;
	}
	.premium-content-gate__account-help .fa {
		display: none;
	}
	.button-manage-subscription .fa {
		display: none;
	}
}

@media (max-width: 360px) {

}

/* footer -------------------------------------------------------------------------- */

.site-footer {
	background: #312618 url('./images/site-footer-bg.jpg') center bottom no-repeat;
}

/* AFFILIATES */

.footer-affiliates {
	height: 192px;
	overflow: hidden;
	padding: 15px 0;
	text-align: center;
	background: #d7d2c2 url('./images/footer-logos-bg.jpg') center top no-repeat;
}
.footer-affiliates .ad {
	max-width: 468px;
	margin: 0 auto 12px auto;
}
.footer-affiliates .container {
	margin-top: 5px;
	padding-top: 15px;
	border-top: #716a66 1px solid;
	border-color: rgba(113,106,102,0.24);
}
.footer-affiliates ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	overflow: hidden; /* clearfix */
}
.footer-affiliates ul:after { /* needed for justified text (equaly spaced affiliate logos) */
	content: '';
	width: 100%;
	display: inline-block;
}
.footer-affiliates li {
	display: inline-block;
	width: 220px;
	height: 70px;
}
.footer-affiliates li a {
	display: block;
	width: 100%;
	height: 100%;
}

li.affiliate-woodworkers a 	{ background: url('./images/logo-woodworkers.png') left top no-repeat; }
li.affiliate-woodworking a 	{ background: url('./images/logo-woodworking.png') left 14px no-repeat; }
li.affiliate-rockler a 		{ background: url('./images/logo-rockler.png') 50% 13px no-repeat; }
li.affiliate-freeplans a 	{ background: url('./images/logo-freeplans.png') right 2px no-repeat; }

/* NAV */

.footer-nav .container {
	padding-top: 25px;
	padding-bottom: 50px;
	overflow: hidden; /* clearfix */
	/*
	-webkit-column-count: 7;
	-moz-column-count: 7;
	column-count: 7;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	*/
}

.footer-nav .menu,
.footer-nav .menu li,
.footer-nav .sub-menu,
.footer-nav .sub-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav .col {
	float: left;
	width: 190px;
	padding: 0 6px 0 10px;
	min-height: 305px; /* sub-menu-divider-footer.png height */
	background: url('./images/sub-menu-divider-footer.png') right top no-repeat;
}
.footer-nav .col:first-child {
	padding-left: 0;
}
.footer-nav .col:last-child {
	background: none;
	padding-right: 0;
}

.footer-nav .menu a {
	display: block;
	padding: 0;
	margin-bottom: 10px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.25);
}
.footer-nav .menu > li > a {
	color: #efc900;
	font: 16px/18px 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}
.footer-nav .menu > li > a:hover {
	color: #FFF;
}
.footer-nav .menu > .menu-item-has-children .is-pseudo-parent > a,
.footer-nav .menu > .menu-item-has-children .menu-item-has-children > a,
.footer-nav .menu > .is-pseudo-parent > a {
	color: #FFF;
	font: 13px/15px 'Montserrat', sans-serif;
	font-weight: 400;
	text-transform: none;
}
.footer-nav .sub-menu {
	margin-bottom: 20px;
}
.footer-nav .sub-menu a {
	font: 12px 'Muli', sans-serif;
	color: #e4e1dc;
}
.footer-nav .sub-menu a:hover,
.footer-nav .menu > .is-pseudo-parent > a:hover {
	color: #FFF;
	text-decoration: underline;
}
.footer-nav .menu .buffer {
    margin-top: 20px;
}

/* SOCIAL */

.site-footer .social {
	margin-top: 25px;
	margin-left: -5px;
	overflow: hidden;
}
.site-footer .social a {
	width: 22px;
	height: 22px;
	margin-right: 3px;
	font-size: 18px;
	color: #FFF;
}
.site-footer .social a:hover:before {
	color: #edca1b;
}

/* INFO */

.footer-info {
	clear: both;
	width: 100%;
	background: #18140e;
	background: rgba(24,20,14,0.23);
	text-align: right;
	color: #e4e1dc;
	font: 12px 'Muli', sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}
.footer-info .container {
	height: 80px;
	line-height: 2em;
	padding-top: 10px;
}
.footer-info a {
	color: #e4e1dc;
	text-decoration: none;
}
.footer-info a:hover {
	color: #e4e1dc;
	text-decoration: underline;
}
.footer-info .copyright,
.footer-info .credits {
	float: left;
}
.footer-info .credits:before {
	content: '\00a0\00a0\2022\00a0\00a0';
}
.footer-info > div {
	position: relative;
	right: 0;
	height: 38px;
	padding-right: 150px;
}

.site-footer a.subscribe {
	position: absolute;
	display: inline-block;
	text-align: center;
	padding: 0 20px;
	font: 18px 'Muli', sans-serif;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.18);
	height: 50px;
	line-height: 50px;
	color: #27261d;
	top: -12px;
	right: 0;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.5);
	box-shadow: 0 0 4px rgba(0,0,0,0.5);
	background: #eecf29;
	background: -moz-radial-gradient(center, ellipse cover,  rgba(244,217,60,1) 0%, rgba(235,197,17,1) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(244,217,60,1)), color-stop(100%,rgba(235,197,17,1)));
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(244,217,60,1) 0%,rgba(235,197,17,1) 100%);
	background: -o-radial-gradient(center, ellipse cover,  rgba(244,217,60,1) 0%,rgba(235,197,17,1) 100%);
	background: -ms-radial-gradient(center, ellipse cover,  rgba(244,217,60,1) 0%,rgba(235,197,17,1) 100%);
	background: radial-gradient(ellipse at center,  rgba(244,217,60,1) 0%,rgba(235,197,17,1) 100%);
}
.site-footer a.subscribe:after {
	font: 14px 'FontAwesome';
	content: '\f105';
	padding-left: 6px;
}
.site-footer a.subscribe:hover {
	background: #fce13c;
}

/* plugins -------------------------------------------------------------------------- */

#brightcove {
	margin: 20px 0;
}

#disqus {
	background: url('./images/divider-bg.png') left top repeat-x;
	padding: 50px 0;
	margin-bottom: 30px;
}

/**
 *     flexslider
 *     home page banner
 */
.flexslider {
    /* fix a few defaults */
    margin: 0;
    background: transparent;
    border: 0 none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0 #fff;
    -moz-box-shadow: 0 0 0 #fff;
    -o-box-shadow: 0 0 0 #fff;
    box-shadow: 0 0 0 #fff;
    /* Windmill Custom */
    width: 100%;
    height: 340px;
    overflow: hidden;
    margin-bottom: 25px;
}
.slides > div {
    height: 340px;
    position: relative;
    color: #fff;
    background-color: #635c59;
    background-position: center top;
    background-size: cover;
}
.slides div:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
	opacity: 0.75;
	background: -moz-linear-gradient(top,  rgba(46,31,22,0) 0%, rgba(46,31,22,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,31,22,0)), color-stop(100%,rgba(46,31,22,1)));
	background: -webkit-linear-gradient(top,  rgba(46,31,22,0) 0%,rgba(46,31,22,1) 100%);
	background: -o-linear-gradient(top,  rgba(46,31,22,0) 0%,rgba(46,31,22,1) 100%);
	background: -ms-linear-gradient(top,  rgba(46,31,22,0) 0%,rgba(46,31,22,1) 100%);
	background: linear-gradient(to bottom,  rgba(46,31,22,0) 0%,rgba(46,31,22,1) 100%);
}
.slides a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.slides span {
    position: absolute;
    bottom: 35px;
    left: 28px;
    font: 30px 'Muli', sans-serif;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 1px 1px rgba(0,0,0,0.8);
}
.slides a span:after {
	font: 10px 'FontAwesome';
	content: '\f054';
	display: inline-block;
	position: relative;
	top: -5px;
	left: 5px;
	line-height: 28px;
	text-indent: 10px;
	width: 26px;
	height: 26px;
	background: #be8a04;
	text-shadow: 0 0 4px rgba(0,0,0,0.8);
	-webkit-border-radius: 99px;
	-moz-border-radius: 99px;
	border-radius: 99px;
}
.slides span strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}
.flex-control-nav {
    float: left;
    bottom: 15px;
    right: 15px;
    width: auto;
    height: 11px;
    z-index: 99;
}
.flex-control-nav li {
    margin: 0 0 0 8px;
}
.flex-control-paging li a {
	display: inline-block;
	width: 10px;
	height: 10px;
	border: transparent 2px solid;
    background: #fff;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 0 #fff;
    -moz-box-shadow: 0 0 0 #fff;
    -o-box-shadow: 0 0 0 #fff;
    box-shadow: 0 0 0 #fff;
}
.flex-control-paging li a:hover {
    background: #fff;
}
.flex-control-paging li a.flex-active {
	background: transparent;
	border-color: #FFF;
	cursor: default;
}

pre.debug {
	font: 11px monospace;
	margin: 20px 0;
	max-height: 500px;
	background: #f9f9f9;
	color: #333;
	overflow: scroll;
	padding: 20px;
	border: #F00 1px dotted;
}

/* browsers -------------------------------------------------------------------------- */

.ie8 .sub-menu-columns.sub-menu {
	width: 675px;
}
.ie8 #disqus {
	border-top: #CCC 1px solid;
	border-bottom: #CCC 1px solid;
}

/* modal -------------------------------------------------------------------------- */

#subscribe-modal {
	background: #f4f2ee;

	background: -moz-linear-gradient(top,  #ffffff 0%, #f4f2ee 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f4f2ee));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f4f2ee 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f4f2ee 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f4f2ee 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f4f2ee 100%);

	position: relative;
	padding: 50px 50px 40px 50px;
	width: auto;
	max-width: 430px;
	margin: 20px auto;

	-webkit-box-shadow: 0 0 7px rgba(0,0,0,0.75);
	-moz-box-shadow: 0 0 7px rgba(0,0,0,0.75);
	box-shadow: 0 0 7px rgba(0,0,0,0.75);
}
.subscribe-modal__form--hidden,
.subscribe-modal__interstitial--hidden {
	display: none;
}
#subscribe-modal h3 {
	color: #231f20;
	font-size: 1.35em;
	line-height: 1.35em;
}
#subscribe-modal hr{
	background-color: #eae9e7;
	height: 2px;
	color: #eae9e7;
	border: none;
}
#subscribe-modal p {
	line-height: 1.4;
}
#subscribe-modal label {
	display: block;
	font-family: 'Muli', sans-serif;
	font-size: 1.125em;
	line-height: 1.2em;
	color: #231f20;
	margin-bottom: 6px;
}
#subscribe-modal input[type='text'] {
	display: block;
	font-family: 'Muli', sans-serif;
	font-size: 1.125em;
	line-height: 1.778em;
	padding: 6px;
	border: 1px solid #cdc7ba;
	border-radius: 0;
	width: 100%;
}
.subscribe-modal__interstitial {
	padding-left: 40px;
}
.subscribe-modal__ad {
	margin-bottom: 1em;
}
@keyframes custom-appear {
	from {
		opacity: 0;
	}
	25% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.button-view-plan--appear {
	animation-duration: 5s;
	animation-name: custom-appear;
}

.free-plans-ad-pair {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.free-plans-ad-pair--buffer {
	padding-bottom: 35px;
}
.free-plans-ad-pair > div {
	margin-top: 28px;
	width: 300px;
}
.free-plans-ad-pair > div:first-child {
	margin-right: 10px;
}
.free-plans-ad-pair .ad {
	text-decoration: none;
	font-size: 0;
	line-height: 0;
	position: relative;
}
.free-plans-ad-pair .ad:before {
	display: block;
	position: absolute;
	top: -18px;
	height: 18px;
	line-height: 18px;
	content: 'advertisement';
	font: 10px 'Open Sans', 'Muli', sans-serif;
	color: #6e7274;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.95;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased;
}




/**
 * CAMPAIGNS
 */
.campaign__container {
	margin: 0 auto;
	width: 100%;
}
.campaign__ad {
	display: flex;
	justify-content: center;
}
.campaign__ad--primary {
	display: none;
}
.campaign__banner img {
	max-width: 100%;
	height: auto;
}
.campaign__nav {
	padding: .5em;
}
.campaign__nav__link {
	display: block;
	padding: .5em;
	font: 400 16px/1.2 'Muli', serif;
	text-align: center;
}
.campaign__layout {
	margin-top: 2em;
}
.campaign__content {
	border-top: 0 none;
	margin-top: 0;
	padding: 0 1em;
	width: 100%;
}
.campaign__content > *:first-child {
	margin-top: 0;
}
.campaign__ad--secondary {
	margin-top: 2em;
}
.campaign__footer {
	font-size: .9em;
	padding: 2em 0;
	text-align: center;
}

@media screen and (min-width: 770px) {
	.campaign__container {
		max-width: 770px;
	}
	.campaign__container--last {
		margin-bottom: 3em;
	}
	.campaign__ad--primary {
		display: block;
		padding: .9em 0;
	}
	.campaign__ad--primary > div {
		margin: 0 auto;
	}
	.campaign__nav {
		display: flex;
		align-items: center;
		padding: 0;
	}
	.campaign__nav__link {
		flex: 1 0 auto;
	}
	.campaign__layout {
		display: flex;
		justify-content: space-between;
		margin-top: 2em;
	}
	.campaign__content {
		padding-right: 0;
	}
	.campaign__content--narrow {
		max-width: 440px;
	}
	.campaign__ad--secondary {
		flex: 0 1 auto;
		margin-top: 0;
	}
	.campaign__footer {
		padding-bottom: 0;
	}
}


/**
 * Woodturning Monthly
 */
.woodturning-banner {
	width: 100%;
}


@media screen and (min-width: 830px) {
	.campaign__container {
		border-left: 1px solid #b5b5b5;
		border-right: 1px solid #b5b5b5;
		border-bottom: 1px solid #b5b5b5;
		padding: 0 16px 1em;
		max-width: 804px;
	}
	.campaign__content {
		padding-left: 0;
	}
}

/**
 *     Fix analytics from displaying
 *     http://stackoverflow.com/a/18588271
 */
iframe[name='google_conversion_frame'] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

.hide-desktop		{ display: none !important; }
.show-tablet		{ display: none !important; }
.show-mobile		{ display: none !important; }

/* retina -------------------------------------------------------------------------- */

@media
	(-webkit-min-device-pixel-ratio: 2),
	(-webkit-min-device-pixel-ratio: 1.25),
	(-webkit-min-device-pixel-ratio: 1.3),
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-resolution: 192dpi),
	(min-resolution: 144dpi),
	(min-resolution: 120dpi),
	(min-resolution: 124.8dpi) {

	.logo a { background-image: url('./images/logo-2018@2x.png'); background-size: 299px auto; }
	.post-list a.has-video:before,
	.card__video-button {
		background-image: url('./images/has-video-icon@2x.png');
		background-size: 75px auto;
	}
}

/* print -------------------------------------------------------------------------- */

@media print {

	* { background: transparent !important; color: black !important; box-shadow: none !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
	@page { margin: 0.5cm; }
	.hide-print { display: none !important; }
	.show-print { display: block !important; }
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}
