/*
	Theme Name: OPTIMIZED Watch Me Code Theme
	Description: A conversion-optimized child theme built using the Genesis Framework. Customized from the Modern Portfolio Pro child theme.
	Author: Kantan Designs
	Author URI: https://kantan.io
	Version: 1.0.0

	Tags: black, white, one-column, two-columns, responsive-layout, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, premise-landing-page

	Template: genesis
	Template Version: 2.0.0

	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/


/* Table of Contents

	- Imports
	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
		- Responsive Menu
	- Content Area
		- Custom CSS for New Sections 
			- Home Page
			- Pricing
			- Signup
			- Screencasts
		- Entries
		- After Entry
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Theme Colors
		- Watch Me Code Blue
		- Watch Me Code Green
		- Watch Me Code Orange
		- Watch Me Code Purple
		- Watch Me Code Red
	- Media Queries
		- max-width: 1267px
		- max-width: 1000px
		- max-width: 600px
		- max-width: 480px

*/


/*
Imports
---------------------------------------------------------------------------------------------------- */

@font-face {
	font-family: 'Icon';
	src:url('fonts/Icon.eot');
	src:url('fonts/Icon.eot?#iefix') format('embedded-opentype'),
		url('fonts/Icon.woff') format('woff'),
		url('fonts/Icon.ttf') format('truetype'),
		url('fonts/Icon.svg#Icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
   normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.clearfix:before,
.entry-content:before,
.entry:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
	content: " ";
	display: table;
}

.clearfix:after,
.entry-content:after,
.entry:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}

body {
	background-color: #fff;
	color: #222;
	font-family: 'Lato', sans-serif;
	font-size: 2.0rem;
	font-weight: 400;
	line-height: 1.625;
}

/*body > div {
  font-size: 18px;
  font-size: 1.8rem;
}*/

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #222;
	color: #fff;
}

::selection {
	background-color: #222;
	color: #fff;
}

a {
	color: #27b4b2;
}

a:hover {
	color: #222;
}

/* change button copy color to white, no underline */
button a {
	color: #fefefe;
	text-decoration: none;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}




/* p for black backgrounds */

#about * p,
#control-about * p,
#services * p,
#derick * p {
	font-weight: 300;
}


/* MP: adjusted for hero specific typographic balance */
#hero-subhead {
	font-size: 2rem;
  line-height: 1.4;
}

#vid-click-trigger {
	text-align: center;
}
strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote {
	text-align:center;
	font-size: 2rem;

}
blockquote::before {
	color: #999;
}
/*
blockquote {
	margin: 40px 40px 24px;
	margin: 4rem 4rem 2.4rem;
}*/

/*blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}*/

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}


#benefits li {
	margin-bottom: 6rem;
}


#benefits * ul.icon {
	list-style-type: ;
}




/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
	padding: 0;
}

h1 {
	font-size: 3.6rem;
	font-weight: 700; /* MP */
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2.4rem;
}

h4 {
	font-size: 2.4rem;
}

h5 {
	font-size: 1.8rem;
}

h6 {
	font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto; /* IE8 */
}

#blog img,
#main-testi img,
#benefits img,
#portfolio img,
#skills img {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
	opacity: 0.8;
}

#blog img:hover,
#main-testi img:hover {
	opacity: 1;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 0 0 5px #ddd inset;
	color: #888;
	font-size: 2.0rem;
	font-weight: 300;
	padding: 16px;
	padding: 1.6rem;
	width: 100%;
}

input[type="checkbox"], 
input[type="radio"], 
input[type="image"] {
	width: auto;
}

input:focus,
textarea:focus {
	border: 1px solid #aaa;
	outline: none;
}

::-moz-placeholder {

	font-size: 2.0rem;
	font-style: italic;
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {

	font-size: 2.0rem;
	color: #999;
}

.button,
.widget .button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#menu-header .highlight-button > a {

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffe14f+0,f1d649+52,ddbb3e+100 */
  background: #ffe14f; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffe14f 0%, #f1d649 52%, #ddbb3e 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #ffe14f 0%,#f1d649 52%,#ddbb3e 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #ffe14f 0%,#f1d649 52%,#ddbb3e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe14f', endColorstr='#ddbb3e',GradientType=0 ); /* IE6-9 */

	border:1px solid #f1d649;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
	border-radius: 3px;
	box-shadow: none;
	color: #333;
	cursor: pointer;
	display: block;
	font-size: 2.0rem;
	padding: 20px 25px;
	padding: 2.0rem 2.5rem;
	width: auto;
	text-align: center;
	text-decoration: none;
}

#menu-header .highlight-button > a {
	font-size: inherit;
	padding: 12px 42px;
	padding: 1.2rem 4.2rem;
}



.button:hover,
.widget .button:hover,
button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
#menu-item-3198 > a:hover  {
	border:1px solid #BFA93A;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffd000+0,ffe14f+35,ffe14f+65,dbab00+100 */
  background: #ffd000; /* Old browsers */
  background: -moz-linear-gradient(top, #ffd000 0%, #ffe14f 35%, #ffe14f 65%, #dbab00 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffd000 0%,#ffe14f 35%,#ffe14f 65%,#dbab00 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffd000 0%,#ffe14f 35%,#ffe14f 65%,#dbab00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd000', endColorstr='#dbab00',GradientType=0 ); /* IE6-9 */

  color: #000 !important;
}

.entry-content .button:hover {
	color: #fff;
}

.button,
.widget .button {
	border-radius: 3px;
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.mpp-landing .title-area {
  max-width: 800px;  
  margin: 0 auto;
  float: none;
  width: auto;
}

.mpp-landing h1.entry-title{
  display: none;
}

.mpp-landing h1 {
  font-size: 2.25em;
  margin: 0.80em auto;
}

.mpp-landing h2 {
  margin-bottom: 1em;
  font-weight: bold;
  margin-left: -0.5em;
}

.mpp-landing h3 {
  font-weight: bold;
  margin-top: 1.5em;
  margin-left: -0.5em;
}

.mpp-landing a.button {
	margin-top: 16px;
	margin-top: 1rem;
}

.mpp-landing .edd_purchase_submit_wrapper {
  text-align: center;
}

.mpp-landing .edd_purchase_submit_wrapper a.big-button{
  margin: 1.5em 0;
}

.mpp-landing ul {
  margin-left: 3em !important;
  margin-right: 3em !important;
  list-style: none;
}

.mpp-landing ul li:before {
  font-family:'FontAwesome';
  content: "\f00c";
  color: #0a0;
  padding-right: 1.0rem;
  padding-right: 10px;
  margin-left: -1.5em;

}

.mpp-landing .call-to-action {
  background-color: #f0fff0;
  padding: 0 1em;
  margin:  0 -1em -1em -1em;
  border-radius:  0.25em;
  border: 1px solid #373;
}

.mpp-landing .call-to-action h2 {
  text-align: center;
}

.mpp-landing .webinar-starts-in {
  padding: 1em 1em 0 1em;
  margin: 0 -1em 1em -1em;
  background-color: #F9F0C2;
  border-radius: 0.25em;
  border: 1px solid #BFA93A;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: 700;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
	padding: 0.6rem 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.wrap {
	margin: 0 auto;
	max-width: 1140px;
}

.site-inner {
	clear: both;
	margin: 0 auto;
	max-width: 1140px;
}

.mpp-home .site-inner,
.mpp-pricing .site-inner {
	padding: 0;
	max-width: 100%;
}

.mpp-landing .site-inner {
	border: 1px solid #222;
	max-width: 800px;
	margin: 32px auto;
	margin: 3.2rem auto;
	padding: 30px;
	padding: 3rem;
}

.mpp-landing h1 {
	text-align: center;
}

.mpp-landing h2 {
}

.mpp-landing ul, .mpp-landing ol {
	margin-left: 3em !important;
	margin-right: 3em !important;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Content */

.content {
	float: right;
	width: 64.912280701754%; /* 740px / 1140px */
}

.content-sidebar .content {
	float: left;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 29.824561403509%; /* 340px / 1140px */
}

.sidebar-content .sidebar-primary {
	float: left;
}


/* Column Classes
   Link: https://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 2.4rem;
}

.search-form {
	overflow: hidden;
}

/* MP: Include Search button */

.search-form input[type="search"] {
	width: 80%;
	float: left;
	-webkit-appearance: none;
}

.search-form input[type="submit"] {
	position: relative;
	font-weight: 500;
	display: inline-block;
	padding: 16px;
	padding: 1.6rem;
	margin-left: 5px;
	width: 18%;
	height: auto;
	/*clip: auto;*/
	float:right;
	text-align: center;
	background-color: #666;
}




img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}

a.alignnone img {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.invisible {
  visibility: hidden;
}

a.alignleft,
a.alignright {
    max-width: 100%;
}

a.alignleft img,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
	margin: 0 2.4rem 0.5rem 0;
}

a.alignright img,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
	margin: 0 0 0.5rem 2.4rem;
}

.entry-content .wp-caption-text {
	font-size: 1.4rem;
	font-weight: 400;
	margin: 0;
	text-align: center;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	border-bottom: 1px solid #222;
	margin-bottom: 48px;
	margin-bottom: 4.8rem;
	overflow: hidden;
	padding: 8px 0 24px;
	padding: 0.8rem 0 2.4rem;
}

.archive-description,
.author-box {
	background-color: #f5f5f5;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.archive-description {
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	font-family: 'Lato', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box p {
	margin-bottom: 0;
}

.author-box .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

/* Titles
--------------------------------------------- */

.entry-title {
	line-height: 1;
}

.entry-title a,
.sidebar .widget-title a {
	color: #27b4b2;
/*	text-decoration: none;
*/}

.entry-title a:hover {
	color: #27b4b2;
}

.category .entry-title,
.search .entry-title {
	font-size: 2.4rem;
}

.category article {
	border-bottom: solid 2px #bbb;
}

.widget-title {
	font-size: 2.4rem;
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.archive-title {
	font-size: 2rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

/*.widget li {
	list-style-type: none;
}
*/
.widget ol {
	margin-left: 24px;
	margin-left: 2.4rem;
}

.widget li li {
	border: none;
	margin: 0 0 0 18px;
	margin: 0 0 0 1.8rem;
	padding: 0;
}

.ctr-content {
	text-align: center;
}




/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	font-size: 1.6rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 8px;
	margin-bottom: 0.8rem;
}

.featured-content .entry-title a {
	text-decoration: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	color: #fff;
}

.enews-widget .widget-title {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

.enews-widget input[type="submit"] {
	background-color: #27b4b2;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"]{
	background-color: #fff;
	color: #222;
}

.enews form + p,
.enews form + p:last-child {
	margin-top: 24px;
	margin-top: 2.4rem;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 1.6rem;
	padding: 16px;
	padding: 1.6rem;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1.6rem 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 1.4rem;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header .wrap {
	overflow: hidden;
	padding: 0.5rem 0;
}

.mpp-home .site-header .wrap {
	border: none;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 12px 0;
	padding: 1.2rem 0;
	width: 35%;
}

.header-image .title-area {
	padding: 0;
}

.site-title {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 8px;
	margin: 0 0 0.8rem;
	text-transform: lowercase;
}

.site-title a,
.site-title a:hover {
	color: #222;
	text-decoration: none;
}

.site-title a::before {
	background-color: #222;
	border-radius: 50%;
	color: #fff;
	content: "M"; /* Used to display the letter in the header logo */
	cursor: pointer;
	display: inline-block;
	font-family: 'Merriweather', serif;
	height: 48px;
	line-height: 2.1;
	margin-right: 12px;
	margin-right: 1.2rem;
	padding: 3px 4px;
	padding: 0.3rem 0.4rem;
	text-align: center;
	width: 48px;
	text-transform: uppercase;
}

.site-title a:hover::before {
	background-color: #27b4b2;
}

.site-description {
	color: #999;
	font-size: 1.6rem;
	font-weight: 300;
	height: 0;
	line-height: 1;
	margin-bottom: 0;
	text-indent: -9999px;
}

/* Full width header, no widgets */

.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-title a {
	float: left;
	min-height: 90px;
	width: 100%;
}

/* Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	text-align: right;
	padding-top: 8px;
	padding-top: 0.8rem;
	width: 60%;
}

.site-header .widget {
	margin-bottom: 0;
}

.site-header .search-form {
	float: right;
	margin-top: 24px;
	margin-top: 2.4rem;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #222;
	line-height: 1.5;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	border: none;
	color: #222;
	display: block;
	line-height: 1;
	padding: 24px 20px;
	padding: 2.4rem 1.25rem;
	position: relative;
	text-decoration: none;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	background-color: #222;
	color: #fff;
}

.genesis-nav-menu .sub-menu {
	border-top: 1px solid #222;
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #222;
	border-top: none;
	font-size: 1.4rem;
	padding: 20px;
	padding: 2rem;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu a:hover {
	background-color: #222;
	color: #fff;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -56px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	line-height: 1;
	list-style-type: none;
	padding: 24px 0;
	padding: 2.4rem 0;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .right > a:hover {
	background: none;
	color: #27b4b2;
}

.genesis-nav-menu > .rss > a {
	margin-left: 20px;
	margin-left: 2rem;
}

.genesis-nav-menu > .search {
	padding: 6px 0 0;
	padding: 0.6rem 0 0;
}

.genesis-nav-menu li.highlight-menu-item a {
	background-color: #222;
	color: #fff;
	margin-left: 20px;
	margin-left: 2rem;
}

.genesis-nav-menu li.highlight-menu-item a:hover {
	background-color: #27b4b2;
	color: #fff;
}

/* Site Header Navigation
--------------------------------------------- */

.site-header .genesis-nav-menu a:hover {
	background-color: #fff;
	color: #27b4b2;
}

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary .wrap {
	border-top: 1px solid #999;
}

/* Secondary Navigation
--------------------------------------------- */

.nav-secondary .wrap {
	border-bottom: 1px solid #222;
}

/* Responsive Menu
--------------------------------------------- */

#responsive-menu-icon {
	cursor: pointer;
	display: none;
}

#responsive-menu-icon::before {
	-webkit-font-smoothing: antialiased;
	color: #222;
	content: "\e00e";
	font-family: 'Icon';
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	margin: 0 auto;
	speak: none;
	text-transform: none;
}


/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Common CSS for Custom Pages (Home, Pricing, Signup)
-------------------------------------------------------------- */

#about,
#control-about,
#blog,
#main-testi,
#portfolio,
#services,
#benefits,
#skills,
#derick,
#subscriptions,
#bundles,
#guarantee {
	clear: both;
	overflow: hidden;
}

/* MP: Black-background sections */

#about,
#control-about,
#services,
#derick,
#subscriptions {
	background-color: #222;
	/*font-size: 20px;
	font-size: 2rem;
	font-weight: 400;*/
	/*padding: 60px 0 36px;
	padding: 6rem 0 3.6rem;*/
}

#subscriptions h1.title {
  color: #fff;
}

