/*

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'

*/
@font-face {
  font-family: 'senbold';
  src: url("../../fonts/sen-bold-webfont.woff2") format("woff2"), url("../../fonts/sen-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'senextrabold';
  src: url("../../fonts/sen-extrabold-webfont.woff2") format("woff2"), url("../../fonts/sen-extrabold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'senregular';
  src: url("../../fonts/sen-regular-webfont.woff2") format("woff2"), url("../../fonts/sen-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*
	= 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 91, ../sass/sass_style.scss */
html {
  overflow-x: hidden;
}

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

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

/* line 97, ../sass/sass_style.scss */
body {
  font: normal normal normal 16px/150% "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #4A4A4A;
  background: white;
  padding-bottom: 0;
}
/* line 102, ../sass/sass_style.scss */
body.home {
  background: #DEDEDE;
}
/* line 106, ../sass/sass_style.scss */
body .post a {
  color: #961C24;
}
/* line 108, ../sass/sass_style.scss */
body .post a:hover {
  color: #333;
}

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

/* line 119, ../sass/sass_style.scss */
.wp-caption {
  background-color: #ECECEC;
  border: 1px solid #CDC1CF;
  padding: 5px;
  -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
}
/* line 126, ../sass/sass_style.scss */
.wp-caption img {
  width: 100%;
  height: auto;
}
/* line 130, ../sass/sass_style.scss */
.wp-caption .wp-caption-text {
  margin-bottom: 0;
  font-size: 12px;
  font-style: italic;
  color: #4A4A4A;
}

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

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

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

/* line 149, ../sass/sass_style.scss */
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 153, ../sass/sass_style.scss */
a {
  color: #4A4A4A;
}

/* line 156, ../sass/sass_style.scss */
em {
  font-style: italic;
}

/* line 159, ../sass/sass_style.scss */
strong {
  font-weight: bold;
}

/* line 162, ../sass/sass_style.scss */
p {
  margin-bottom: 15px;
}

/* line 165, ../sass/sass_style.scss */
blockquote, blockquote * {
  color: #4A4A4A;
  font-size: 18px;
  line-height: 165%;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: lighter;
  border: 0px;
  padding: 0px;
}

/* line 175, ../sass/sass_style.scss */
h1, h2, h3, h4, h5, h6 {
  color: #B41224;
  margin: 30px 0 15px;
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
}

/* line 182, ../sass/sass_style.scss */
h2 {
  font-size: 30px;
}

/* line 183, ../sass/sass_style.scss */
h3 {
  font-size: 24px;
}

/* line 184, ../sass/sass_style.scss */
h4 {
  font-size: 20px;
}

/* line 185, ../sass/sass_style.scss */
h5 {
  font-size: 16px;
}

/* line 186, ../sass/sass_style.scss */
h6 {
  font-size: 14px;
}

/* line 188, ../sass/sass_style.scss */
> h2 {
  font-size: 40px;
}

/* line 189, ../sass/sass_style.scss */
ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 15px;
}
/* line 193, ../sass/sass_style.scss */
ul ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 197, ../sass/sass_style.scss */
ul ul ul {
  list-style-type: circle;
}

/* line 202, ../sass/sass_style.scss */
ol {
  padding-left: 30px;
  list-style-type: decimal;
  margin-bottom: 15px;
}
/* line 206, ../sass/sass_style.scss */
ol ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 210, ../sass/sass_style.scss */
ol ul ul {
  list-style-type: circle;
}
/* line 214, ../sass/sass_style.scss */
ol ol {
  padding-left: 20px;
}

/*
	= Header	
*******************************************************************************************/
/* line 222, ../sass/sass_style.scss */
.navbar-wrapper {
  position: static;
  background: url("../../images/header_bg.png") no-repeat 50% 0% #5E8285;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.75);
  margin-bottom: 5px;
}

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

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

/* line 238, ../sass/sass_style.scss */
.header {
  padding-left: 0px;
  padding-right: 0px;
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 244, ../sass/sass_style.scss */
.header-1, header-2 {
  margin-bottom: 20px;
}

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

/* line 256, ../sass/sass_style.scss */
.soc-net {
  padding-top: 10px;
}
/* line 258, ../sass/sass_style.scss */
.soc-net img {
  width: 23px;
  height: auto;
  margin-left: 2px;
}

/* line 266, ../sass/sass_style.scss */
.language {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-align: right;
  text-transform: lowercase;
  padding-top: 7px;
  padding-right: 7px;
  color: white;
}
/* line 274, ../sass/sass_style.scss */
.language a {
  color: white;
}
/* line 276, ../sass/sass_style.scss */
.language a:hover {
  color: #383430;
  text-decoration: none;
}

/* line 283, ../sass/sass_style.scss */
.donate-header {
  text-align: center;
  font-size: 15px;
}
/* line 288, ../sass/sass_style.scss */
.donate-header a {
  color: white;
  display: inline-block;
  padding: 5px 0px;
  width: 100%;
  background: #000;
}

/* line 297, ../sass/sass_style.scss */
a.donate-header {
  color: white;
}

/* line 301, ../sass/sass_style.scss */
#topwidget {
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
/* line 307, ../sass/sass_style.scss */
#topwidget .textwidget a {
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
  color: white;
  padding: 7px 20px;
  width: 48%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 317, ../sass/sass_style.scss */
#topwidget .textwidget a.email-phone {
  background: #D0021B;
  margin-right: 7px;
}
/* line 321, ../sass/sass_style.scss */
#topwidget .textwidget a.donate-phone {
  background: #383430;
}

/* line 327, ../sass/sass_style.scss */
.phone-soc {
  margin-bottom: 20px;
  text-align: left;
  padding-left: 7px;
}
/* line 331, ../sass/sass_style.scss */
.phone-soc img {
  max-width: 22px;
}

/* line 338, ../sass/sass_style.scss */
#head-last {
  text-align: right;
}
/* line 340, ../sass/sass_style.scss */
#head-last img {
  margin-right: 3px;
}

