/*

SASS_STYLE.SCSS CONTENTS

This file is set up for mobile-first coding. See below for file structure:

- Variables and mixins
- General
    This is where global styles go, as well as styles that apply to content
- Header
- Main Menu
- Footer
- Interior Pages
	- Sidebar
	- Pagination
- Home
- Media Queries
	- Tablet Portrait (768px); corresponds with Bootstrap 'sm'
	- Tablet Landscape (992px); corresponds with Bootstrap 'md'
	- Desktop (1200px); corresponds with Bootstrap 'lg'

*/
/*
	= Variables and mixins	
*******************************************************************************************/
/* Use this mixin when using webfonts that appear darker than in mockups (especially complex fonts) */
/* This is also useful when using light text against a dark background; this will make the text crisper and less fuzzy */
/*
	= General	
*******************************************************************************************/
/* line 56, ../sass/sass_style.scss */
html {
  overflow-x: hidden;
}

/* line 57, ../sass/sass_style.scss */
body {
  overflow: hidden;
}

/* line 58, ../sass/sass_style.scss */
.container {
  width: 100%;
  max-width: 1168px;
}

/* line 62, ../sass/sass_style.scss */
body {
  font-family: Georgia, serif;
  color: #4A4A4A;
  padding-bottom: 0;
  background-color: #EEEEEE;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 24px;
}

/* line 71, ../sass/sass_style.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 75, ../sass/sass_style.scss */
.wp-caption {
  padding: 5px;
  max-width: 100%;
  font-size: 12px;
  color: #9B9B9B;
}
/* line 80, ../sass/sass_style.scss */
.wp-caption img {
  width: 100%;
  height: auto;
}
/* line 84, ../sass/sass_style.scss */
.wp-caption .wp-caption-text, .wp-caption .wp-caption-text p {
  margin-bottom: 0;
  font-size: 18px !important;
  line-height: 26px !important;
  font-style: italic !important;
  color: #852728 !important;
  font-family: Georgia, serif !important;
}

/* line 93, ../sass/sass_style.scss */
.alignleft {
  float: left;
  margin-right: 10px;
}

/* line 97, ../sass/sass_style.scss */
.aligncenter {
  margin: 10px auto;
  display: block;
}

/* line 101, ../sass/sass_style.scss */
.alignright {
  float: right;
  margin-left: 10px;
}

/* line 105, ../sass/sass_style.scss */
input {
  /*-webkit-appearance:none;
  -moz-appearance:none;*/
}

/* line 109, ../sass/sass_style.scss */
input#give-weekly, input#give-monthly {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

/* line 115, ../sass/sass_style.scss */
.maincontent.lower a {
  color: #852728 !important;
}
/* line 118, ../sass/sass_style.scss */
.maincontent.lower em {
  font-style: italic;
}
/* line 121, ../sass/sass_style.scss */
.maincontent.lower strong {
  font-weight: bold;
}
/* line 124, ../sass/sass_style.scss */
.maincontent.lower p {
  font: normal normal normal 17px/150% Georgia, serif;
  color: #111;
  margin-bottom: 15px;
}
/* line 129, ../sass/sass_style.scss */
.maincontent.lower blockquote, .maincontent.lower blockquote * {
  color: #4A4A4A;
  font: italic normal bold 18px/130% Georgia, serif;
  margin: 15px 0;
}
/* line 134, ../sass/sass_style.scss */
.maincontent.lower h3, .maincontent.lower h4, .maincontent.lower h5, .maincontent.lower h6 {
  color: #852728;
  margin: 0px 0 15px 0;
}
/* line 138, ../sass/sass_style.scss */
.maincontent.lower h2 {
  font-size: 50px;
  color: #852728;
}
/* line 139, ../sass/sass_style.scss */
.maincontent.lower h3 {
  font-size: 30px;
  line-height: 40px;
}
/* line 140, ../sass/sass_style.scss */
.maincontent.lower h4 {
  font-size: 22px;
  line-height: 40px;
}
/* line 141, ../sass/sass_style.scss */
.maincontent.lower h5 {
  font-size: 20px;
}
/* line 142, ../sass/sass_style.scss */
.maincontent.lower h6 {
  font-size: 18px;
  text-transform: uppercase;
}
/* line 144, ../sass/sass_style.scss */
.maincontent.lower > h2 {
  font-size: 40px;
}
/* line 145, ../sass/sass_style.scss */
.maincontent.lower ul {
  padding-left: 30px;
  list-style-type: square;
  color: #111;
  font: normal normal normal 17px/150% Georgia, serif;
  margin-bottom: 15px;
}
/* line 151, ../sass/sass_style.scss */
.maincontent.lower ul ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 155, ../sass/sass_style.scss */
.maincontent.lower ul ul ul {
  list-style-type: circle;
}
/* line 160, ../sass/sass_style.scss */
.maincontent.lower ol {
  padding-left: 30px;
  list-style-type: decimal;
  color: #111;
  font: normal normal normal 17px/150% Georgia, serif;
  margin-bottom: 15px;
}
/* line 166, ../sass/sass_style.scss */
.maincontent.lower ol ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 170, ../sass/sass_style.scss */
.maincontent.lower ol ul ul {
  list-style-type: circle;
}
/* line 174, ../sass/sass_style.scss */
.maincontent.lower ol ol {
  padding-left: 20px;
}

/* line 179, ../sass/sass_style.scss */
.red-button {
  background-color: #852728;
  border-radius: 3px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 28px;
  padding: 10px 30px;
  display: inline-block;
}
/* line 188, ../sass/sass_style.scss */
.red-button a {
  color: #FFF !important;
}
/* line 191, ../sass/sass_style.scss */
.red-button:hover {
  text-decoration: none;
  color: #FFF !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 198, ../sass/sass_style.scss */
.entry-summary .wp-caption {
  display: none;
}
/* line 201, ../sass/sass_style.scss */
.entry-summary a {
  color: #852728;
}
/* line 204, ../sass/sass_style.scss */
.entry-summary .row-fluid > div {
  width: 100%;
}

/* line 208, ../sass/sass_style.scss */
pre {
  border: none;
  background-color: transparent;
  color: #852728;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 44px;
  margin-bottom: 30px;
  white-space: pre-wrap;
  /* CSS 3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  word-break: normal;
}

/* line 225, ../sass/sass_style.scss */
iframe {
  max-width: 100%;
}

/* line 228, ../sass/sass_style.scss */
input[type=submit] {
  border: none !important;
  box-shadow: none !important;
  background-color: #852728 !important;
  font-family: "Source Sans Pro", sans-serif !important;
  color: #FFF !important;
  font-size: 24px !important;
  padding: 26px !important;
  border-radius: 3px !important;
  font-weight: 300 !important;
}
/* line 238, ../sass/sass_style.scss */
input[type=submit]:hover {
  color: #FFF !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* line 243, ../sass/sass_style.scss */
textarea {
  max-width: 100%;
}

/* line 246, ../sass/sass_style.scss */
.chosen-container, input {
  max-width: 100%;
}

/*
	= Header	
*******************************************************************************************/
/* line 252, ../sass/sass_style.scss */
.navbar-wrapper {
  position: static;
}

/* line 255, ../sass/sass_style.scss */
.navbar-wrapper .container {
  padding: 0;
}

/* line 258, ../sass/sass_style.scss */
.navbar {
  border: none;
}

/* line 262, ../sass/sass_style.scss */
.left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 271, ../sass/sass_style.scss */
#topright aside {
  float: right;
}
/* line 274, ../sass/sass_style.scss */
#topright .fa-facebook-official {
  color: #385184;
}
/* line 277, ../sass/sass_style.scss */
#topright .fa-pinterest-square {
  color: #B8252C;
}
/* line 280, ../sass/sass_style.scss */
#topright .fa-twitter-square {
  color: #379ECC;
}
/* line 283, ../sass/sass_style.scss */
#topright .fa-youtube-square {
  color: #BB3331;
}
/* line 286, ../sass/sass_style.scss */
#topright .fa-instagram {
  color: #335E88;
}
/* line 289, ../sass/sass_style.scss */
#topright .fa {
  font-size: 27px;
  line-height: 27px;
  margin-right: 5px;
}
/* line 293, ../sass/sass_style.scss */
#topright .fa:hover {
  color: #9B9B9B;
}
/* line 297, ../sass/sass_style.scss */
#topright a .fa-search {
  color: #000;
}
/* line 300, ../sass/sass_style.scss */
#topright #search-2 {
  display: none;
}
/* line 302, ../sass/sass_style.scss */
#topright #search-2 input[type=search] {
  margin-right: 5px;
  padding: 7px;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}