#subscriptions hr {
  margin: 2em 0;
}

/* MP: remove padding-bottom of #about to raise content above fold */

#control-about,
#services {
	padding: 30px 0 0px;
	padding: 3rem 0 0rem;
}

#about {
	padding: 0;
}

#guarantee {
	padding: 10px 0 0px;
	padding: 1rem 0 0rem;
}

#main-testi,
#benefits,
#portfolio,
#final-cta,
#bundles,
#subscriptions {
	padding: 60px 0 36px;
	padding: 6rem 0 3.6rem;
}

#benefits {
	width: 70%;
	margin: 0 auto;
	text-align: center;
}

.benefit-sub {
	width: 75%;
	margin: 0 auto 4rem auto;
}

#benefit-list {
  width: 70%;
  display: block;
  text-align: left;
  margin: 0 auto;	
}


#about .entry-meta a:hover,
#about .entry-title a,
#about a:hover,
#control-about .entry-meta a:hover,
#control-about .entry-title a,
#control-about a:hover,
#services .entry-meta a:hover,
#services .entry-title a,
#services a:hover,
#derick .entry-meta a:hover,
#derick .entry-title a,
#derick a:hover,
#subscriptions .entry-meta a:hover,
#subscriptions .entry-title a {
	color: #fff;
}

#bundles .entry-meta a:hover,
#bundles .entry-title a,
#bundles a:hover,
#guarantee .entry-meta a:hover,
#guarantee .entry-title a,
#guarantee a:hover  {
	color: #0E9997;
}

#about .entry-meta a,
#about .entry-title a:hover,
#control-about .entry-meta a,
#control-about .entry-title a:hover,
#services .entry-meta a,
#services .entry-title a:hover,
#derick .entry-meta a,
#derick .entry-title a:hover
#subscriptions .entry-meta a,
#subscriptions .entry-title a:hover  {
	color: #ccc;
}


#blog {
	padding: 60px 0 0;
	padding: 6rem 0 0;
}

.mpp-home .content .featuredpost .entry {
	float: left;
	margin-right: 5.263157894737%; /* 60px / 1140px */
	width: 29.824561403509%; /* 340px / 1140px */
}



.mpp-home .content .featuredpost .entry:nth-of-type(3n+3) {
	margin-right: 0;
}

.mpp-home .content .featuredpost .entry:nth-of-type(3n+1) {
	clear: left;
}

#blog .widget-title,
#main-testi .widget-title,
#benefits .widget-title, 
#portfolio .widget-title, 
#skills .widget-title {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.mpp-home .content .featuredpost h4, 
.mpp-home .content .featuredpost ul, 
.mpp-home .content .featuredpost .more-from-category {
    clear: both;
}


/* MP: Remove margin-bottom of feature-page-2 (hero section) to
raise content above fold */

#featured-page-2 {
	margin-bottom: 0px;
  	margin-bottom: 0rem;
}

