/*
	Theme Name: Teachingin HigherED
	Description: This is the the theme created for the Genesis Framework.
	Author: Anchored Design
	Author URI: http://www.anchoreddesign.com/

	Version: 1.1.2

	Tags: black, white, blue, green, orange, pink, one-column, two-columns, responsive-layout, custom-header, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, rtl-language-support

	Template: genesis
	Template Version: 2.2+

	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php 
*/


/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- Primary Navigation
	- Secondary Navigation
	- Skip Links
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Footer Widgets
- Site Footer
- Media Queries
	- Retina Display
	- Max-width: 1200px
	- Max-width: 960px
	- Max-width: 800px
- Print Styles
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}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}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}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}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* ## Box Sizing
--------------------------------------------- */

html,
input[type="search"]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/* ## Float Clearing
--------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

html {
    font-size: 62.5%; /* 10px browser default */
}

/* Chrome fix */
body > div {
    font-size: 20px;
    font-size: 2.0rem;
}

body {
	background-color: #fff;
	color: #333;
	font-family: "brandon",Verdana, Arial, sans-serif;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 300;
	line-height: 1.625;
	margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition:    all 0.4s ease-in-out;
	-ms-transition:     all 0.4s ease-in-out;
	-o-transition:      all 0.4s ease-in-out;
	transition:         all 0.4s ease-in-out;
}

a {
	color: #1d2636;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #333;
	text-decoration: none;
}

p {
	margin: 0 0 20px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
	clear: both;
	margin: 1em 0;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 40px;
}


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "brandon",Verdana, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
}

.image-section h2,
.solid-section h2 {
	font-size: 54px;
}

h3 {
	font-size: 30px;
	font-size: 3rem;
}

h4 {
	font-size: 20px;
	font-size: 2rem;
}

.image-section h4,
.solid-section h4 {
	font-size: 54px;
	font-size: 5.4rem;
	margin-bottom: 40px;
}

.home-mid-left h3,
.home-mid-left h4 {
	font-size: 30px;
	font-size: 3.0rem;
}

.home-mid-right h4 {
	font-size: 44px;
	font-size: 4.4rem;
	margin-bottom: 40px;
}

.home-mid-wide {
	-webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	z-index: 9;
}