/* line 310, ../sass/sass_style.scss */
#topright .red-button {
  margin-right: 15px;
}

/* line 314, ../sass/sass_style.scss */
.home-session-1 {
  background-color: #E9E9E9 !important;
  padding: 20px 10px;
}
/* line 317, ../sass/sass_style.scss */
.home-session-1 .wp-caption {
  border: none;
  box-shadow: none;
  padding: 0;
}
/* line 318, ../sass/sass_style.scss */
.home-session-1 .wp-caption .wp-caption-text {
  display: none;
}
/* line 324, ../sass/sass_style.scss */
.home-session-1 .widget-title {
  display: none;
}
/* line 328, ../sass/sass_style.scss */
.home-session-1 .col-sm-4 .widget_text {
  background-color: #4A4A4A;
  font-family: Georgia, serif;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 45px;
  padding: 10px;
  text-align: center;
}
/* line 338, ../sass/sass_style.scss */
.home-session-1 .col-sm-4:hover .widget_text {
  background-color: #852728;
}
/* line 341, ../sass/sass_style.scss */
.home-session-1 .col-sm-4:hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*
	= Main Menu	
*******************************************************************************************/
/* line 354, ../sass/sass_style.scss */
.menu-collapser {
  display: none !important;
}

/* line 357, ../sass/sass_style.scss */
.navbar-header {
  position: absolute;
  right: 0;
  top: -57px;
}
/* line 361, ../sass/sass_style.scss */
.navbar-header .menutitle {
  float: left;
  padding-top: 16px;
  font-family: "Source Sans Pro", sans-serif;
}

/* line 367, ../sass/sass_style.scss */
.navbar-toggle {
  position: static;
  right: 0;
  bottom: 0;
}
/* line 371, ../sass/sass_style.scss */
.navbar-toggle .icon-bar {
  background-color: #000;
}

/* line 377, ../sass/sass_style.scss */
ul.slimmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block !important;
}
/* line 383, ../sass/sass_style.scss */
ul.slimmenu li {
  position: relative;
  display: inline-block;
}
/* line 386, ../sass/sass_style.scss */
ul.slimmenu li a {
  display: block;
  color: #000;
  padding: 12px 64px 12px 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  /*text-shadow: 0 1px 0 rgba(255,255,255,0.2);*/
  transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out;
}
/* line 400, ../sass/sass_style.scss */
ul.slimmenu li a:hover {
  background-color: #852728;
  text-decoration: none;
  color: #FFF;
}
/* line 406, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser {
  background: none repeat scroll 0 0 #852728;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  text-align: center;
  z-index: 999;
  cursor: pointer;
}
/* line 416, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
/* line 423, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser > i {
  color: #FFF;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
}
/* line 431, ../sass/sass_style.scss */
ul.slimmenu li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
}
/* line 438, ../sass/sass_style.scss */
ul.slimmenu li > ul > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  width: 100%;
}
/* line 448, ../sass/sass_style.scss */
ul.slimmenu > li {
  margin-right: -5px;
}
/* line 450, ../sass/sass_style.scss */
ul.slimmenu > li:first-child {
  border-left: 0;
  margin-left: 0;
  background: url("../../images/home-icon.png") no-repeat !important;
}
/* line 453, ../sass/sass_style.scss */
ul.slimmenu > li:first-child a {
  color: #FFF;
  font-size: 1px;
  line-height: 30px;
  padding: 0 15px;
}
/* line 458, ../sass/sass_style.scss */
ul.slimmenu > li:first-child a:hover {
  background-color: transparent;
}
/* line 463, ../sass/sass_style.scss */
ul.slimmenu > li:last-child {
  margin-right: 0;
  padding-right: 0;
}
/* line 464, ../sass/sass_style.scss */
ul.slimmenu > li:last-child a {
  /*padding-right: 0;*/
}
/* line 467, ../sass/sass_style.scss */
ul.slimmenu ul {
  margin: 0;
  list-style-type: none;
}
/* line 470, ../sass/sass_style.scss */
ul.slimmenu ul li {
  background-color: #BBB;
}
/* line 474, ../sass/sass_style.scss */
ul.slimmenu.collapsed li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 480, ../sass/sass_style.scss */
ul.slimmenu.collapsed li a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 487, ../sass/sass_style.scss */
ul.slimmenu.collapsed li .sub-collapser {
  height: 40px;
}
/* line 490, ../sass/sass_style.scss */
ul.slimmenu.collapsed li > ul {
  display: none;
  position: static;
}

/* line 497, ../sass/sass_style.scss */
.collapse-button {
  display: none;
}

/* line 500, ../sass/sass_style.scss */
.navbar-collapse {
  max-height: 430px;
}

/*
	= Footer 	
*******************************************************************************************/
/* line 508, ../sass/sass_style.scss */
#menu-footer-menu {
  margin: 20px auto;
}
/* line 510, ../sass/sass_style.scss */
#menu-footer-menu li {
  list-style: none;
  display: inline;
  margin-right: 10px;
}

/* line 516, ../sass/sass_style.scss */
.email-wrap {
  background-color: #DCDCDC;
  margin-top: 100px;
}
/* line 520, ../sass/sass_style.scss */
.email-wrap #text-16 h3 {
  font-size: 40px;
  line-height: 46px;
  font-family: Georgia, serif;
}
/* line 526, ../sass/sass_style.scss */
.email-wrap img {
  margin-top: -74px;
}
/* line 529, ../sass/sass_style.scss */
.email-wrap .mc4wp-form input[type=email] {
  border: none;
  padding: 24px;
  width: 60%;
  float: left;
  margin-right: 10px;
  font-family: Georgia, serif;
  font-size: 30px;
}
/* line 538, ../sass/sass_style.scss */
.email-wrap .mc4wp-form input[type=submit] {
  border: none;
  box-shadow: none;
  background-color: #852728;
  font-family: "Source Sans Pro", sans-serif;
  color: #FFF;
  font-size: 24px;
  padding: 26px;
  border-radius: 3px;
  font-weight: 300;
}
/* line 548, ../sass/sass_style.scss */
.email-wrap .mc4wp-form input[type=submit]:hover {
  color: #FFF;
  color: rgba(255, 255, 255, 0.6);
}

/* line 554, ../sass/sass_style.scss */
#black-studio-tinymce-15 p.p1 .s1 {
  font-size: 12px;
}

/* line 558, ../sass/sass_style.scss */
#text-17 .textwidget {
  line-height: 16px;
}

