/*
	Theme Name: CPTV
	Description: Custom theme for CPTV
	Author: Rob Gabaree
	Version: 1.2.0

	Template: genesis
	Template Version: 2.0.2
*/


/* Table of Contents

	- Imports
	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
		- Buttons
		- Misc
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
		- Social Icons
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
		- Isotope
		- Magnific Popup
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Ads
	- Homepage Sponsors
	- Footer Widgets
	- Site Footer
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px

*/


/*
Imports
---------------------------------------------------------------------------------------------------- */

@import url(//fonts.googleapis.com/css?family=Lato:300,700);
@import url(//fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic);


/*
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:#000}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
--------------------------------------------- */

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

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

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

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary: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 */
	background-color: #cccccc;
	background-attachment: fixed;
	background-image: -webkit-linear-gradient(top, #cccccc, #ffffff 50%); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #cccccc, #ffffff 50%); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}

body {
	/*background-color: #fff;*/
	color: #444;
	font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.625;
}

/**
 * Chrome font-size bugfix
 *
 * See: http://www.studiopress.com/forums/topic/font-sizing-bug-in-chrome/
 */
body > div {
  font-size: 16px;
  font-size: 1.6rem;
}

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

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #a9182b;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.4rem;
}

a:hover {
	color: #000;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: inside;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 40px 40px 24px;
	margin: 4rem 4rem 2.4rem;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

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

cite {
	font-style: normal;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 10px;
	margin: 0 0 1rem;
}

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

h2 {
	font-size: 24px;
	font-size: 2.4rem;
}

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

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

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;
	width: auto; /* IE8 */
}

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

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid rgba(204,204,204,.75);
	border-radius: 3px;
	box-shadow: 1px 1px 3px #eee inset;
	color: #444;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px;
	padding: 1.6rem;
	width: 100%;
}

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

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #333;
	border: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	padding: 16px 24px;
	padding: 1.6rem 2.4rem;
	text-transform: uppercase;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: #a9182b;
}

.entry-content .button:hover {
	color: #fff;
}

.button {
	border-radius: 3px;
	display: inline-block;
}

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

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

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

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

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

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

/* Buttons
--------------------------------------------- */

.btn {
	display: inline-block;
	padding: 10px;
	padding: 1rem;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
	text-shadow: 0 1px 0 rgba(255,255,255,1);
	color: #444;
	background-color: #eee;
	background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #ffffff, #eeeeee); /* Chrome 26, Firefox 16+, IE 10+, Opera */

	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.25) inset; /* Android 2.3+, iOS 4.0.2-4.2, Safari 3-4 */
	        box-shadow: 0 0 10px 0 rgba(0,0,0,.25) inset; /* Chrome 6+, Firefox 4+, IE 9+, iOS 5+, Opera 10.50+ */

	border-radius: 3px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