/* line 350, ../sass/sass_style.scss */
.brand .logo {
  padding-right: 0px;
}
/* line 352, ../sass/sass_style.scss */
.brand .logo h1 {
  margin: 0px;
}
/* line 353, ../sass/sass_style.scss */
.brand .logo h1.site-title {
  margin-left: 999999px;
  line-height: 0;
  overflow: hidden;
}
/* line 359, ../sass/sass_style.scss */
.brand .logo h2.site-description {
  font-size: 12px;
  margin-top: 5px;
  text-transform: uppercase;
  display: none;
  /* just for the wireframe*/
}
/* line 366, ../sass/sass_style.scss */
.brand .logo img {
  max-width: 100%;
}

/* line 371, ../sass/sass_style.scss */
#search-2 {
  float: right;
}

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

/* line 385, ../sass/sass_style.scss */
.navbar-toggle {
  background-color: transparent;
  margin-right: 0px;
  padding: 13px 0px 3px 0px;
}
/* line 389, ../sass/sass_style.scss */
.navbar-toggle .icon-bar {
  background-color: white;
  width: 35px;
  height: 6px;
}
/* line 395, ../sass/sass_style.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}

/* line 399, ../sass/sass_style.scss */
ul.slimmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block !important;
}
/* line 406, ../sass/sass_style.scss */
ul.slimmenu li {
  position: relative;
  display: inline-block;
  background-color: #383430;
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 412, ../sass/sass_style.scss */
ul.slimmenu li a {
  display: block;
  color: #fff;
  padding: 12px 64px 12px 16px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  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 424, ../sass/sass_style.scss */
ul.slimmenu li a:hover {
  background-color: #B41224;
  text-decoration: none;
}
/* line 430, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.075);
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  text-align: center;
  z-index: 999;
  cursor: pointer;
}
/* line 440, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
/* line 447, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser > i {
  color: #333;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
}
/* line 455, ../sass/sass_style.scss */
ul.slimmenu li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
}
/* line 462, ../sass/sass_style.scss */
ul.slimmenu li > ul > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  width: 100%;
}
/* line 472, ../sass/sass_style.scss */
ul.slimmenu > li {
  margin-right: -5px;
  border-left: 1px solid #999;
}
/* line 475, ../sass/sass_style.scss */
ul.slimmenu > li:first-child {
  border-left: 0;
}
/* line 476, ../sass/sass_style.scss */
ul.slimmenu > li:last-child {
  margin-right: 0;
}
/* line 478, ../sass/sass_style.scss */
ul.slimmenu ul {
  margin: 0;
  list-style-type: none;
}
/* line 481, ../sass/sass_style.scss */
ul.slimmenu ul li {
  background-color: #BBB;
}
/* line 485, ../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 491, ../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 498, ../sass/sass_style.scss */
ul.slimmenu.collapsed li .sub-collapser {
  height: 40px;
}
/* line 501, ../sass/sass_style.scss */
ul.slimmenu.collapsed li > ul {
  display: none;
  position: static;
}

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

/* line 511, ../sass/sass_style.scss */
.navbar-collapse {
  max-height: 100%;
  border: 0px;
}

/*
	= Footer 	
*******************************************************************************************/
/* line 521, ../sass/sass_style.scss */
.flickrimg {
  border: 0px solid #666666 !important;
  padding: 1px;
  margin: 2px;
}

/* line 522, ../sass/sass_style.scss */
#flickr_badge_wrapper {
  width: 300px;
  text-align: left;
}

/* line 526, ../sass/sass_style.scss */
.footer-wrapper {
  background: #46423d;
  color: #ECECEC;
  padding-top: 40px;
  padding-bottom: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 536, ../sass/sass_style.scss */
.footer-wrapper .social-footer .col-sm-4:first-of-type aside {
  padding-bottom: 20px;
}
/* line 538, ../sass/sass_style.scss */
.footer-wrapper .social-footer .col-sm-4:first-of-type aside img {
  margin-right: 3px;
  max-width: 68px;
}
/* line 543, ../sass/sass_style.scss */
.footer-wrapper .social-footer .col-sm-4:first-of-type aside center {
  display: none;
}
/* line 547, ../sass/sass_style.scss */
.footer-wrapper .social-footer .col-sm-4 aside {
  margin-bottom: 20px;
}
/* line 552, ../sass/sass_style.scss */
.footer-wrapper footer {
  text-align: center;
}
/* line 559, ../sass/sass_style.scss */
.footer-wrapper .footer-menu li {
  list-style: none;
  display: inline;
  margin-right: 5px;
}
/* line 563, ../sass/sass_style.scss */
.footer-wrapper .footer-menu li:after {
  content: '//';
  margin-left: 5px;
}
/* line 567, ../sass/sass_style.scss */
.footer-wrapper .footer-menu li a {
  color: #ECECEC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 573, ../sass/sass_style.scss */
.footer-wrapper .footer-menu li:last-child:after {
  content: "";
}
/* line 579, ../sass/sass_style.scss */
.footer-wrapper .footer-menu.secondary-footer-menu {
  font-size: 12px;
}
/* line 584, ../sass/sass_style.scss */
.footer-wrapper .main-footer-menu {
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  text-align: center;
  line-height: 28px;
}
/* line 590, ../sass/sass_style.scss */
.footer-wrapper .main-footer-menu ul {
  padding-left: 0px;
}
/* line 595, ../sass/sass_style.scss */
.footer-wrapper .main-footer-menu ul li:after {
  content: '';
  margin: 0px;
}
/* line 599, ../sass/sass_style.scss */
.footer-wrapper .main-footer-menu ul li:first-child {
  display: none;
}
/* line 607, ../sass/sass_style.scss */
.footer-wrapper .soc-net {
  margin-top: 10px;
  margin-bottom: 30px;
}
/* line 611, ../sass/sass_style.scss */
.footer-wrapper .soc-net img {
  width: 25px;
}

/*
	= Interior pages 	
*******************************************************************************************/
/* line 622, ../sass/sass_style.scss */
.maincontent.lower {
  padding-bottom: 50px;
  background: #fff;
  padding: 30px 10px;
}

/* line 629, ../sass/sass_style.scss */
#title-wrap {
  background: url("../../images/slide_bg.png") repeat 50% 50%;
  color: white;
}
/* line 634, ../sass/sass_style.scss */
#title-wrap .page-title {
  color: white;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
}
/* line 639, ../sass/sass_style.scss */
#title-wrap .page-title a {
  color: white;
}
/* line 644, ../sass/sass_style.scss */
#title-wrap a {
  color: white;
}