/* line 562, ../sass/sass_style.scss */
.footer {
  background-color: #707473;
  color: #ABABAB;
  font-family: Georgia, serif;
  text-align: center;
  padding-top: 50px;
}
/* line 568, ../sass/sass_style.scss */
.footer a {
  color: #ABABAB;
}
/* line 571, ../sass/sass_style.scss */
.footer h4 {
  font-size: 25px;
  color: #FFF;
}
/* line 575, ../sass/sass_style.scss */
.footer #menu-main-menu-2, .footer #menu-main-menu-1 {
  list-style: none;
  margin: 50px auto;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
}
/* line 580, ../sass/sass_style.scss */
.footer #menu-main-menu-2 > li, .footer #menu-main-menu-1 > li {
  display: table-cell;
  padding-right: 35px;
  color: #FFF;
}
/* line 584, ../sass/sass_style.scss */
.footer #menu-main-menu-2 > li > a, .footer #menu-main-menu-1 > li > a {
  color: #FFF;
  text-transform: uppercase;
}
/* line 588, ../sass/sass_style.scss */
.footer #menu-main-menu-2 > li:first-child, .footer #menu-main-menu-1 > li:first-child {
  display: none;
}
/* line 591, ../sass/sass_style.scss */
.footer #menu-main-menu-2 > li > ul, .footer #menu-main-menu-1 > li > ul {
  list-style: none;
  padding-left: 0;
}
/* line 597, ../sass/sass_style.scss */
.footer .home #menu-main-menu-1 {
  list-style: none;
  margin: 50px auto;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
}
/* line 602, ../sass/sass_style.scss */
.footer .home #menu-main-menu-1 > li {
  display: table-cell;
  padding-right: 40px;
  color: #FFF;
}
/* line 606, ../sass/sass_style.scss */
.footer .home #menu-main-menu-1 > li > a {
  color: #FFF;
  text-transform: uppercase;
}
/* line 610, ../sass/sass_style.scss */
.footer .home #menu-main-menu-1 > li:first-child {
  display: none;
}
/* line 613, ../sass/sass_style.scss */
.footer .home #menu-main-menu-1 > li > ul {
  list-style: none;
  padding-left: 0;
}

/* line 622, ../sass/sass_style.scss */
.copy {
  background-color: #4A4A4A;
  color: #FFF;
  padding: 50px 0;
}
/* line 626, ../sass/sass_style.scss */
.copy a {
  color: #FFF;
}
/* line 629, ../sass/sass_style.scss */
.copy #menu-custom-menu {
  list-style: none;
}
/* line 631, ../sass/sass_style.scss */
.copy #menu-custom-menu li {
  display: inline;
  text-align: center;
  padding-right: 30px;
}
/* line 635, ../sass/sass_style.scss */
.copy #menu-custom-menu li a {
  font-family: "Source Sans Pro", sans-serif;
}
/* line 640, ../sass/sass_style.scss */
.copy #text-17 {
  font-size: 11px;
  color: #FFFFFF;
  line-height: 12px;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin-top: 30px;
}

/* line 650, ../sass/sass_style.scss */
.backtotop {
  color: #FFF;
  margin: 15px;
  padding: 0 7px;
  border-radius: 50%;
  background-color: #852728;
  float: right;
}

/*
	= Interior pages 	
*******************************************************************************************/
/* line 662, ../sass/sass_style.scss */
.title .page-title {
  padding: 10px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  color: #852728;
  font-size: 50px;
}

/* line 671, ../sass/sass_style.scss */
.topimg .imgcaption {
  position: static;
  display: block;
  text-align: right;
  font-size: 14px;
  line-height: 18px;
  margin-top: 5px;
}

/* line 682, ../sass/sass_style.scss */
.container-normal .row.maincontent {
  background-color: #FFF;
}

/* line 686, ../sass/sass_style.scss */
#breadcrumbs {
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
}
/* line 690, ../sass/sass_style.scss */
#breadcrumbs li {
  float: left;
  margin-right: 15px;
}
/* line 694, ../sass/sass_style.scss */
#breadcrumbs .separator {
  font-weight: 700;
  font-size: 20px;
  color: #999;
}

/* line 700, ../sass/sass_style.scss */
.fullwithimg {
  margin-top: -1px;
  width: 100%;
}

/* line 704, ../sass/sass_style.scss */
.boxes {
  margin: 50px 0;
}
/* line 707, ../sass/sass_style.scss */
.boxes .box:hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* line 712, ../sass/sass_style.scss */
.boxes a:hover {
  text-decoration: none;
}

/* line 716, ../sass/sass_style.scss */
.content-block {
  border: 1px solid #eee;
  padding: 3px;
  background: #ccc;
  max-width: 250px;
  float: right;
  text-align: center;
}

/* line 724, ../sass/sass_style.scss */
.content-block:after {
  clear: both;
}

/* line 727, ../sass/sass_style.scss */
.blue-button {
  background-color: #33bdef;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 24px;
  text-decoration: none;
}

/* Submenu */
/* line 741, ../sass/sass_style.scss */
#site-navigation #menu-main-menu {
  position: relative;
}
/* line 743, ../sass/sass_style.scss */
#site-navigation #menu-main-menu > li.current-menu-item, #site-navigation #menu-main-menu > li.current_page_parent {
  background: url("../../images/triangle_bg.png") bottom center no-repeat;
}
/* line 745, ../sass/sass_style.scss */
#site-navigation #menu-main-menu > li.current-menu-item > a, #site-navigation #menu-main-menu > li.current_page_parent > a {
  color: #852728;
}

/* line 752, ../sass/sass_style.scss */
#top-submenu-wrapper {
  background-color: #852728;
}

/* line 755, ../sass/sass_style.scss */
.top-submenu {
  list-style: none;
}
/* line 758, ../sass/sass_style.scss */
.top-submenu.single-report #menu-item-3522 a {
  font-weight: 400;
}
/* line 763, ../sass/sass_style.scss */
.top-submenu li {
  padding-top: 5px;
  padding-right: 10px;
  padding-left: 10px;
  display: inline-block;
}
/* line 769, ../sass/sass_style.scss */
.top-submenu a {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 21px;
  text-transform: uppercase;
  font-weight: 300;
}
/* line 778, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 {
  float: right;
}
/* line 780, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li {
  display: none !important;
}
/* line 784, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-menu-item {
  display: block !important;
  text-align: center;
}
/* line 787, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-menu-item > a {
  display: none;
}
/* line 791, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-menu-item > ul.sub-menu > li {
  display: inline-block;
}
/* line 796, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-page-ancestor {
  display: block !important;
  text-align: center;
}
/* line 799, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-page-ancestor > a {
  display: none !important;
}
/* line 803, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-page-ancestor > ul.sub-menu > li {
  display: inline-block;
}
/* line 806, ../sass/sass_style.scss */
.top-submenu #menu-main-menu-1 > li.current-page-ancestor > ul.sub-menu > li.current-menu-item a {
  font-weight: 400;
}

/* end of top submenu */
/* full-width template */
/* line 817, ../sass/sass_style.scss */
.blurb.entry {
  margin-top: -115px;
  margin-bottom: 100px;
  font-size: 45px;
  color: #FFF;
  line-height: 55px;
}

/* line 824, ../sass/sass_style.scss */
.image-section {
  background-size: cover;
  min-height: 560px;
  position: relative;
}
/* line 828, ../sass/sass_style.scss */
.image-section .box {
  padding-top: 3vw;
}