/* Page-specific CSS for New Content */

	/* Homepage */

		/* Main-Testimonial */

      #main-testi::before {
        content: ' ';
        display: block;
        background-color: #F1D649;
        width: 100%;
        height: 100px;
      }

      #main-testi .wrap {
        position: relative;
        top: -120px;
        margin-bottom: -120px;
				background-color: #F6F6F6;
      }

      #main-testi .widget-title {
        padding-top: 1em;
        font-size: 1.5em;
        background-color: #F9DE50;
        height: 100px;
        font-weight: bold;
        text-align: center;
        color: #222;
        box-shadow: 0px 2px 4px #888;
      }

      #main-testi img.main-testi-photo {
        margin: 0 1em 1em 1em;
      }
      
      #main-testi table {
        margin-bottom: 0;
      }

      #main-testi table tbody, 
      #main-testi table td {
        border: 0;
      }

      #main-testi table tbody td:nth-child(0) {
        width: 50px !important;
      }

			#main-testi {
				background-color: #FFF;
        padding-top: 2em;
			}

			#main-testi h2 {
				font-weight: 700;
				text-align:center;

			}

			#main-testi h2 > span {
				border-bottom: solid 3px #FF9600;
			}

			#main-testi * blockquote {
			}

			.quote-src {
				text-align:center;
				font-size: 2rem;
				font-weight: 400;
				font-style: italic;
			}


		/* Benefits */

			#benefits {
				width: 100%;
				margin: 0 auto;
        padding-top: 1em;
				text-align: center;
				position: relative;
				z-index: 1;
			}

      #benefits h1 {
        font-size: 2em;
        padding-bottom: 0.25em;
        border-bottom: 1px solid #777;
        margin: 0.5em auto 1em auto;
      }

			.benefit-sub {
				width: 75%;
				margin: 0 auto 6rem auto;
			}

			#benefit-list {
			  width: 70%;
			  display: block;
			  text-align: left;
			  margin: 0 auto;	
			}

			#benefits h3 > span {
				border-bottom: solid 3px #F9DE50;
			}

			#benefit-list * h3 {
				font-weight: 700;
				margin-bottom: 0;
			}

			#benefit-list * span.list-p {
				display:inline-block;
				padding-left: 25px;
				
			}

			#benefits li {
				margin-bottom: 6rem;
			}

			#benefits * ul { 
				padding-left: 20px; 
				list-style: none; 
			}

			#benefits * ul li h3:before {    
			    font-family: 'FontAwesome';
			    font-size: 3rem;
			    color: #BFA93A;
			    content: '\f087';
			    margin:0 15px 0 -15px;
			}

		/* Skills */

			/* Skills copy container */

			#skills {
				background-color: #222;
				position:relative;
				z-index: 10;
				overflow: visible;
				margin-bottom: -1px;
			}

			#skills::before {
				content: ' ';
				display: block;
				background-color: #F1D649;
				width: 100%;
				height: 100px;
			}

			.skills-box {
				padding: 0px 0px 50px 0px;
				padding: 0rem 0rem 5.0rem 0rem;
				overflow:hidden;
				width: 95%;
	  			margin: 0 auto;
				background-color: #fefefe;
				position:relative;
				z-index: 100;
				top: -130px;
			}

			.skills-list {
				padding: 5.0rem;
				padding: 50px;
			}

			#skills .skills-box h1 {
				position: relative;
				width: 100%;
				font-size: 1.5em;
				font-weight: bold;
				padding: 30px 0px 30px 0px;
				padding: 3.0rem 0rem 3.0rem 0rem;
				margin: 0px 0px 0px 0px;
				color: #222;
				background-color: #F9DE50;
				text-align: center;

				-webkit-box-shadow: 0px 2px 4px #888;
				-moz-box-shadow: 0px 2px 4px #888;
				box-shadow: 0px 2px 4px #888;
			}


			#skills ul {
				display: block;
	  			width: 80%;

	  			margin: 0 auto;
	  			list-style-position: outside;
			}

			#skills ul li {
				margin-bottom: 2.0rem;
				margin-bottom: 20px;
			}

			#text-28 {
				margin-bottom: 0px;
				margin-bottom: 0rem;
			}

			#skills:after {
				content: url("images/right-arrow-e1431564382860.png");
				float: right;
				margin-top: -170px;
				margin-right: 275px;
				position:relative;
				z-index: 1000;
			}

			#skills ul li {
	  			list-style-type: none;
	  			list-style-position: inside;
	  			text-indent: -25px;
	  			padding-left: 25px;
			}

			#skills ul li:before {    
				font-family: 'FontAwesome';
			    font-size: 2.5rem;
			    color: #F1D649;
			    content: '\f00c';
			    margin:0 15px 0 -15px;
			}

		/* About Derick */

			#derick {
				padding-bottom: 7.5rem;
				padding-bottom: 75px;
			}

			#derick h1 {
				text-align: center;
			}

			.derick-bio-wrapper {
				max-width: 700px;
				display: block;
				margin: 50px auto;
				margin: 5.0rem auto;
				overflow: hidden;
			}
		

			.derick-list ul {
				list-style-position: inside;
			}

			.round > * {
				  width: 130px;
				  height: 130px;
				  overflow: hidden;
				  -webkit-border-radius: 50%;
				  -moz-border-radius: 50%;
				  border-radius: 50%;
				  border: solid 5px #fefefe;
			}

			.minor-testimon {
				display:block;
				background-color: #C7C7C7;
				color: #222;
				overflow: hidden;
				max-width: 1000px;
				padding: 5.0rem;
				padding: 50px;
				margin: 0 auto;
			}

			#derick .testi-1 p,
			#derick .testi-2 p {
				font-size: 1.6rem;
				font-weight: 500;
			}


			#derick .testi-1 {
				padding-right: 50px;
				border-right: solid 2px #666;
			}

			#derick .testi-2 {
				padding-left: 50px;
			}

			#derick .testi-source {
				margin-bottom: 0;
			}


		/* Final CTA */

			#final-cta {
				background-color: #F6F6F6;
			}

			#final-cta .final-button {
				padding-top: 30rem;
				padding-top: 30px;
			}

			.final-click-trigger {
				font-size: 1.6rem;
				margin-top: 10px;
			}

			#final-cta:after {
				content: url("images/left-arrow-e1431564618302.png");
				float: left;
				margin-top: -430px;
				margin-left: 275px;
			}


	/* Pricing Page 
	--------------------------------------------- */

		#subscriptions h1,
		#bundles {
			text-align: center;
		}

    .plan-feature-list h1, .plan-feature-list h2, .plan-feature-list h3 {
      color: #000;
    }

    h2.plan-name {
      font-size: 2.25em;
      text-align: center;
      margin-bottom: 0.5em;
      padding-top: 0;
      padding-bottom: 0.5em;
      border-bottom: 1px solid #ccc;
    }

    .plan-tagline {
      text-align: center;
      color: #999;
    }

    #subscriptions .indie-plan h1 {
      color: #000;
    }

    #subscriptions .indie-plan a.button h1 {
      color: #333;
      font-weight: normal;
    }

    #subscriptions .team-plan a.button h1 {
      color: #333;
      font-weight: bold;
    }

    #subscriptions .team-plan h3 i {
      border-bottom: 3px solid #F1D649;
    }

		#subscriptions .indie-plan,
		#subscriptions .team-plan {
			background-color: #fefefe;
			padding: 1em;
			margin-top: 3.6rem;
			margin-top: 36px;
			border-radius: 3px;
      min-height: 60em;
		}

		#subscriptions .group-plan {
      min-height: 70em;
      padding: 1em 5em;
    }

		#subscriptions .group-plan .pricing-bottom {
      padding: 1em 5em;
    }

		#subscriptions img.guarantee-badge {
      height: 125px !important;
      float: left;
      margin-right: 1em;
    }

    @media only screen and (max-width: 1280px) {
      #subscriptions .indie-plan,
      #subscriptions .team-plan,
      #subscriptions .group-plan {
        min-height: 0;
        padding: 2em;
        margin: 1em 0;
        display: block;
        width: 100%;
        float: none;
      }

      .pricing-bottom {
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        margin-top: 2em !important;
      }
    }

		#subscriptions .indie-plan h2,
		#subscriptions .team-plan h2,
		#subscriptions .indie-plan li,
		#subscriptions .team-plan li,
		#subscriptions .indie-plan p,
		#subscriptions .team-plan p  {
			color: #222;
		}

		#subscriptions h2 {
			font-weight: 700;
		}

    #subscriptions .plan-price {
      margin: 2em 0 3em 0;
    }

    .old-price {
      font-weight: 100;
      margin-right: 1em;
    }

		.plan-fee {
			/* color: #03C6C1; */
      width: 50%;
      display: block;
      margin: 1em auto;
      padding: 0.5em;
      text-align: center;
      color: #fff;
			background-color: #00aa00;
      border: 1px solid #005500;
      border-radius: 5px;
			font-weight: bold;
      font-size: 1em;
      clear: both;
		}

		#subscriptions ul,
		#benefits-list ul {
			list-style-type: none;
		}

    #subscriptions ul li.highlight {
      font-weight: bold;
    }

		#subscriptions li,
		#benefits-list li {
			font-size: 1.8rem;
			text-indent: -3.0rem;
			padding-left: 30px;
		}

		#subscriptions .indie-plan ul li:before,
		.mpp-signup ul li:before {
			font-family:'FontAwesome';
			content: "\f00c";
			color: #F1D649;
			padding-right: 1.0rem;
			padding-right: 10px;
		}

		#subscriptions .team-plan ul li:before {
			font-family:'FontAwesome';
			content: "\f00c";
			color: #F1D649;
			padding-right: 1.0rem;
			padding-right: 10px;
		}

    #subscriptions .zero-risk {
      margin-top: 1.75em;
    }

    .indie-plan, .team-plan {
      position: relative;
    }

		.indie-plan a.button,
		.team-plan a.button {
      width: 100%;
      margin-bottom: 0;
    }

		.pricing-bottom {
      position: absolute;
      margin: 0 auto;
      bottom: 1em;
      left: 1em;
      right: 1em;
		}

    .pricing-bottom h3 b {
      border-bottom: 3px solid #F1D649;
    }

		#bundles {
			background-color: #f6f6f6;
		}
		#bundles p > span {
			border-bottom: solid 3px #FF9600;
		}

		#bundles .edd_download {
		  text-align: left;
		  background-color: #fefefe;
		  border: solid 1px #eee;
		  padding: 30px;
		  margin: 3px;
		  min-height: 400px;
		  min-height: 40.0rem;
		  float: left;
		}

		#bundles .edd_downloads_list div[style*="clear:both;"]{
			display:none;
		}

		div[id*="edd_download_"] {
		  width: 32% !important;
		}

    .guarantee-copy {
      font-size: 1.25em;
      margin: 1em 0 0 0;
      text-align: justify;
    }

		.guarantee-copy img {
      height: 225px;
      margin-right: 2em;
      float: right;
		}

    .guarantee-copy h2 {
      margin-bottom: 1em;
    }

		.guarantee-copy h2 > span {
			border-bottom: solid 3px #FF9600;
		}

	/* Signup
	--------------------------------------------- */


		.mpp-signup {
			background-color: #222;
		}

		.post-3224,
		.post-3222 {
			max-width: 750px;
			margin: 0 auto;
		}

    .mpp-signup article .entry-content {
      max-width: 1024px;
      margin: 0 auto;  
      background-color: #fefefe;
      border-radius: 3px;
      padding: 5.0rem;
      padding: 50px;
    }

		.mpp-signup h1 {
			text-align: center;
		}

		.rcp_user_fieldset,
		.rcp_discounts_fieldset {
			border:none;
			
		}

		#rcp-stripe-fields,
		#rcp_submit_wrap {
			padding-left: 1.5rem;
			padding-left: 15px;
			padding-right: 1.5rem;
			padding-right: 15px;
		}


		.first-last,
		.login-credentials,
		.password-creation {
			overflow:hidden;
		}

		

		/* MP: Style Discount Code elements */

		#discount-field {
			padding:0;
			margin:0;
			float:right;
		}

		.discount-link {
			float:right;
			font-size: 1.4rem;
			padding-bottom: 1.0rem;
			padding-bottom: 10px;
		}

		.hide {
			display: none;
		}

		#rcp_registration_form fieldset .rcp_discounts_fieldset,
		#rcp_registration_form fieldset .rcp_discounts_fieldset p {
			padding: 0;
			padding: 0;
			margin: 0;
			margin: 0;
		}
		
		/* END MP: Style Discount Code elements */


			
		.mpp-signup label.label_show {
			display: inline-block;
			color: #666;
		}

		select.card-expiry-month {
			margin-left: 1em;
		}

		/* 20150618-MP-START: Fixed element selectors for payment form buttons */

		form[action*="indie"] #rcp_submit {
			width: 100%;
			font-weight: 700;
			font-size: 3.6rem;
			padding-top: 30px;
			padding-bottom: 30px;
			margin-top: 4.0rem;
			margin-top: 40px;
			border:1px solid #0E9997;
			color: #fefefe;
			background-color: #35F2F0; background-image: -webkit-gradient(linear, left top, left bottom, from(#35F2F0), to(#0E9997));
			background-image: -webkit-linear-gradient(top, #35F2F0, #0E9997);
			background-image: -moz-linear-gradient(top, #35F2F0, #0E9997);
			background-image: -ms-linear-gradient(top, #35F2F0, #0E9997);
			background-image: -o-linear-gradient(top, #35F2F0, #0E9997);
			background-image: linear-gradient(to bottom, #35F2F0, #0E9997);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#35F2F0, endColorstr=#0E9997);
		}

		form[action*="indie"] #rcp_submit:active {
			border:1px solid #0E9997;
			color: #fefefe;
			background-color: #27B4B2; background-image: -webkit-gradient(linear, left top, left bottom, from(#27B4B2), to(#0C8684));
			background-image: -webkit-linear-gradient(top, #27B4B2, #0C8684);
			background-image: -moz-linear-gradient(top, #27B4B2, #0C8684);
			background-image: -ms-linear-gradient(top, #27B4B2, #0C8684);
			background-image: -o-linear-gradient(top, #27B4B2, #0C8684);
			background-image: linear-gradient(to bottom, #27B4B2, #0C8684);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#27B4B2, endColorstr=#0C8684);
		}

		form[action*="teams"] #rcp_submit,
		form[action*="teams"] #rcp_submit:hover {
			width: 100%;
			font-weight: 700;
			font-size: 3.6rem;
			padding-top: 30px;
			padding-bottom: 30px;
			margin-top: 4.0rem;
			margin-top: 40px;
			border:1px solid #E88D00;
			color: #fefefe;
			background-color: #FECC77; background-image: -webkit-gradient(linear, left top, left bottom, from(#FECC77), to(#FD8208));
			background-image: -webkit-linear-gradient(top, #FECC77, #FD8208);
			background-image: -moz-linear-gradient(top, #FECC77, #FD8208);
			background-image: -ms-linear-gradient(top, #FECC77, #FD8208);
			background-image: -o-linear-gradient(top, #FECC77, #FD8208);
			background-image: linear-gradient(to bottom, #FECC77, #FD8208);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#FECC77, endColorstr=#FD8208);
		}

		form[action*="teams"] #rcp_submit:active {
			border:1px solid #E88D00;
			color: #fefefe;
			background-color: #FD8208; background-image: -webkit-gradient(linear, left top, left bottom, from(#FD8208), to(#E88D00));
			background-image: -webkit-linear-gradient(top, #FD8208, #E88D00);
			background-image: -moz-linear-gradient(top, #FD8208, #E88D00);
			background-image: -ms-linear-gradient(top, #FD8208, #E88D00);
			background-image: -o-linear-gradient(top, #FD8208, #E88D00);
			background-image: linear-gradient(to bottom, #FD8208, #E88D00);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#FD8208, endColorstr=#E88D00);
		}

		/* 20150618-MP-END: Fixed element selectors for payment form buttons */

		.credit_card {
			width: 40%;
	  		float: right;
		}


		.mpp-signup .rcp_level_details_fieldset {
			display: none;
		}


		.mpp-signup .click-trigger {
			text-align: center;
		}


	/* Screencasts
	--------------------------------------------- */

	.category-free header:before {
		content:'FREE!';
		font-size: 1.6rem;
		display:block;
		float: right;
		background-color: #FF9600;
		color: #fefefe;
		padding: 5px 15px;
		border-radius: 5px;
	}

	.pagination {
		display:none;
	}

	.category .site-inner,
	.search .site-inner {
		max-width: none;
		width: 100%;
	}

	.category .site-inner .content-sidebar-wrap main.content,
	.search .site-inner .content-sidebar-wrap main.content {
		float:none;
		display:block;
		margin: 0 auto;
		max-width: 1140px;
		padding-top: 6.0rem;
		padding-top: 60px;
	}

	#category-search {
		color: #fefefe;
		background-color: #222;
		padding-top: 4.0rem;
		padding-top: 40px;
		padding-bottom: 4.0rem;
		padding-bottom: 40px;
	}

	#search-3 h4 {
		font-family: 'Lato', sans-serif;
		line-height: 1.2;
		margin: 0;
		margin-bottom: 16px;
		margin-bottom: 1.6rem;
		padding: 0;
		font-size: 3.6rem;
		font-weight: 700;
	}



	


/* Entries
--------------------------------------------- */

.entry {
	border-radius: 3px;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-content ol,
.entry-content ul {
	margin-left: 2.4rem;
  padding-left: 2rem;
}

.entry-content ol > li,
.widget ol > li {
	list-style-type: decimal;
}

/*.entry-content ul > li {
	list-style-type: disc;
}*/

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content .search-form {
	width: 50%;
}

.entry-meta {
	clear: both;
	color: #888;
	font-size: 1.6rem;

	display:none;
}

.entry-meta a {
	color: #222;
}

.entry-meta a:hover {
	color: #27b4b2;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-footer .entry-meta::before {
	border-top: 1px solid #222;
	content: "";
	display: block;
	padding-bottom: 32px;
	padding-bottom: 3.2rem;
	width: 10%;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* After Entry
--------------------------------------------- */

.after-entry {
	background-color: #222;
	color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 8%;
	text-align: center;
}

.after-entry .widgettitle {
	color: #fff;
	font-size: 2rem;
}

.after-entry .entry-title a,
.after-entry .widget .entry-meta a:hover {
	color: #fff;
}

.after-entry .widget .entry-meta a {
	color: #ccc;
}

.after-entry .entry-title a:hover {
	color: #27b4b2;
}

.after-entry p:last-child {
	margin: 0;
}

.after-entry li {
	list-style-type: none;
}

.after-entry li a {
	color: #999;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	clear: both;
	margin: 40px 0;
	margin: 4rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #222;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
	text-decoration: none;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #27b4b2;
	color: #fff;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li li {
	margin-right: -32px;
	margin-right: -3.2rem;
}

li.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.comment-header {
	font-size: 1.6rem;
	line-height: 1.4;
}

.comment-header .comment-meta {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}


/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar p:last-child,
.sidebar ul {
	margin-bottom: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #fff;
	margin-bottom: 32px;
	margin-bottom: 3.2rem;
	overflow: hidden;
}

.sidebar .widget::after {
	border-bottom: 1px solid #222;
	content: "";
	display: block;
	padding-bottom: 32px;
	padding-bottom: 3.2rem;
	width: 20%;
}

.sidebar .enews {
	background-color: #222;
	margin-bottom: 8px;
	margin-bottom: 0.8rem;
	padding: 32px;
	padding: 3.2rem;
}

.sidebar .widget.enews-widget::after {
	border-bottom: none;
	padding-bottom: 0;
}



/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #222;
	color: #fff;
	clear: both;
	padding: 60px 0 16px;
	padding: 6rem 0 1.6rem;
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	width: 29.824561403509%; /* 340px / 1140px */
}

.footer-widgets-1 {
	margin-right: 5.263157894737%; /* 60px / 1140px */
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

.footer-widgets-3 {
	float: right;
}

.footer-widgets a,
.footer-widgets .entry-meta a {
	color: #aaa;
}

.footer-widgets a:hover {
	color: #fff;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.footer-widgets .widget-title {
	color: #fff;
	font-size: 2rem;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
}

.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}

a.social-buttons {
	background-color: #888;
	color: #fff;
	float: left;
	font-size: 1.4rem;
	margin: 0 4px 4px 0;
	margin: 0 0.4rem 0.4rem 0;
	overflow: hidden;
	padding: 4px 8px;
	padding: 0.4rem 0.8rem;
	text-decoration: none;
}

a.social-buttons:hover {
	background-color: #fff;
	color: #222;
}


/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	border-top: 1px solid #777;
  background-color: #ddd;
	padding: 48px 0;
	padding: 4.8rem 0;
	text-align: center;
  color: #555;
  font-size: 0.75em;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer a {
	color: #222;
}

.site-footer a:hover {
	color: #27b4b2;
}


/*
Theme Colors
---------------------------------------------------------------------------------------------------- */

/* Watch Me Code Blue
--------------------------------------------- */

.modern-portfolio-pro-blue .after-entry .entry-title a:hover,
.modern-portfolio-pro-blue .entry-meta a:hover,
.modern-portfolio-pro-blue .entry-title a:hover,
.modern-portfolio-pro-blue .genesis-nav-menu > .right > a:hover,
.modern-portfolio-pro-blue .site-footer a:hover,
.modern-portfolio-pro-blue .site-header .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.modern-portfolio-pro-blue .site-header .genesis-nav-menu a:hover,
.modern-portfolio-pro-blue a {
	color: #13b4f2;
}

.modern-portfolio-pro-blue .footer-widgets .entry-meta a,
.modern-portfolio-pro-blue .footer-widgets .entry-title a,
.modern-portfolio-pro-blue .footer-widgets a {
	color: #aaa;
}

.modern-portfolio-pro-blue .after-entry .entry-title a,
.modern-portfolio-pro-blue .footer-widgets a:hover,
.modern-portfolio-pro-blue .genesis-nav-menu a:hover,
.modern-portfolio-pro-blue a.button,
.modern-portfolio-pro-blue a.button:hover,
.modern-portfolio-pro-blue a.social-buttons {
	color: #fff;
}

.modern-portfolio-pro-blue .entry-meta a,
.modern-portfolio-pro-blue .entry-title a,
.modern-portfolio-pro-blue .genesis-nav-menu a,
.modern-portfolio-pro-blue .sidebar .widget-title a,
.modern-portfolio-pro-blue .site-footer a,
.modern-portfolio-pro-blue .site-title a,
.modern-portfolio-pro-blue .site-title a:hover,
.modern-portfolio-pro-blue a:hover,
.modern-portfolio-pro-blue a.social-buttons:hover {
	color: #222;
}

.modern-portfolio-pro-blue .enews-widget input[type="submit"],
.modern-portfolio-pro-blue .genesis-nav-menu li.highlight-menu-item a:hover,
.modern-portfolio-pro-blue .archive-pagination li a:hover,
.modern-portfolio-pro-blue .archive-pagination li.active a,
.modern-portfolio-pro-blue .site-title a:hover::before,
.modern-portfolio-pro-blue #services a.button,
.modern-portfolio-pro-blue a.button,
.modern-portfolio-pro-blue button,
.modern-portfolio-pro-blue input[type="button"],
.modern-portfolio-pro-blue input[type="reset"],
.modern-portfolio-pro-blue input[type="submit"] {
	background-color: #13b4f2;
}

.modern-portfolio-pro-blue .enews-widget input:hover[type="submit"],
.modern-portfolio-pro-blue #services a.button:hover {
	background-color: #fff;
}

.modern-portfolio-pro-blue button:hover,
.modern-portfolio-pro-blue input:hover[type="button"],
.modern-portfolio-pro-blue input:hover[type="reset"],
.modern-portfolio-pro-blue input:hover[type="submit"],
.modern-portfolio-pro-blue .button:hover {
	background-color: #333;
}

/* Watch Me Code Orange
--------------------------------------------- */

.modern-portfolio-pro-orange .after-entry .entry-title a:hover,
.modern-portfolio-pro-orange .entry-meta a:hover,
.modern-portfolio-pro-orange .entry-title a:hover,
.modern-portfolio-pro-orange .genesis-nav-menu > .right > a:hover,
.modern-portfolio-pro-orange .site-footer a:hover,
.modern-portfolio-pro-orange .site-header .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.modern-portfolio-pro-orange .site-header .genesis-nav-menu a:hover,
.modern-portfolio-pro-orange a {
	color: #ff8748;
}

.modern-portfolio-pro-orange .footer-widgets .entry-meta a,
.modern-portfolio-pro-orange .footer-widgets .entry-title a,
.modern-portfolio-pro-orange .footer-widgets a {
	color: #aaa;
}

.modern-portfolio-pro-orange .after-entry .entry-title a,
.modern-portfolio-pro-orange .footer-widgets a:hover,
.modern-portfolio-pro-orange .genesis-nav-menu a:hover,
.modern-portfolio-pro-orange a.button,
.modern-portfolio-pro-orange a.button:hover,
.modern-portfolio-pro-orange a.social-buttons {
	color: #fff;
}

.modern-portfolio-pro-orange .entry-meta a,
.modern-portfolio-pro-orange .entry-title a,
.modern-portfolio-pro-orange .genesis-nav-menu a,
.modern-portfolio-pro-orange .sidebar .widget-title a,
.modern-portfolio-pro-orange .site-footer a,
.modern-portfolio-pro-orange .site-title a,
.modern-portfolio-pro-orange .site-title a:hover,
.modern-portfolio-pro-orange a:hover,
.modern-portfolio-pro-orange a.social-buttons:hover {
	color: #222;
}

.modern-portfolio-pro-orange .enews-widget input[type="submit"],
.modern-portfolio-pro-orange .genesis-nav-menu li.highlight-menu-item a:hover,
.modern-portfolio-pro-orange .archive-pagination li a:hover,
.modern-portfolio-pro-orange .archive-pagination li.active a,
.modern-portfolio-pro-orange .site-title a:hover::before,
.modern-portfolio-pro-orange #services a.button,
.modern-portfolio-pro-orange a.button,
.modern-portfolio-pro-orange button,
.modern-portfolio-pro-orange input[type="button"],
.modern-portfolio-pro-orange input[type="reset"],
.modern-portfolio-pro-orange input[type="submit"] {
	background-color: #ff8748;
}

.modern-portfolio-pro-orange .enews-widget input:hover[type="submit"],
.modern-portfolio-pro-orange #services a.button:hover {
	background-color: #fff;
}

.modern-portfolio-pro-orange button:hover,
.modern-portfolio-pro-orange input:hover[type="button"],
.modern-portfolio-pro-orange input:hover[type="reset"],
.modern-portfolio-pro-orange input:hover[type="submit"],
.modern-portfolio-pro-orange .button:hover {
	background-color: #333;
}


/* Watch Me Code Purple
--------------------------------------------- */

.modern-portfolio-pro-purple .after-entry .entry-title a:hover,
.modern-portfolio-pro-purple .entry-meta a:hover,
.modern-portfolio-pro-purple .entry-title a:hover,
.modern-portfolio-pro-purple .genesis-nav-menu > .right > a:hover,
.modern-portfolio-pro-purple .site-footer a:hover,
.modern-portfolio-pro-purple .site-header .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.modern-portfolio-pro-purple .site-header .genesis-nav-menu a:hover,
.modern-portfolio-pro-purple a {
	color: #a83d7e;
}

.modern-portfolio-pro-purple .footer-widgets .entry-meta a,
.modern-portfolio-pro-purple .footer-widgets .entry-title a,
.modern-portfolio-pro-purple .footer-widgets a {
	color: #aaa;
}

.modern-portfolio-pro-purple .after-entry .entry-title a,
.modern-portfolio-pro-purple .footer-widgets a:hover,
.modern-portfolio-pro-purple .genesis-nav-menu a:hover,
.modern-portfolio-pro-purple a.button,
.modern-portfolio-pro-purple a.button:hover,
.modern-portfolio-pro-purple a.social-buttons {
	color: #fff;
}

.modern-portfolio-pro-purple .entry-meta a,
.modern-portfolio-pro-purple .entry-title a,
.modern-portfolio-pro-purple .genesis-nav-menu a,
.modern-portfolio-pro-purple .sidebar .widget-title a,
.modern-portfolio-pro-purple .site-footer a,
.modern-portfolio-pro-purple .site-title a,
.modern-portfolio-pro-purple .site-title a:hover,
.modern-portfolio-pro-purple a:hover,
.modern-portfolio-pro-purple a.social-buttons:hover {
	color: #222;
}

.modern-portfolio-pro-purple .enews-widget input[type="submit"],
.modern-portfolio-pro-purple .genesis-nav-menu li.highlight-menu-item a:hover,
.modern-portfolio-pro-purple .archive-pagination li a:hover,
.modern-portfolio-pro-purple .archive-pagination li.active a,
.modern-portfolio-pro-purple .site-title a:hover::before,
.modern-portfolio-pro-purple #services a.button,
.modern-portfolio-pro-purple a.button,
.modern-portfolio-pro-purple button,
.modern-portfolio-pro-purple input[type="button"],
.modern-portfolio-pro-purple input[type="reset"],
.modern-portfolio-pro-purple input[type="submit"] {
	background-color: #a83d7e;
}

.modern-portfolio-pro-purple .enews-widget input:hover[type="submit"],
.modern-portfolio-pro-purple #services a.button:hover {
	background-color: #fff;
}

.modern-portfolio-pro-purple button:hover,
.modern-portfolio-pro-purple input:hover[type="button"],
.modern-portfolio-pro-purple input:hover[type="reset"],
.modern-portfolio-pro-purple input:hover[type="submit"],
.modern-portfolio-pro-purple .button:hover {
	background-color: #333;
}


/* Watch Me Code Red
--------------------------------------------- */

.modern-portfolio-pro-red .after-entry .entry-title a:hover,
.modern-portfolio-pro-red .entry-meta a:hover,
.modern-portfolio-pro-red .entry-title a:hover,
.modern-portfolio-pro-red .genesis-nav-menu > .right > a:hover,
.modern-portfolio-pro-red .site-footer a:hover,
.modern-portfolio-pro-red .site-header .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.modern-portfolio-pro-red .site-header .genesis-nav-menu a:hover,
.modern-portfolio-pro-red a {
	color: #fd5452;
}

.modern-portfolio-pro-red .footer-widgets .entry-meta a,
.modern-portfolio-pro-red .footer-widgets .entry-title a,
.modern-portfolio-pro-red .footer-widgets a {
	color: #aaa;
}

.modern-portfolio-pro-red .after-entry .entry-title a,
.modern-portfolio-pro-red .footer-widgets a:hover,
.modern-portfolio-pro-red .genesis-nav-menu a:hover,
.modern-portfolio-pro-red a.button,
.modern-portfolio-pro-red a.button:hover,
.modern-portfolio-pro-red a.social-buttons {
	color: #fff;
}

.modern-portfolio-pro-red .entry-meta a,
.modern-portfolio-pro-red .entry-title a,
.modern-portfolio-pro-red .genesis-nav-menu a,
.modern-portfolio-pro-red .sidebar .widget-title a,
.modern-portfolio-pro-red .site-footer a,
.modern-portfolio-pro-red .site-title a,
.modern-portfolio-pro-red .site-title a:hover,
.modern-portfolio-pro-red a:hover,
.modern-portfolio-pro-red a.social-buttons:hover {
	color: #222;
}

.modern-portfolio-pro-red .enews-widget input[type="submit"],
.modern-portfolio-pro-red .genesis-nav-menu li.highlight-menu-item a:hover,
.modern-portfolio-pro-red .archive-pagination li a:hover,
.modern-portfolio-pro-red .archive-pagination li.active a,
.modern-portfolio-pro-red .site-title a:hover::before,
.modern-portfolio-pro-red #services a.button,
.modern-portfolio-pro-red a.button,
.modern-portfolio-pro-red button,
.modern-portfolio-pro-red input[type="button"],
.modern-portfolio-pro-red input[type="reset"],
.modern-portfolio-pro-red input[type="submit"] {
	background-color: #fd5452;
}

.modern-portfolio-pro-red .enews-widget input:hover[type="submit"],
.modern-portfolio-pro-red #services a.button:hover {
	background-color: #fff;
}

.modern-portfolio-pro-red button:hover,
.modern-portfolio-pro-red input:hover[type="button"],
.modern-portfolio-pro-red input:hover[type="reset"],
.modern-portfolio-pro-red input:hover[type="submit"],
.modern-portfolio-pro-red .button:hover {
	background-color: #333;
}


/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1267px) {

	.site-inner,
	.wrap {
		max-width: 90%;
	}


}

@media only screen and (max-width: 1000px) {

	.content,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-primary,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}

	.header-image .site-header .site-title a {
		background-position: top !important;
	}
	
	.entry-comments,
	.entry-footer .entry-meta,
	.site-header {
		padding: 0;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .search-form,
	.site-header .title-area,
	.site-header .widget-area,
	.site-title {
		text-align: center;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 16px;
		padding: 1.6rem;
	}

	.site-header .search-form {
		margin: 16px auto ;
		margin: 1.6rem auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}
	


	.site-footer,
	.site-header .wrap {
		padding: 24px 0;
		padding: 2.4rem 0;
	}

	.footer-widgets-1 {
		margin: 0;
	}


	/*20150618-MP-START: Adjust bundle layout for tablet screens */



	div[id*="edd_download_"] {
	  margin: 3px;
	  width: 48% !important;
	  min-height: 350px !important;
	  min-height: 35.0rem !important;
	}

	/*20150618-MP-END: Adjust bundle layout for tablet */

}

@media only screen and (max-width: 600px) {

	.mpp-home .content .featuredpost {
		text-align: center;
	}
	
	.mpp-home .content .featuredpost .entry,
	.mpp-home .content .featuredpost .entry:nth-of-type(3n+3) {
		float: none;
		margin: 0 auto 24px;
		margin: 0 auto 2.4rem;
		max-width: 340px;
		width: 100%;
	}
	
	.responsive-menu {
		display: none;
	}
	
	#responsive-menu-icon {
		display: block;
	}

	/*20150618-MP-START: Adjust bundle layout for tablet screens */


	div[id*="edd_download_"] {
	  margin: 3px;
	  width: 100% !important;
	  min-height: 350px !important;
	  min-height: 35.0rem !important;

	}

	/*20150618-MP-END: Adjust bundle layout for tablet */



}

@media only screen and (max-width: 480px) {

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100% !important;
 	}
	
	.header-image .site-header .site-title a {
		background-size: contain !important;
	}

	/*MP: Header & Nav */

		.title-area {
			width: 60%;
			max-height: 4.0rem;
		}

		#responsive-menu-icon {
			position: absolute;
	  		top: 33px;
	  		right: 0;
	  		width: 20%;
		}
		  

		ul#menu-header li[id*="menu-item-"] {
			width: 100%;
			text-align: center;
		}

	/*MP: Homepage */

		#about {
			padding-top: 1.5rem;
			text-align:center;
		}

		h1 {
			font-size: 3.0rem;
		}

		#hero-subhead {
			font-size: 2.0rem;
		}

		#about a.button,
		#final-cta a.button {
			display: block;
	  		font-size: 1.6rem;
	  		width: 90%;
	  		margin: 0 auto;
		}

		#about .fve-video-wrapper,
		#about #vid-click-trigger {
			display:none;
		}

		#main-testi,
		#benefits,
		#derick {
			padding: 30px 30px;
		}

		#main-testi blockquote {
			padding: 20px 0;
			padding: 2.0rem 0;
			margin: 10px 0;
			margin: 1.0rem 0;
		}

		#benefits,
		.benefit-sub,
		#benefit-list,
		.skills-box {
			width: 100%;
			margin-bottom: 1rem;
		}

		#benefit-list * span.list-p {
			padding-left: 25px;
		}

		#benefit-list * h3 {
			font-weight: 700;
			line-height: 1.3;
			margin-bottom: 20px;
			text-indent: -25px;
			padding-left: 25px;
		}

		.site-inner, .wrap  {
  			max-width: 100%;
  		}

  		#skills .skills-box h1 {
  			padding-left: 10px;
  		} 

  		#skills:after,
  		#final-cta:after {
  			display:none;
  		}

  		#skills .textwidget {
  			max-height: 2050px;
  		}

  		#derick .derick-bio-wrapper .round {
  			padding: 0 60px 30px 60px;
  		}

  		.derick-list ul {
  			margin-left: 30px;
  			list-style-position: outside;
  		}

  		#derick .testi-1 {
  			padding-right: 0;
  			padding-bottom: 30px;
  			border-right: 0;
 			border-bottom: solid 2px #666;
  		}

  		#derick .testi-2 {
  			padding-left: 0;
 			padding-top: 30px;
  		}

		.minor-testimon {
			padding: 25px;
		}

		#final-cta h1 {
			margin: 0 7px;
		}

		/*20150618-MP-START: Adjust layout of bundles and guarantee img for narrow screens */ 

		#bundles .edd_download {
			max-width: 100%;
			min-height: 0px;
  			min-height: 0rem;
  			min-height: 350px;
		  	min-height: 35.0rem;
		}

		div[id*="edd_download_"] {
	  		width: 100% !important;
		}

		#guarantee img {
			display: block;
  			margin: 0 auto;
  			padding-top: 25px;
		}

		/*20150618-MP-END: Adjust layout of bundles for narrow screens */
}