/* line 650, ../sass/sass_style.scss */
.share ul.share-buttons {
  list-style: none;
  padding: 0;
  text-align: center;
  color: white;
}
/* line 655, ../sass/sass_style.scss */
.share ul.share-buttons li {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 659, ../sass/sass_style.scss */
.share ul.share-buttons li:first-child {
  margin-right: 5px;
  padding-top: 5px;
}
/* line 663, ../sass/sass_style.scss */
.share ul.share-buttons li img {
  max-width: 18px;
}

/* line 671, ../sass/sass_style.scss */
#breadcrumbs {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  list-style: none;
  margin: 20px 0 5px 0;
  overflow: hidden;
  color: white;
  padding-left: 0px;
  text-transform: lowercase;
  text-align: center;
}
/* line 681, ../sass/sass_style.scss */
#breadcrumbs li {
  display: inline-block;
  margin-right: 2px;
}
/* line 684, ../sass/sass_style.scss */
#breadcrumbs li a {
  color: white;
}
/* line 687, ../sass/sass_style.scss */
#breadcrumbs li a:hover {
  color: black;
}
/* line 693, ../sass/sass_style.scss */
#breadcrumbs .separator {
  font-size: 14px;
  color: white;
}

/* Sidebar
****************************************************/
/* line 703, ../sass/sass_style.scss */
#secondary a {
  color: #000;
}
/* line 706, ../sass/sass_style.scss */
#secondary h3.widget-title {
  margin-top: 0;
  color: #4A4A4A;
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
}
/* line 712, ../sass/sass_style.scss */
#secondary h3.widget-title:after {
  content: "\203a";
  margin-left: 3px;
}
/* line 717, ../sass/sass_style.scss */
#secondary aside {
  margin-bottom: 20px;
}
/* line 720, ../sass/sass_style.scss */
#secondary aside ul {
  list-style: none;
}
/* line 723, ../sass/sass_style.scss */
#secondary aside .getin-post {
  background: #DEDEDE;
}
/* line 725, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area {
  padding: 10px 15px;
  line-height: 23px;
}
/* line 728, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area .action-link {
  font-weight: 700;
}
/* line 731, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area h3.post-title {
  color: #4A4A4A;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 18px;
  text-transform: none;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 3px;
}
/* line 740, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area a {
  color: #4A4A4A;
}
/* line 748, ../sass/sass_style.scss */
#secondary li {
  list-style: none;
}
/* line 751, ../sass/sass_style.scss */
#secondary .menu-main-menu-container {
  -webkit-box-shadow: 1px 0px 10px 1px rgba(120, 120, 120, 0.5);
  box-shadow: 1px 0px 10px 1px rgba(120, 120, 120, 0.5);
}
/* line 755, ../sass/sass_style.scss */
#secondary .menu-main-menu-container .in-this-section {
  background: #5E8285;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
  padding: 10px;
  font-size: 18px;
}
/* line 764, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul {
  padding-left: 10px;
  padding-bottom: 20px;
  padding-top: 10px;
  background: #DEDEDE;
}
/* line 769, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li {
  padding: 3px 0px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
}
/* line 775, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li a {
  color: #961C24;
}
/* line 777, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li a:hover {
  color: #4A4A4A;
}
/* line 781, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul {
  padding-left: 0px;
  padding-bottom: 0px;
  padding-top: 3px;
}
/* line 786, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul li ul {
  padding-left: 10px;
  padding-top: 2px;
}
/* line 789, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul li ul li {
  font-size: 14px;
}

/* line 803, ../sass/sass_style.scss */
#secondary aside.widget_categories, #secondary aside.widget_archive, #secondary aside.widget_taxonomy_dropdown_widget {
  background: #DEDEDE;
}
/* line 806, ../sass/sass_style.scss */
#secondary aside.widget_categories h3.widget-title, #secondary aside.widget_archive h3.widget-title, #secondary aside.widget_taxonomy_dropdown_widget h3.widget-title {
  color: white;
  font-size: 17px;
  background: #5E8285;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  padding: 10px;
  margin-bottom: 0px;
}
/* line 815, ../sass/sass_style.scss */
#secondary aside.widget_categories h3.widget-title label, #secondary aside.widget_archive h3.widget-title label, #secondary aside.widget_taxonomy_dropdown_widget h3.widget-title label {
  display: inline;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 821, ../sass/sass_style.scss */