/* line 832, ../sass/sass_style.scss */
.box {
  text-align: center;
}
/* line 834, ../sass/sass_style.scss */
.box .entry-title {
  background-color: #852728;
  margin: 0;
  padding: 10px;
  color: white;
  font-size: 30px;
}

/* line 843, ../sass/sass_style.scss */
.search-filter-results > .row {
  background-color: #E9E9E9;
  margin-bottom: 30px;
}
/* line 846, ../sass/sass_style.scss */
.search-filter-results > .row > article {
  position: relative;
}
/* line 848, ../sass/sass_style.scss */
.search-filter-results > .row > article img {
  padding: 10px 0px;
}
/* line 851, ../sass/sass_style.scss */
.search-filter-results > .row > article .author-name {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
}
/* line 856, ../sass/sass_style.scss */
.search-filter-results > .row > article .entry-title {
  margin-top: 0;
}
/* line 858, ../sass/sass_style.scss */
.search-filter-results > .row > article .entry-title a {
  color: #852728;
  font-size: 22px;
}
/* line 863, ../sass/sass_style.scss */
.search-filter-results > .row > article .entry-summary {
  margin-bottom: 15px;
}
/* line 867, ../sass/sass_style.scss */
.search-filter-results > .row .floating-date {
  position: absolute;
  background-color: #852728;
  color: #FFF;
  padding: 10px;
  top: -10px;
  left: -5px;
  font-family: "Source Sans Pro", sans-serif;
}

/* line 878, ../sass/sass_style.scss */
.search-filter-results > .row > article .entry-title {
  margin-bottom: 0;
}

/* line 881, ../sass/sass_style.scss */
.maincontent.lower span.category {
  margin-bottom: 5px;
  display: block;
}

/* line 886, ../sass/sass_style.scss */
.searchandfilter .noUi-connect {
  background-color: #852728;
}

/* Single */
/* line 891, ../sass/sass_style.scss */
.maincontent.lower p.postmeta-before {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  clear: both;
}
/* line 897, ../sass/sass_style.scss */
.maincontent.lower p.postmeta-before span {
  font-weight: 400;
}
/* line 899, ../sass/sass_style.scss */
.maincontent.lower p.postmeta-before span a {
  color: #111 !important;
  text-decoration: none;
}
/* line 902, ../sass/sass_style.scss */
.maincontent.lower p.postmeta-before span a:hover {
  color: #852728 !important;
}
/* line 908, ../sass/sass_style.scss */
.maincontent.lower h3.section-title {
  color: #4A4A4A;
  font-size: 35px;
  font-family: Georgia, serif;
  padding-left: 15px;
}
/* line 915, ../sass/sass_style.scss */
.maincontent.lower .bio p.name {
  color: #852728;
  font-size: 22px;
}
/* line 919, ../sass/sass_style.scss */
.maincontent.lower .bio span {
  font-weight: bold;
}

/* line 924, ../sass/sass_style.scss */
.report-author {
  padding-bottom: 50px;
}

/* line 927, ../sass/sass_style.scss */
#home-blog.singlepost {
  padding-bottom: 50px;
}

/* line 930, ../sass/sass_style.scss */
.navigation.row {
  color: #852728;
}
/* line 932, ../sass/sass_style.scss */
.navigation.row a {
  color: #852728;
}

/* line 938, ../sass/sass_style.scss */
.single .comments-template {
  display: none;
}
/* line 941, ../sass/sass_style.scss */
.single span#comments {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #E9E9E9;
}

/* Store */
/* line 948, ../sass/sass_style.scss */
.woocommerce-page table.cart td.actions .input-text {
  width: auto;
}

/* line 951, ../sass/sass_style.scss */
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #852728;
  color: #FFF !important;
}
/* line 954, ../sass/sass_style.scss */
.woocommerce #respond input#submit.alt a, .woocommerce a.button.alt a, .woocommerce button.button.alt a, .woocommerce input.button.alt a {
  color: #FFF;
}

/* line 958, ../sass/sass_style.scss */
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  opacity: 0.8;
  background-color: #852728;
}

/* line 962, ../sass/sass_style.scss */
.addresses .title {
  margin: 0;
}

/* Single Blog Post */
/* line 967, ../sass/sass_style.scss */
#categories-dropdown select {
  background: transparent;
  width: 100%;
  padding: 5px;
  font-size: 16px;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 980, ../sass/sass_style.scss */
#categories-dropdown {
  width: 100%;
  height: 38px;
  overflow: hidden;
  background: url("../../images/new_arrow.png") no-repeat right;
}

/* Podcasts */
/* line 989, ../sass/sass_style.scss */
.page-template-page-podcasts .subtitle {
  color: #852728;
  font-size: 30px;
  line-height: 44px;
  margin-bottom: 30px;
}
/* line 995, ../sass/sass_style.scss */
.page-template-page-podcasts .section-title {
  font-size: 30px;
  line-height: 40px;
}
/* line 999, ../sass/sass_style.scss */
.page-template-page-podcasts .pod-title {
  font-size: 40px;
  line-height: 50px;
  margin-top: 40px;
  margin-bottom: 40px;
}
/* line 1005, ../sass/sass_style.scss */
.page-template-page-podcasts .sponsor-by {
  font-size: 24px;
  line-height: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
/* line 1011, ../sass/sass_style.scss */
.page-template-page-podcasts .bg-lightgrey {
  background-color: #E9E9E9;
}
/* line 1014, ../sass/sass_style.scss */
.page-template-page-podcasts .way-title {
  background-color: #852728;
  color: #FFF;
  padding: 10px;
}
/* line 1019, ../sass/sass_style.scss */
.page-template-page-podcasts .content {
  padding: 10px;
}
/* line 1021, ../sass/sass_style.scss */
.page-template-page-podcasts .content p {
  color: #4A4A4A;
}
/* line 1023, ../sass/sass_style.scss */
.page-template-page-podcasts .content p a {
  color: #852728;
}
/* line 1028, ../sass/sass_style.scss */
.page-template-page-podcasts .way {
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #FFF;
}
/* line 1034, ../sass/sass_style.scss */
.page-template-page-podcasts .topimg .imgcaption {
  margin-top: 0;
  padding-top: 5px;
  background-color: #E9E9E9;
}
/* line 1039, ../sass/sass_style.scss */
.page-template-page-podcasts .transcript {
  color: #852728;
  margin-bottom: 30px;
}
/* line 1042, ../sass/sass_style.scss */
.page-template-page-podcasts .transcript a {
  color: #852728;
}

/* end Podcasts */
/* line 1051, ../sass/sass_style.scss */
page-template-page-podcasts
.events-cat {
  margin-bottom: 50px;
}

/* line 1058, ../sass/sass_style.scss */
.page-template-page-eventcat #tribe-events-bar {
  display: none;
}
/* line 1061, ../sass/sass_style.scss */
.page-template-page-eventcat div.title {
  display: none;
}
/* line 1064, ../sass/sass_style.scss */
.page-template-page-eventcat div.title.cat {
  display: block;
  padding: 15px;
}
/* line 1069, ../sass/sass_style.scss */
.page-template-page-eventcat .flexslider .slides {
  padding: 0;
  margin: 0;
}
/* line 1073, ../sass/sass_style.scss */
.page-template-page-eventcat .flexslider .flex-direction-nav {
  list-style: none;
  margin-bottom: 0;
}
/* line 1077, ../sass/sass_style.scss */
.page-template-page-eventcat .flexslider .flex-control-nav.flex-control-paging {
  margin-bottom: 0;
  padding-left: 0;
}
/* line 1081, ../sass/sass_style.scss */
.page-template-page-eventcat .flexslider .slide-caption {
  font-size: 22px;
  line-height: 45px;
}
/* line 1086, ../sass/sass_style.scss */
.page-template-page-eventcat #desc {
  margin-top: 40px;
  margin-bottom: 20px;
}
/* line 1091, ../sass/sass_style.scss */
.page-template-page-eventcat .related-side h4 {
  font-size: 20px;
  line-height: 30px;
}
/* line 1095, ../sass/sass_style.scss */
.page-template-page-eventcat .related-side .ssba.ssba-wrap {
  display: none;
}
/* line 1099, ../sass/sass_style.scss */
.page-template-page-eventcat #read-full {
  color: #FFF;
  font-family: "Source Sans Pro", sans-serif;
}
/* line 1103, ../sass/sass_style.scss */
.page-template-page-eventcat #tribe-events-pg-template {
  max-width: none;
  margin-bottom: 40px;
}
/* line 1108, ../sass/sass_style.scss */
.page-template-page-eventcat .imagebox.event .entry-title {
  padding-left: 0px;
  font-size: 22px;
  line-height: 30px;
}
/* line 1113, ../sass/sass_style.scss */
.page-template-page-eventcat .imagebox.event p.category {
  margin-bottom: 0;
}
/* line 1117, ../sass/sass_style.scss */
.page-template-page-eventcat .imagebox-content {
  background-color: #E9E9E9;
  padding: 15px;
}
/* line 1120, ../sass/sass_style.scss */
.page-template-page-eventcat .imagebox-content .entry-title {
  margin: 0 0 10px 0;
  padding: 0;
}
/* line 1124, ../sass/sass_style.scss */
.page-template-page-eventcat .imagebox-content .floating-date {
  font-size: 14px;
}
/* line 1128, ../sass/sass_style.scss */
.page-template-page-eventcat .section-title {
  margin: 45px 0;
}
/* line 1131, ../sass/sass_style.scss */
.page-template-page-eventcat .videos {
  margin-bottom: 45px;
}
/* line 1133, ../sass/sass_style.scss */
.page-template-page-eventcat .videos .page-title {
  margin: 45px 0px;
}
/* line 1137, ../sass/sass_style.scss */
.page-template-page-eventcat .seeall {
  text-align: right;
}
/* line 1139, ../sass/sass_style.scss */
.page-template-page-eventcat .seeall div, .page-template-page-eventcat .seeall a {
  text-align: right;
}