/* ----------------------------------------------------------- */

#rcp_auto_renew_wrap {
  display: none !important;
}

#rcp_submit_wrap {
/*margin-top: 4em;*/
clear: both;
}
/*MP: Remove margins to adjust form spacing with discount code */

/*#rcp_registration_form fieldset {
  margin-top: 2em;
  margin-bottom: 2em;
}*/

/*MP: END */

.card-expiry-month {
  display: inline;
  width: 100px;
  margin-left: 2em;
}

/*MP: Added to adjust size of discount code field */

input#rcp_discount_code {
	padding: 0.8rem;
	padding: 8px;
}

/*MP: END */

.card-expiry-year {
  display: inline;
  width: 100px;
}

.rcp_subscription_fieldset ul li .rcp_subscription_level_name {
  font-weight: bold;
}

.header-image .site-title a {
  background-size: 300px 90px !important;
}

.author-box, .entry-author, .entry-comments-link { 
  display: none;
}

.entry-meta {
  color: transparent;
}

.entry-meta .entry-time, .entry-meta .entry-categories {
  color: #888;
}

#disqus_thread {
  border-top: 1px solid #ccc;
  background-color: #f7f7f7;
  padding: 25px;
  margin-bottom: 20px;
}

ul.cat-list {
  text-align: justify;
}