#secondary aside.widget_categories label, #secondary aside.widget_archive label, #secondary aside.widget_taxonomy_dropdown_widget label {
  display: none;
}
/* line 824, ../sass/sass_style.scss */
#secondary aside.widget_categories select, #secondary aside.widget_archive select, #secondary aside.widget_taxonomy_dropdown_widget select {
  background: white;
  margin: 5% 10%;
  width: 80%;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 1px solid #979797;
  font-weight: lighter;
  color: #979797;
  padding: 5px;
  font-size: 14px;
}
/* line 836, ../sass/sass_style.scss */
#secondary aside.widget_categories select option:after, #secondary aside.widget_archive select option:after, #secondary aside.widget_taxonomy_dropdown_widget select option:after {
  content: '\2304';
}

/* line 846, ../sass/sass_style.scss */
.single-post #secondary aside:nth-child(1) {
  display: none;
}
/* line 849, ../sass/sass_style.scss */
.single-post #secondary aside:nth-child(2) {
  display: none;
}

/* Pagination
****************************************************/
/* line 861, ../sass/sass_style.scss */
.navigation {
  margin-top: 42px;
  margin-top: 3rem;
  margin-bottom: 70px;
  margin-bottom: 5rem;
}
/* line 866, ../sass/sass_style.scss */
.navigation ul {
  padding-left: 0px;
}
/* line 873, ../sass/sass_style.scss */
.navigation li {
  display: inline;
  padding: 5px 10px;
  border: 1px solid #979797;
  background: #ECECEC;
  line-height: 30px;
  font-weight: 700;
  margin: -2px;
}
/* line 881, ../sass/sass_style.scss */
.navigation li:first-child {
  border-radius: 6px 0px 0px 6px;
}
/* line 884, ../sass/sass_style.scss */
.navigation li:last-child {
  border-radius: 0px 6px 6px 0px;
}
/* line 889, ../sass/sass_style.scss */
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
  color: #4A4A4A;
  text-decoration: none;
  cursor: pointer;
}
/* line 897, ../sass/sass_style.scss */
.navigation li:hover, .navigation li.active {
  background-color: #5E8285;
}
/* line 899, ../sass/sass_style.scss */
.navigation li:hover a, .navigation li.active a {
  color: white;
}

/*
	= Events 	
*******************************************************************************************/
/* line 911, ../sass/sass_style.scss */
#tribe-bar-form .tribe-bar-submit input[type=submit], #tribe-events-bar .tribe-bar-submit, .tribe-bar-collapse #tribe-bar-collapse-toggle {
  background: #961C24;
  color: white;
  padding-bottom: 18px;
  font-family: "senextrabold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-right: 4px;
}

/* line 924, ../sass/sass_style.scss */
.tribe-bar-collapse #tribe-bar-collapse-toggle {
  width: 58%;
}

/* line 928, ../sass/sass_style.scss */
#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner {
  border-radius: 5px;
}

/* line 933, ../sass/sass_style.scss */
.tribe-bar-submit {
  font-size: 25px;
}

/* line 937, ../sass/sass_style.scss */
#tribe-bar-form #tribe-bar-views {
  padding: 0px;
}

/* line 941, ../sass/sass_style.scss */
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
  max-width: none;
}

/* line 945, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events {
  background: #ECECEC;
  margin-bottom: 30px;
  padding-top: 0px;
  padding-bottom: 10px;
}

/* line 953, ../sass/sass_style.scss */
.event-img {
  width: 100%;
  height: 170px;
  display: block;
}

/* line 960, ../sass/sass_style.scss */
.event-text-feed {
  display: block;
  padding: 20px;
  font-size: 14px;
  line-height: 20px;
}

/* line 967, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title {
  font-family: "senextrabold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #961C24;
  font-size: 20px;
  line-height: 25px;
}
/* line 973, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title:after {
  content: '\203a';
}
/* line 976, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title a {
  color: #961C24;
}
/* line 978, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title a:hover {
  color: #333;
  text-decoration: none;
}

/* line 985, ../sass/sass_style.scss */
.tribe-events-loop .tribe-events-event-meta {
  margin-top: 0px;
  margin-bottom: 0px;
  background: transparent;
  border: 0px;
  padding: 10px 0;
}
/* line 991, ../sass/sass_style.scss */
.tribe-events-loop .tribe-events-event-meta a {
  color: #333;
}

/* line 996, ../sass/sass_style.scss */
#tribe-events .tribe-events-button {
  background: #961C24;
}

/* line 1000, ../sass/sass_style.scss */
#tribe-events .tribe-events-sub-nav li a, ul.tribe-events-sub-nav a {
  background: transparent;
  color: #4A4A4A;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
}

/* line 1010, ../sass/sass_style.scss */
.single-tribe_events .tribe-events-event-meta {
  background: #ECECEC;
}

/* line 1014, ../sass/sass_style.scss */
#tribe-events .single-tribe_events .tribe-events-schedule {
  border: 0px;
  background: transparent;
  padding: 0px;
}

/* line 1020, ../sass/sass_style.scss */
#tribe-events h2.tribe-events-single-event-title {
  word-wrap: break-word;
}

/*
	= Blog 	
*******************************************************************************************/
/* line 1029, ../sass/sass_style.scss */
#blog .entry .title {
  font-size: 24px;
}