/* end event category */
/* line 1145, ../sass/sass_style.scss */
h2.page-title.cat-name {
  font-size: 40px;
}

/* line 1148, ../sass/sass_style.scss */
#tribe-bar-form .tribe-bar-submit input[type=submit] {
  background-color: #852728;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: 300;
}

/* line 1156, ../sass/sass_style.scss */
h2.tribe-events-list-event-title.entry-title.summary a, h2.tribe-events-list-event-title a {
  font-size: 22px;
}

/* line 1160, ../sass/sass_style.scss */
.tribe-events-read-more {
  display: none;
}

/* line 1163, ../sass/sass_style.scss */
#tribe-events .tribe-events-button, .tribe-events-button {
  background-color: #852728;
  color: #FFF !important;
  padding: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
}

/* line 1172, ../sass/sass_style.scss */
body.events-category .row.events-cat {
  display: none;
}

/* line 1177, ../sass/sass_style.scss */
.tribe-events-single a {
  color: #852728;
}
/* line 1180, ../sass/sass_style.scss */
.tribe-events-single h2.tribe-events-single-event-title {
  color: #852728;
  font-size: 50px;
  line-height: 57px;
}

/* line 1186, ../sass/sass_style.scss */
.top-submenu.single-event {
  text-align: right;
}

/* line 1189, ../sass/sass_style.scss */
.tribe-events-notices {
  border: none;
  background-color: #E9E9E9;
}

/* line 1193, ../sass/sass_style.scss */
.tribe-events-notices {
  color: #4A4A4A;
}

/* line 1196, ../sass/sass_style.scss */
.row.presenter {
  margin-bottom: 50px;
}
/* line 1198, ../sass/sass_style.scss */
.row.presenter img {
  padding: 0 20px 0 0;
}
/* line 1201, ../sass/sass_style.scss */
.row.presenter p {
  margin-top: 20px;
  line-height: 30px;
}
/* line 1205, ../sass/sass_style.scss */
.row.presenter > div.col-sm-4 {
  padding-left: 0;
}

/* line 1209, ../sass/sass_style.scss */
.presenter-name {
  font-size: 30px;
  color: #852728;
}

/* line 1213, ../sass/sass_style.scss */
.comments-events {
  margin-top: 50px;
}

/* line 1216, ../sass/sass_style.scss */
#show-comments, #show-event-updates {
  background-color: #E9E9E9;
  padding: 10px;
  font-size: 25px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
/* line 1221, ../sass/sass_style.scss */
#show-comments:after, #show-event-updates:after {
  font-family: FontAwesome;
  content: " \f078";
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
  font-size: 22px;
}

/* line 1230, ../sass/sass_style.scss */
.single-tribe_events #home-blog h3.section-title {
  font-size: 50px;
  margin-bottom: 40px;
}

/* line 1234, ../sass/sass_style.scss */
.tribe-events-sub-nav {
  margin-top: 50px !important;
}
/* line 1236, ../sass/sass_style.scss */
.tribe-events-sub-nav a {
  color: #852728;
}

/* line 1241, ../sass/sass_style.scss */
#tribe-events-content li.tribe-events-nav-previous, #tribe-events-content li.tribe-events-nav-next {
  background: #9B9B9B;
  border-radius: 4px;
}
/* line 1244, ../sass/sass_style.scss */
#tribe-events-content li.tribe-events-nav-previous a, #tribe-events-content li.tribe-events-nav-next a {
  color: #FFF !important;
  padding: 15px 20px;
  display: block;
}
/* line 1250, ../sass/sass_style.scss */
#tribe-events-content li.tribe-events-nav-previous:hover, #tribe-events-content li.tribe-events-nav-next:hover {
  background: #852728;
}

/* line 1256, ../sass/sass_style.scss */
.search-filter-results h3.entry-title {
  line-height: 24px;
}

/* line 1260, ../sass/sass_style.scss */
#event-updates .ssba.ssba-wrap {
  display: none;
}
/* line 1263, ../sass/sass_style.scss */
#event-updates .arve-embed-container {
  position: static;
}
/* line 1266, ../sass/sass_style.scss */
#event-updates .dateupdate {
  color: #852728;
  padding-left: 30px;
  margin: 30px 0;
}

/* line 1272, ../sass/sass_style.scss */
.event-top-desc {
  margin-top: 40px;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}
/* line 1277, ../sass/sass_style.scss */
.event-top-desc p {
  margin-bottom: 0;
}
/* line 1280, ../sass/sass_style.scss */
.event-top-desc span.names {
  font-weight: 400;
}
/* line 1283, ../sass/sass_style.scss */
.event-top-desc .tribe-events-schedule {
  margin: 0;
}

/* line 1287, ../sass/sass_style.scss */
h2.tribe-events-page-title {
  font-size: 30px !important;
}

/* line 1290, ../sass/sass_style.scss */
.com-number {
  background-color: #852728;
  color: #FFF;
  border-radius: 50%;
  padding: 0px 9px 3px 9px;
}

/* line 1297, ../sass/sass_style.scss */
#comments-block a {
  color: #852728;
}
/* line 1301, ../sass/sass_style.scss */
#comments-block #commentform input#url, #comments-block #commentform label[for="url"] {
  display: none;
}