ul.cat-list li.cat-item {
  display: inline-block;
  padding: 10px;
  height: 35px;
}

hr.light {
  margin: 3em !important;
  border: 1px solid #fefefe !important;
}

.strikethrough {
    position: relative !important;
    display: inline-block !important;
}
.strikethrough::before, .strikethrough::after {
    content: '' !important;
    width: 100% !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
}
.strikethrough::before {
    border-bottom: 1px solid red !important;
    -webkit-transform: skewY(-25deg) !important;
    transform: skewY(-25deg) !important;
}
.strikethrough::after {
    border-bottom: 1px solid red !important;
    -webkit-transform: skewY(25deg) !important;
    transform: skewY(25deg) !important;
}

.site-survey {
  position: fixed !important; 
  top: 0px;
  left: 0px;
}

.site-survey img {
  height: 150px;
  width: 150px;
}

.rcp_message.error {
  margin: 1em;
  padding: 1em;
  border: #700;
  background-color: #fee;
}

.rcp_error {
  color: #a00;
  font-weight: bold;
}

/*
 * General WMC Stuff
*/

.wmc-no-comments {
  margin: 0 0 1em 0;
  padding: 1em 2em 0 2em;
  border: 1px solid #bbb;
  background-color: #f7f7f7;
  color: #777;
}