.front-page-1 .image-section h4 {
	margin-bottom: 10px;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6 {
	font-size: 16px;
	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;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery img {
	border: 1px solid #ddd;
	height: auto;
	padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
	border: 1px solid #999;
}

/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 300;
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #333;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #333;
	font-weight: 300;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #1d2636;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 10px 30px;
	text-transform: uppercase;
	width: auto;
	word-spacing: 2px;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
button:focus,
input:focus[type="button"],
input:focus[type="reset"],
input:focus[type="submit"],
.button:focus  {
	background-color: #d1d2d4;
	color: #fff;
}

.site-inner .button:hover,
.entry-content .button:hover,
.entry-content .button:focus {
	background: #333;
	color: #fff;
}

.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"],
.footer-widgets .button {
	background-color: #1d2636;
	color: #fff;
}

.footer-widgets button:hover,
.footer-widgets input:hover[type="button"],
.footer-widgets input:hover[type="reset"],
.footer-widgets input:hover[type="submit"],
.footer-widgets .button:hover,
.footer-widgets button:focus,
.footer-widgets input:focus[type="button"],
.footer-widgets input:focus[type="reset"],
.footer-widgets input:focus[type="submit"],
.footer-widgets .button:focus {
	background-color: #fff;
	color: #333;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.site-inner .gform_wrapper .gform_footer input.button, 
.site-inner .gform_wrapper .gform_footer input[type=submit] {
    font-size: 16px;
}

.site-inner .gform_wrapper input[type=text], 
.site-inner .gform_wrapper input[type=url], 
.site-inner .gform_wrapper input[type=email], 
.site-inner .gform_wrapper input[type=tel], 
.site-inner .gform_wrapper input[type=number], 
.site-inner .gform_wrapper input[type=password] {
	padding: 20px;
}

.site-inner .gform_wrapper ul li.gfield {
    margin-bottom: 20px;
}

/* Buttons and Colors */

a.button.medium {
	font-size: 16px;
	font-weight: 300;
	padding: 12px 60px;
}

a.button.large {
	font-size: 18px;
	font-weight: 300;
	padding: 15px 40px;
}

a.button.clear-button {
	background: none;
	border: 1px solid #fff;
}

a.button.clear-button:hover {
    border: 1px solid #1d2636;
}

a.button.black {
	background: #000;
}

a.button.white {
	background: #fff;
	color: #333;
}

a.button.white-clear {
	background: none;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 300;
}

/* ## Screen Reader Text
--------------------------------------------- */

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus  {
	clip: auto !important;
	height: auto;
	width: auto;
	display: block;
	font-size: 1em;
	font-weight: bold;
	padding: 15px 23px 14px;
	color: #333;
	background: #fff;
	z-index: 100000; /* Above WP toolbar. */
	text-decoration: none;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}

.more-link {
    position: relative;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	float: none;
	margin: 0 auto;
	max-width: 1200px;
}

.site-inner {
	background-color: #fff;
	clear: both;
	margin-top: 170px;
	position: relative;
	z-index: 9;
	-word-wrap: break-word;
}

.front-page .site-container .site-inner {
	margin-top: 0;
	/*max-width: 100%;*/
	overflow: hidden;
	padding-top: 80px;
}

.single .site-inner {
	margin-bottom: 40px;
}

.tihighere-landing .site-container .site-inner {
	margin-top: 100px;
}

.secondary-nav .site-inner {
	margin-top: 250px;
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 980px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

 .single-podcasts .content-wrap, .single-podcasts .entry-content {
 	margin: 0 auto;  max-width: 1140px;
 }
 


/* ### Content */

.content {
	float: right;
	width: 700px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 580px;
}

.full-width-content .content {
	width: 100%;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* ### Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.one-fifth,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-bottom: 40px;
	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%;
}

.one-fifth {
	width: 17.4358974359%
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	float: left;
}

.author-box .avatar {
	border-radius: 99%;
	-moz-border-radius: 99%;
	-ms-border-radius: 99%;
	-webkit-border-radius: 99%;
	height: 100px;
	width: 100px;
}

.entry-comments .avatar {
	height: 70px;
	width: 70px;
}

.alignleft .avatar,
.author-box .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	border-radius: 99%;
	margin: 0 16px 24px 0;
	-moz-border-radius: 99%;
	-ms-border-radius: 99%;
	-webkit-border-radius: 99%;
}

/* ## Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
}

.archive-description,
.author-box {
	background-color: #222;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 40px;
	padding: 40px;
}

.author-box-title {
	color: #fff;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.site-header .search-form {
	float: right;
	margin-top: 12px;
}

.entry-content .search-form,
.site-header .search-form {
	width: 50%;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## Titles
--------------------------------------------- */

.archive-title {
	font-size: 20px;
	font-size: 2rem;
}

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover,
.entry-title a:focus {
	color: #1d2636;
}

.sidebar .widget-title,
.sidebar h4 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.footer-widgets .widget-title {
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* ## Featured Content
--------------------------------------------- */

.featured-content .entry {
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.featured-content .entry-title {
	font-size: 20px;
	font-size: 2rem;
}

.home .featured-content .entry-title {
	font-weight: 400;
	text-transform: uppercase;
}

.featuredpage .entry-title {
	font-size: 36px;
	font-size: 3.6rem;
}

.single .featured-image {
	margin-bottom: 40px;
}

#custom_html-2 { margin-bottom: 100px; }

/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Genesis eNews Extended
--------------------------------------------- */

.enews-widget,
.enews-widget .widget-title {
	/*color: #fff;*/
}

.enews-widget input,
.enews-widget input:focus {
	/*border: 1px solid #333;*/
}

.enews-widget input {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 1.5px;
	margin-bottom: 16px;
	margin-right: 10px;
	padding: 16px 14px;
	width: 30%;
}

.sidebar .enews-widget input, 
.footer-widgets .enews-widget input {
	width: 55%;	
}

.sidebar .enews-widget input[type="submit"],
.footer-widgets .enews-widget input[type="submit"] {
	width: auto;
}

.enews-widget input[type="submit"] {
	background-color: #000;
	color: #fff;
	margin: 0;
	/*width: 100%;*/
}

.enews-widget input:hover[type="submit"],
.enews-widget input:focus[type="submit"]  {
	background: #333;
	color: #fff;
}

.enews form + p {
	/*margin-top: 24px;*/
}

.front-page-2 form {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 20px 0px 5px;
}

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


/* # Skip Links
---------------------------------------------------------------------------------------------------- */
.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #000;
	border-bottom: 1px solid #ddd;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}
.front-page .site-header {
	border-bottom: 1px solid #ddd;
	padding-top: 30px;
}

.featured-section .site-header {
	background-color: transparent;
	border:  none;
}

.site-header.light {
	background-color: #000;
	padding-top: 0;
}

.site-header.light .nav-secondary {
	display: none;
}

.admin-bar .site-header {
	top: 32px;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 25px 0;
	width: 360px;
}

.site-header.light .title-area {
	padding: 25px 0;
}

.site-title {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:hover {
	color: #fff;
}

.front-page .site-header .site-title a,
.front-page .site-header .site-title a:hover {
	color: #fff;
}

.front-page .site-header.light .site-title a,
.front-page .site-header light .site-title a:hover {
	color: #fff;
}

.header-image .title-area,
.header-image .site-header.light .title-area {
	padding: 0;
}

.header-image .site-title > a {
	background-size: contain !important;
	display: block;
	height: 76px;
	text-indent: -9999px;
}

.header-image .light .site-title > a {
	height: 56px;
}

.site-description {
	display: block;
	height: 0;
	margin-bottom: 0;
	text-indent: -9999px;
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	text-align: right;
	width: 800px;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	line-height: 1;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu li li {
	margin-left: 0;
}

.genesis-nav-menu a {
	color: #fff;
	display: block;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 2px;
	padding: 30px 15px;
	text-transform: uppercase;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover {
	color: #1d2636;
}

.site-header.light .genesis-nav-menu a {
	/*padding: 30px 15px;*/
}

.site-header.light .genesis-nav-menu > .last > a {
    padding-right: 0;
}

.genesis-nav-menu li.highlight a:hover::before {
	color: #fff;
}

.genesis-nav-menu li.highlight > a {
	font-weight: 800;
}

.genesis-nav-menu > .menu-item > a {
	text-transform: uppercase;
}

.front-page .site-header.light .genesis-nav-menu > .menu-item > a {
	/*color: #fff;*/
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	letter-spacing: 0;
	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: #222;
	font-size: 12px;
	padding: 20px;
	position: relative;
	width: 200px;
	word-wrap: break-word;
}

.genesis-nav-menu .sub-menu a:hover,
.genesis-nav-menu .sub-menu li.current-menu-item > a {
	background-color: #1d2636;
	color: #fff;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -53px 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 {
	color: #fff;
	display: inline-block;
	list-style-type: none;
	padding: 27px 20px;
	text-transform: uppercase;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
}

.genesis-nav-menu > .search {
	display: block;
	margin: 0 auto;
	padding: 0 20px 20px;
	width: 50%;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary {
	text-align: center;
}

.nav-primary .genesis-nav-menu {
	float: right;
}

/* ## Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	border-bottom: 1px solid #444;
}

/* Footer Navigation
--------------------------------------------- */

.nav-footer .genesis-nav-menu {
	padding: 20px 0;
}

.nav-footer .genesis-nav-menu a {
	border: none;
	font-weight: 400;
	letter-spacing: 3px;
	margin: 0 20px;
	padding: 0;
}

/* Responsive Menu
--------------------------------------------- */

.responsive-menu-icon {
	cursor: pointer;
	display: none;
	margin-bottom: 10px;
	text-align: center;
}

.responsive-menu-icon::before {
	color: #aaa;
	content: "\f333";
	font: normal 24px/1 "dashicons";
	margin: 0 auto;
}

.nav-secondary .responsive-menu-icon {
	margin: 10px auto 0;
}

/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* Front Page
--------------------------------------------- */

.image-section,
.solid-section {
	clear: both;
	text-align: center;
	width: 100%;
}

.image-section {
	display: table;
	overflow: hidden;
	table-layout: fixed;
	width: 100%;
}

.image-section .widget-area {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

.image-section,
.image-section a {
	color: #fff;
}

.image-section a:hover,
.image-section .featured-content .entry-title a:hover {
	color: #1d2636;
}

.solid-section {
	background-color: #fff;
}

.front-page-2,
.front-page-3,
.front-page-4,
.front-page-5,
.front-page-6,
.front-page-7,
.front-page-8,
.front-page-9,
.front-page-10,
.front-page-11,
.front-page-12,
.front-page-13 {
	/*margin-top: -54px;*/
	-webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	z-index: 9;
}

.front-page-1,
.front-page-4,
.front-page-5,
.front-page-7,
.front-page-9,
.front-page-12 {
	/*background-attachment: fixed;*/
	background-position: 50% 0;
	background-repeat: no-repeat;
	/*-webkit-background-size: cover;
	-moz-background-size:    cover;
	background-size:         cover;*/
}

.front-page-1 {
	max-height: 740px;
	position: relative;
}

.front-page-1 .image-section {
	/*padding-top: 200px;*/
}

.front-page-1 p {
	font-size: 24px;
	font-size: 2.4rem;
	letter-spacing: 1px;
}

.front-page-2 .image-section {
	background: #1d2636;
	padding: 60px 0 20px;
}

.front-page-2 {
	margin-left: auto;
	margin-right: auto;
	margin-top: -160px;
	position: relative;
	width: 1000px;
}

.front-page-2 h4 {
	font-size: 34px;
	font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.front-page-2 .wrap {
	padding: 0 5%;
}

.front-page-2 h3 {
	line-height: 1.5;
	margin-bottom: 20px;
}

.front-page-2 p {
	margin-bottom: 15px;
}

.front-page-2 .flexible-widgets {
	padding: 0;
}

.front-page-3 .solid-section h4 {
	margin-bottom: 20px;
}

.front-page-4 {
	background-color: #191a1c;
}

.front-page-4 img {
	margin-bottom: 20px;
}

.home-mid {
	background: #f3f3f3;
}

.home-mid-inner {
	margin: 0 auto;
	max-width: 1200px;
}

.home-mid-left {
	float: left;
	margin-top: 200px;
	padding: 0;
	width: 25%;
}

.home-mid-right {
	background: #fff;
	float: right;
	margin-top: 120px;
	padding: 70px;
	width: 70%;
}

.front-page-9 {
	background-color: #1d2636;
}

.front-page-12 {
	background-color: #f3f3f3;
}

.front-page-12 .image-section {
	color: #333;
}

.front-page-12 .image-section a {
	color: #1d2636;
}

.secondary-nav .front-page-1 .image-section {
	padding-top: 150px;
}

.bottom-image {
	margin-bottom: -160px;
	margin-top: 50px;
}

.bottom-image img {
	margin-bottom: -10px;
}

.front-page .field-wrap:last-child {
	margin-bottom: 0;
}

.fp-left {
	float: left;
	display: inline-block;
  margin-top: 100px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 49%;
  vertical-align: top;
}

.fp-right {
	display: inline-block;
  margin: 0;
  max-width: none;
  padding: 0;
  position: relative;
  text-align: left;
  width: 40%;
  vertical-align: top;
}

.fp-right img {
	max-width: none;
}

.fp-left2 {
	display: inline-block;
  margin: 0;
  max-width: none;
  min-height: 700px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 40%;
  vertical-align: top;
}

.fp-right2 {
	float: right;
	display: inline-block;
  margin-top: 100px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 49%;
  vertical-align: top;
}

.fp-left2 img {
	max-width: none;
	position: absolute;
	right: 0;
}

.fp-left ul,
.fp-right2 ul {
	margin-bottom: 40px;
} 

.fp-left li,
.fp-right2 li {
	list-style-type: disc;
	margin-left: 24px;
	margin-bottom: 5px;
}

.fl-module-pp-subscribe-form.fl-node-5b69407567ee9 .pp-subscribe-content {
	width:100%;	
}

.fl-module-pp-subscribe-form.fl-node-5b69407567ee9 .pp-subscribe-content p {
	width:70%;	
}

/* Dashicons
--------------------------------------------- */

.front-page .dashicons {
	font-size: 40px;
	height: 40px;
	margin-bottom: 20px;
	width: 40px;
}

/* Flexible Widgets
--------------------------------------------- */

.flexible-widgets {
	padding: 140px 0 120px;
}

.flexible-widgets .widget {
	margin: 0 0 40px;
}

.flexible-widgets.widget-full .widget,
.flexible-widgets.widget-halves.uneven .widget:last-of-type {
	background: none;
	margin-left: 0;
	padding: 0;
	width: 100%;
}
	
.widget-area.flexible-widgets.widget-half .widget,
.flexible-widgets.widget-halves .widget {
	width: 48.717948717948715%;
}

.flexible-widgets.widget-thirds .widget {
	width: 31.623931623931625%;
}

.flexible-widgets.widget-fourths .widget {
	width: 23.076923076923077%;
}

.flexible-widgets.widget-halves .widget:nth-child(even),
.flexible-widgets.widget-thirds .widget:nth-child(3n+2),
.flexible-widgets.widget-fourths .widget:nth-child(4n+2) {
	clear: left;
	margin-left: 0;
}

.flexible-widgets.widget-halves h2,
.flexible-widgets.widget-thirds h2,
.flexible-widgets.widget-fourths h2 {
	font-size: 36px;
}

/* ## Entries
--------------------------------------------- */

.entry {
	margin-bottom: 100px;
	padding: 0;
}

.content .entry {
	/*background-color: #fff;*/
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content 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;
}

.content ol ol,
.content ul ul {
	margin-bottom: 0;
}


.entry-content code {
	background-color: #333;
	color: #ddd;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	padding-top: 24px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\f075";
	margin: 0 6px 0 2px;
}

/* ## After Entry
--------------------------------------------- */

.after-entry {
	margin-bottom: 40px;
}

.after-entry h3 {
	font-size: 20px;
	font-size: 2.0rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-webkit-border-radius: 6px;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 4px 12px;
	text-decoration: none;
}

.archive-pagination li a:hover,
.archive-pagination li a:focus,
.archive-pagination .active a {
	background-color: #1d2636;
	text-decoration: underline;
}

/* ## Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: rgba(209, 211, 212, 0.7);
	margin-bottom: 40px;
	border-radius: 2px;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
}

.entry-comments {
	padding: 40px 0;
}

.comment-header {
	font-size: 16px;
	font-size: 1.6rem;
}

li.comment { }

.comment-content {
	clear: both;
	word-wrap: break-word;
}

.comment-list li {
	margin-top: 24px;
	padding: 32px;
}

.comment-list li li {
	margin-right: -32px;
}

.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;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 24px;
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	font-size: 1.6rem;
}

.sidebar li {
	border-bottom: 1px dotted #ddd;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.sidebar p {
	margin-bottom: 12px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #fff;
	margin-bottom: 40px;
}


/* # Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #000;
	clear: both;
	font-size: 18px;
	text-align: center;
}

.footer-widgets .wrap {
	padding-bottom: 60px;
	padding-top: 100px;
}

.footer-widgets,
.footer-widgets a {
	color: #fff;
}

.footer-widgets a {
	font-weight: 400;
}

.footer-widgets input {
	border: 1px solid #333;
}

.footer-widgets a.button,
.footer-widgets a:hover,
.footer-widgets a:focus {
	color: #fff;
}

.footer-widgets li {
	border-bottom: 1px dotted #666;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.footer-widgets .widget {
	margin-bottom: 40px;
}

.footer-widgets p:last-child {
	margin-bottom: 0;
}

.footer-widgets-1,
.footer-widgets-2 {
	margin: 0 3.3% 0 0;
	width: 30.555555555%;
}

.footer-widgets-3 {
	width: 30.555555555%;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

.footer-widgets-3 {
	float: right;
}

/* # Plans
---------------------------------------------------------------------------------------------------- */

.plans {
	margin-top: 60px;
}

.plan {
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	float: left;
	padding: 60px 20px;
	width: 25%;
}

.popular {
	background: #1d2636;
	border: none;
	color: #fff;
	position: relative;
	transform: scale(1.06);
	-webkit-transform: scale(1.06);
}

.plan h2 {
	font-size: 62px;
	font-weight: 300;
}

.popular h2 {
	color: #fff;
}

.plan .price {
	font-size: 90px;
	font-weight: 400;
	margin: 0 0 20px;
}

.plan sup {
	font-size: 30px;
	top: -1.36em;
}

.plan .monthly {
	font-size: 18px;
}

.plan small {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0;
}


/*
Portfolio
---------------------------------------------------------------------------------------------------- */

.entry-portfolio {
	margin: 0 0 40px;
	padding: 0;
}

.content .portfolio {
	background: none;
	float: left;
	margin: 0 2% 40px 0 !important;
	overflow: hidden;
	padding: 0;
	width: 30.555555555%;
}

.portfolio .post-image {
	border: none;
	margin: 0 0 10px;
	padding: 0;
}

.portfolio .post-image:hover {
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	transition:all .5s ease;
	opacity: 0.6;
}

.portfolio .post .entry-title {
	font-size: 24px;
	font-weight: 400;
	margin: 10px 0;
}

.portfolio .entry-title a {
	color: #333;
}

.portfolio .entry-title a:hover {
	color: #4c5e6b;
}
	
.portfolio .entry-title a {
	margin: 0;
	text-decoration: none;
}

.portfolio .entry-meta {
	display: none;
}

.portfolio .more-link {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #fff;
	display: block;
	padding: 8px 12px;;
	margin: 20px 0 0;
	text-align: center;
	text-decoration: none;	
	max-width: 150px;
}
	
.content .portfolio .more-link:hover {
	background: #555;
	color: #fff;
}

.portfolio-clear {
	clear: none;
}

.portfolio-clear-2 {
	clear: both;
}


/* # Miscelaneous
---------------------------------------------------------------------------------------------------- */

.uppercase {
	text-transform: uppercase;
}

.tiny {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 1px;
}

.tiny2 {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 1px;
}

small {
	letter-spacing: 1px;
}

.italic {
	font-style: italic;
}

.centered {
	margin: 0 auto;
	text-align: center;
}

.author-circle {
	border: 4px solid #fff;
	border-radius: 50px;
}

.quote {
	background: #fff;
	border-radius: 6px;
	border: 1px solid #ddd;
	color: #888;
	font-size: 16px;
	padding: 20px 40px;
}

.quote-arrow {
	background-image: url(images/quote-arrow.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	bottom: 1px;
	display: block;
	margin: 0 0 10px;
	padding: 14px 0 0;
	position: relative;
}

.quote-black {
	background: #121212;
	border-radius: 6px;
	border: 1px solid #353535;
	color: #fff;
	font-size: 16px;
	padding: 20px 40px;
}

.quote-arrow-black {
	background-image: url(images/quote-arrow-black.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	bottom: 1px;
	display: block;
	margin: 0 0 10px;
	padding: 14px 0 0;
	position: relative;
}

.quote-black a {
	color: #aaa;
}

.quote-black p {
	color: #fff;
}

.left-content {
	float: left;
	padding: 0 20px 0 0;
	text-align: left;
}

.left-content .fa,
.right-content .fa {
	padding: 40px 0;
}

.right-content {
	overflow: hidden;
	text-align: left;
}

.left-content,
.right-content h3 {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 400;
	margin-bottom: 8px;
}

.leftrow {
	background: #fff;
	color: #333;
	float: left;
	min-height: 320px;
	padding: 70px 30px 40px;
	text-align: left;
	width: 60%;
}

.rightrow {
	background: rgba(23, 148, 255, 0.8);
	color: #fff;
	float: right;
	min-height: 320px;
	padding: 70px 30px 40px;
	text-align: center;
	width: 40%;
}

.features {
	text-align: left;
}

.features .fa {
	font-size: 40px;
	float: left;
	padding: 0 20px 0 0;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

div.pp_default .pp_content,
div.light_rounded .pp_content {
	background-color: #000 !important
}

div.pp_default .pp_top .pp_left,
div.pp_default .pp_top .pp_middle,
div.pp_default .pp_top .pp_right,
div.pp_default .pp_content_container .pp_left,
div.pp_default .pp_content_container .pp_right,
div.pp_default .pp_content_container .pp_content,
div.pp_default .pp_bottom .pp_left,
div.pp_default .pp_bottom .pp_middle,
div.pp_default .pp_bottom .pp_right {
	background: none !important;
}

.journal-title {
	font-size: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;	
}

#journal hr {
	border: 1px solid #ddd;
	margin: 30px 0;
	width: 100px;
}

.talks-list .talks { width: 33.33%; float: left; padding: 20px 20px 40px 20px; }

.talks-list.full-width .talks { width: 100%; float: none; }

/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #000;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1;
	padding: 30px 0;
	text-align: center;
	text-transform: uppercase;
}

.site-footer p {
	font-size: 12px;
  letter-spacing: 1px;
	margin-bottom: 0;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: #1d2636;
}


/* Fadeup Effect
---------------------------------------------------------------------------------------------------- */

.js .fadeup-effect {
	opacity: 0;
	overflow: hidden;
	-webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); }
} 

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
} 

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1800px) {
	
	.front-page-1,
	.front-page-4,
	.front-page-5,
	.front-page-7,
	.front-page-9,
	.front-page-12 {
		-webkit-background-size: auto;
		-moz-background-size:    auto;
		background-size: auto;
	}

}

@media only screen and (max-width: 1280px) {

	.site-inner, .single-podcasts .content-wrap, .single-podcasts .entry-content,
	.wrap {
		max-width: 1140px;
	}
	
}

@media only screen and (max-width: 1200px) {

	.site-inner, .single-podcasts .content-wrap, .single-podcasts .entry-content,
	.wrap {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	.sidebar-primary {
		width: 300px;
	}
	
	.title-area {
		width: 200px;
	}

}

@media only screen and (max-width: 1080px) {

	.front-page-2 {
		padding: 0 5%;
		width: 100%;
	}
	
}	

@media only screen and (max-width: 1023px) {

	.site-inner, .single-podcasts .content-wrap, .single-podcasts .entry-content,
	.wrap {
		max-width: 768px;
	}
	
	.secondary-nav .site-inner {
		margin-top: 80px;
	}

	.front-page .site-inner {
		max-width: 768px;
	}

	.site-header {
		position: static;
	}
	
	.front-page .site-header {
		background-color: #000;
	}
	
	.front-page .site-header > .wrap {
		border: none;
	}

	.content,
	.sidebar,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}
	
	.site-header .title-area,
	.site-header.light .title-area {
		padding: 15px 0;
	}
	
	.header-image .light .site-title > a {
		height: 76px;
	}

	.genesis-nav-menu,
	.site-header .widget-area,
	.site-title {
		text-align: center;
	}
	
	.header-image .site-title > a {
		background-position: center !important;
	}
	
	.nav-primary .genesis-nav-menu {
		float: none;
	}
	
	.nav-secondary,
	.site-header.light .nav-secondary {
		border-bottom: none;
		display: block;
	}

	.genesis-nav-menu a,
	.site-header.light .genesis-nav-menu a {
		padding: 10px 10px 20px;
	}

	.front-page .site-inner {
		margin-top: 0;
	}
	
	.front-page-1,
	.front-page-4,
	.front-page-5,
	.front-page-7,
	.front-page-9,
	.front-page-12 {
		/*background-attachment: scroll;*/
		-webkit-background-size: auto;
		-moz-background-size:    auto;
		background-size:         auto;
	}

	.site-inner {
		margin-top: 80px;
	}

	.full-width-content .content {
		padding: 0;
	}

	.full-width-content img.pull-left {
		margin-left: 0;
	}

	.full-width-content img.pull-right {
		margin-right: 0;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-fifth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0 0 40px;
		width: 100%;
	}
	
	.flexible-widgets.widget-full .widget,
	.flexible-widgets.widget-halves .widget,
	.flexible-widgets.widget-thirds .widget,
	.flexible-widgets.widget-fourths .widget {
		margin: 0 auto 20px;
		width: 100%;
	}
	
	.front-page-1 .image-section,
	.secondary-nav .front-page-1 .image-section {
		padding-top: 0;
	}
	
	.plan .price {
	  font-size: 60px;
	}
	
	.plan sup {
    font-size: 30px;
    top: -.7em;
	}
	
	.enews-widget input {
		width: 40%;
	}
	.home.header-image .site-header .nav-primary{display:block;}
	.genesis-nav-menu .search-form input[type="search"] {
    width: 100%!important;
    background: rgba(255,255,255,.9);
    border: 1px solid #e3e3e3!important;
    position:relative;
}
	.genesis-nav-menu.responsive-menu {
		display: none;
		float: none;
		padding-bottom: 20px;
	}

	.genesis-nav-menu.responsive-menu .menu-item,
	.responsive-menu-icon {
		display: block;
		width:100%;
		text-align:right
	}

	.genesis-nav-menu.responsive-menu .menu-item:hover {
		position: static;
	}

	.genesis-nav-menu.responsive-menu li.current-menu-item > a,
	.genesis-nav-menu.responsive-menu .sub-menu li.current-menu-item > a:hover,
	.genesis-nav-menu.responsive-menu li a,
	.genesis-nav-menu.responsive-menu li a:hover {
		background: none;
		border: none;
		display: block;
		padding: 10px 0;
		text-transform: none;
	}

	.genesis-nav-menu.responsive-menu .menu-item-has-children {
		cursor: pointer;	
	}

	.genesis-nav-menu.responsive-menu .menu-item-has-children > a {
		margin-right: 60px;
	}

	.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
		content: "\f347";
		float: right;
		font: normal 20px/1 "dashicons";
		height: 20px;
		padding: 7px 20px;
		right: 0;
		text-align: right;
		z-index: 9999;
	}

	.genesis-nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
		content: "\f343";
	}

	.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu {
		display: none;
	}

	.genesis-nav-menu.responsive-menu .sub-menu {
		background-color: rgba(255, 255, 255, 0.05);
		left: auto;
		opacity: 1;
		position: relative;
		-moz-transition:    opacity .4s ease-in-out;
		-ms-transition:     opacity .4s ease-in-out;
		-o-transition:      opacity .4s ease-in-out;
		-webkit-transition: opacity .4s ease-in-out;
		transition:         opacity .4s ease-in-out;
		width: 100%;
		z-index: 99;
	}

	.genesis-nav-menu.responsive-menu .sub-menu .sub-menu {
		background-color: transparent;
		margin: 0;
		padding-left: 25px;
	}

	.genesis-nav-menu.responsive-menu .sub-menu li a,
	.genesis-nav-menu.responsive-menu .sub-menu li a:hover {
		padding: 10px 0;
		position: relative;
		text-transform: none;
		width: 100%;
	}

	.genesis-nav-menu.responsive-menu .current-menu-item > a,
	.genesis-nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
	.genesis-nav-menu.responsive-menu > li.menu-item-has-children:hover > a,
	.genesis-nav-menu.responsive-menu a:hover {
		background: none;
	}

	.site-header .genesis-nav-menu.responsive-menu .current-menu-item > a,
	.site-header .genesis-nav-menu.responsive-menu .sub-menu li a,
	.site-header .genesis-nav-menu.responsive-menu .sub-menu li a:hover,
	.site-header .genesis-nav-menu.responsive-menu .sub-menu,
	.site-header .genesis-nav-menu.responsive-menu > .menu-item-has-children:before,
	.site-header .genesis-nav-menu.responsive-menu > li:hover > a,
	.site-header .genesis-nav-menu.responsive-menu a:hover {
		color: #d1d1d5;
	}

}

@media only screen and (max-width: 960px) {

	.site-inner,
	.wrap {
		max-width: 768px;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}
	
	.footer-widgets-1
	.footer-widgets-2,
	.footer-widgets-3 {
		margin: 0 0 30px;
	}

	.site-header .wrap {
		padding: 20px 5%;
	}

	.header-image .site-title > a {
		background-position: center top;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 20px 16px;
	}

	.site-header .search-form {
		margin: 16px auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}
	
	.features .main-img {
		padding-top: 0;
	}

}

@media only screen and (max-width: 800px) {

	body {
		background-color: #fff;
		font-size: 16px;
		font-size: 1.6rem;
	}
	
	.site-header .wrap {
		padding: 0 5%;
	}

	.site-inner, .single-podcasts .content-wrap, .single-podcasts .entry-content,
	.wrap {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.front-page .site-inner {
			padding: 0;
		}
	

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget,
	.site-header {
		padding: 0;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-fifth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds,
	.talks-list .talks {
		margin: 0 0 40px;
		width: 100%;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
	}
	
	.home-mid .wrap {
		padding: 0;
	}
	
	.home-mid-left {
		margin-top: 120px;
		width: 100%;
	}
	
	.home-mid-left .wrap {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.home-mid-right {
		margin-top: 80px;
		padding: 120px 0;
		width: 100%;
	}
	
	.home-mid-right .wrap {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.home-mid-right h4 {
		font-size: 30px;
		font-size: 3.0rem;
	}
	
	.front-page-10 .flexible-widgets {
		padding: 60px 0;
	}
	
	.fp-left,
	.fp-right,
	.fp-left2,
	.fp-right2 {
		clear: both;
		text-align: center;
		width: 100%;
	}
	
	.fp-left,
	.fp-right2 {
		margin: 40px 0 0;
		min-height: auto;
	}
	
	.fp-left2 {
		min-height: 300px;
	}
	
	.fp-right {
	  margin-top: 40px;
		min-height: auto;
	}
	
	.fp-left2 img,
	.fp-right img {
		position: relative;
		max-width: 100%;
	}
	
	.leftrow,
	.rightrow {
		clear: both;
		text-align: center;
		width: 100%;
	}
	
	.home .content ol,
	.home .content ul {
		margin-left: 0;
	}
	
	.home .content ul > li {
	  list-style-type: none;
	}

}

@media only screen and (max-width: 760px) {

	.front-page-2 form {
		background: none;
	}

	.plan {
		float: none;
		margin: 0 auto 40px;
		width: 75%;
	}
	
	.popular {
	    transform: none;
	    -webkit-transform: none;
	}

}

@media only screen and (max-width: 550px) {

	.image-section h4,
	.solid-section h4 {
		font-size: 34px;
		font-size: 3.4rem;
		margin-bottom: 20px;
	}
	
	.front-page-2 .image-section h4 {
		font-size: 24px;
		font-size: 2.4rem;
	}

	.enews-widget input {
		width: 100%;
	}
	
	.left-content,
	.right-content {
		text-align: center;
		width: 100%;
	}
	
	.left-content .fa,
	.right-content .fa {
		padding: 20px;
	}

}

@media only screen and (max-width: 740px) {

	.content .portfolio {
		width: 48%;
	}
	
	.portfolio-clear {
		clear: both;
	}
	
	.portfolio-clear-2 {
		clear: none;
	}
	
	.content .portfolio .post-image {
		width: 100%;
	}
	
}

@media only screen and (max-width: 640px) {

	.front-page-1,
	.front-page-4,
	.front-page-5,
	.front-page-7,
	.front-page-9,
	.front-page-12 {
		background-size: cover;
	}

}

@media only screen and (max-width: 550px) {

	.content .portfolio {
		text-align: center;
		width: 100%;
	}
	
	.content .portfolio .post-image {
		width: 100%;
	}
	
	.content .portfolio .more-link {
		margin: 20px auto 0;
		padding: 6px;
		width: 60%;
	}
	
}


/* # Print Styles
---------------------------------------------------------------------------------------------------- */

@media print {

	*,
	*:before,
	*:after {
		background: transparent !important;
		box-shadow: none !important;
		color: #000 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]:after,
	a[href^="#"]:after,
	.site-title > a:after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
		top: -100px;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}

/* all custom css */
body, p, a, li{
	font-size:16px;
}
.entry-content p a,.fl-builder .site-inner  a{
border-bottom:1px dotted #a3a3a3
}

.fl-builder .site-inner .homelogos .fl-rich-text a,.fl-builder .pp-infobox-wrap a,.fl-builder a.pp-post-link,.fl-builder .site-inner .fl-heading a{
	border-bottom:0px;
}

.entry-content p  a:hover,.fl-builder .site-inner p a:hover{
	color:#11B5B9;
border-bottom:1px dotted #11B5B9
}
.content_wrap .entry-content p a:hover{
	border-bottom:0px dotted #11B5B9;
}
.podcasts .byline a{
	border-bottom:0px dotted #11B5B9;
}

.podcasts .byline a:hover{
	border-bottom:0px dotted #11B5B9;
}
.fl-builder-content-panel-is-showing .site-inner{margin-top: 120px!important;}
.site-footer a,.site-footer p{
	font-size:13px;
	color:#231F20!important;
}
.site-footer a:hover{
	text-decoration: underline;
}
.genesis-nav-menu > .menu-item > a{
	font-size:14px;
	font-family:'brandon'!important;
	color:#303D51;
}
.home .site-header{
	border-bottom:0px solid #ddd
}
.home .site-header.light{
		border-bottom:0px solid #ddd

}
.site-header .wrap{max-width:100%;padding:0 2%;position:relative;}
.site-header .nav-primary{
	margin:auto;
	max-width:1200px;
}
.homehighlight .pp-highlight-box-content{
	width:215px;
	border:1px solid #ffffff;
}
.homehighlight.mobile .pp-highlight-box-content{
	margin:10px auto;
}
.nav-primary .menu-item a{text-transform:uppercase!important;}
.morelinkcls a{
	font-style:italic;
	text-decoration:underline;
}
.morelinkcls a:hover{
	font-style:italic;
	text-decoration:none!important;
}
.pp-highlight-box-content p{display:inline;}
.fl-builder .site-inner, .single-podcasts .site-inner {max-width:100%;margin-top:75px;}
.header-image .site-header .title-area{max-width: 200px;width: 100%; z-index: 99; position: relative; }
.header-image .site-header .title-area a{
	background-position:center !important;
}
.home.header-image .site-header.light .title-area{max-width: 200px;width: 100%;}
.home.header-image .site-header.light .nav-primary{display: block}
.border-boxcls{border:1px solid #d1d2d5;}
.border-boxcls p{margin-bottom:0px;padding:10px;}
.border-boxcls {margin-bottom:10px;}
.pp-infolist-icon-inner img{width:auto!important;height:30px!important;}
.bio-home-text p { margin-bottom: 10px; }
.fl-node-5ac251964483e p{line-height:1.2}
.fl-module-heading a{color:#1D2636}

.fl-module-heading a:hover{text-decoration:underline}
.pp-testimonials .layout-3 .pp-testimonials-image{
	width:35%!important;
}
.pp-testimonial .pp-testimonials-image img{
	max-width:250px!important;
	max-height:250px!important;
}
.fl-node-5ac262ba488fc .border-boxcls{max-width:90%;margin:0 auto 10px auto;

}
.fl-node-5ac262ba488fc .border-boxcls p{
		padding:0 5px 5px 5px!important;
}
.fl-number .fl-number-string{font-size:56px!important;}
.fl-number .fl-number-after-text{
		font-size:13px!important;
		color:#424344;	
	}
.footer-widgets{background-color:#1D2636;text-align:left}
.footer-widgets .wrap{padding:40px;}
.footer-widgets .widget-title{
	font-size:21px;
	margin-bottom:10px;
	font-family:'brandon' !important;
}
.footer-widgets li{border:0px;padding:0px;margin-bottom:4px;}
.footer-widgets li a{
	font-family:'centurygothic' !important;
	font-size:16px;
}
.homelogos a:hover{opacity:0.6}
.footer-widgets .widget-area:first-child{
		width:17%!important;
}
.footer-widgets .widget-area{
	width:25%!important;
	float:left;
}
.footer-widgets  .simple-social-icons ul{margin-left:0px;}
.widget_search input[type="search"]{
	width:75%;
		padding:10px!important;
	font-size:13px;
font-family:'centurygothic'!important;
}
.widget_search input[type="submit"]{
	width:25%;
	position:relative;
	height:auto;
	padding:10px 0;
	font-size:12px;
	margin:-1px;
	border-color:#d1d2d5;
	border-radius:0px;
	font-family:'centurygothic'!important;
	background-color:#d1d2d5;
	height:36.5px;
}
.fl-builder .featuredpost .widgettitle{text-align:center;font-size:21px;}
.fl-builder .featuredpost .entry{position: relative}
.fl-builder .featuredpost .entry  a{border-bottom:0px;}
.fl-builder .featuredpost .entry .post-info{position:absolute;
top:-5px;font-size:15px;
	font-family:'brandon'!important;
left:60px;}
.fl-builder .featuredpost .entry h2 {
	margin-left:75px;
	margin-top:12px;
	line-height:1;
	margin-bottom:5px;
}
.fl-builder .featuredpost .entry.talks h2 { margin-left: 0; margin-top: 0px; text-transform: uppercase; line-height: 1.4; font-size: 18px; }
.fl-builder .featuredpost .entry.talks .talk-name { font-size: 16px; font-style: italic; line-height: 1.4; margin-bottom: 10px; }
.fl-builder .featuredpost .entry.talks .talk-info { font-size: 14px; }
.fl-builder .featuredpost .entry.talks .post-meta { display:none; }
.fl-builder .featuredpost .entry {margin-bottom:0px!important;}
.fl-builder .featuredpost .entry h2 a{
	font-size:21px;
}
.fl-builder .featuredpost .entry.talks h2 a{
	font-size:18px; 
}
.fl-builder .featuredpost .entry .guest-name a{
	margin-left:75px;
	font-size:15px;
	font-family:'brandon'!important;
	text-transform:uppercase;
	display: block;
}
.fl-builder #aboutpodcast .featuredpost .entry .guest-name { margin-bottom: 10px; }
.fl-builder #aboutpodcast .featuredpost .entry .post-meta { display:none; }
.fl-builder #aboutpodcast .featuredpost .entry .powerpress_player { max-width: 80%; margin: 0 75px; }
.featuredpost.widget .post-info .ep-num::before, .entry-meta .ep-num::before{
}

.featuredpost.widget .post-info a:hover {
 border: 0px;
 color: #1d2636;
 }
 
.homepodcasts .featuredpost.widget .post-info a:hover, 
.homepodcasts .featuredpost.widget h2 a:hover {
 border: 0px;
 color: #FFF;
 }

.search .content .pagination{display:none}
.mediarow .pp-infobox-image img{margin: auto!important;float: none!important;display: block}
.mediarow .pp-infobox-title-prefix:before{display: inline-block;content: "\f145";font-family: 'dashicons';width: 25px;height: 25px;font-size:16px;padding:3px;}
.mediarow .pp-infobox-title{margin-bottom: 5px!important;;}
.mediarow .pp-infobox-description p{font-family: 'brandon'!important;line-height: 1.4}
.pp-posts-wrapper .pp-post-filters{margin-bottom:100px;}

.contentgrid .pp-content-body{line-height: 1.4;}
.contentgrid .pp-content-body .pp-content-grid-title{text-align: center}
.contentgrid .pp-content-body .pp-content-grid-content{display: inline;}
.contentgrid .pp-content-body .pp-content-grid-more-link.clearfix:after,.contentgrid .pp-content-body .pp-content-grid-more-link.clearfix:before{
	display: inline-block;clear: none!important;
}
.contentgrid .pp-content-body .pp-content-grid-more-link.clearfix{clear: none!important;display: inline-block!important;}
.contentgrid.blog .pp-post-filters{margin-bottom:100px;}

.recommendations.contentgrid .pp-post-filters-wrapper{
	background:#1d2636;
	
}
.recommendations.contentgrid  div[itemprop="author"]{display:none}
.recommendations.contentgrid   .pp-content-post-author{
	font-size:0px;
	line-height:0;
	display:inline;
}
.recommendations.contentgrid   .pp-content-post-author .rtext,.recommendations.contentgrid   .pp-content-post-author .author{
	color:#1d2636;
	line-height:1.4;
	display:block;
	margin-top:-20px;
	margin-bottom:0px;
	font-size:15px;
}
.recommendations.contentgrid   .pp-content-post-author .author{
	color:#1d2636;
	line-height:1.4;
	display:block;
	margin-top:0px;
	margin-bottom:5px;
	font-size:15px;
}
.recommendations.contentgrid .pp-post-filters,
.recommendations.contentgrid .pp-content-post-grid{max-width:1140px;
margin:auto;}
.recommendations.contentgrid  .pp-content-body{
	padding:5px 0;
	margin:0px;
}
.recommendations.contentgrid .pp-content-post-grid .pp-post-title{text-align:left;padding:0px;}
.contentgrid.recommendations .pp-post-filters{margin-bottom:50px;padding-bottom:40px;}
.recommendations.contentgrid .pp-post-filters li{
	width:12.9898%;
	margin-bottom:15px;
}

.fl-node-5ac38938e2daa img{z-index:999;position:relative}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-front .pp-flipbox-image img{
	width:auto!important;
	height:60px!important;
}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-front .pp-flipbox-icon{
	margin:14px;
}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-front p{color:#fff;}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-back .pp-flipbox-title{
	margin-bottom:20px;
}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-back a{color:#414042;text-align:left;display:block;
}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-front .pp-icon-wrapper{height: 80px;	margin-bottom: 10px!important;}
.fl-node-5ac391d3a7e97 .pp-flip-box .pp-flipbox-front .pp-flipbox-description{
min-height: 80px;
}
.pp-flip-box .pp-flipbox-back .pp-flipbox-description br{display:none;}
.pp-flip-box .pp-flipbox-back .pp-flipbox-description p a{margin-bottom: 15px;}
.fl-node-5ac3995b95647 .pp-flip-box .pp-flipbox-front .pp-flipbox-title{
	margin-top:18px;
}
.homepodcasts a,.homepodcasts .ep-num:before,.homepodcasts .guest-name{color:#fff;}
.homepodcasts a:hover, .home-podcasts a:hover{
	text-decoration:underline;
}
.homepodcasts .entry, .home-podcasts .entry {margin-bottom:0px!important;
padding-bottom:15px;}
.home-podcasts .entry:hover a, .featuredpost .entry:hover a,.content_wrap .entry:hover a,
.home-podcasts .entry p a:hover {
	text-decoration:underline!important;
	border: 0px;
}

.home-podcasts .featuredpost.widget .post-info a:hover { color: #0a0a0a; }
.content .content_wrap .entry:hover h1.entry-title{color:#1D2636 !important;text-decoration-color:#1D2636!important; }
.content .content_wrap .entry:hover .ep-num{text-decoration: underline}
.googleplay .pp-button-icon:before{
	content:'';
	background-color:transparent;
	background-repeat:no-repeat;
	background-attachment:  scroll;
	background-size:contain;
	width:20px;
	height:20px;
	display:inline-block;
}

.one-third.sub-btn{
	width:33.33%;
	margin-left:0px;
	margin-bottom: 10px!important;
}

.stitcher .pp-button-icon:before{
	content:'';	
	background-color:transparent;
	background-repeat:no-repeat;
	background-attachment:  scroll;
	background-size:contain;
	width:40px;
	height:20px;
	display:inline-block;
}
.podcast-list .stitcher .pp-button-icon:before, .homepodcasts .stitcher .pp-button-icon:before{
	background-image: url(images/stitchericon.png);
}
.podcast-list .googleplay .pp-button-icon:before, .homepodcasts .googleplay .pp-button-icon:before{
	background-image: url(images/playicon.png);
}
.home-podcasts .stitcher .pp-button-icon:before{
	background-image: url(images/stichericon-blue.png);
}
.home-podcasts .googleplay .pp-button-icon:before{
	background-image: url(images/gplayicon-blue.png);
}
.podcast-list .googleplay:hover .pp-button-icon:before, .homepodcasts .googleplay:hover .pp-button-icon:before{
	background-image: url(images/gplayicon-blue.png);
	background-size:contain;
}
.podcast-list .stitcher:hover .pp-button-icon:before, .homepodcasts .stitcher:hover .pp-button-icon:before{
	background-image: url(images/stichericon-blue.png);
	background-size:contain;
}
.home-podcasts .googleplay:hover .pp-button-icon:before{
	background-image: url(images/playicon.png);
	background-size:contain;
}
.home-podcasts .stitcher:hover .pp-button-icon:before{
	background-image: url(images/stitchericon.png);
	background-size:contain;
}
.fl-node-5ac3a5909282d .pp-subscribe-content{
	font-family: "brandon",Verdana, Arial, sans-serif!important;
}
.fl-node-5ac3a5909282d .pp-subscribe-content h3{
	margin-bottom:2px;
}
.fl-node-5ac3a5909282d .pp-subscribe-content p{
		margin-bottom:25px;
}
.contentgrid .pp-post-filters{margin-bottom:40px;}
.podcast_top_section .fl-col-group.fl-col-group-nested{
	border:1px solid #424344;
	padding:10px 10px 0 10px;
	margin-right:10px;
}
.podcast_top_section .fl-col-group.fl-node-5ac52e2acd648{margin-top:20px;}
.podcast_top_section .fl-col-group h5{margin-bottom:0px!important;padding-bottom:0px;}

.podcast_top_section .fl-col-group .termlist{margin-top:-15px;margin-bottom:-15px;}
.podcast_top_section .fl-col-group .termlist h4 a{
	font-style:normal;
	color:#1d2636!important;
	font-size:16px;
	border-bottom:0px;
	font-family:'brandon'!important;
	text-transform:uppercase;
	padding:0px;
	margin:0px;
}
.podcast_top_section .fl-col-group .termlist h4{
	margin:-30px 0px 10px 0px;
}
.podcast_top_section .fl-col-group .termlist a{
	font-style:italic;
	font-size:14px;
	border-bottom:0px;
	color:#424344;
	display:block;
	line-height: 1.2;
    margin-bottom: 10px;
}
.podcast_top_section .fl-col-group .termlist a:hover{text-decoration:underline;}
.podcast_top_section .fl-col-group .termlist br{display:none;}
.content_wrap{
	max-width:980px;
	margin:auto;
}
.podcast-list article.podcasts.gs-featured-content-entry a{
	border-bottom:0px!important;
}
article .list-main .ep-num{background-color:transparent!important;	color:#000!important;font-size: 15px!important;}
article .list-main .ep-num::before{
    content: '\f130';
    left: 0;
	  font-family: "Font Awesome 5 Free";
    top: 2px;
	color:#000;
	margin-right: 5px;
	font-weight: 900;
}
.podcast_top_section .chosen-container-single .chosen-single,.podcast_top_section .sf-input-text{
background: #fff !important;
border-radius: 0px;
padding: 8px;
font-size: 14px;
font-style: italic;
font-family: 'centurygothic'
}
.podcast_top_section .searchandfilter{
	position:relative;
	margin-bottom:18px;
}
.podcast_top_section .sf-input-text{
	width:100%;
	padding:11px!important;
}
.podcast_top_section .sf-field-search label{display:block;}
.podcast_top_section .sf-field-submit{
	position: absolute;
top: 1px;
right: 0;
}
.podcast_top_section .sf-field-submit input{
	font-size:0px;
	height:39px;
	width:40px;
	background-color: #424344;
background:#424344 url(images/sicon.png) no-repeat center;
	background-size:50%;
	font-family:'Font Awesome 5 Free';
}
.podcast_top_section .chosen-container-single .chosen-single div{
	width:40px;
}
.podcast_top_section .chosen-container-single .chosen-single b{
	width: 40px;
background-position: 10px 1px!important;
height: 100%;
	background-size:auto!important;
background-color: #424344;


right: 0px;

margin-right: 0px;
}
.content .content_wrap .entry-content .list-main h1{
	font-size:21px!important;
	font-family: 'brandon'!important;  
    margin-top: 5px!important;
     line-height: 1.2;
	color:#1D2636!important;
    margin-bottom: 5px;
	padding:0px;
}
.content .content_wrap .entry{
	padding: 15px 0;
border-bottom: 0px dotted #a3a3a3;
margin-bottom: 20px;
	margin-left:2.564102564102564%;
}
.content .content_wrap .entry.first{
	margin-left:0px;
}
.content .content_wrap .entry-content .list-main .guest-name {
	margin-top:0px!important;
	display: inline-flex;
}
.content .content_wrap .entry-content .list-main .guest-name a{
	font-size:15px;
	font-family: 'brandon'!important;  
    margin-top: 0px!important;
    line-height: 1.5;
	color:#1D2636!important;
    margin-bottom: 10px;
	margin-left:2px;
}

#infscr-loading{
	clear:both;
}
.archive.tax-podcast_categories .site-inner{margin-top:100px;}
.archive .podcast_top_section{margin-bottom:50px;}
.content_wrap .archive-pagination{display:none!important}
.load_more {clear:both;margin:20px auto 50px  auto!important;display:block;}
/* single podcast css */
.single-podcasts article .ep-num{
	font-family: 'brandon';
	font-size: 15px;
	color:#FFF;
}
.single article .ep-num:before{
	left: 0;
	top: 2px;
	font-family: 'Font Awesome 5 Free';
	margin-right: 8px;
	content: '\f130';
	font-weight: 900;
}
.single article .entry-header{
	border-bottom:1px solid #d1d2d5;
	padding:0px;
	margin-bottom:20px;
}

.single-podcasts article .entry-header, .single-talks article .entry-header {
	border: 0px; 
	padding: 20px 5%;
	background: #1d2636;
    color: #FFF; 
}

.single-podcasts article .entry-header a,
.single-talks article .entry-header a{
	color: #FFF;
}

.single-talks article .entry-header { text-align: center; }
.single-talks article .entry-header h1 { color: #11b5b9; margin-top: 20px; font-size: 29px; }
.single-talks article .entry-header .talk-info { color: #FFF; padding: 10px; display: inline-block; font-size: 16px; text-transform: uppercase; }
.single-talks article .entry-header .divider-line { 
    width: 2px;
    height: 10px;
    background: #FFF;
    display: inline-block;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
}
.single-talks article .entry-header h2 {
	font-size: 26px;
    padding: 20px;
    font-style: italic;
}
.single-talks article .entry-header .welcome-message {
    font-size: 16px;
    margin: 0 auto;
    max-width: 80%;
}
.single article .entry-header .entry-meta,
.single article .entry-header .guest-name{margin-bottom: 5px!important;}
.single article .entry-title{
	font-size:26px;
	text-transform: uppercase;
	font-family: 'brandon'!important;
	font-weight: normal;
	margin-bottom: 0px!important;
}
.single article .entry-header .entry-meta,.single article .entry-header .guest-name,.single .content .podcasts .guest-name,.single .entry-header .entry-author-link,
.single .entry-header .entry-comments-link a{
	font-size: 17px!important;
		font-family: 'brandon'!important;
	display: inline-block;
	text-transform: uppercase;
	color:#424344;
	margin-right: 10px;
}
.single-podcasts article .entry-header .entry-meta,.single-podcasts article .entry-header .guest-name,.single-podcasts .content .podcasts .guest-name,.single-podcasts .entry-header .entry-author-link,
.single-podcasts .entry-header .entry-comments-link a{ color: #FFF; }

.single .podcasts .entry-meta .entry-time,
.single article .entry-meta .entry-time{
	margin-left: -10px;
}
.single .entry-meta .entry-time:before{
	content:'';
	width:0px;
}
article.post-3497 { max-width: 1100px; margin: 50px auto; }
.gform_wrapper .gfield_description > a { font-size: 12px; }


.powerpress_player,.pp_links{max-width:800px;margin:5px auto;}
.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body{
background:#BCBEC0!important;
}
.pp_links a{color:#1D2636;text-transform:uppercase;
font-size:13px;
font-family:'centurygothic'!important}
.pp_links .powerpress_links_mp3{float:left;}
.powerpress_subscribe_links {
	color:#11B5B9;
}
.sponsor_info{clear:both;
font-size:14px;
	margin-bottom:40px;
color:#6D6E71}
.sponsor_info a{
	color:#6D6E71;
	font-size:12px;
}
.sponsor_info a:hover .sponsor_content, .sponsor_info a:hover { text-decoration: none; }
.sponsor_info a {
	border:1px solid #A7A9Ac;
	padding:10px;
	max-width:720px;
	margin:0px auto;
	display: block; 
}
.sponsor_info .sponsor_heading{
	text-align:center;
	font-style:italic;
}
.transcript_section .sponsor_info img{ max-width:100px; max-height:100px;float:left;margin:10px 20px;}
.sponsor_info .sponsor_content{max-width: 100%;
float: right; }
.sponsor_info h5{
	font-size:15px;
	margin-bottom: 0px;
	text-transform: uppercase;
	font-weight: bold;
}
.single .entry-content .pp_links {
margin-top:-10px!important;
}
.single .entry-content .powerpress_links.powerpress_links_mp3{display: none}
.single .entry-content .pp_links:after{clear: both;content:'';display: block;}
.single .entry-content .pp_links p,.single .entry-content .pp_links a{
	color: #1D2636;
font-size: 12px;
}
.powerpress_links.powerpress_subscribe_links{margin-top:0px;width: 400px !important;}

.single .podcasts .entry-content img.alignnone{
	margin:10px auto!important;
	max-width:650px;
clear:both;	
	display:block;
}
.single article.podcasts { border-bottom: 0px; margin-bottom: 0px; }
.otherinfo h2, .podcast_after_entry .widget-title {
	font-size:26px;
	color:#1D2636;
	margin-bottom: 40px;
	margin-top: 40px;
	text-align: center;
	text-transform: uppercase;
}
.podcast_after_entry .widget-title { color: #FFF; }
.single .show-authors { background-color: #eef0f2; }
.single .tihe-author-box .guest-name{
	font-size:20px;
	color:#1D2636;
	margin-bottom:5px;
}
.single .author-job-title{
	font-size:14px;
}
p.author-bio a, p.author-bio {
font-size: 13px;
}

.single .tihe-author-box .author-bio a {
	font-size:13px;
	border-bottom: 1px dotted #a3a3a3;
}
.single .tihe-author-box .author-bio a:hover {
	color: #11B5B9;
	border-bottom-color: #11B5B9;
}
.tihe-author-box .author-contact-links{
	text-align:center!important;
}
.tihe-author-box .author-contact-links a{
	background:#1D2636!important;
	width:30px;
	height:30px;
	color:#fff;
	text-align: center;
	font-size:16px!important;
	padding:7px 0px!important;
	border-radius:50%;
}
.transcript_section .ep-num{font-size: 15px;
}
.tihe-author-box .author-avatar {

    max-width: 150px!important;
    width: 25%!important;
    display: inline-block;

}
.tihe-author-box .author-inner{width:70%!important}
.episod_info{display: flex;}
.episod_info div{display: flex;flex-direction: column;justify-content: center}
.transcript_section .ep-num:before{content:"\f15c";font-family: 'Font Awesome 5 Free'; font-weight: 400; margin-right: 8px;-webkit-transform: rotate(270deg);
transform: rotate(270deg);}
.transcript_section h2{font-size: 26px;
text-transform: uppercase!important;
	border:0px!important;
}
.after-entry h4.widget-title, .transcript_section h1, .widget_rp4wp_related_posts_widget h3 {
text-align: center;
font-size: 26px;
color:#1D2636;
padding-bottom: 5px;
text-transform: uppercase;
margin: 40px 0; }

.transcript_section { margin-bottom: 40px; }
.transcript_section p { font-size: 14px; margin-bottom: 21px; }

.transcript_section .sponsor_text{
	padding:20px;
	border:1px solid #d1d2d5;
	margin-bottom: 20px;
	font-size:14px;
	position: relative;
  	max-height: 200px;
  	overflow: hidden;
  	transition: max-height 2s ease;
}

.transcript_section .sponsor_text.-expanded {
    max-height: initial;
  }

.transcript_section .sponsor_text:not(.-expanded)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
  
.transcript_button a {width: 100%;color:#1D2636;padding:10px;
border:1px solid #A7A9Ac;font-size:16px;text-align:center; cursor: pointer; }
.transcript_button a:hover{
	background-color:#1D2636;
	color:#fff;
}

.transcript_button.centered { text-align: center; }

.recommendation h4{
	margin-bottom:5px;
	font-weight:normal;
}
a .recommendation h4,a .recommendation .rtext,a .recommendation .author{
	color:#1D2636;
	display:block;
	font-size:15px;
}
.recommendation h5{
padding:0px!important;
	font-family:'brandon';
font-size:15px;margin-bottom:5px;}
.recommendation h6.guest-name{color:#1D2636;
	margin:0px!important;
	font-family:'brandon';
padding:0px!important;
font-size:13px!important; text-transform:capitalize}
a .sponsor_content{
color:#6D6E71
}
a:hover .sponsor_content{
	text-decoration:underline
}
a:hover .recommendation h4{
	color:#11B5B9;
}

.recommendation_info { margin-bottom: 40px; }
.recommendation_info h4{font-size:15px;}

.recommendation_info .recommendation img { height: auto; }

.podcast_side_widgetarea .widget_mc4wp_form_widget{margin-top:30px;}
.podcast_side_widgetarea .widget_mc4wp_form_widget{
	background: #1D2636;
	color: #fff;
	padding:15px;
}
.otherinfo .one-half .recommendation_info.clearfix{
	margin-bottom:-40px;
}
.podcast_side_widgetarea .widgettitle{color:#fff;text-align: center;
margin-bottom:7px!important;}
.podcast_side_widgetarea .mc4wp-form p,.podcast_side_widgetarea .mc4wp-form h4{font-size: 16px;color:#fff;text-align: center;
text-transform: capitalize;
	
	font-weight: normal!important;
font-family:'centurygothic'!important;}
.podcast_side_widgetarea .mc4wp-form input{font-style: italic;
font-size:14px;
width:32.47%;
padding:10px;}

.podcast_side_widgetarea .mc4wp-form input[type="submit"]{
	background: transparent;
	border:1px solid #fff;
	font-style: normal;
}
.podcast_side_widgetarea .mc4wp-form input[type="submit"]:hover{
	background: #fff;
	color:#1D2636
}
.show_box{
	border:1px solid #D1D3D4;
	padding:20px 20px 12px;
	margin:40px 0;
	text-align: center;
}
.show_box h3{
	font-size: 22px;
	color:#11B5B9;
}
.show_box .one-half{margin-bottom:0px;}
.site-container .site-inner .show_box a {
width: 100%;
font-size: 16px;
border:1px solid #d1d2d5;
border-radius: 0px;
padding: 10px 0;
font-family: 'brandon';
background-color: #fff;
color:#1D2636;
margin-bottom: 8px;
}
.site-container .site-inner .show_box a:hover{
	background-color:#11B5B9;
	color: #FFF; 
}
.single .tihe-author-box {

    padding: 0px 20px 25px 0px;
}
.contactrow .fl-callout .fl-icon{margin-right:50px;padding:30px 20px 20px 20px}
.contactrow .fl-callout .fl-icon i:before{font-size:40px!important}
.contactrow .pp-card-image img{
	height:40px;
	width:auto!important;
	
}
.contactrow .fl-module-pp-hover-cards.fl-node-5ac76c99f267b .pp-card-image img{
	height:30px;
	width:auto!important;
}
.contactrow .pp-card-image{
	margin-bottom:25px;
}
.contactrow .pp-hover-card-container .pp-hover-card-title h3{font-size:21px;}
.contactrow .pp-hover-card-container:hover{
	background:#d1d2d5;
}
.contactrow .pp-hover-card-container:hover h3{color:#fff!important;}
.pp-flipbox-container .pp-flipbox-back a{border-bottom:0px;}
.pp-flipbox-container .pp-flipbox-back a:hover{
	border-bottom:0px!important;
	color:#000!important;
text-decoration:underline
}
.pp-testimonials-image {max-width: 150px; margin: 0 auto; }
/* single post css */
.single article .entry-header .blog_icon{
	text-transform:uppercase;
	font-size:15px;
	color:#424344;
	
	display:block;	
	font-family:'brandon'!important
}
.single article .entry-header .blog_icon:before{
	background:#fff url(images/blog-icon.png) no-repeat center;
	width:15px;
	top:4px;
	height:15px;
	content:'';
	margin-right:5px;
	display:inline-block;
	background-size:contain;
}
.single article{
	margin-bottom:60px;
}
.single article .entry-meta .entry-time{
	margin-right:10px;
}
.single-post .enews .mc4wp-form-fields p{
	clear:both;
	display:block;
}
.single .entry-header .entry-comments-link:before{
color:#424344;}
.single .entry-header .entry-comments-link a{
	margin-left:5px;
}
.single article.entry .entry-header .entry-meta .tihe-social a.tite-link:after,.entry-meta .tihe-social .tihe-link:after {
	color:#424344;
}

.single-podcasts article.entry .entry-header .entry-meta .tihe-social a.tihe-link:after {
	color:#FFF;
	left: 2px;
}
.single-podcasts article.entry .entry-header .entry-meta .tihe-social a.tihe-link:hover:after {
	color:#11B5B9;
}
.single .post .entry-meta{display:none}
.single .tihe-author-box .author-avatar img{
	width:150px;
}
.single-post .tihe-author-box{ max-width: 900px; margin:0 auto 30px auto; }
.single-post .after-entry{max-width:1100px;margin:0 auto 30px auto;
}
.single-post .entry-content{max-width:720px;margin:10px auto;}
.after-entry .widget_widget_crp .one-third:first-child,
.after-entry .widget_rp4wp_related_posts_widget .one-third:first-child {
	margin-left:0px;
}

.after-entry .widget{margin-bottom:40px;}
.after-entry .widget:after{clear:both;content:'';
display:block;}
.widget_widget_crp .one-third,
.widget_rp4wp_related_posts_widget .one-third {
	border:1px solid #d1d2d5;
	padding:10px;
}
.widget_rp4wp_related_posts_widget .rp-title { text-transform: Capitalize; }

#podcast_side_widgetarea { margin-top: 40px; }
.podcast_after_entry { background-color: #1d2636; margin-top: 40px; }
.podcast_after_entry .widget_widget_crp, 
.podcast_after_entry .widget_rp4wp_related_posts_widget {max-width:1030px;margin:20px auto 40px auto!important;}
.podcast_after_entry .crp_related_widget:after{clear:both;content:'';display:block;}
.podcast_after_entry .one-third{width:47%;border:0px;clear:none;float:left;
margin:0px 0px 20px 3%;position:relative;
padding-left:75px;padding-right:3%;}
.podcast_after_entry .one-third a{
	display:block;
	font-size: 21px !important;
	font-family:'brandon';
	color: #FFF;
	line-height:1.4;
	text-align: left;
}
.podcast_after_entry .one-third .guest-name a{font-size:15px!important;}
.podcast_after_entry .one-third:nth-child(2n+1){clear:both;}

.podcast_after_entry .one-third:hover a{
	text-decoration:underline;
}
.podcast_after_entry .one-third .ep-num{
	display:block;
	text-align:left;
	margin-top:-10px;
	font-size:15px;
}
.podcast_after_entry .one-third .ep-num::before {
    content: '\f130';
    left: 0;
    font-family: "Font Awesome 5 Free";
    top: 0px;
    color: #FFF;
    margin-right: 5px;
    font-weight: 900;
}
.podcast_after_entry .one-third .guest-name{
	display:block;
	text-align:left;
	
	font-weight:normal;
	font-size:15px;
	margin-top:5px;
}
.after-entry .enews{background:#11B5B9;padding:15px;display:flex;
color:#fff;}
.after-entry .enews h3{
	font-size:27px;
	color:#1D2636;
	margin-bottom:5px!important;
}

.after-entry .enews .one-third,
.after-entry .enews .two-thirds{
	display:flex;
	flex-direction:column;
	vertical-align:baseline;
	margin-bottom:0px;

	justify-content:end;
}
.after-entry .enews h4{font:21px/40px 'centurygothic'!important;text-transform:capitalize!important;
color:#fff!important;
margin-bottom:10px;}
.after-entry .enews img.alignnone{
	margin-bottom:0px;
}
.after-entry .enews p{display:inline;}
.after-entry .enews form label{display:none}

.after-entry .enews form input:not([type="submit"]){width:40%;float:left;
margin-right:1%;
padding:10px;
font-size:13px}
.after-entry .enews form input[type="text"]{
	width:30%;
}
.after-entry .enews form input[type="submit"]{
	width:20%;
	padding:10px;
	background:#1D2636
	
}
.after-entry .enews form input[type="submit"]:hover{
	background:#d1d2d5;
}

.comment-form,.comment-respond{clear:both;}
.comment-respond,.entry-pings, .entry-comments {max-width:1140px;margin: 40px auto;}
.entry-pings li article, .entry-comments li article { padding: 10px; background: #FFF; }
.comment-respond p{margin-bottom:15px;}
.comment-form input,.comment-form textarea{width:100%!important;font-size:16px;padding:10px;font-style:italic;
color:#d1d2d5;border-color:#000;}
.comment-form input[type="submit"]{
	font-style:normal;
	color: #ffffff;
    background-color: rgba(196, 30, 94, 1);
    border: 1px solid #c41e5e;	
}
.comment-form input[type="submit"]:hover{
	background-color:#FFF;
	color: #c41e5e;
}
.comment-respond h3{text-transform:uppercase;color:#1D2636; font-size: 26px;
    text-align: center;}
.entry-comments h3{display:none;}
.entry-comments a{color:#00B6B9;}
.entry-comments li article{border:0px;}
.single .entry-footer{display:none;}
.divwrap h2{
    font-size: 22px;
    color: #1D2636;
    padding-bottom: 5px;
    border-bottom: 1px solid #A7A9Ac;
	text-transform: uppercase;
}.divwrap p{display: inline;}
.search .entry-title a{
	color: #1d2636!important;
font-family: "brandon",Verdana, Arial, sans-serif;
font-weight: 400!important;
font-size: 19px!important;
	text-transform:uppercase;
	margin: 5px 0 !important;
}
.search .entry-title a:hover {
	text-decoration: underline;
}
.search .more-link{
	display:none;
}

.search .entry.type-podcasts,
.search .entry.type-recommendation {
	margin-top: 3px;
	position: relative;
}

.search .entry.type-podcasts::before,
.search .entry.type-recommendation::before {
	left: 0;
	top: 2px;
	color: #1d2636!important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-bottom: 4px;
}

.search .entry.type-podcasts::before {
	content: '\f130'!important;
}

.search .entry.type-recommendation::before {
	content: '\f02e'!important;
}

.search .entry.type-podcasts::after,
.search .entry.type-recommendation::after {
	left: 16px;
	top: 2px;
	margin-right: 8px;
	position: absolute;
	font-size: 1.6rem;
	content: 'PODCAST';
}

.search .entry.type-podcasts::after {
	content: 'PODCAST';
}

.search .entry.type-recommendation::after {
	content: 'RECOMMENDATION';
}

.search .entry.type-post:before{
	background:#fff url(images/blog-icon.png) no-repeat left center;
	width:100%;	
	height:auto;
	content:'';
	margin-right:5px;
	display:inline-block;
	background-size:3%;
	content:'BLOG POST';
	padding-left:15px;
	
color: #1d2636!important;
}
.search-filter-results{width:1000px;margin:0 auto;}
.search-filter-results .archive-pagination{margin-top:40px!important;
	clear:both}
.search-filter-results .archive-pagination:after{
	clear:both;
	content:'';
	display:inline-block;
}
.pagination-next{float:left}
.nav-previous{float:right}
.content .search-filter-results  .podcast-list{border-bottom:0px;}
.archive .post .entry-title,.archive .post .entry-title a ,.search-filter-results .entry-title a{
	color: #1d2636!important;
font-family: "brandon",Verdana, Arial, sans-serif;
font-weight: 400!important;
font-size: 19px!important;
	text-transform:uppercase;
	text-align:center;
	

}
.search-filter-results .entry-title{
	text-align:left;
	width:100%;
	display:block;
	margin:5px 0!important;
	line-height:1.3
}
.search-filter-results .post .entry-meta{display:none;
}
.archive .post{
	border:1px solid #d1d2d5;
	padding:10px;
	height:480px;
}
.search-filter-results .post{width:48%;float:left;
margin-left:2%}
.search-filter-results .post:nth-child(2n+1){
	clear:both;
}
.archive .post .entry-meta{display:none}
.archive .post .more-link{
	color: #d1d3d4;
font-size: 14px;
cursor: pointer;

}
.archive-title{
font-size: 36px;
text-align: center;
color: #1D2636 !important;
margin-bottom: 0px;
margin-top: 20px;
}
.page-template-page_filterposts h1{
font-size: 36px;
text-align: center;
color: #1D2636 !important;
margin-bottom: 0px;
	padding-bottom: 40px;
margin-top: -60px;
	padding-top:0px;
	line-height: 1;
	border-bottom: 1px dotted #a3a3a3;
}
.page-template-page_filterposts .entry .ep-num,.page-template-page_filterposts .entry .guest-name{font-size:15px!important;}
.page-template-page_filterposts h1.entry-title, .page-template-page_filterposts h1.entry-title a{border:0px;
	
font-size:21px!important;
	color: #1D2636 !important;}
.one-fourth.sub-btn{margin-left:0px;}
.pp-subscribe-5acf66129ec82 
.pp-subscribe-body{
	border:2px solid #1D2636
}
.pp-subscribe-5acf66129ec82 
.pp-subscribe-content h3{
	color:#1D2636;
	margin-bottom:10px;
	text-align:left;
}
.pp-subscribe-5acf66129ec82 
.pp-subscribe-content p{
	color:#1D2636;
	text-align:left;

	text-transform:none;
	font:16px/22px 'centurygothic';
	
}
.footer-widgets .widget_powerpress_subscribe {
    max-width: 300px;
    position: relative;
	margin-top:-30px;
    margin-bottom: 30px;
}
.footer-widgets .simple-social-icons{
	margin-top:-30px
}
 .footer-widgets .widget_powerpress_subscribe .pp-ssb-widget.pp-ssb-widget-modern {
    overflow: hidden;
    box-shadow: 2px 5px 4px -4px rgba(0,0,0,.25);
    -webkit-box-shadow: 2px 5px 4px -4px rgba(0,0,0,.25);
    -moz-box-shadow: 2px 5px 4px -4px rgba(0,0,0,.25);
    -o-box-shadow: 2px 5px 4px -4px rgba(0,0,0,.25);
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: height;
    transition-property: height;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    position: absolute;
    z-index: 2;
    display: none;
    height: 0px;
}
 .footer-widgets .widget_powerpress_subscribe h4.widget-title::before {
    height: 44px;
    width: 42px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #d1d2d5;
    color: #FFFFFF;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;

}
 .footer-widgets .widget_powerpress_subscribe.opened .pp-ssb-widget.pp-ssb-widget-modern {
    height: auto;
    display: block;
}
.pp-ssb-itunes .pp-ssb-ic {
    background-position: -49px 0;
}
.footer-widgets .pp-ssb-ic {
    display: none;
}

.footer-widgets .widget_powerpress_subscribe h4.widget-title::before {
    content: "\f09e";
    padding: 9px 14px;
}
.footer-widgets .widget_powerpress_subscribe h4.widget-title {
    background-color: #fff;
    color: #333;
	font-size:14px!important;
    padding: 10px 10px 10px 50px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 85%;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: border-radius;
    transition-property: border-radius;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}
.footer-widgets .pp-ssb-widget a.pp-ssb-btn {
    margin: 0px;
    padding-left: 15px;
    box-shadow: none;
    border-radius: 0;
    background-color: #11B5B9;
    font-weight: 300 !important;
    font-size: 15px;
	padding: 5px 10px;
height: 30px;
line-height: 24px;
}

.footer-widgets .pp-ssb-widget a.pp-ssb-btn:hover {
background-color: #d1d2d5;
}
.pp-content-post .pp-post-title a{
border-bottom: 0px;
}
.pp-content-post .pp-post-title a:hover{
border-bottom: 0px;
text-decoration: underline;
}


@media screen and (max-width:1600px){
	.fl-node-5ac38898a551e > .fl-col-content{
		margin:20px!important
	}
	.fl-builder-content-5041 .fl-node-5ac22adfac09d > .fl-row-content-wrap{
		background-position: center right 35%;
	}
}
@media screen and (max-width:1100px){
.fl-builder-content-5041 .fl-node-5ac22adfac09d > .fl-row-content-wrap {
    background-position: center right 40%;
}
}
@media screen and (max-width:940px){
	.after-entry .enews{display:block;}
	.after-entry .enews .one-third, .after-entry .enews .two-thirds {display:block;}
	.after-entry .enews img{
		display:block;
		margin:20px auto!important;
	}
.home.header-image .site-header .nav-primary{display:block;}

	
	.fl-builder .site-inner{padding:0px}
	.fl-builder .site-inner{margin-top:0px;}
	.fl-node-5ac38938e2daa img{max-width:300px}
	.content_wrap{margin:0 3%;}
	.content .content_wrap .entry{margin-left:0px;}
	.one-fourth.sub-btn{margin-bottom:0px;}
	.search .one-third img{
		max-width:50%
	}
	.search .entry.type-post::before{background-size:12px auto!important;}
	.fl-node-5ac3a78e84163 > .fl-row-content-wrap{
		background-position: right 10% center;
	}
}
@media screen and (max-width:800px){
	.sponsor_info .sponsor_content {
    width: 72%;
	}
	.sponsor_info img{width:20%}
	.footer-widgets .widget-area.footer-widget-area,.footer-widgets .widget-area:first-child{width:46%!important;float:left;
	box-sizing:border-box;
	margin-right:0px!important}
	.footer-widgets .widget-area:nth-child(2n+1){
		clear:both;
	}
	.site-inner .fl-row-content-wrap{padding-left:2%!important;padding-right:2%!important}
	.responsive-menu-icon{text-align:Center;}
		.one-third.sub-btn{width:100%;margin-bottom:0px!important;max-width:400px;}
	.pp-dual-button-content a.pp-button{max-width:300px}
	.search-filter-results .post{width:100%;
	clear:both;
	max-width:400px;
		float:none;
	margin:10px auto;}
	.sub-btn{max-width:30%;}
	.sub-btn .fl-module-content{margin:10px;}
	.fl-node-5ac52e2acd648 .fl-col-small{float:left;clear:none;width:48%!important}
	.fl-node-5ac52e2acd648 .fl-col-small:nth-child(2n+1){clear:both}
	.chosen-container{max-width:100%}
	.after-entry .enews form input:not([type="submit"]){width:49%}
	.after-entry .enews form input[type="submit"]{
		width:99%;
		margin-top:10px;
	}
}
@media screen and (max-width:500px){
	.tihe-author-box .author-avatar,.tihe-author-box .author-inner{width: 100%!important;
		text-align: center;}
	.sub-btn{max-width:100%;}
	.fl-builder .featuredpost .entry .post-info{
		left:0px
	}
	.fl-builder .featuredpost .entry .guest-name,
	.fl-builder .featuredpost .entry h2{
		margin-left:10px
	}
	.pp_links p{display:inline}
	.pp_links .powerpress_links_mp3,.pp_links .powerpress_subscribe_links{margin:10px auto 20px auto ;width:100%!important;display:block;float:none;
	overflow:visible;}
	.pp_links .powerpress_subscribe_links:after{
		clear:both;
		content:'';
		display:block;
	}
	.sponsor_info{margin-top:20px;clear:both;}
	.single article .entry-title {
    font-size: 22px;
	}
	.podcast_after_entry .one-third{
		width:100%;
		
	}
	.podcast_side_widgetarea .mc4wp-form input{
		width:100%
	}
	.podcast_after_entry .one-third .crp_title{padding-left:10px;}
	.sponsor_info .sponsor_content {
    width: 100%;
	}
	.sponsor_info img{width:100%;margin:auto;display:block;
	float:none}
	.single .podcasts .entry-content img.alignnone{
		max-width:100%;
	}
	.footer-widgets .widget-area.footer-widget-area,.footer-widgets .widget-area:first-child{width:100%!important;
	}
		.search .one-third img{
		max-width:100%;
			display:block;
			margin:auto;
	}
	.fl-node-5ac52e2acd648 .fl-col-small{width:100%!important;clear:both;}
	.search .entry.type-post::before{background-size:2%}
	.after-entry .enews form input:not([type="submit"]){width:100%;margin-top:10px;}
	.after-entry .enews form input[type="submit"]{
		width:100%;
		margin-top:10px;
	}
}