/* line 1036, ../sass/sass_style.scss */
#brick-container article {
  margin-bottom: 30px;
}
/* line 1039, ../sass/sass_style.scss */
#brick-container article .post-image {
  padding: 0px;
}
/* line 1041, ../sass/sass_style.scss */
#brick-container article .post-image img {
  width: 100%;
}
/* line 1045, ../sass/sass_style.scss */
#brick-container article .post-text {
  margin: 0px -15px;
  padding: 0px 20px 20px 20px;
  background: #ECECEC;
  word-break: break-word;
  line-height: 24px;
  font-size: 14px;
}
/* line 1053, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  margin: 20px 0 5px 0;
}
/* line 1060, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title:after {
  content: "\203a";
  margin-left: 5px;
  color: #4A4A4A;
}
/* line 1065, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title a {
  color: #4A4A4A;
}
/* line 1067, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title a:hover {
  color: #961C24;
  text-decoration: none;
}
/* line 1073, ../sass/sass_style.scss */
#brick-container article .post-text .author {
  margin-bottom: 0px;
}
/* line 1075, ../sass/sass_style.scss */
#brick-container article .post-text .author a {
  color: #4A4A4A;
}
/* line 1077, ../sass/sass_style.scss */
#brick-container article .post-text .author a:hover {
  color: #961C24;
}

/* line 1087, ../sass/sass_style.scss */
.post .post-meta a {
  color: #4A4A4A;
}

/* line 1091, ../sass/sass_style.scss */
.post-meta {
  font-weight: 700;
  padding-top: 20px;
  font-size: 13px;
}
/* line 1095, ../sass/sass_style.scss */
.post-meta ul {
  padding-left: 0px;
}
/* line 1097, ../sass/sass_style.scss */
.post-meta ul li {
  display: inline;
  text-decoration: none;
}
/* line 1100, ../sass/sass_style.scss */
.post-meta ul li a {
  color: #4A4A4A;
}
/* line 1102, ../sass/sass_style.scss */
.post-meta ul li a:hover {
  color: #961C24;
}

/*
	= Action Alerts 	
*******************************************************************************************/
/* line 1118, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  margin: 20px 0 5px 0;
}
/* line 1123, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title:after {
  color: #961C24;
}
/* line 1126, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title a {
  color: #961C24;
}
/* line 1128, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title a:hover {
  color: black;
}
/* line 1133, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text .author {
  color: black;
  font-weight: 700;
}
/* line 1136, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text .author a {
  color: black;
}

/*
	= staff 	
*******************************************************************************************/
/* line 1150, ../sass/sass_style.scss */
.staff {
  margin-bottom: 30px;
  background: #F2F2F2;
  padding: 10px;
}
/* line 1154, ../sass/sass_style.scss */
.staff img {
  width: 129px;
  height: 129px;
  float: left;
  margin: 0 20px 20px 0px;
}
/* line 1161, ../sass/sass_style.scss */
.staff h3.entry-title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  margin: 0px 0 5px 0;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  text-transform: none;
}
/* line 1168, ../sass/sass_style.scss */
.staff h3.entry-title:after {
  content: "\203a";
  margin-left: 2px;
  color: #4A4A4A;
}
/* line 1174, ../sass/sass_style.scss */
.staff h3.entry-title a:hover {
  color: #961C24;
  text-decoration: none;
}
/* line 1180, ../sass/sass_style.scss */
.staff .post-meta {
  padding-top: 0px;
}

/*
	= Home 	
*******************************************************************************************/
/* line 1190, ../sass/sass_style.scss */
.slide-wrapper {
  background: url("../../images/slide_bg.png") repeat-x 0% 100%;
}
/* line 1194, ../sass/sass_style.scss */
.slide-wrapper .container, .slide-wrapper .row {
  padding: 0px;
}

/* line 1200, ../sass/sass_style.scss */
.mainpage .maincontent {
  background-color: #DEDEDE;
}

/* line 1208, ../sass/sass_style.scss */
h3.home-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}
/* line 1213, ../sass/sass_style.scss */
h3.home-title a:hover {
  color: #961C24;
  text-decoration: none;
}

/* line 1222, ../sass/sass_style.scss */
.home-blog:nth-of-type(2) {
  display: none;
}
/* line 1225, ../sass/sass_style.scss */
.home-blog:nth-of-type(3) {
  display: none;
}