.wmc-no-comments p {
  margin: 0 0 1em 0;
  padding: 0;
  font-weight: normal;
  text-align: center;
}

.wmc-no-comments h1 {
  font-weight: bold;
  font-size: 1em;
  text-decoration: underline;
}

.clearfix:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}

.center {
  margin: 0 auto;
}

/*
 *
 * WMC EPISODE LISTING STYLES
 * --------------------------
 *
*/

.wmc-episode-entry {
  margin-bottom: 2em;
  padding: 0.5em;
}

.wmc-episode-entry .one-third,
.wmc-episode-entry .two-sixths {
	width: 32%;
}

.wmc-episode-entry .two-thirds,
.wmc-episode-entry .four-sixths {
	width: 65%;
  margin-left: 0;
}

@media only screen and (max-width: 1024px) {
  .wmc-episode-entry .one-third,
  .wmc-episode-entry .two-sixths {
    width: 100%;
  }

  .wmc-episode-entry .two-thirds,
  .wmc-episode-entry .four-sixths {
    width: 100%;
  }

  .wmc-episode-entry h4.wmc-episode-title{
    font-size: 1em;
  }
}

@media only screen and (max-width: 675px) {
  .wmc-episode-entry .one-third,
  .wmc-episode-entry .two-sixths {
    width: 100%;
  }
}

.wmc-episode-entry .wmc-episode-title{
  font-weight: bold;
}