.btn-donate {
	text-shadow: 0 1px 0 rgba(0,0,0,1);
	color: #fff;
	background-color: #a9182b;
	background-image: -webkit-linear-gradient(top, #d71e37, #a9182b); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #d71e37, #a9182b); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}

.btn-donate:hover {
	color: #fff;
}

.btn-ubermenu {
	padding: 5px 15px !important;
	padding: .5rem 15px !important;
	text-transform: uppercase;
	font-size: 24px;
	font-size: 1.8rem;
	color: #444 !important;
	text-shadow: 0 1px 0 rgba(255,255,255,.5) !important;
	background-color: #7fcff0;
	background-image: -webkit-linear-gradient(top, #9de0fb, #7fcff0); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #9de0fb, #7fcff0); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}

/* Misc
--------------------------------------------- */

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}


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

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

/*
.site-container,
.footer-widgets > .wrap,
.homepage-sponsors > .wrap,
.homepage-donors > .wrap,
.nav-secondary > .wrap {
	margin: 0 auto;
	max-width: 1140px;
	background-color: #fff;
}
*/

.site-container {
	margin: 0 auto;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	max-width: 1140px;
	background-color: #fff;
	border-top: none;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

.wrap,
.site-inner {
	padding: 0 40px;
	padding: 0 4rem;
}

.site-inner {
	clear: both;
	padding-bottom: 20px;
	padding-bottom: 2rem;
}

.nav-secondary .wrap {
	padding: 0;
}

.footer-widgets {
	border-radius: 0 0 6px 6px;
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

/* 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: 920px;
}

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

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

/* Content */

.content {
	float: left;
	width: 720px;
}

.content-sidebar .content {

}

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

/*
.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: 520px;
}
*/

/* Primary Sidebar */

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

/*
.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,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

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


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

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

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

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

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

.sticky {
}

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

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

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

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

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

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

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

.gallery-caption {
}

.widget_calendar table {
	width: 100%;
}

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

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

.breadcrumb {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.archive-description {
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	color: #333;
	font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}

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

.author-box .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

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

.entry-title {
	font-size: 30px;
	font-size: 3rem;
}

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

.entry-subheader {
	margin-bottom: 5px;
	margin-bottom: .5rem;
}

.entry-subheader .entry-title,
.entry-subheader .entry-title a {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	color: #a9182b;
	font-size: 18px;
	font-size: 1.8rem;
	text-transform: uppercase;
}

.entry-title a:hover {
	color: #a9182b;
}

.widget-title {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
}

.sidebar .widget-title a {
	border: none;
}

.archive-title {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-associated-posts li {
	font-size: 20px;
	font-size: 2rem;
}


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

.widget {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding-bottom: 20px;
	padding-bottom: 2rem;
	font-size: 14px;
	font-size: 1.4rem;
	color: #666;
	border-bottom: 1px solid #ddd;
}

.widget:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.widget   p,
.widget  ol,
.widget  ul {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.widget img {
	margin-bottom: -4px;
	margin-bottom: -.4rem;
}

.widget   p:last-child,
.widget  ol:last-child,
.widget  ul:last-child {
	margin-bottom: 0;
}

.widget .widget-title,
.widget .widget-title a {
	color: #000;
}

.cptv-homepage .widget {
	margin-bottom: 60px;
	margin-bottom: 6rem;
	padding-bottom: 0;
	border-bottom: none;
}

.cptv-homepage .widget:last-child {
	margin-bottom: 0;
}

.cptv-homepage .widget > .widget-title {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1;
}

.cptv-homepage .widget .widget-title,
.cptv-homepage .widget .widget-title a {
	/*color: #ccc;*/
	font-weight: 300;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

.cptv-homepage .widget-light .widget-title,
.cptv-homepage .widget-light .widget-title a {
	color: #888;
}

.cptv-homepage .widget > .widget-title span {
	color: #a9182b;
	/*color: #d09199;*/
	font-weight: 500;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

.cptv-homepage .widget-light .widget-title span {
	color: #d09199;
}

.cptv-homepage .widget-light .widget-title:hover,
.cptv-homepage .widget-light .widget-title a:hover {
	color: #444;
}

.cptv-homepage .widget-light > .widget-title:hover span,
.cptv-homepage .widget-light > .widget-title a:hover span {
	color: #a9182b;
}

.cptv-homepage .widget-owl-carousel {
	margin-bottom: 0;
}

.cptv-homepage .widget-featured-channels {
	text-align: center;
}

.widget-featured-donors .btn {
	margin-top: 20px;
	margin-top: 2rem;
}

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

/*
.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 0 0 24px;
	padding: 0 0 2.4rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
}

.featured-content .entry-title a {
	border: none;
}
*/

/* Social Icons
--------------------------------------------- */

.footer-widgets .widget.social-icons-widget {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding-bottom: 0;
	border-bottom: none;
}

.footer-widgets .widget.social-icons-widget:before {
	content: " ";
	display: table;
}

.footer-widgets .widget.social-icons-widget:after {
	clear: both;
	content: " ";
	display: table;
}

.footer-widgets .widget.social-icons-widget ul {
	width: auto;
	float: right;
	list-style-type: none;
}

.footer-widgets .widget.social-icons-widget ul li {
	margin-bottom: 0;
}

.footer-widgets .widget.social-icons-widget ul li:last-child {
	margin-right: 0;
}

.footer-widgets .widget.social-icons-widget img {
	border-radius: 3px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

/* AddToAny
--------------------------------------------- */

.addtoany_share_save_container {
	margin: 0 !important;
}

.addtoany_list a {
	line-height: 1;
}

.addtoany_list a:first-child {
	padding-left: 0;
}


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

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

.enews-widget {
	color: #999;
}

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

.enews-widget input {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

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

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

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1.6rem;
	padding: 16px;
	padding: 1.6rem;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1.6rem 0 0;
}

div.gform_wrapper .description, div.gform_wrapper .gfield_description, div.gform_wrapper .gsection_description, div.gform_wrapper .instruction,
div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 16px;
	font-size: 1.6rem;
}

div.gform_wrapper .description, div.gform_wrapper .gfield_description, div.gform_wrapper .gsection_description, div.gform_wrapper .instruction {
  font-family: 'Noto Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}


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

img#wpstats {
	display: none;
}


/* Magnific Popup
--------------------------------------------- */

.mfp-bg {
	background-color: #eee;
}

.mfp-wrap {
	overflow-y: hidden !important;
	overflow-x: hidden !important;
}

.mfp-container {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	width: auto;
	height: auto;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
}

.image-link {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1045;
}

html .mfp-image-holder button.mfp-close {
	opacity: 1;
	margin: 0;
	right: 0;
	top: 0;
	cursor: pointer;
	padding: 5px 10px;
	width: auto;
	height: auto;
	line-height: 1;
	color: #fff;
	background-color: #000;
	font-style: normal;
	font-size: 18px;
	font-weight: bold;
	font-family: inherit;
	text-align: left;
	text-transform: lowercase;
	border-radius: 4px;
	background-clip: padding-box;
}

html .mfp-image-holder button.mfp-close:hover {
	color: #fff;
	background-color: #a9182b;
}

@media (max-width: 400px) {
	html .mfp-image-holder button.mfp-close {
		font-size: 12px;
	}
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

/* Display Grid
--------------------------------------------- */

.display-grid {
	clear: both;
	overflow: hidden;
	line-height: 1;
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
}

.display-grid-item {
	float: left;
	position: relative;
	width: 25%;		/* desired width */
}

.display-grid-item:before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.display-grid-item-inner {
	top:    10px;
	left:   10px;
	bottom: 0;
	right:  10px;
	position:  absolute;
	border: 1px solid rgba(204,204,204,.75);
}

.display-grid-item-inner img {
	display: block;
}

.display-grid .display-grid-header {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  border-radius: 6px;
  background-clip: padding-box;
}

.display-grid .display-grid-header > h2 {
  margin: 0;
  /* ... */
  overflow: hidden;
  background-color: rgba(0,0,0,.65);
}

.display-grid .display-grid-header:hover > h2  {
  /* -... */
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

.display-grid .display-grid-header > h2 > a {
  display: block;
  padding: 10px;
  padding: 1rem;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,1);

}

.select2-container {
	width: 25%;
}

#filters,
.select2-container {
	margin-right: 5px;
	margin-right: .5rem;
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

#filters button {
	padding: 0.5rem 1rem;
	color: inherit;
	background-color: #f5f5f5;
	border: 1px solid #eee;
	color: #000;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	outline: 0;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#filters button.active {
	color: #a9182b;
}

@media only screen and (max-width : 1050px) and (min-width : 651px) {
  .display-grid > .display-grid-item {
    width: 33.3%;
  }

  .display-grid .display-grid-header > h2 > a {
  	font-size: 12px;
  	font-size: 1.2rem;
  }
}

@media only screen and (max-width : 650px) and (min-width :  481px) {
  .display-grid > .display-grid-item {
    width: 50%;
  }

  .display-grid .display-grid-header > h2 > a {
  	font-size: 12px;
  	font-size: 1.2rem;
  }
}

@media only screen and (max-width : 480px) {
  .display-grid > .display-grid-item {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }

  .display-grid {
  	margin: 0;
  }

  .display-grid-item:before {
  	padding: 0;
  }

  .display-grid-item-inner {
  	position:  relative;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  }

  .display-grid .display-grid-header {
  	bottom: 0;
  }
}



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

/*
.site-header {
	background-color: #fff;
}

.site-header .wrap {
	padding: 40px 0;
	padding: 4rem 0;
}
*/

.site-header {
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.site-header .wrap {
	position: relative;
	padding-top: 40px;
	padding-top: 4rem;
}

.site-header-search {
	float: right;
	margin-top: -10px;
	margin-top: -1rem;
}

.site-header-search input {
	width: 200px;
	padding: 10px;
	padding: 1rem;
	border-radius: 0;
	color: #444;

	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

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

.title-area {
	float: left;
}

.site-title {
	margin: 0;
}

.site-title a,
.site-title a > img {
	margin: 0;
	display: block;
}

/*
.title-area {
	float: left;
	font-family: Lato, sans-serif;
	font-weight: 700;
	padding: 16px 0;
	padding: 1.6rem 0;
	width: 320px;
}

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

.site-title {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1;
	margin: 0 0 8px;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

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

.site-description {
	color: #999;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
}
*/

/* Full width header, no widgets */

/*
.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}
*/

/* Logo, hide text */

/*
.header-image .site-header .wrap {
	background: url(images/logo.png) no-repeat left;
	padding: 0;
}

.header-image .site-title a {
	float: left;
	min-height: 164px;
	width: 100%;
}
*/

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

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

.header-image .site-header .widget-area {
	padding: 40px 0;
	padding: 4rem 0;
}

.site-header .search-form {
	float: right;
	margin-top: 24px;
	margin-top: 2.4rem;
}
*/


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

.genesis-nav-menu {
	clear: both;
	color: #999;
	line-height: 1.5;
	width: 100%;
}

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

.genesis-nav-menu a {
	border: none;
	color: #999;
	display: block;
	padding: 0 24px;
	padding: 0 2.4rem;
	position: relative;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #333;
}

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #999;
}

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

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px 20px;
	padding: 1.6rem 2rem;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -54px 0 0 199px;
}

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

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

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

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 28px 0;
	padding: 2.8rem 0;
	text-transform: uppercase;
}

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

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

.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 1.4rem 0 0;
}

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

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -55px;
}

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

.nav-primary {
	position: absolute;
	right: 40px;
	right: 4rem;
	bottom: 0;
	top: auto;
	left: auto;
}

.nav-primary .wrap {
	padding: 0;
}

.menu-primary > li:first-child > a {
	padding-left: 0;
}

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

.nav-secondary {
  position: relative;
  color: #fff;
  background-color: #333;
  border-bottom: 5px solid rgba(204,204,204,.75);
  text-align: right;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#333333)); /* Chrome, Safari 4+ */
  background-image: -webkit-linear-gradient(top, #444444, #333333); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
  background-image:    -moz-linear-gradient(top, #444444, #333333); /* Firefox 3.6-15 */
  background-image:      -o-linear-gradient(top, #444444, #333333); /* Opera 11.10-12.00 */
  background-image:         linear-gradient(to bottom, #444444, #333333); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */

  box-shadow: 0 0 10px rgba(0,0,0,.3) inset;
}

.nav-secondary .genesis-nav-menu a {
  padding-top: 5px;
  padding-top: 0.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
  padding-left: 12px;
  padding-left: 1.2rem;
  padding-right: 12px;
  padding-right: 1.2rem;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(0,0,0,.75);
}

.nav-secondary .genesis-nav-menu .menu-item-donate > a {
  background-color: #921c21;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a22a2f), to(#921c21)); /* Chrome, Safari 4+ */
  background-image: -webkit-linear-gradient(top, #a22a2f, #921c21); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
  background-image:    -moz-linear-gradient(top, #a22a2f, #921c21); /* Firefox 3.6-15 */
  background-image:      -o-linear-gradient(top, #a22a2f, #921c21); /* Opera 11.10-12.00 */
  background-image:         linear-gradient(to bottom, #a22a2f, #921c21); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}

.nav-secondary .genesis-nav-menu .menu-item-listen-live {
  float: right;
  text-align: right;
}

.nav-secondary .genesis-nav-menu .menu-item-listen-live > a {
  background-color: #ff0000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b41919), to(#ff0000)); /* Chrome, Safari 4+ */
  background-image: -webkit-linear-gradient(top, #b41919, #ff0000); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
  background-image:    -moz-linear-gradient(top, #b41919, #ff0000); /* Firefox 3.6-15 */
  background-image:      -o-linear-gradient(top, #b41919, #ff0000); /* Opera 11.10-12.00 */
  background-image:         linear-gradient(to bottom, #b41919, #ff0000); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}


/* Mobile Navigation
--------------------------------------------- */

.menu-mobile-header,
.menu-mobile-header > p {
  cursor: pointer;
}

.menu-mobile-header {
  display: none;
  padding: 10px 0;
  padding: 1.0rem 0;
  color: #fff;
}

.menu-mobile-header > p {
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,.75);
}

.nav-primary .menu-mobile-header {
  background-color: #7F386A;
}

.nav-secondary .menu-mobile-header {
  background-color: #333;
}

.menu-mobile-header.menu-mobile-header--donate {
	color: #fff;
	background-color: #921c21;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a22a2f), to(#921c21)); /* Chrome, Safari 4+ */
	background-image: -webkit-linear-gradient(top, #a22a2f, #921c21); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:    -moz-linear-gradient(top, #a22a2f, #921c21); /* Firefox 3.6-15 */
	background-image:      -o-linear-gradient(top, #a22a2f, #921c21); /* Opera 11.10-12.00 */
	background-image:         linear-gradient(to bottom, #a22a2f, #921c21); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}

.menu-mobile-header.menu-mobile-header--donate a {
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,.75);
}


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

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

.entry {
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding-bottom: 40px;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(204,204,204,.75);
}

.entry:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content p,
.entry-content ol,
.entry-content ul,
.quote-caption {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.entry-content p:last-child,
.entry-content ol:last-child,
.entry-content ul:last-child,
.quote-caption:last-child {
	margin-bottom: 0;
}

.entry-content ol,
.entry-content ul {
	margin-left: 40px;
	margin-left: 4rem;
}

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

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

.entry-meta {
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-meta a {
	border-bottom: 1px solid #ddd;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	margin: 0 -40px;
	margin: 0 -4rem;
	padding: 32px 40px 8px;
	padding: 3.2rem 4rem 0.8rem;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

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

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

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 40px 0;
	margin: 4rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #f15123;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

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

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.entry-comments {
	/*
	padding: 40px;
	padding: 4rem;
	*/
}

.comment-respond,
.entry-pings {
	/*
	padding: 40px 40px 16px;
	padding: 4rem 4rem 1.6rem;
	*/
}

.comment-list .comment-respond {
	margin-top: 20px;
	margin-top: 2rem;
}

.comment-respond a,
.entry-comments a {
	border-bottom: 1px solid #ddd;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
	color: #000;
	font-weight: 700;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

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

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

li.comment {
	background-color: #fff;
	border: 1px solid rgba(204,204,204,.75);
	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

ul.children li.comment {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

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

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
	border: 1px solid rgba(204,204,204,.75);
}

.form-submit {
	margin-bottom: 0;
}

.comment-meta {
	font-size: 14px;
	font-size: 1.4rem;
}


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

.sidebar {

}

/*
.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}
*/


/*
Ads
---------------------------------------------------------------------------------------------------- */

div[id^="div-gpt-ad-"] {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}


/*
News
---------------------------------------------------------------------------------------------------- */

.featured-news {
	clear: both;
	overflow: hidden;
	margin: -10px;
	margin: -1rem;
}

.featured-news-item {
	float: left;
	width: 25%;
	padding: 10px;
}

.featured-news.three .featured-news-item {
	width: 33.3333333333%;
}

.featured-news-item .entry-title {
	margin: 10px 0 0 0;
	margin: 1rem 0 0 0;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.3;
}

.featured-news-item .entry-meta {
	margin: 5px 0 0 0;
	margin: .5rem 0 0 0;
}

.featured-news-item .entry-content {
	margin: 1rem 0 0 0;
}

.widget-featured-news .featured-news-item .entry-image img {
	border: 1px solid rgba(0,0,0,.1);

	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

@media only screen and (max-width : 650px) and (min-width :  481px) {
	.featured-news .featured-news-item,
  .featured-news.three .featured-news-item {
  	width: 50%;
  }
}

@media only screen and (max-width : 480px) {
	.featured-news .featured-news-item,
  .featured-news.three .featured-news-item {
  	width: 100%;
  }
}

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

	.featured-news .featured-news-item,
  .featured-news.three .featured-news-item {
		width: 50% !important;
	}

}

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

	.featured-news .featured-news-item,
  .featured-news.three .featured-news-item {
		width: 100% !important;
	}

}


/*
Homepage Sponsors
---------------------------------------------------------------------------------------------------- */

.homepage-sponsors {
	padding: 20px 0;
	padding: 2rem 0;
	color: #fff;
	border-top: 3px solid #ccc;
	background-color: #333;
	box-shadow: 0 0 10px rgba(0,0,0,.3) inset;
}

.homepage-sponsors .widget,
.homepage-sponsors .widget-title {
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,.75);
}


/*
Homepage Donors
---------------------------------------------------------------------------------------------------- */

.homepage-donors {
	padding: 20px 0;
	padding: 2rem 0;
	color: #fff;
	border-top: 3px solid #666;
	background-color: #666;
	background-image: -webkit-linear-gradient(top, #666, #888888); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #666, #888888); /* Chrome 26, Firefox 16+, IE 10+, Opera */

	box-shadow: 0 0 10px rgba(0,0,0,.3) inset;
}

.homepage-donors .widget {
	margin-bottom: 0;
}

.homepage-donors .widget,
.homepage-donors .widget-title {
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,.75);
}

.homepage-donors .display-grid {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}

.homepage-donors .display-grid-item-inner {
	border: none;
}


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

.footer-widgets {
	clear: both;
	padding: 20px 0;
	padding: 2rem 0;
	background-color: #ffffff;
	border-top: 5px solid rgba(204,204,204,.75);
	background-image: -webkit-linear-gradient(top, #ffffff, #dddddd); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #ffffff, #dddddd); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}

.footer-widgets-1,
.footer-widgets-2 {
	width: 380px;
}

.footer-widgets-3 {
	width: 300px;
}

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

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

.footer-widgets-1 .widget,
.footer-widgets-2 .widget {
	padding-right: 20px;
	padding-right: 2rem;
}

.footer-widgets a {
	color: #666;
}

.footer-widgets .widget {
	margin-bottom: 0;
	color: #666;
	text-shadow: 0 1px 0 rgba(255,255,255,.75);
}

.footer-widgets .widget ul {
	list-style-type: square;
}

.footer-widgets .widget ul li {
	color: #aaa;
	margin-bottom: 5px;
	margin-bottom: .5rem;
}

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

.footer-widgets .widget .widget-title {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
}

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

	.footer-widgets-1,
	.footer-widgets-2 {
		width: 340px;
	}

	.footer-widgets-3 {
		width: 200px;
	}

	.footer-widgets .widget {
		font-size: 12px;
		font-size: 1.2rem;
	}

}

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

	.footer-widgets {
		padding: 20px 3%;
		padding: 2rem 3%;
	}

	.footer-widgets .wrap {
		padding: 0;
	}

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3 {
		width: 100%;
		float: none;
		display: block;
		text-align: left;
	}

	.footer-widgets-1,
	.footer-widgets-2 {
		margin-bottom: 20px;
		margin-bottom: 2rem;
		padding-bottom: 20px;
		padding-bottom: 2rem;
		border-bottom: 1px solid rgba(204,204,204,.75);
	}

	.footer-widgets .widget.social-icons-widget ul {
		float: none;
	}

	.btn-donate {
		display: block;
		font-size: 12px;
		font-size: 1.2rem;
		text-align: center;
	}

	.widget-featured-donors .pull-right {
		float: none;
	}

}


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

.site-footer {
	background-color: #fff;
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 40px 0;
	padding: 4rem 0;
	text-align: center;
}

.site-footer a {
	border-bottom: 1px solid #ddd;
}

.site-footer p {
	margin-bottom: 0;
}


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

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5) {

	.header-image .site-header .wrap {
		background: url(images/logo@2x.png) no-repeat left;
		background-size: 320px 164px;
	}

}

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

	.site-container {
		max-width: 960px;
	}

	.content {
		width: 540px;
	}

}

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

	body {
		background-color: #fff;
	}

	.site-container {
		margin-bottom: 0;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-inner,
	.wrap {
		width: 100%;
	}

	.header-image .site-header .wrap {
		background-position: center top;
	}

	.wrap,
	.site-inner {
		padding-left: 3%;
		padding-right: 3%;
	}

	.sidebar-primary {
		padding-top: 20px;
		padding-top: 2rem;
		border-top: 1px solid rgba(204,204,204,.75);
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry-comments,
	.entry-footer .entry-meta,
	.header-image .site-header .widget-area,
	.site-header {
		padding: 0;
	}

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

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

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

	.genesis-nav-menu li.right {
		display: none;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 4rem;
	}

	.site-header .wrap {
		padding-top: 20px;
		padding-top: 2rem;
	}

	.site-header-search {
		float: none;
		margin-bottom: 20px;
		margin-bottom: 2rem;
	}

	.site-header-search input {
		width: 100%;
		padding: 5px;
		padding: .5rem;
		font-size: 12px;
		font-size: 1.2rem;
	}

}

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

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


	/* Mobile Navigation
	--------------------------------------------- */

	.menu-mobile-header {
	  display: block;
	}

	.menu-primary,
	.menu-secondary {
	  display: none;
	}

	/* Global Navigation Overrides */

	.genesis-nav-menu {
	  text-align: left;
	  color: #333;
	  background-color: #fff;
	  -webkit-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,.3);
	          box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,.3);
	}

	.genesis-nav-menu .menu-item {
	  display: block;
	}

	.genesis-nav-menu a {
	  padding-top: 10px;
	  padding-top: 1.0rem;
	  padding-bottom: 10px;
	  padding-bottom: 1.0rem;
	  font-size: 14px;
	}

	.genesis-nav-menu .sub-menu {
	  left: 0px;
	  opacity: 1;
	  position: relative;
	  width: auto;
	  z-index: 100;
	  -webkit-transition: none;  /* Chrome 1-25, Safari 3.2+ */
	     -moz-transition: none;  /* Firefox 4-15 */
	       -o-transition: none;  /* Opera 10.50–12.00 */
	          transition: none;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
	}

	.genesis-nav-menu .sub-menu a {
	  width: 100%;
	  display: block;
	  padding-left: 40px;
	  padding-left: 4.0rem;
	}

	.genesis-nav-menu .sub-menu a::before {
	  content:'\2013\0020';
	}

	/* Secondary Navigation Overrides */

	.nav-secondary {
	  border-bottom: none;
	}

	.nav-secondary .genesis-nav-menu {
	  border-bottom: 10px solid #333;
	}

	.nav-secondary .genesis-nav-menu a {
	  padding-top: 10px;
	  padding-top: 1.0rem;
	  padding-bottom: 10px;
	  padding-bottom: 1.0rem;
	  color: #333;
	  font-size: 14px;
	  text-shadow: none;
	}

	.nav-secondary .genesis-nav-menu a:hover {
	  color: #7F386A;
	}

	.nav-secondary .genesis-nav-menu .menu-item-donate a {
	  color: #d1161e;
	  background: none;
	}

	.nav-secondary .genesis-nav-menu .menu-item-listen-live {
	  float: none;
	}

	.nav-secondary .genesis-nav-menu .menu-item-listen-live a {
	  color: #a9182b;
	  background: none;
	}

	.nav-secondary .genesis-nav-menu .menu-item-listen-live {
		color: #a9182b;
		text-align: left;
	}

	.site-title a > img {
		margin: 0 auto;
	}

}

@media only screen and (min-width: 768px) {

  /**
   * Necessary for the normal navigation to show again
   * if still hidden via slideToggle() in mobile navigation
   */
  .genesis-nav-menu {
    display: block !important;
  }

}

/* Programs Page
--------------------------------------------- */

.programs-nav {
	float: left;
	width: 230px;
	margin: 0 20px 0 0;
	margin: 0 2rem 0 0;
}

.programs-nav:last-child {
	margin-bottom: 0;
}

.programs-nav h4 {
	margin-bottom: 5px;
	margin-bottom: .5rem;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.programs-nav li.active > a {
	color: #a9182b;
	font-weight: 600;
}

.programs-nav .entry-header {
	padding-bottom: 40px;
}

.programs-nav .entry-title {
	line-height: 1;
	margin-bottom: 0;
}

.programs-nav-list {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	font-size: 14px;
	font-size: 1.4rem;
}

.programs-nav-list a {
	color: #666;
}

.programs-content {
	float: left;
	width: 810px;
}

.programs-content .display-grid-item {
	width: 33.3%;
}

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

	.programs-content {
		width: 630px;
	}

	.programs-content .display-grid-item {
		width:  50%;
	}

}

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

	.programs-nav {
		display: none;
	}

	.programs-content {
		width: 100%;
	}

	.programs-content .display-grid-item {
		width:  50%;
	}

}

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

	.programs-content .display-grid-item {
		width:  100%;
	}

}


/* Sponsors
--------------------------------------------- */

.sponsors {
	margin-top: 20px;
	line-height: 1;
	overflow: hidden;
}

.sponsors > .sponsor {
	float: left;
}

.sponsors > .sponsor-1,
.sponsors > .sponsor-3 {
	width: 300px;
}

.sponsors > .sponsor-2 {
	width: 460px;
	margin: 0 auto;
	text-align: center;
}

.sponsors > .sponsor-2 > div {
	margin: 0 auto;
}

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

	.sponsors > .sponsor-1,
	.sponsors > .sponsor-3,
	.sponsors > .sponsor-1 > div,
	.sponsors > .sponsor-3 > div {
		width: 250px !important;
	}

	.sponsors > .sponsor-2,
	.sponsors > .sponsor-2 > div {
		width: 380px !important;
	}

	.sponsors > .sponsor img {
		width: 100%;
		max-width: 250px;
	}

}

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

	.sponsors > .sponsor {
		margin-bottom: 10px;
		margin-bottom: 1rem;
	}

	.sponsors > .sponsor:last-child {
		margin-bottom: 0;
	}

	.sponsors > .sponsor-1,
	.sponsors > .sponsor-2,
	.sponsors > .sponsor-3 {
		width: 100%;
		float: none;
		display: block;
		text-align: left;
	}

	.sponsors > .sponsor img {
		width: auto;
		max-width: 100%;
	}

	.sponsors > .sponsor-2 > div {
		margin: 0;
	}

}





/* Media Grid
--------------------------------------------- */

.mg {
	margin: -10px;
	margin: -1rem;
}

.mg:before {
	content: " ";
	display: table;
}

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

.mg-item {
	float: left;
	position: relative;
	padding: 10px;
	padding: 1rem;
}

.mg-1-1 .mg-item {
	width: 100%;
}

.mg-1-2 .mg-item {
	width: 50%;
}

.mg-1-3 .mg-item {
	width: 33.3333333333%;
}

/* default */
.mg-item,
.mg-1-4 .mg-item {
	width: 25%;
}

.mg-item-inner {
	border: 1px solid rgba(0,0,0,.1);
	border-bottom-color: transparent;
	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
	-webkit-transition: all 0.1s linear;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
	        transition: all 0.1s linear;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.mg-item-inner:hover {
	-webkit-box-shadow: 0 0 20px 0px rgba(0,0,0,.75); /* Android 2.3+, iOS 4.0.2-4.2, Safari 3-4 */
	        box-shadow: 0 0 20px 0px rgba(0,0,0,.75); /* Chrome 6+, Firefox 4+, IE 9+, iOS 5+, Opera 10.50+ */
	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

.mg-item-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
}

.mg-item-cover {
	display: block;
	height: 0;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.25%;
}

.mg-item-cover-image,
.mg-item-cover-header {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 4px; /* Android 2.1+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 5+ */

	/* useful if you don't want a bg color from leaking outside the border: */
	background-clip: padding-box; /* Android 2.2+, Chrome, Firefox 4+, IE 9+, iOS 4+, Opera 10.50+, Safari 4+ */
}

.mg-item-cover-header {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.mg-item-cover-header {
	top: auto;
	padding: 7px;
	padding: .7rem;
	background-color: #333;
	background-color: rgba(0,0,0,.7);
	border-top: 2px solid #777;
	border-top: 2px solid rgba(255,255,255,.15);
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.5) inset; /* Android 2.3+, iOS 4.0.2-4.2, Safari 3-4 */
	        box-shadow: 0 0 20px 0 rgba(0,0,0,.5) inset; /* Chrome 6+, Firefox 4+, IE 9+, iOS 5+, Opera 10.50+ */
}

.mg-item-cover-header > h4 {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.3;
	text-shadow: 0 1px 0 rgba(0,0,0,1);
}

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

	.mg .mg-item {
		width: 50% !important;
	}

}

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

	.mg .mg-item {
		width: 100% !important;
	}

}


/** nav **/

#megaMenu #megaMenuToggle {
	margin-top: 20px;
	margin-top: 2rem;
	background-color: #eee;
	font-size: inherit;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

#megaMenu #megaMenuToggle .megaMenuToggle-icon {
	display: none;
}

#megaMenu ul.megaMenu > li.menu-item.ss-nav-menu-mega ul.sub-menu li.widget {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}


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

  .site-header .wrap {
  	padding-top: 0;
  }

  .site-header-search {
  	margin-top: 20px;
  	margin-top: 2rem;
  }

	.title-area {
		float: none;
	}

  .nav-primary {
    position: static;
  }

  #megaMenu.megaResponsive ul.megaMenu li.menu-item.ss-nav-menu-mega ul.sub-menu.sub-menu-1 {
  	left: 0 !important;
  }

}


/* Constant Contact */

.cc_Go {
	margin-top: 16px;
	margin-top: 1.6rem;
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.cc_success {
	margin-top: 0 !important;
	font-weight: 700;
	color: #00a910;
}

ul.ctct-lists {
	margin: 0;
	padding: 0;
}

ul.ctct-lists li {
	list-style-type: none;
}

ul.ctct-lists input[type="checkbox"] {
	width: auto;
}

div.kws_form input[type="submit"] {
	padding: 1rem 2rem;
	text-transform: none;
}

div.kws_form input[type="text"] {
	padding: 10px;
	padding: 1rem;
}

div.kws_form .gfield_label + input {
	margin-top: 5px;
	margin-top: 0.5rem;
}

#constant-contact-signup-errors {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
	padding: 10px;
	padding: 1rem;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,.5);
	background-color: #A9182B;
	border-radius: 4px;
}

#constant-contact-signup-errors ul,
#constant-contact-signup-errors ul > li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

div.kws_form li, div.kws_form form li {
	margin: 0;
	margin-bottom: 5px;
	margin-bottom: 0.5rem;
}

/* Simple Social Icons
--------------------------------------------- */

.simple-social-icons li.social-dribbble a {
  border: 2px solid #ea4c89 !important;
  color: #ea4c89 !important;
}

.simple-social-icons li.social-dribbble a:hover {
  background-color: #ea4c89 !important;
}

.simple-social-icons li.social-email a {
  border: 2px solid #049fb3 !important;
  color: #049fb3 !important;
}

.simple-social-icons li.social-email a:hover {
  background-color: #049fb3 !important;
}

.simple-social-icons li.social-facebook a {
  border: 2px solid #3b5998 !important;
  color: #3b5998 !important;
}

.simple-social-icons li.social-facebook a:hover {
  background-color: #3b5998 !important;
}

.simple-social-icons li.social-flickr a {
  border: 2px solid #ff0084 !important;
  color: #ff0084 !important;
}

.simple-social-icons li.social-flickr a:hover {
  background-color: #ff0084 !important;
}

.simple-social-icons li.social-github a {
  border: 2px solid #000 !important;
  color: #000 !important;
}

.simple-social-icons li.social-github a:hover {
  background-color: #000 !important;
}

.simple-social-icons li.social-gplus a {
  border: 2px solid #dd4b39 !important;
  color: #dd4b39 !important;
}

.simple-social-icons li.social-gplus a:hover {
  background-color: #dd4b39 !important;
}

.simple-social-icons li.social-instagram a {
  border: 2px solid #517fa4 !important;
  color: #517fa4 !important;
}

.simple-social-icons li.social-instagram a:hover {
  background-color: #517fa4 !important;
}

.simple-social-icons li.social-linkedin a {
  border: 2px solid #007bb6 !important;
  color: #007bb6 !important;
}

.simple-social-icons li.social-linkedin a:hover {
  background-color: #007bb6 !important;
}

.simple-social-icons li.social-pinterest a {
  border: 2px solid #cb2027 !important;
  color: #cb2027 !important;
}

.simple-social-icons li.social-pinterest a:hover {
  background-color: #cb2027 !important;
}

.simple-social-icons li.social-rss a {
  border: 2px solid #ff6600 !important;
  color: #ff6600 !important;
}

.simple-social-icons li.social-rss a:hover {
  background-color: #ff6600 !important;
}

.simple-social-icons li.social-stumbleupon a {
  border: 2px solid #eb4823 !important;
  color: #eb4823 !important;
}

.simple-social-icons li.social-stumbleupon a:hover {
  background-color: #eb4823 !important;
}

.simple-social-icons li.social-tumblr a {
  border: 2px solid #32506d !important;
  color: #32506d !important;
}

.simple-social-icons li.social-tumblr a:hover {
  background-color: #32506d !important;
}

.simple-social-icons li.social-twitter a {
  border: 2px solid #00aced !important;
  color: #00aced !important;
}

.simple-social-icons li.social-twitter a:hover {
  background-color: #00aced !important;
}

.simple-social-icons li.social-vimeo a {
  border: 2px solid #aad450 !important;
  color: #aad450 !important;
}

.simple-social-icons li.social-vimeo a:hover {
  background-color: #aad450 !important;
}

.simple-social-icons li.social-youtube a {
  border: 2px solid #bb0000 !important;
  color: #bb0000 !important;
}

.simple-social-icons li.social-youtube a:hover {
  background-color: #bb0000 !important;
}


html .jw-media > .fluid-width-video-wrapper {
  padding-top: 0;
  width: auto;
  position: static;
}

.soliloquy-container * {
	-webkit-border-radius: 6px !important;
	        border-radius: 6px !important;
}

.soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
	-webkit-border-radius: 0 6px 0 0 !important;
	        border-radius: 0 6px 0 0 !important;
}

.soliloquy-container .soliloquy-next,
.soliloquy-container .soliloquy-prev {
	border-radius: 6px;
	background-color: rgba(169,24,43,.7) !important;
}

.soliloquy-container .soliloquy-caption.soliloquy-caption-bottom {
	width: 50% !important;
}

.soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
	color: #fff !important;
	font-size: 14px !important;
	text-align: left !important;
	background: rgba(120,120,120,.75) !important;
}

.soliloquy-caption h4 {
	color: #fff;
	margin: 0 0 20px 0;
	font-weight: 300;
	font-size: 20px;
}

.soliloquy-caption p {
	margin: 0 0 10px 0;
}

.soliloquy-caption p:last-child {
	margin: 0;
}