/* line 1307, ../sass/sass_style.scss */
.tribe-events-loop .tribe-events-event-meta {
  line-height: 40px;
}

/* line 1310, ../sass/sass_style.scss */
.tribe-events-list .time-details, .tribe-events-list .tribe-events-venue-details {
  line-height: 22px;
}

/* * Search & Filter */
/* line 1315, ../sass/sass_style.scss */
.chosen-container, #secondary ul.chosen-choices, .chosen-container input, .sf-field-search input {
  width: 280px !important;
  max-width: 98%;
}

/* Anthroquest */
/* line 1321, ../sass/sass_style.scss */
.maincontent.lower .anthro-header {
  background-color: #852728;
  padding: 20px;
  margin-bottom: 40px;
}
/* line 1325, ../sass/sass_style.scss */
.maincontent.lower .anthro-header h5 {
  color: #FFF;
  font-size: 30px;
  line-height: 44px;
  font-family: Georgia, serif;
}
/* line 1331, ../sass/sass_style.scss */
.maincontent.lower .anthro-header h4 {
  font-size: 20px;
  font-family: Georgia, serif;
  color: #FFF;
  margin: 0;
  padding: 0;
}

/* line 1339, ../sass/sass_style.scss */
.chosen-container-single .chosen-single {
  background-image: none;
  background-color: #FFF;
  border-radius: 0;
}

/* line 1344, ../sass/sass_style.scss */
a.chosen-single span {
  color: #9B9B9B !important;
}

/* line 1347, ../sass/sass_style.scss */
.sf-field-search input {
  background: url("../../images/search.png") no-repeat center right #FFF;
  padding-right: 20px;
}

/* line 1352, ../sass/sass_style.scss */
.issue .ssba.ssba-wrap {
  display: none !important;
}
/* line 1355, ../sass/sass_style.scss */
.issue .issue-content {
  padding-top: 20px;
}

/* line 1359, ../sass/sass_style.scss */
.maincontent.lower a.download {
  background-color: #852728;
  color: #FFF !important;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  padding: 5px 10px;
}

/* Sidebar
****************************************************/
/* line 1370, ../sass/sass_style.scss */
#secondary a {
  color: #000;
}
/* line 1373, ../sass/sass_style.scss */
#secondary h3.widget-title {
  margin: 30px 0;
  font-family: Georgia, serif;
  font-size: 28px;
  color: #4A4A4A;
}
/* line 1379, ../sass/sass_style.scss */
#secondary aside {
  padding: 10px;
  margin-bottom: 20px;
}
/* line 1382, ../sass/sass_style.scss */
#secondary aside ul {
  list-style: none;
}
/* line 1385, ../sass/sass_style.scss */
#secondary aside .textwidget, #secondary aside > div, #secondary aside > ul {
  background-color: #E9E9E9;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  padding: 10px;
  color: #000;
}
/* line 1392, ../sass/sass_style.scss */
#secondary aside .textwidget .wp-caption .wp-caption-text, #secondary aside > div .wp-caption .wp-caption-text, #secondary aside > ul .wp-caption .wp-caption-text {
  display: none;
}
/* line 1395, ../sass/sass_style.scss */
#secondary aside .textwidget .aligncenter, #secondary aside > div .aligncenter, #secondary aside > ul .aligncenter {
  margin: 0;
}
/* line 1398, ../sass/sass_style.scss */
#secondary aside .textwidget a, #secondary aside > div a, #secondary aside > ul a {
  color: #852728;
}
/* line 1402, ../sass/sass_style.scss */
#secondary aside .textwidget .red-button a, #secondary aside > div .red-button a, #secondary aside > ul .red-button a {
  color: #FFF;
}
/* line 1404, ../sass/sass_style.scss */
#secondary aside .textwidget .red-button a:hover, #secondary aside > div .red-button a:hover, #secondary aside > ul .red-button a:hover {
  color: rgba(255, 255, 255, 0.8);
}
/* line 1412, ../sass/sass_style.scss */
#secondary li {
  list-style: none;
}
/* line 1415, ../sass/sass_style.scss */
#secondary ul.chosen-choices {
  padding-left: 0;
}

/* line 1420, ../sass/sass_style.scss */
.widget_search_filter_register_widget form {
  background-color: #E9E9E9;
  padding: 20px 0;
}
/* line 1424, ../sass/sass_style.scss */
.widget_search_filter_register_widget .chosen-container-multi .chosen-choices {
  max-width: 80%;
}

/* line 1428, ../sass/sass_style.scss */
.searchandfilter h4 {
  color: #852728;
  font-size: 20px;
}

/* line 1432, ../sass/sass_style.scss */
.wp-pagenavi a {
  color: #000;
}

/* line 1435, ../sass/sass_style.scss */
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
}

/* line 1438, ../sass/sass_style.scss */
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #852728;
}

/* Pagination
****************************************************/
/* line 1444, ../sass/sass_style.scss */
.navigation {
  margin-top: 42px;
  margin-top: 3rem;
  margin-bottom: 70px;
  margin-bottom: 5rem;
}
/* line 1449, ../sass/sass_style.scss */
.navigation li {
  display: inline;
}
/* line 1452, ../sass/sass_style.scss */
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
  color: #4A4A4A;
  text-decoration: none;
  background-color: #FFF;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px;
  padding: 0.75rem;
  box-shadow: 1px 1px 1px #B6B6B6;
}
/* line 1462, ../sass/sass_style.scss */
.navigation li a:hover, .navigation li.active a {
  background-color: #4A4A4A;
  color: #FFF;
}

/*
	= Home 	
*******************************************************************************************/
/* line 1473, ../sass/sass_style.scss */
.mainpage .maincontent {
  background-color: #FFF;
}

/* line 1476, ../sass/sass_style.scss */
a.learnmore {
  color: #FFF;
  background-color: #4A4A4A;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px;
}

/* line 1484, ../sass/sass_style.scss */
.backgroundimg {
  width: 100%;
  background-size: cover;
}

/* line 1489, ../sass/sass_style.scss */
#spreadthew {
  background-color: #4A4A4A;
  margin-top: 50px;
  padding: 133px 0px;
  background-size: cover !important;
  position: relative;
}
/* line 1495, ../sass/sass_style.scss */
#spreadthew .spreadblurb {
  text-align: center;
  color: #FFF;
}
/* line 1498, ../sass/sass_style.scss */
#spreadthew .spreadblurb .blurb {
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 60px;
}
/* line 1504, ../sass/sass_style.scss */
#spreadthew #black-studio-tinymce-14 {
  text-transform: uppercase;
}
/* line 1506, ../sass/sass_style.scss */
#spreadthew #black-studio-tinymce-14 .red-button {
  font-size: 40px;
  padding: 30px;
  margin-top: 25px;
}
/* line 1511, ../sass/sass_style.scss */
#spreadthew #black-studio-tinymce-14 a {
  color: #FFF;
}
/* line 1513, ../sass/sass_style.scss */
#spreadthew #black-studio-tinymce-14 a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8) !important;
}
/* line 1518, ../sass/sass_style.scss */
#spreadthew #black-studio-tinymce-14 .fa {
  margin: 0 5px;
  font-size: 30px;
}

/* line 1526, ../sass/sass_style.scss */
.flexslider .slide-caption {
  font-family: Georgia, serif;
  font-size: 38px;
  color: #4A4A4A;
  line-height: 57px;
}