.wmc-episode-entry .wmc-episode-title a{
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

.wmc-episode-entry .wp-post-image {
  display: block;
}

.wmc-episode-entry a.view-episode {
  display: block;
  margin: 0.75em 0 0.5em 0.25em;
}

.wmc-episode-entry a.view-episode:hover {
  color: #67f4f2;
}

.wmc-episode-entry a.button {
  margin: 0.5em 0 0 0;
  padding: 0.35em;
}

.wmc-episode-entry .for-sale {
  margin-bottom: 0;
}

.wmc-catalog-section .wmc-episode-entry {
  margin-bottom: 0;
}

/* 
 * WMC SERIES STYLES
 * -----------------
 */

.wmc-series-section {
  background-color: #F1D649;
  height: 80px;
}


.wmc-series-section h2 {
  color: #444;
  background-color: #F7DC4F;
  padding: 0.4em 0.25em;
  font-size: 1.4em;
  font-weight: bold;
  height: 75px;
  box-shadow: 0px 2px 4px #888;
}

.wmc-series-list-content {
  background-color: #fff;
  padding-top: 1em;
}

.wmc-series-list-content p {
  padding: 0;
  margin: 0;
}

.wmc-series-list-content .wmc-series-meta {
  display: block;
  float: none;
  padding: 0;
  font-size: 0.75em;
  color: #999;
  margin-bottom: 0.5em;
}

.wmc-series-list-content .wmc-episode-title {
  margin-bottom: 0;
}

.wmc-series-content .entry-content {
  padding: 40px 40px 0px 40px;
}

.wmc-series-title-intro {
  border-bottom: 1px solid #777;
  margin-bottom: 1em;
  display: inline-block;
  clear: both;
}

.wmc-series-title {
}

.wmc-series-intro {
  padding: 2em;
  margin: 0 0 0 0;
  background-color: #222;
  color: #fff;
}

.wmc-series-intro .tagline {
  font-size: 0.9em;
  font-weight: 100;
  color: #ddd;
}

.wmc-series-intro a {
  color: #F1D649;
  text-decoration: none;
}

.wmc-series-intro a:hover {
  color: #fff;
}

.wmc-series-intro .two-thirds {
  margin-left: 0;
}

.wmc-series-intro .one-thirds {
  margin-left: 0;
}

.wmc-series-intro .one-third .title-image{
  float: right;
  padding: 1em;
  margin: 0.5em 0 0 0;
  background-color: #fff;
  border-radius: 0.25em;
  line-height: 0;
}

.wmc-series-archive .site-inner {
	max-width: 100%;
}

.wmc-series-intro .widget {
  margin-bottom: 0 !important;
}

.wmc-series-intro .widget .widget-wrap article {
  margin-bottom: 0 !important;
}

.wmc-series-intro .widget .widget-wrap article.entry {
  margin-bottom: 0 !important;
}

.wmc-series-intro .widget .widget-wrap article.entry p:last-child{
  margin-bottom: 0 !important;
}

img.wmc-series-in-progress-banner {
  width: 100px;
  height: 100px;
  position: absolute;
}

.wmc-series-title-image {
  width: 1280px;
}

.wmc-series-tile-image img {
  margin: 0px auto;
}

.wmc-series-episode-list-wrapper {
  margin: 1em 0;
}

.wmc-series-episode-list-wrapper ul{
  list-style: none;
  margin: 0;
}

.wmc-series-episode-list-wrapper ul li:nth-child(odd){
  background-color: #f3f3f3;
}

.wmc-series-episode-list-wrapper ul li{
  margin-bottom: 0.25em;
  padding: 0.25em;
}

.wmc-series-episode-list-wrapper ul li.free-episode:before{
  content:"FREE!";
  background-color: #Ffe649;
  padding: 0 0.5em;
  border: 1px solid #ccc;
  color: #444;
  float: right;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 5px;
}

.wmc-series-episode-list-wrapper ul li .episode-duration {
  font-size: 0.75em;
  color: #555;
}

.wmc-series-episode-list-wrapper .wmc-series-episode-duration {
  display: inline;
  color: #aaa;
  font-size: 0.75em;
}

.wmc-series-episode-list {
  padding-top: 0em;
}

.wmc-series-header-content {
  margin: 2em 0 0 0;
}

.wmc-series-buynow-box {
  display: block;
  border: 1px solid #779977;
  background-color: #eeffee;
  border-radius: 10px;
  padding: 1em;
  margin: 0.25em;
}

.wmc-series-buynow-box h2 {
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ccc;
}

.wmc-series-buynow-box a.button {
  width: 100%;
  text-align: center;
}

.wmc-series-buynow-box p {
  margin-bottom: 0.5em;
}

.wmc-series-buynow-box ul {
  font-size: 0.9em;
  margin-bottom: 1em;
  margin-top: 0;
}

.wmc-series-buynow-box ul li {
  margin-left: 2em;
}

@media only screen and (max-width: 1280px) {
  .wmc-series-title-image {
    float: none;
    display: block;
    margin: 0 auto;
  }

  .wmc-series-buynow-box {
    display: block;
    float: none;
    width: 100%;
    height: auto;
  }
}

/*
 *
 * WMC Episode Styles
 * ------------------
 *
*/

.wmc-episode-meta-list {
  text-align: right;
  color: #777;
  font-size: 0.75em;
  margin: 1em 0;
}

.wmc-episode-meta-list .wmc-episode-meta-entry {
  display: inline;
  margin: 0 0.25em 0 1em;
}

.wmc-episode-meta-list .wmc-episode-meta-date {
  font-weight: bold;
}

.wmc-series-episode-list-title {
  font-weight: bold;
  background-color: #F1D649;
  border-radius: 0.25em 0.25em 0 0em;
  border-bottom: 1px solid #BFA93A;
  border-right: 1px solid #BFA93A;
  padding: 0.5em;
}

.wmc-series-episode-list-title h4 {
  margin: 0;
  padding: 0;
  float: left;
}

.wmc-series-episode-list-title .wmc-series-meta {
  float: right;
  color: #807127;
}

.wmc-episode-links {
  padding: 1em;
  margin: 1em 0em;
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  border-radius: 0.25em;
  clear: both;
}

.wmc-episode-links .wmc-episode-download-link {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.wmc-episode-links .wmc-episode-series-link {
  padding: 0;
  margin: 0;
  float: right;
  display: inline-block;
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .wmc-episode-links .wmc-episode-download-link {
    width: 100%;
    display: block;
  }

  .wmc-episode-links .wmc-episode-series-link {
    width: 100%;
    display: block;
    text-align: left;
  }
}

/*
 * WMC Favorites Styles
 * --------------------
 */

button.simplefavorite-button {
  display: inline;
  padding: 0.25em;
  font-size: 1em;
  width: 50px;
  margin: 0 0.5em 0 0;
  background: #fff;
  color: #333;
  border: 1px solid #BFA93A;
  border-radius: 0.25em;
}

button.simplefavorite-button.active {
  background-color: #F9ECAA;
}

.wmc-favorites-entry {
  margin-bottom: 1em;
  padding: 0 0 0.5em 2em;
}

.wmc-favorites-entry h1 {
  font-size: 1.25em;
  padding-bottom: 0;
  margin-bottom: 0.25em;
}
.wmc-favorites-entry h1 > a {
  color: #222;
  text-decoration: none;
  top: 0.25em;
}

.wmc-favorites-image {
  display: inline-block;
  float: left;
  margin-right: 1em;
}

.wmc-favorites-image img {
  height: 90px;
  width: 160px;
}

.wmc-favorites-excerpt {
  display: inline;
  color: #222;
  font-size: 0.75em;
}

.wmc-favorites-entry button.simplefavorite-button {
  position: relative;
  font-size: 0.60em;
  margin-right: 0.75em;
  top: -0.20em;
}

.wmc-favorites-title {
  padding-bottom: 0.25em;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

@media only screen and (max-width: 675px) {
  .wmc-favorites-image {
    text-align: center;
    margin: 0 auto;
    display: block;
    float: none;
  }

  .wmc-favorites-image img{
    height: 180px;
    width: 320px;
  }

}

.wmc-no-favorites {
  position: relative;
  top: -1em;
  color: #777;
  padding: 0;
  margin: 0 0 1em 0;
}

/* 
 * WMC INTERVIEWS STYLES
 * ---------------------
 */

.wmc-interviews-list-content {
  padding-top: 1em;
}

.wmc-interviews-content .entry-content {
  padding: 40px 40px 0px 40px;
}

.wmc-interviews-intro {
  padding: 2em;
  margin: 0 0 0 0;
  background-color: #222;
  color: #fff;
}

.wmc-interviews-entry {
  margin-bottom: 2em;
  padding: 0.5em;
}


.wmc-interviews-entry.one-third,
.wmc-interviews-entry.two-sixths {
	width: 30%;
}

@media only screen and (max-width: 1024px) {
  .wmc-interviews-entry.one-third,
  .wmc-interviews-entry.two-sixths {
    width: 45%;
  }

  .wmc-interviews-entry h4.wmc-interviews-title{
    font-size: 1em;
  }
}

@media only screen and (max-width: 675px) {
  .wmc-interviews-entry.one-third,
  .wmc-interviews-entry.two-sixths {
    width: 100%;
  }
}

.wmc-interviews-featured {
  width: 640px;
  margin: 0 auto;
}

.wmc-interviews-featured .wmc-interviews-title {
  font-size: 1.5em;
}

.wmc-interviews-entry .wmc-interviews-title{
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.wmc-interviews-entry .wmc-interviews-title a{
  color: #000;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

.wmc-interviews-entry .wmc-interviews-title a:hover{
  color: #000;
}

.wmc-interviews-entry .wmc-interviews-title a:active{
  color: #000;
}

.wmc-interviews-entry .wp-post-image {
  display: block;
  margin: 0 auto;
}

.wmc-interviews-archive .site-inner {
	padding: 0;
	max-width: 100%;
}

.wmc-interviews-intro .widget {
  margin-bottom: 0 !important;
}

.wmc-interviews-intro .widget .widget-wrap article {
  margin-bottom: 0 !important;
}

.wmc-interviews-intro .widget .widget-wrap article.entry {
  margin-bottom: 0 !important;
}

.wmc-interviews-intro .widget .widget-wrap article.entry p:last-child{
  margin-bottom: 0 !important;
}

img.wmc-interviews-in-progress-banner {
  width: 100px;
  height: 100px;
  position: absolute;
}

.wmc-interviews-featured img.wmc-interviews-in-progress-banner {
  width: 100px;
  height: 100px;
  position: absolute;
}

.wmc-interviews-title-image {
  width: 640px;
  margin: 0 auto;
}

.wmc-interviews-episode-list-wrapper {
  margin: 1em 0;
}

.wmc-interviews-episode-list-wrapper ul li{
  margin-left: 3em;
}

.wmc-interviews-meta-list {
  color: #777;
  font-size: 0.75em;
  margin: 1em 0;
}

.wmc-interviews-meta-list .wmc-interviews-meta-entry {
  display: inline;
  margin: 0 1em 0 0;
}

.wmc-interviews-meta-list .wmc-interviews-meta-date {
  font-weight: bold;
}

.wmc-interviews-links {
  padding: 1em;
  margin: 1em 0em;
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  clear: both;
}

.wmc-interviews-links .wmc-interviews-download-link {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.wmc-interviews-links .wmc-interviews-series-link {
  padding: 0;
  margin: 0;
  float: right;
  display: inline-block;
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .wmc-interviews-links .wmc-interviews-download-link {
    width: 100%;
    display: block;
  }

  .wmc-interviews-links .wmc-interviews-series-link {
    width: 100%;
    display: block;
    text-align: left;
  }
}

.wmc-interviews-not-a-subscriber {
  margin: 1em 0;
  padding: 0.5em;
  border: 1px solid #ccc;
  background-color: #efe;
  text-align: center;
}

.wmc-interviews-not-a-subscriber h2{
  font-weight: bold;
  text-decoration: underline;
}


/* 
 * WMC EBOOKS STYLES
 * -----------------
 */

.wmc-ebooks-content .entry-content {
  width: 75%;
  margin: 0 auto;
}

.wmc-ebooks-image {
  width: 250px;
  margin: 1em auto;
  text-align: center;
}

.wmc-ebooks-intro {
  padding: 2em;
  margin: 0 0 3em 0;
  background-color: #222;
  color: #fff;
}

.wmc-ebooks-entry {
  width: 75%;
  margin: 0 auto 1em auto;
  padding: 1em;
}

.wmc-ebooks-entry .wmc-ebooks-buy-now {
  margin: 0 auto;
  text-align: center;
  padding: 1em;
}

.wmc-ebooks-entry .wmc-ebooks-excerpt {
  margin: 1em 0;
  color: #222;
  font-size: 0.75em;
}

@media only screen and (max-width: 1024px) {
  .wmc-ebooks-entry {
    width: 100%;
  }

  .wmc-ebooks-entry h4.wmc-ebooks-title{
    font-size: 1em;
  }
}

.wmc-ebooks-entry .wmc-ebooks-title{
  font-weight: bold;
}

.wmc-ebooks-entry .wmc-ebooks-title a{
  color: #000;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

.wmc-ebooks-entry .wmc-ebooks-title a:hover{
  color: #000;
}

.wmc-ebooks-entry .wmc-ebooks-title a:active{
  color: #000;
}

.wmc-ebooks-entry .wp-post-image {
  display: block;
  margin: 0 auto;
}

.wmc-ebooks-archive .site-inner {
	padding: 0;
	max-width: 100%;
}

.wmc-ebooks-intro .widget {
  margin-bottom: 0 !important;
}

.wmc-ebooks-intro .widget .widget-wrap article {
  margin-bottom: 0 !important;
}

.wmc-ebooks-intro .widget .widget-wrap article.entry {
  margin-bottom: 0 !important;
}

.wmc-ebooks-intro .widget .widget-wrap article.entry p:last-child{
  margin-bottom: 0 !important;
}

img.wmc-ebooks-in-progress-banner {
  width: 100px;
  height: 100px;
  position: absolute;
}

.wmc-ebooks-featured img.wmc-ebooks-in-progress-banner {
  width: 100px;
  height: 100px;
  position: absolute;
}

.wmc-ebooks-title-image {
  width: 640px;
  margin: 0 auto;
}

.wmc-ebooks-episode-list-wrapper {
  margin: 1em 0;
}

.wmc-ebooks-episode-list-wrapper ul li{
  margin-left: 3em;
}

.wmc-ebooks-meta-list {
  color: #777;
  font-size: 0.75em;
  margin: 1em 0;
}

.wmc-ebooks-meta-list .wmc-ebooks-meta-entry {
  display: inline;
  margin: 0 1em 0 0;
}

.wmc-ebooks-meta-list .wmc-ebooks-meta-date {
  font-weight: bold;
}

.wmc-ebooks-links {
  padding: 0.25em;
  margin: 1em 0em;
  clear: both;
}

.wmc-ebooks-links h3 {
  font-weight: bold;
  margin-bottom: 1em;
}

.wmc-ebooks-links .wmc-ebooks-download-link p {
  color: #777;
  font-size: 0.8em;
  margin-top: 1em;
  margin-bottom: 0;
}


.wmc-ebooks-links .wmc-ebooks-download-link {
  text-align: center;
  padding: 0;
  margin: 0;
}

.wmc-ebooks-links .wmc-ebooks-partof-link {
  padding: 0;
  margin: 0;
  display: inline-block;
  float: right
}

.wmc-ebooks-archive-image img {
  width: 100px;
}

.wmc-ebooks-image img {
  width: 250px;
}

@media only screen and (max-width: 1024px) {
  .wmc-ebooks-links .wmc-ebooks-download-link {
    width: 100%;
    display: block;
  }

  .wmc-ebooks-links .wmc-ebooks-series-link {
    width: 100%;
    display: block;
    text-align: left;
  }
}

/*
 * Homepage : Welcome
*/

.welcome {
  text-align: center;
}

.welcome h1 {
  font-size: 3.5em;
  margin: 1em 0;
}

.welcome .welcome-video {
  width: 75%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .welcome .welcome-video {
    width: 100%;
  }
}

/*
 * Tech Logo List
*/

#wmc-tech-list {
  margin-bottom: -25px;
}

.wmc-tech-logo-list h1, 
.wmc-tech-logo-list h2, 
.wmc-tech-logo-list h3, 
.wmc-tech-logo-list h4, 
.wmc-tech-logo-list h5 {
  text-align: center;
  color: #222;
  font-weight: bold;
  background-color: #F1D649;
  padding: 0.5em;
}

.wmc-tech-logo-list ul {
  list-style: none;
  text-align: center;
}

.wmc-tech-logo-list ul li {
  display: inline;
  margin: 1em;
}

.wmc-tech-logo-list ul li img {
  height: 75px;
  margin-top: 2em;
}

/* 
 * EDD Checkout
*/

#edd_checkout_user_info, 
#edd_register_account_fields, 
#edd_cc_fields,
#edd_cc_address {
  background-color: #eee; 
  border: 2px solid #ccc !important; 
  padding: 1em !important;
}

#edd_checkout_user_info legend, 
#edd_register_account_fields legend, 
#edd_cc_fields legend,
#edd_cc_address legend {
  width: initial !important;
  background-color: #fff; 
  border-radius: 0.75em; 
  border: 2px solid #ccc !important; 
  padding: 0.25em 0.5em !important;
}

/*
 *
 * WMC Page Header and Page Segments
 *
*/

.wmc-page-header {
  padding: 2em;
  margin: 0 0 2em 0;
  background-color: #222;
  color: #fff;
  width: 100%;
}

/*
 *
 * WMC Catalog
 *
*/

.wmc-catalog .site-inner {
	max-width: 100%;
}

.wmc-catalog h4 {
  width: 100%;
}

.wmc-catalog .full{
  width: 100%;
  margin: 0;
  padding: 0;
}

.wmc-catalog .one-half {
  width: 49%;
  margin: 0;
  padding: 0;
}

.wmc-catalog .one-half.left {
  float: left;
}

.wmc-catalog .one-half.right {
  float: right;
}

.wmc-catalog .two-thirds {
  float: left;
  margin-left: 0;
}

.wmc-catalog .one-third {
  float: right;
  margin-left: 0;
}

.wmc-catalog .one-third img {
  float: right;
}

.wmc-catalog-intro {
}

.wmc-catalog-intro .widget {
  margin-bottom: 0 !important;
}

.wmc-catalog-intro .widget .widget-wrap article.entry {
  margin-bottom: 0 !important;
}

.wmc-catalog-section h4.widget-title {
  font-weight: bold;
  background-color: #F1D649;
  padding: 0.5em;
  border-radius: 0.25em 0.25em 0 0;
  background-clip: padding-box;
  border-bottom: 1px solid #BFA93A;
  border-right: 1px solid #BFA93A;
}

.wmc-catalog-highlight .wmc-catalog-section h4.widget-title {
  color: #fff;
  background-color: #27B460;
  border-bottom: 1px solid #007420;
  border-right: 1px solid #007420;
}

.wmc-catalog-section h4.widget-title a {
  color: #000;
  text-decoration: none;
  display: block;
  width: 100%;
}

.wmc-catalog-section h4.widget-title a:hover {
  color: #104A49;
}

.wmc-catalog-highlight .wmc-catalog-section h4.widget-title a {
  color: #fff;
}

.wmc-catalog-highlight .wmc-catalog-section h4.widget-title a:hover {
  color: #030;
}

.wmc-catalog-entry {
  margin: 0 0.5em;
}

.wmc-catalog-section .wmc-catalog-entry.recent-list {
  display: block;
  height: 8em;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.wmc-catalog-section .wmc-catalog-entry.recent-list {
  font-size: 0.75em;
}

.wmc-catalog-section .wmc-catalog-entry.recent-list h4 {
  font-size: 1.25em;
  margin-bottom: 0.25em;
}

.wmc-catalog-section .wmc-catalog-footer {
  margin: 0 0.5em;
  font-size: 0.75em;
  font-weight: bold;
}

.wmc-catalog-section .wmc-catalog-entry.one-half {
  padding: 0 2.5em 1em 0.5em;
  height: auto;
}

/*
 * WMC Guides
 *
*/

.wmc-series-list-content.guides .wmc-episode-entry {
  padding: 1em;
  margin-bottom: 0.5em;
}

.wmc-series-list-content.guides .wmc-episode-entry:nth-child(odd) {
  background-color: #eee;
  border-radius: 0.5em;
}

.wmc-series-list-content.guides .wmc-episode-entry a.img-link img{
  margin: 0 0 0 auto;
}

.wmc-series-list-content.guides .wmc-episode-entry p {
  margin-bottom: 0;
}

.wmc-guides-footer {
  padding: 1em;
  border-top: 1px solid #ccc;
}

.wmc-guides-footer h2 {
  font-weight: bold;
}

.wmc-guides .entry-content {
  margin-top: 1em;
}

h1.guide-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25em;
}

.wmc-guides .entry-content h2 {
  margin-top: 1.5em;
  font-weight: bold;
}

.wmc-guides .additional-info {
  background-color: #F9F0C2;
  border-radius: 0.25em;
  border-left: 4em solid #F1D649;
  padding: 0;
  margin: 0 auto 1em auto;
  clear: both;
  float: none;
  width: 75%;
}

.wmc-guides .additional-info p {
  margin: 0;
}

.wmc-guides .additional-info .icon {
  float: left;
  font-size: 1.5em;
  padding: 0.75em;
  position: relative;
  margin-left: -2.6em;
}

.wmc-guides .additional-info .info {
  float: left;
  padding: 1em;
}

.wmc-guide-ebook {
  margin: 2em auto 1em auto;
  width: 75%;
}

.wmc-guide-ebook .two-thirds {
  padding-left: 1em;
  padding-right: 1em;
  margin: 0;
}

.wmc-guide-ebook .one-third {
  margin: 0;
}

/*
 * Guide - Buy Now box
*/

.wmc-guide-buy-now {
  margin: 0.5em auto;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-left: 5em solid #0a0;
  background-color: #efe;
  text-align: center;
  width: 75%;
  border-radius: 0.25em;
}

.wmc-guide-buy-now .icon {
  float: left;
  font-size: 2em;
  padding: 0 0.75em;
  position: relative;
  margin-left: -2.75em;
  color: #fff;
}

.wmc-guide-buy-now p {
  margin-bottom: 0.25em;
}

.wmc-guide-buy-now h2{
  font-weight: bold;
  padding-bottom: 0.25em;
  padding-top: 0;
  margin-top: 0 !important;
  margin-bottom: 0.25em;
  border-bottom: 1px solid #cec;
}


@media only screen and (max-width: 1024px) {
  .wmc-guide-buy-now {
    width: 100%;
    margin: 0;
  }
}


@media only screen and (max-width: 1024px) {

  .wmc-guide-buy-now {
    width: 100%;
    margin: 1em 0;
  }

}

/*
 *
 * Recent Guides - Homepage Widget
 *
*/

.wmc-recent-guides {
  margin-bottom: 1em;
}

.wmc-recent-guides .one-third {
  width: 33.333333%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.wmc-recent-guides h1 {
  text-align: center;
  display: block;
  margin: 1em 0;
}

.wmc-recent-guides h4 {
  font-size: 1em;
  font-weight: bold;
}

.wmc-recent-guides h5.tagline {
  font-size: 0.8em;
  padding: 0 3em 1em 3em;
  color: #999;
}

.guides-view-all {
  margin-top: 2em;
}

.aligncenter {
  text-align: center;
}


/*
 * Not A Subscriber box
*/

.wmc-episode-not-a-subscriber {
  margin: 1em auto;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-left: 5em solid #0a0;
  background-color: #efe;
  text-align: center;
  width: 75%;
  border-radius: 0.25em;
}

.wmc-episode-not-a-subscriber p {
  margin-bottom: 0.25em;
}

.wmc-episode-not-a-subscriber h2{
  font-weight: bold;
  padding-bottom: 0.25em;
  padding-top: 0;
  margin-top: 0 !important;
  margin-bottom: 0.25em;
  border-bottom: 1px solid #cec;
}


@media only screen and (max-width: 1024px) {
  .wmc-episode-not-a-subscriber {
    width: 100%;
    margin: 0;
  }
}

.text-danger {
  color: #c55;
}

/*
 *
 * WMC Member Discounts
 *
*/

.wmc-discounts-wrap {
  margin-top: 1em;
}

.wmc-discounts-list-content {
  margin-top: 1em;
}

/*
 *
 * RCP discount field
 *
*/

.rcp_discounts_fieldset {
  /* display: none; */
  border: 1px solid silver;
  background-color: #eee;
  margin-bottom: 1em;
}

#rcp_discount_code_wrap {
  margin-bottom: 0;
  padding: 0.25em;
}

#rcp_discount_code_wrap label {
  display: inline;
}

#rcp_discount_code {
  display: inline-block;
  width: 50%;
  margin-left: 3em;
}

#rcp_apply_discount {
  height: 2em;
  float: right;
  padding: 0 0.5em;
}

/*
 *
 * RCP Group Memebership styling
 *
*/

.team-membership-link p {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.team-membership-link p a:hover{
  color: #ddd;
}

fieldset.rcpga-group-fieldset {
  margin-bottom: 1em;
  background-color: #eee;
}

fieldset.rcpga-group-fieldset:before {
  content: "Team Information";
  position: relative;
  top: -1.25em;
  background: #fff;
  border: 1px solid silver;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 2em;
}

fieldset.rcpga-group-fieldset label:after {
  content: " (for your team)";
  font-size: 0.75em;
  color: #555;
}

fieldset.rcp_card_fieldset {
  margin-bottom: 1em;
  margin-top: 2em;
  background-color: #eee;
}

fieldset.rcp_card_fieldset:before {
  content: "Payment Information";
  position: relative;
  top: -1.25em;
  background: #fff;
  border: 1px solid silver;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 2em;
}

table#rcpga-group-members-list {
  border: 1px solid #ccc;
  padding: 0;
  background-color: #eee;
  border-radius: 0.25em;
  border-collapse:separate;
}

table#rcpga-group-members-list thead tr {
  background-color: #F9DE50;
  color: #000;
  border-bottom: 1px solid #000;
}