/* line 1230, ../sass/sass_style.scss */
.getin-post {
  margin-left: 0px;
  margin-right: 0px;
  -webkit-box-shadow: 1px 0px 10px 1px rgba(120, 120, 120, 0.5);
  box-shadow: 1px 0px 10px 1px rgba(120, 120, 120, 0.5);
  background: white;
}
/* line 1236, ../sass/sass_style.scss */
.getin-post .img-col {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1241, ../sass/sass_style.scss */
.getin-post .get-in-text {
  padding: 0px;
}

/* line 1247, ../sass/sass_style.scss */
.home-post {
  margin-bottom: 30px;
  -webkit-box-shadow: 1px 0px 4px 1px rgba(120, 120, 120, 0.5);
  box-shadow: 1px 0px 4px 1px rgba(120, 120, 120, 0.5);
}
/* line 1251, ../sass/sass_style.scss */
.home-post .category {
  background: #5E8285;
  color: #fff;
  padding: 10px 20px;
  min-height: 68px;
}
/* line 1256, ../sass/sass_style.scss */
.home-post .category ul {
  padding: 0;
  margin: 0;
}
/* line 1259, ../sass/sass_style.scss */
.home-post .category ul li {
  display: inline;
  list-style-type: none;
  margin-left: 3px;
}
/* line 1263, ../sass/sass_style.scss */
.home-post .category ul li a {
  color: white;
}
/* line 1265, ../sass/sass_style.scss */
.home-post .category ul li a:hover {
  color: #333;
}
/* line 1269, ../sass/sass_style.scss */
.home-post .category ul li:after {
  content: ",";
  margin-left: 2px;
}
/* line 1274, ../sass/sass_style.scss */
.home-post .category ul li:last-child:after {
  content: "";
}
/* line 1281, ../sass/sass_style.scss */
.home-post .text-area {
  background: #fff;
  padding: 10px 20px;
  min-height: 159px;
  line-height: 20px;
}
/* line 1287, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title {
  margin-top: 0px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 1296, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title a {
  color: #961C24;
}
/* line 1298, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title a:hover {
  color: #333;
}
/* line 1302, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title:after {
  content: "\203a";
  margin-left: 3px;
}
/* line 1307, ../sass/sass_style.scss */
.home-post .text-area.event-home {
  min-height: 85px;
}
/* line 1310, ../sass/sass_style.scss */
.home-post .text-area .front-meta {
  margin-bottom: 3px;
  margin-top: 5px;
  font-weight: 700;
  font-size: 14px;
}
/* line 1318, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link {
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 3px;
}
/* line 1322, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link a {
  color: #5E8285;
}
/* line 1324, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link a:hover {
  color: #333;
}
/* line 1329, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .front-meta {
  color: black;
}
/* line 1334, ../sass/sass_style.scss */
.home-post.front-action {
  background: #ECECEC;
  margin-bottom: 30px;
}
/* line 1342, ../sass/sass_style.scss */
.home-post:nth-child(2) {
  display: none;
}

/* line 1347, ../sass/sass_style.scss */
.member ul {
  padding: 0px;
}
/* line 1349, ../sass/sass_style.scss */
.member ul li {
  list-style-type: none;
  width: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  font-family: "senextrabold", sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
}
/* line 1358, ../sass/sass_style.scss */
.member ul li a {
  background: #B41224;
  color: white;
  padding: 20px;
  display: inherit;
}
/* line 1363, ../sass/sass_style.scss */
.member ul li a:hover {
  background: #333;
  text-decoration: none;
}

/*
	= Media Queries	
*******************************************************************************************/
@media (min-width: 768px) {
  /* Tablet Portrait */
  /* line 1377, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 45px;
    margin-bottom: 35px;
    margin-top: 35px;
  }

  /* line 1388, ../sass/sass_style.scss */
  .logo {
    padding-top: 20px;
  }

  /* line 1392, ../sass/sass_style.scss */
  .soc-net {
    text-align: right;
  }

  /* line 1396, ../sass/sass_style.scss */
  .language {
    padding-top: 20px;
    text-align: right;
    line-height: 10px;
    padding-right: 0px;
  }

  /* line 1404, ../sass/sass_style.scss */
  .email-widget input {
    padding: 5px;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    background: #ECECEC;
    text-transform: uppercase;
    color: #4A4A4A;
    border: 0px;
    font-size: 17px;
    width: 32%;
    margin-right: 3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  /* line 1419, ../sass/sass_style.scss */
  .email-widget input[type=submit] {
    background: #D0021B;
    color: #ECECEC;
    margin-right: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 10px 8px 10px;
    line-height: 15px;
    font-family: "senextrabold", sans-serif;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* line 1433, ../sass/sass_style.scss */
  .donate-header {
    padding-left: 0px;
  }
  /* line 1435, ../sass/sass_style.scss */
  .donate-header a {
    padding: 8px 0px;
  }

  /* line 1445, ../sass/sass_style.scss */
  .brand {
    margin-bottom: 20px;
  }

  /* line 1449, ../sass/sass_style.scss */
  .navbar-collapse {
    padding: 0;
  }

  /* line 1451, ../sass/sass_style.scss */
  ul.slimmenu {
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
  }
  /* line 1455, ../sass/sass_style.scss */
  ul.slimmenu li {
    margin-right: 5px;
  }
  /* line 1457, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 5px 10px;
    margin-left: 0px;
    font-size: 13px;
  }
  /* line 1462, ../sass/sass_style.scss */
  ul.slimmenu li > ul {
    left: -20px;
    text-align: left;
  }
  /* line 1465, ../sass/sass_style.scss */
  ul.slimmenu li > ul > li ul {
    left: 82%;
  }
  /* line 1469, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu {
    width: 260px;
  }
  /* line 1471, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu li a {
    width: 220px;
  }
  /* line 1475, ../sass/sass_style.scss */
  ul.slimmenu li .sub-collapser {
    display: none;
  }
  /* line 1478, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476, ul.slimmenu li#menu-item-2480 {
    background: transparent;
  }
  /* line 1480, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476 a, ul.slimmenu li#menu-item-2480 a {
    text-indent: -99999px;
    background: url("../../images/home.png") no-repeat 50% 50%;
    background-size: 70%;
  }

  /* line 1491, ../sass/sass_style.scss */
  #banner-image {
    height: 275px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
  }

  /* line 1504, ../sass/sass_style.scss */
  .slide-wrapper {
    padding-top: 20px;
    background-position: 50% 50%;
    background-size: cover;
  }
  /* line 1508, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding-left: 35px;
    padding-right: 35px;
  }
  /* line 1513, ../sass/sass_style.scss */
  .slide-wrapper .container .slide-caption .container, .slide-wrapper .row .slide-caption .container {
    padding: 0px;
  }

  /* line 1523, ../sass/sass_style.scss */
  .home-blog:nth-of-type(2) {
    display: inherit;
  }

  /* line 1529, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 177px;
  }
  /* line 1531, ../sass/sass_style.scss */
  .home-post .text-area.get-in-text {
    padding-left: 20px;
  }

  /* line 1538, ../sass/sass_style.scss */
  .member {
    margin-bottom: 20px;
  }
  /* line 1541, ../sass/sass_style.scss */
  .member ul li {
    list-style-type: none;
    display: inline-block;
    width: 32.33%;
    margin-bottom: 0px;
    margin-right: 1%;
  }
  /* line 1547, ../sass/sass_style.scss */
  .member ul li a {
    display: list-item;
  }
  /* line 1550, ../sass/sass_style.scss */
  .member ul li:last-child {
    margin-right: 0px;
  }

  /* line 1559, ../sass/sass_style.scss */
  .maincontent.lower {
    margin-top: -100px;
    margin-left: 20px;
    margin-right: 20px;
  }

  /* line 1567, ../sass/sass_style.scss */
  #title-wrap {
    background: url("../../images/slide_bg.png") repeat 50% 50%;
    min-height: 120px;
  }
  /* line 1570, ../sass/sass_style.scss */
  #title-wrap .page-title {
    color: white;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 25px;
    font-size: 40px;
    line-height: 42px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* line 1582, ../sass/sass_style.scss */
  .share ul.share-buttons {
    text-align: right;
  }
  /* line 1586, ../sass/sass_style.scss */
  .share ul.share-buttons li img {
    max-width: 25px;
  }

  /* line 1594, ../sass/sass_style.scss */
  #breadcrumbs {
    text-align: left;
    margin-left: 17px;
  }

  /* line 1604, ../sass/sass_style.scss */
  #flickr_badge_wrapper {
    width: 290px;
  }

  /* line 1610, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside img {
    margin-right: 3px;
    max-width: 78px;
  }
  /* line 1616, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside a:nth-of-type(4n+4) img {
    display: none;
  }
  /* line 1626, ../sass/sass_style.scss */
  .footer-wrapper .footer-menu.secondary-footer-menu {
    text-align: right;
  }
  /* line 1628, ../sass/sass_style.scss */
  .footer-wrapper .footer-menu.secondary-footer-menu ul {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  /* line 1636, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    text-align: left;
    font-size: 14px;
  }
  /* line 1642, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li a {
    padding-right: 5px;
    padding-left: 5px;
  }
  /* line 1647, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:last-child {
    margin-left: 0px;
  }
  /* line 1649, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:last-child a {
    padding-right: 0px;
  }
  /* line 1654, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:first-child a {
    padding-left: 0px;
  }
  /* line 1663, ../sass/sass_style.scss */
  .footer-wrapper .soc-net {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 3px;
  }
  /* line 1671, ../sass/sass_style.scss */
  .footer-wrapper .footer-logo {
    padding-right: 0px;
  }

  /* line 1681, ../sass/sass_style.scss */
  #secondary {
    padding-left: 0px;
  }
  /* line 1685, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  /* line 1690, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 30px;
  }
  /* line 1694, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area {
    padding: 10px 15px;
    line-height: 20px;
  }
  /* line 1697, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    margin-top: 10px;
  }

  /* line 1709, ../sass/sass_style.scss */
  .tribe-events-list .type-tribe_events {
    position: relative;
    padding-left: 33.33333%;
  }

  /* line 1715, ../sass/sass_style.scss */
  .event-img {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 33%;
    display: inline;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* line 1728, ../sass/sass_style.scss */
  .event-text-feed {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
  }

  /* line 1735, ../sass/sass_style.scss */
  #tribe-events .tribe-events-sub-nav li a, ul.tribe-events-sub-nav a {
    font-size: 14px;
  }

  /* line 1742, ../sass/sass_style.scss */
  #brick-container article {
    margin-bottom: 30px;
  }
  /* line 1745, ../sass/sass_style.scss */
  #brick-container article .post-image {
    padding: 0px 15px;
  }
  /* line 1748, ../sass/sass_style.scss */
  #brick-container article .post-text {
    margin: 0px;
    font-size: 16px;
  }
  /* line 1753, ../sass/sass_style.scss */
  #brick-container article .post-text h3.entry-title {
    margin-bottom: 0px;
  }

  /* line 1766, ../sass/sass_style.scss */
  .staff {
    margin-bottom: 30px;
    background: #F2F2F2;
    padding: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  /* Tablet Landscape */
  /* line 1784, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 50px;
    margin-bottom: 35px;
    margin-top: 30px;
  }

  /* line 1793, ../sass/sass_style.scss */
  .soc-net img {
    width: 35px;
  }

  /* line 1798, ../sass/sass_style.scss */
  .language {
    font-size: 20px;
  }

  /* line 1803, ../sass/sass_style.scss */
  .email-widget input {
    padding: 13px;
    font-size: 20px;
  }
  /* line 1806, ../sass/sass_style.scss */
  .email-widget input[type=submit] {
    padding: 10px 10px 9px 10px;
    line-height: 32px;
  }

  /* line 1813, ../sass/sass_style.scss */
  .donate-header {
    font-size: 22px;
  }
  /* line 1815, ../sass/sass_style.scss */
  .donate-header a {
    padding: 15px 0px 17px 0px;
  }

  /* line 1821, ../sass/sass_style.scss */
  ul.slimmenu {
    margin-bottom: 20px;
  }
  /* line 1824, ../sass/sass_style.scss */
  ul.slimmenu li {
    margin-right: 5px;
  }
  /* line 1826, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 10px 15px;
    font-size: 17px;
  }
  /* line 1831, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476, ul.slimmenu li#menu-item-2480 {
    margin-right: 35px;
  }

  /* line 1840, ../sass/sass_style.scss */
  #banner-image {
    height: 365px;
    background-color: black;
  }

  /* line 1846, ../sass/sass_style.scss */
  .maincontent.lower {
    margin-top: -90px;
    margin-left: 0px;
    margin-right: 0px;
  }

  /* line 1855, ../sass/sass_style.scss */
  .share ul.share-buttons li img {
    max-width: 100%;
  }

  /* line 1865, ../sass/sass_style.scss */
  #flickr_badge_wrapper {
    width: 365px;
  }

  /* line 1869, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    font-size: 18px;
  }
  /* line 1873, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul li a {
    padding-right: 20px;
    padding-left: 5px;
  }
  /* line 1889, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside img {
    max-width: 100px;
  }
  /* line 1897, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside a:nth-of-type(4n+4) img {
    display: inherit;
  }

  /* line 1915, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding: 20px 40px;
  }

  /* line 1921, ../sass/sass_style.scss */
  .home-blog:nth-of-type(3) {
    display: inherit;
  }
  /* line 1924, ../sass/sass_style.scss */
  .home-blog img {
    max-height: 213px;
  }

  /* line 1929, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 198px;
  }

  /* line 1936, ../sass/sass_style.scss */
  #secondary {
    padding-left: 15px;
  }
  /* line 1938, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 35px;
    margin-bottom: 15px;
  }
  /* line 1942, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 40px;
  }
  /* line 1947, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    margin-top: 15px;
    font-size: 20px;
    line-height: 25px;
  }
  /* line 1957, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container .in-this-section {
    margin: 0px;
    padding: 15px;
    font-size: 22px;
  }
  /* line 1965, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li {
    padding: 6px 0px;
    font-size: 18px;
  }
  /* line 1972, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul {
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 3px;
  }
  /* line 1977, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul {
    padding-left: 20px;
  }
  /* line 1979, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul li {
    font-size: 15px;
    padding: 3px 0px;
  }

  /*---------Events -----------*/
  /* line 1997, ../sass/sass_style.scss */
  #tribe-bar-form .tribe-bar-submit input[type=submit], #tribe-events-bar .tribe-bar-submit {
    padding-bottom: 15px;
    font-size: 20px;
  }

  /* line 2002, ../sass/sass_style.scss */
  .tribe-events-list .type-tribe_events {
    min-height: 193px;
  }

  /* line 2008, ../sass/sass_style.scss */
  #tribe-events-bar .tribe-bar-submit {
    width: 24%;
  }

  /*---------blog -----------*/
  /* line 2017, ../sass/sass_style.scss */
  #brick-container article .post-text {
    padding: 0px 25px 25px 25px;
  }
  /* line 2019, ../sass/sass_style.scss */
  #brick-container article .post-text .post-meta {
    font-size: 14px;
  }
  /* line 2023, ../sass/sass_style.scss */
  #brick-container article .post-text h3.entry-title {
    font-size: 22px;
    line-height: 30px;
  }

  /*--------- staff -----------*/
  /* line 2033, ../sass/sass_style.scss */
  .staff {
    padding: 0px;
  }
  /* line 2035, ../sass/sass_style.scss */
  .staff .staff-image {
    padding: 0px;
  }
  /* line 2037, ../sass/sass_style.scss */
  .staff .staff-image img {
    max-width: 100%;
    float: none;
    margin-right: 0px;
    width: auto;
    height: auto;
    margin-bottom: 0px;
  }
  /* line 2046, ../sass/sass_style.scss */
  .staff .staff-text {
    background: #F2F2F2;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 64.5%;
    min-height: 234px;
  }
  /* line 2054, ../sass/sass_style.scss */
  .staff h3.entry-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  /* Desktop */
  /* line 2066, ../sass/sass_style.scss */
  body {
    font-size: 16px;
  }

  /* line 2069, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 65px;
    font-family: 'senbold', sans-serif;
  }

  /* line 2076, ../sass/sass_style.scss */
  ul.slimmenu li a {
    font-size: 20px;
  }

  /* line 2084, ../sass/sass_style.scss */
  .member ul li {
    font-size: 27px;
  }
  /* line 2086, ../sass/sass_style.scss */
  .member ul li a {
    padding: 30px 20px;
  }

  /******home*/
  /* line 2097, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding: 0px;
  }

  /* line 2102, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 197px;
  }

  /******FOOTER*/
  /* line 2112, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    font-size: 18px;
    text-align: right;
  }
  /* line 2115, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul {
    margin-bottom: 0px;
    padding-top: 30px;
  }
  /* line 2119, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul li a {
    padding-right: 9px;
    padding-left: 9px;
  }
  /* line 2126, ../sass/sass_style.scss */
  .footer-wrapper .soc-net {
    padding-top: 15px;
  }

  /* line 2138, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 40px;
  }
  /* line 2141, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 50px;
  }
  /* line 2145, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    font-size: 23px;
    line-height: 29px;
  }
  /* line 2155, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container .in-this-section {
    margin: 0px;
    padding: 20px;
    font-size: 22px;
  }
  /* line 2161, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul {
    padding-left: 20px;
  }
  /* line 2163, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li {
    padding: 8px 0px;
    font-size: 19px;
  }
  /* line 2166, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul {
    padding-top: 8px;
  }
  /* line 2169, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul {
    padding-left: 20px;
  }
  /* line 2171, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul li {
    font-size: 15px;
    padding: 3px 0px;
  }
}