/* line 1533, ../sass/sass_style.scss */
#home-blog {
  padding-top: 50px;
  background-color: #E9E9E9;
  background-size: cover !important;
  position: relative;
}
/* line 1538, ../sass/sass_style.scss */
#home-blog .section-title {
  font-size: 50px;
  margin-bottom: 45px;
  font-family: Georgia, serif;
}
/* line 1543, ../sass/sass_style.scss */
#home-blog .full-blog-link {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

/* line 1551, ../sass/sass_style.scss */
.imagebox {
  position: relative;
}
/* line 1553, ../sass/sass_style.scss */
.imagebox article {
  background-color: #FFF;
  padding: 15px;
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
/* line 1560, ../sass/sass_style.scss */
.imagebox article .entry-title a {
  color: #852728;
  text-decoration: none;
  font-family: Georgia, serif;
  line-height: 30px;
}
/* line 1567, ../sass/sass_style.scss */
.imagebox article .read-more {
  display: none;
}
/* line 1570, ../sass/sass_style.scss */
.imagebox article .entry-summary {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
/* line 1576, ../sass/sass_style.scss */
.imagebox .floating-date {
  position: absolute;
  right: 0;
  top: -8px;
  background-color: #852728;
  color: #FFF;
  font-family: "Source Sans Pro", sans-serif;
  padding: 5px;
  font-weight: 300;
}

/* line 1588, ../sass/sass_style.scss */
span.category {
  font-size: 80%;
}

/* line 1591, ../sass/sass_style.scss */
span.category, span.category a, .maincontent.lower span.category a {
  color: #9B9B9B !important;
  text-decoration: none;
}

/* line 1596, ../sass/sass_style.scss */
span.category a:hover, .maincontent.lower span.category a:hover {
  color: #852728 !important;
}

/* line 1601, ../sass/sass_style.scss */
.imgcaption {
  position: absolute;
  bottom: 0;
  font-size: 10px;
  background-color: #FFF;
  opacity: 0.6;
  padding: 0 5px;
}

/* line 1610, ../sass/sass_style.scss */
.facebook-section #text-21 {
  font-size: 35px;
  font-family: Georgia, serif;
  line-height: 35px;
  padding: 60px 0 20px 0;
}
/* line 1615, ../sass/sass_style.scss */
.facebook-section #text-21 .smallfont {
  font-size: 80%;
}
/* line 1618, ../sass/sass_style.scss */
.facebook-section #text-21 a {
  color: #9B9B9B;
}
/* line 1622, ../sass/sass_style.scss */
.facebook-section .cff-text-wrapper {
  background-color: #E9E9E9;
  box-shadow: 0px 1px 2px 0px #9B9B9B;
  padding: 10px !important;
}
/* line 1627, ../sass/sass_style.scss */
.facebook-section #cff {
  font-size: 22px;
  line-height: 26px;
}
/* line 1630, ../sass/sass_style.scss */
.facebook-section #cff .cff-view-comments {
  background-color: transparent;
}
/* line 1633, ../sass/sass_style.scss */
.facebook-section #cff .cff-text-link:after {
  content: '\2192';
}
/* line 1636, ../sass/sass_style.scss */
.facebook-section #cff .cff-item {
  border-bottom: none;
}