table#rcpga-group-members-list td,
table#rcpga-group-members-list th {
  padding: 0.5em;
}

table#rcpga-group-members-list tbody tr:nth-child(odd){
  background-color: #fff;
}

.rcpga-group-dashboard h4.rcp-header {
  margin-top: 1em;
}

.rcpga-group-dashboard fieldset {
  background-color: #eee;
  border-radius: 0.25em;
}

.rcpga-group-dashboard fieldset p.rcp_submit_wrap,
.rcpga-group-dashboard fieldset p.rcp_form_wrap {
  margin-bottom: 0;
}

/* 
 * WMC Episode "Jump To Locations"
*/

.wmc-video-location-wrapper {
  float: right;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  margin: 0 0 0.5em 1em;
  padding: 1em;
  font-size: 0.8em;
}

.wmc-video-location-wrapper h3 {
  font-size: 1.25em;
  font-weight: bold;
}

.wmc-video-location-wrapper ul.wmc-video-location-list {
  padding-left: 2em;
}

@media only screen and (max-width: 1000px) {
  .wmc-video-location-wrapper {
    float: none;
    margin: 1em 0;
  }
}

.wmc-longform-sales .site-inner {
  border: 0;
  padding: 0;
}

.wmc-longform-sales .site-inner h1 {
  width: 100%;
  margin: 1em 0;
  padding: 0;
  font-size: 1.8em;
  text-align: justify;
}

.wmc-longform-sales .site-inner h2 {
  font-size: 1.35em;
  font-weight: bold;
  margin: 1.25em 0 0.75em 0;
  padding: 0;
}

.wmc-longform-sales .site-inner h2.subtitle {
  color: #555;
  margin: 1.25em 0;
}

.wmc-longform-sales .site-inner h3 {
  margin: 1.25em 0 0.75em 0;
  padding: 0;
}

.wmc-longform-sales p, .wmc-longform-sales ul li {
  text-align: justify;
  margin-bottom: 0.75em;
}

.wmc-longform-sales .headline-text h2 {
  font-weight: normal;
}

.wmc-longform-sales .headline-text h1 {
  font-size: 1.75em;
}

.wmc-longform-sales .wp-video {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.wmc-longform-sales blockquote.personal-story {
  text-align: left;
}

.wmc-longform-sales blockquote.personal-story .signature {
  margin-left: 5em;
}

.wmc-longform-sales .site-inner h2.tve_p_center {
  margin: 0 0 0.75em 0;
}

/* PRICING STUFF */

.wmc-original-price {
  margin: 0 0.5em;
  text-decoration: line-through;
  color: #bbb;
  font-weight: normal;
}

.wmc-price {
}