/* line 1641, ../sass/sass_style.scss */
.maincontent.lower .red-button a {
  color: #FFF !important;
}
/* line 1643, ../sass/sass_style.scss */
.maincontent.lower .red-button a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/*
	= Media Queries	
*******************************************************************************************/
/* phone */
@media (max-width: 767px) {
  /* line 1653, ../sass/sass_style.scss */
  .brand .col-xs-8 {
    float: none;
  }

  /* line 1656, ../sass/sass_style.scss */
  #topright {
    padding-bottom: 60px;
    padding-right: 20px;
    padding-top: 10px;
  }

  /* line 1661, ../sass/sass_style.scss */
  .slide-caption-wrapper {
    background-color: #9B9B9B;
    width: 100%;
  }
  /* line 1664, ../sass/sass_style.scss */
  .slide-caption-wrapper .container {
    padding: 0;
  }

  /* line 1668, ../sass/sass_style.scss */
  .flexslider .slide-caption {
    line-height: 20px;
    font-size: 15px;
  }

  /* line 1672, ../sass/sass_style.scss */
  .flex-direction-nav a {
    top: 23%;
  }

  /* line 1675, ../sass/sass_style.scss */
  .flex-control-nav {
    bottom: 0px;
  }

  /* line 1678, ../sass/sass_style.scss */
  .flex-direction-nav a:before {
    font-size: 30px;
  }

  /* line 1681, ../sass/sass_style.scss */
  .left {
    margin-bottom: 0;
  }

  /* line 1684, ../sass/sass_style.scss */
  .flexslider {
    background-color: #E9E9E9;
  }

  /* line 1687, ../sass/sass_style.scss */
  .home-session-1 {
    background-color: #FFF !important;
  }
  /* line 1689, ../sass/sass_style.scss */
  .home-session-1 > div {
    margin-bottom: 30px;
  }
  /* line 1692, ../sass/sass_style.scss */
  .home-session-1 .col-sm-4 .widget_text {
    font-size: 25px;
  }

  /* line 1696, ../sass/sass_style.scss */
  #spreadthew {
    background-image: none !important;
    background-color: #4A4A4A !important;
    padding-top: 0;
    padding-bottom: 50px;
  }
  /* line 1702, ../sass/sass_style.scss */
  #spreadthew .spreadblurb .blurb {
    font-size: 25px;
    line-height: 30px;
    padding-top: 20px;
  }
  /* line 1709, ../sass/sass_style.scss */
  #spreadthew #black-studio-tinymce-14 .red-button {
    font-size: 20px;
    padding: 10px;
  }
  /* line 1713, ../sass/sass_style.scss */
  #spreadthew #black-studio-tinymce-14 .fa {
    font-size: 20px;
  }
  /* line 1717, ../sass/sass_style.scss */
  #spreadthew .imgcaption {
    display: none;
  }

  /* line 1723, ../sass/sass_style.scss */
  #text-19 br, #text-20 br, #text-18 br {
    display: none;
  }

  /* line 1729, ../sass/sass_style.scss */
  #home-blog .section-title {
    font-size: 30px;
    padding: 0 15px;
  }
  /* line 1733, ../sass/sass_style.scss */
  #home-blog .imagebox .floating-date {
    right: 25px;
  }
  /* line 1736, ../sass/sass_style.scss */
  #home-blog #seemore {
    background-color: #FFF;
    color: #4A4A4A !important;
    display: inline-block !important;
    text-align: center;
  }
  /* line 1742, ../sass/sass_style.scss */
  #home-blog .full-blog-link.visible-xs {
    margin-bottom: 20px;
  }

  /* line 1746, ../sass/sass_style.scss */
  .email-wrap {
    background-color: #FFF;
    margin-top: 30px;
  }
  /* line 1750, ../sass/sass_style.scss */
  .email-wrap #text-16 h3 {
    font-size: 28px;
    line-height: 35px;
  }
  /* line 1755, ../sass/sass_style.scss */
  .email-wrap .mc4wp-form input[type=email] {
    width: 100%;
    background-color: #E9E9E9;
    color: #000;
    padding: 15px;
    margin-bottom: 15px;
  }

  /* line 1763, ../sass/sass_style.scss */
  .footer {
    text-align: left;
    padding-bottom: 50px;
  }
  /* line 1766, ../sass/sass_style.scss */
  .footer h4 {
    font-size: 20px;
    line-height: 30px;
  }
  /* line 1770, ../sass/sass_style.scss */
  .footer .menu-main-menu-container {
    display: none;
  }

  /* line 1775, ../sass/sass_style.scss */
  .copy #menu-custom-menu {
    padding-left: 0;
  }
  /* line 1777, ../sass/sass_style.scss */
  .copy #menu-custom-menu li {
    display: block;
    text-align: left;
    padding-right: 0;
  }
  /* line 1783, ../sass/sass_style.scss */
  .copy #text-17 {
    text-align: left;
  }

  /* line 1787, ../sass/sass_style.scss */
  .home-session-1 .col-sm-4 .widget_text {
    max-width: 370px;
  }

  /* Interior pages for small screens */
  /* line 1792, ../sass/sass_style.scss */
  #top-submenu-wrapper {
    display: none;
  }

  /* line 1796, ../sass/sass_style.scss */
  .maincontent.lower h3 {
    font-size: 23px;
    line-height: 30px;
  }
  /* line 1800, ../sass/sass_style.scss */
  .maincontent.lower .title .page-title {
    padding: 0;
  }
  /* line 1803, ../sass/sass_style.scss */
  .maincontent.lower h2 {
    font-size: 30px;
  }

  /* line 1807, ../sass/sass_style.scss */
  .blurb.entry {
    margin: 0 -15px 30px -15px !important;
    padding: 15px;
    background-color: #4A4A4A;
    color: #FFF;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
  }

  /* line 1816, ../sass/sass_style.scss */
  .tribe-events-single h2.tribe-events-single-event-title, .single-tribe_events #home-blog h3.section-title {
    font-size: 30px;
  }

  /* line 1819, ../sass/sass_style.scss */
  .image-section {
    height: auto !important;
    background: none !important;
    min-height: 0 !important;
  }

  /* line 1824, ../sass/sass_style.scss */
  select[multiple] {
    max-width: 100%;
  }

  /* line 1827, ../sass/sass_style.scss */
  .tribe-events-sub-nav li a {
    background: none;
  }

  /* line 1831, ../sass/sass_style.scss */
  .presenter img {
    margin-bottom: 10px;
  }

  /* line 1835, ../sass/sass_style.scss */
  .tribe-events-sub-nav li a, .tribe-events-sub-nav li a:hover, .tribe-events-sub-nav li a:visited {
    color: #852728;
  }
}
@media (min-width: 768px) {
  /* Tablet Portrait & Beyond */
  /* line 1841, ../sass/sass_style.scss */
  ul.slimmenu {
    display: inline-block;
    text-align: right;
  }
  /* line 1845, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 12px 10px;
  }
  /* line 1848, ../sass/sass_style.scss */
  ul.slimmenu li > ul {
    left: -40px;
    text-align: left;
  }
  /* line 1851, ../sass/sass_style.scss */
  ul.slimmenu li > ul > li ul {
    left: 82%;
  }
  /* line 1855, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu {
    width: 260px;
  }
  /* line 1857, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu li a {
    width: 220px;
  }
  /* line 1861, ../sass/sass_style.scss */
  ul.slimmenu li .sub-collapser {
    display: none;
  }

  /* line 1867, ../sass/sass_style.scss */
  #text-19 br, #text-20 br, #text-18 br {
    display: block;
  }

  /* Header */
  /* line 1872, ../sass/sass_style.scss */
  #topright {
    margin-top: 20px;
    height: 40px;
  }

  /* line 1876, ../sass/sass_style.scss */
  #site-navigation {
    margin-top: 25px;
  }

  /* line 1879, ../sass/sass_style.scss */
  .navbar {
    margin-bottom: 0 !important;
  }

  /* Interior Pages medium to large screens */
  /* line 1883, ../sass/sass_style.scss */
  .title {
    margin-top: -115px;
    margin-bottom: 50px;
  }

  /* line 1888, ../sass/sass_style.scss */
  .tribe-events-page-template .title {
    margin-top: -115px;
  }

  /* line 1892, ../sass/sass_style.scss */
  #home-blog.singlepost {
    min-height: 700px;
  }

  /* line 1895, ../sass/sass_style.scss */
  .ssba.ssba-wrap {
    margin-top: -45px;
    margin-bottom: 25px;
  }
  /* line 1898, ../sass/sass_style.scss */
  .ssba.ssba-wrap img:hover {
    background-color: #E9E9E9;
  }

  /* line 1902, ../sass/sass_style.scss */
  .entry-summary .ssba.ssba-wrap {
    margin: 0;
  }

  /* line 1905, ../sass/sass_style.scss */
  .title {
    margin-left: -15px;
  }

  /* line 1909, ../sass/sass_style.scss */
  .page-template-page-eventcat .title {
    margin-top: -104px;
  }

  /* line 1914, ../sass/sass_style.scss */
  .page-template-page-videos .title {
    margin-top: -100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* Portait tablet */
  /* line 1921, ../sass/sass_style.scss */
  .home-session-1 .col-sm-4 .widget_text {
    font-size: 28px;
    line-height: 40px;
  }

  /* line 1925, ../sass/sass_style.scss */
  .email-wrap #text-16 h3 {
    font-size: 26px;
    line-height: 35px;
  }

  /* line 1929, ../sass/sass_style.scss */
  #text-16 .mc4wp-form-basic {
    margin: 0;
  }

  /* line 1932, ../sass/sass_style.scss */
  .title {
    margin-top: -160px;
  }

  /* line 1935, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .slide-caption {
    line-height: 30px;
    padding: 5px;
  }

  /* line 1940, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .slide-caption-wrapper.left {
    margin-bottom: 0;
  }
  /* line 1943, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .flex-control-nav {
    bottom: 40px;
  }
  /* line 1946, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .imgcaption {
    bottom: -27px;
    right: 0;
  }
}
@media (min-width: 992px) {
  /* Tablet Landscape */
  /* line 1953, ../sass/sass_style.scss */
  .slide-caption-wrapper {
    position: absolute;
    top: 100px;
    width: 100%;
  }
  /* line 1957, ../sass/sass_style.scss */
  .slide-caption-wrapper .container {
    padding-left: 0;
  }
  /* line 1961, ../sass/sass_style.scss */
  .slide-caption-wrapper.right .slide-caption {
    float: right;
  }

  /* line 1967, ../sass/sass_style.scss */
  .page-template-page-eventcat div.title.cat {
    padding: 15px;
  }
  /* line 1973, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .flex-direction-nav {
    list-style: none;
  }
  /* line 1976, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .flex-control-nav {
    bottom: 60px;
  }
  /* line 1981, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .slide-caption-wrapper {
    top: auto;
    bottom: 0px;
    margin: 0;
  }
  /* line 1985, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .slide-caption-wrapper .container {
    max-width: none;
    padding-right: 0;
  }
  /* line 1988, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .slide-caption-wrapper .container .slide-caption {
    width: 100%;
    padding: 10px;
  }
  /* line 1994, ../sass/sass_style.scss */
  .page-template-page-eventcat .flexslider .imgcaption {
    right: 0;
    bottom: -27px;
  }

  /* events category */
}
@media (min-width: 1200px) {
  /* Desktop */
  /* line 2005, ../sass/sass_style.scss */
  .top-submenu a {
    font-size: 18px;
  }

  /* line 2009, ../sass/sass_style.scss */
  .page-template-page-podcasts .way {
    height: 240px;
  }
}
/* Print Styles */
@media print {
  /* line 2017, ../sass/sass_style.scss */
  body {
    background: white;
    color: black;
    margin: 0;
  }

  /* line 2022, ../sass/sass_style.scss */
  .ssba {
    display: none;
  }

  /* line 2025, ../sass/sass_style.scss */
  a[href]:after {
    content: none !important;
  }
}
