@charset "utf-8";
/* CSS Document */

/*

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("../../../../assets/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("../../../assets/slide_bg.png") repeat 50% 50%;
}
/* line 633, ../sass/sass_style.scss */
#title-wrap .page-title {
  color: white;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
}

/* line 643, ../sass/sass_style.scss */
.share ul.share-buttons {
  list-style: none;
  padding: 0;
  text-align: center;
  color: white;
}
/* line 648, ../sass/sass_style.scss */
.share ul.share-buttons li {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 652, ../sass/sass_style.scss */
.share ul.share-buttons li:first-child {
  margin-right: 5px;
  padding-top: 5px;
}
/* line 656, ../sass/sass_style.scss */
.share ul.share-buttons li img {
  max-width: 18px;
}

/* line 664, ../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 674, ../sass/sass_style.scss */
#breadcrumbs li {
  display: inline-block;
  margin-right: 2px;
}
/* line 677, ../sass/sass_style.scss */
#breadcrumbs li a {
  color: white;
}
/* line 680, ../sass/sass_style.scss */
#breadcrumbs li a:hover {
  color: black;
}
/* line 686, ../sass/sass_style.scss */
#breadcrumbs .separator {
  font-size: 14px;
  color: white;
}

/* Sidebar
****************************************************/
/* line 696, ../sass/sass_style.scss */
#secondary a {
  color: #000;
}
/* line 699, ../sass/sass_style.scss */
#secondary h3.widget-title {
  margin-top: 0;
  color: #4A4A4A;
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
}
/* line 705, ../sass/sass_style.scss */
#secondary h3.widget-title:after {
  content: "\203a";
  margin-left: 3px;
}
/* line 710, ../sass/sass_style.scss */
#secondary aside {
  margin-bottom: 20px;
}
/* line 713, ../sass/sass_style.scss */
#secondary aside ul {
  list-style: none;
}
/* line 716, ../sass/sass_style.scss */
#secondary aside .getin-post {
  background: #DEDEDE;
}
/* line 718, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area {
  padding: 10px 15px;
  line-height: 23px;
}
/* line 721, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area .action-link {
  font-weight: 700;
}
/* line 724, ../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 733, ../sass/sass_style.scss */
#secondary aside .getin-post .text-area a {
  color: #4A4A4A;
}
/* line 741, ../sass/sass_style.scss */
#secondary li {
  list-style: none;
}
/* line 744, ../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 748, ../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 757, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul {
  padding-left: 10px;
  padding-bottom: 20px;
  padding-top: 10px;
  background: #DEDEDE;
}
/* line 762, ../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 768, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li a {
  color: #961C24;
}
/* line 770, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li a:hover {
  color: #4A4A4A;
}
/* line 774, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul {
  padding-left: 0px;
  padding-bottom: 0px;
  padding-top: 3px;
}
/* line 779, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul li ul {
  padding-left: 10px;
  padding-top: 2px;
}
/* line 782, ../sass/sass_style.scss */
#secondary .menu-main-menu-container ul li ul li ul li {
  font-size: 14px;
}

/* line 796, ../sass/sass_style.scss */
#secondary aside.widget_categories, #secondary aside.widget_archive, #secondary aside.widget_taxonomy_dropdown_widget {
  background: #DEDEDE;
}
/* line 799, ../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 808, ../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 814, ../sass/sass_style.scss */
#secondary aside.widget_categories label, #secondary aside.widget_archive label, #secondary aside.widget_taxonomy_dropdown_widget label {
  display: none;
}
/* line 817, ../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 829, ../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 839, ../sass/sass_style.scss */
.single-post #secondary aside:nth-child(1) {
  display: none;
}
/* line 842, ../sass/sass_style.scss */
.single-post #secondary aside:nth-child(2) {
  display: none;
}

/* Pagination
****************************************************/
/* line 854, ../sass/sass_style.scss */
.navigation {
  margin-top: 42px;
  margin-top: 3rem;
  margin-bottom: 70px;
  margin-bottom: 5rem;
}
/* line 859, ../sass/sass_style.scss */
.navigation ul {
  padding-left: 0px;
}
/* line 866, ../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 874, ../sass/sass_style.scss */
.navigation li:first-child {
  border-radius: 6px 0px 0px 6px;
}
/* line 877, ../sass/sass_style.scss */
.navigation li:last-child {
  border-radius: 0px 6px 6px 0px;
}
/* line 882, ../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 890, ../sass/sass_style.scss */
.navigation li:hover, .navigation li.active {
  background-color: #5E8285;
}
/* line 892, ../sass/sass_style.scss */
.navigation li:hover a, .navigation li.active a {
  color: white;
}

/*
	= Events 	
*******************************************************************************************/
/* line 904, ../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 917, ../sass/sass_style.scss */
.tribe-bar-collapse #tribe-bar-collapse-toggle {
  width: 58%;
}

/* line 921, ../sass/sass_style.scss */
#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner {
  border-radius: 5px;
}

/* line 926, ../sass/sass_style.scss */
.tribe-bar-submit {
  font-size: 25px;
}

/* line 930, ../sass/sass_style.scss */
#tribe-bar-form #tribe-bar-views {
  padding: 0px;
}

/* line 934, ../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 938, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events {
  background: #ECECEC;
  margin-bottom: 30px;
  padding-top: 0px;
  padding-bottom: 10px;
}

/* line 946, ../sass/sass_style.scss */
.event-img {
  width: 100%;
  height: 170px;
  display: block;
}

/* line 953, ../sass/sass_style.scss */
.event-text-feed {
  display: block;
  padding: 20px;
  font-size: 14px;
  line-height: 20px;
}

/* line 960, ../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 966, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title:after {
  content: '\203a';
}
/* line 969, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title a {
  color: #961C24;
}
/* line 971, ../sass/sass_style.scss */
.tribe-events-list .type-tribe_events h2.tribe-events-list-event-title a:hover {
  color: #333;
  text-decoration: none;
}

/* line 978, ../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 984, ../sass/sass_style.scss */
.tribe-events-loop .tribe-events-event-meta a {
  color: #333;
}

/* line 989, ../sass/sass_style.scss */
#tribe-events .tribe-events-button {
  background: #961C24;
}

/* line 993, ../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 1003, ../sass/sass_style.scss */
.single-tribe_events .tribe-events-event-meta {
  background: #ECECEC;
}

/* line 1007, ../sass/sass_style.scss */
#tribe-events .single-tribe_events .tribe-events-schedule {
  border: 0px;
  background: transparent;
  padding: 0px;
}

/* line 1013, ../sass/sass_style.scss */
#tribe-events h2.tribe-events-single-event-title {
  word-wrap: break-word;
}

/*
	= Blog 	
*******************************************************************************************/
/* line 1022, ../sass/sass_style.scss */
#blog .entry .title {
  font-size: 24px;
}

/* line 1029, ../sass/sass_style.scss */
#brick-container article {
  margin-bottom: 30px;
}
/* line 1032, ../sass/sass_style.scss */
#brick-container article .post-image {
  padding: 0px;
}
/* line 1034, ../sass/sass_style.scss */
#brick-container article .post-image img {
  width: 100%;
}
/* line 1038, ../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 1046, ../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 1053, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title:after {
  content: "\203a";
  margin-left: 5px;
  color: #4A4A4A;
}
/* line 1058, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title a {
  color: #4A4A4A;
}
/* line 1060, ../sass/sass_style.scss */
#brick-container article .post-text h3.entry-title a:hover {
  color: #961C24;
  text-decoration: none;
}
/* line 1066, ../sass/sass_style.scss */
#brick-container article .post-text .author {
  margin-bottom: 0px;
}
/* line 1068, ../sass/sass_style.scss */
#brick-container article .post-text .author a {
  color: #4A4A4A;
}
/* line 1070, ../sass/sass_style.scss */
#brick-container article .post-text .author a:hover {
  color: #961C24;
}

/* line 1080, ../sass/sass_style.scss */
.post .post-meta a {
  color: #4A4A4A;
}

/* line 1084, ../sass/sass_style.scss */
.post-meta {
  font-weight: 700;
  padding-top: 20px;
  font-size: 13px;
}
/* line 1088, ../sass/sass_style.scss */
.post-meta ul {
  padding-left: 0px;
}
/* line 1090, ../sass/sass_style.scss */
.post-meta ul li {
  display: inline;
  text-decoration: none;
}
/* line 1093, ../sass/sass_style.scss */
.post-meta ul li a {
  color: #4A4A4A;
}
/* line 1095, ../sass/sass_style.scss */
.post-meta ul li a:hover {
  color: #961C24;
}

/*
	= Action Alerts 	
*******************************************************************************************/
/* line 1111, ../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 1116, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title:after {
  color: #961C24;
}
/* line 1119, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title a {
  color: #961C24;
}
/* line 1121, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text h3.entry-title a:hover {
  color: black;
}
/* line 1126, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text .author {
  color: black;
  font-weight: 700;
}
/* line 1129, ../sass/sass_style.scss */
.post-type-archive-actionalerts #brick-container article .post-text .author a {
  color: black;
}

/*
	= staff 	
*******************************************************************************************/
/* line 1143, ../sass/sass_style.scss */
.staff {
  margin-bottom: 30px;
  background: #F2F2F2;
  padding: 10px;
}
/* line 1147, ../sass/sass_style.scss */
.staff img {
  width: 129px;
  height: 129px;
  float: left;
  margin: 0 20px 20px 0px;
}
/* line 1154, ../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 1161, ../sass/sass_style.scss */
.staff h3.entry-title:after {
  content: "\203a";
  margin-left: 2px;
  color: #4A4A4A;
}
/* line 1167, ../sass/sass_style.scss */
.staff h3.entry-title a:hover {
  color: #961C24;
  text-decoration: none;
}
/* line 1173, ../sass/sass_style.scss */
.staff .post-meta {
  padding-top: 0px;
}

/*
	= Home 	
*******************************************************************************************/
/* line 1183, ../sass/sass_style.scss */
.slide-wrapper {
  background: url("../../../assets/slide_bg.png") repeat-x 0% 100%;
}
/* line 1187, ../sass/sass_style.scss */
.slide-wrapper .container, .slide-wrapper .row {
  padding: 0px;
}

/* line 1193, ../sass/sass_style.scss */
.mainpage .maincontent {
  background-color: #DEDEDE;
}

/* line 1201, ../sass/sass_style.scss */
h3.home-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}
/* line 1206, ../sass/sass_style.scss */
h3.home-title a:hover {
  color: #961C24;
  text-decoration: none;
}

/* line 1215, ../sass/sass_style.scss */
.home-blog:nth-of-type(2) {
  display: none;
}
/* line 1218, ../sass/sass_style.scss */
.home-blog:nth-of-type(3) {
  display: none;
}

/* line 1223, ../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 1229, ../sass/sass_style.scss */
.getin-post .img-col {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1234, ../sass/sass_style.scss */
.getin-post .get-in-text {
  padding: 0px;
}

/* line 1240, ../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 1244, ../sass/sass_style.scss */
.home-post .category {
  background: #5E8285;
  color: #fff;
  padding: 10px 20px;
  min-height: 68px;
}
/* line 1249, ../sass/sass_style.scss */
.home-post .category ul {
  padding: 0;
  margin: 0;
}
/* line 1252, ../sass/sass_style.scss */
.home-post .category ul li {
  display: inline;
  list-style-type: none;
  margin-left: 3px;
}
/* line 1256, ../sass/sass_style.scss */
.home-post .category ul li a {
  color: white;
}
/* line 1258, ../sass/sass_style.scss */
.home-post .category ul li a:hover {
  color: #333;
}
/* line 1262, ../sass/sass_style.scss */
.home-post .category ul li:after {
  content: ",";
  margin-left: 2px;
}
/* line 1267, ../sass/sass_style.scss */
.home-post .category ul li:last-child:after {
  content: "";
}
/* line 1274, ../sass/sass_style.scss */
.home-post .text-area {
  background: #fff;
  padding: 10px 20px;
  min-height: 159px;
  line-height: 20px;
}
/* line 1280, ../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 1289, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title a {
  color: #961C24;
}
/* line 1291, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title a:hover {
  color: #333;
}
/* line 1295, ../sass/sass_style.scss */
.home-post .text-area h3.home-post-title:after {
  content: "\203a";
  margin-left: 3px;
}
/* line 1300, ../sass/sass_style.scss */
.home-post .text-area.event-home {
  min-height: 85px;
}
/* line 1303, ../sass/sass_style.scss */
.home-post .text-area .front-meta {
  margin-bottom: 3px;
  margin-top: 5px;
  font-weight: 700;
  font-size: 14px;
}
/* line 1311, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link {
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 3px;
}
/* line 1315, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link a {
  color: #5E8285;
}
/* line 1317, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .action-link a:hover {
  color: #333;
}
/* line 1322, ../sass/sass_style.scss */
.home-post .text-area.get-in-text .front-meta {
  color: black;
}
/* line 1327, ../sass/sass_style.scss */
.home-post.front-action {
  background: #ECECEC;
  margin-bottom: 30px;
}
/* line 1335, ../sass/sass_style.scss */
.home-post:nth-child(2) {
  display: none;
}

/* line 1340, ../sass/sass_style.scss */
.member ul {
  padding: 0px;
}
/* line 1342, ../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 1351, ../sass/sass_style.scss */
.member ul li a {
  background: #B41224;
  color: white;
  padding: 20px;
  display: inherit;
}
/* line 1356, ../sass/sass_style.scss */
.member ul li a:hover {
  background: #333;
  text-decoration: none;
}

/*
	= Media Queries	
*******************************************************************************************/
@media (min-width: 768px) {
  /* Tablet Portrait */
  /* line 1370, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 45px;
    margin-bottom: 35px;
    margin-top: 35px;
  }

  /* line 1381, ../sass/sass_style.scss */
  .logo {
    padding-top: 20px;
  }

  /* line 1385, ../sass/sass_style.scss */
  .soc-net {
    text-align: right;
  }

  /* line 1389, ../sass/sass_style.scss */
  .language {
    padding-top: 20px;
    text-align: right;
    line-height: 10px;
    padding-right: 0px;
  }

  /* line 1397, ../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 1412, ../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 1426, ../sass/sass_style.scss */
  .donate-header {
    padding-left: 0px;
  }
  /* line 1428, ../sass/sass_style.scss */
  .donate-header a {
    padding: 8px 0px;
  }

  /* line 1438, ../sass/sass_style.scss */
  .brand {
    margin-bottom: 20px;
  }

  /* line 1442, ../sass/sass_style.scss */
  .navbar-collapse {
    padding: 0;
  }

  /* line 1444, ../sass/sass_style.scss */
  ul.slimmenu {
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
  }
  /* line 1448, ../sass/sass_style.scss */
  ul.slimmenu li {
    margin-right: 5px;
  }
  /* line 1450, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 5px 10px;
    margin-left: 0px;
    font-size: 13px;
  }
  /* line 1455, ../sass/sass_style.scss */
  ul.slimmenu li > ul {
    left: -20px;
    text-align: left;
  }
  /* line 1458, ../sass/sass_style.scss */
  ul.slimmenu li > ul > li ul {
    left: 82%;
  }
  /* line 1462, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu {
    width: 260px;
  }
  /* line 1464, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu li a {
    width: 220px;
  }
  /* line 1468, ../sass/sass_style.scss */
  ul.slimmenu li .sub-collapser {
    display: none;
  }
  /* line 1471, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476, ul.slimmenu li#menu-item-2480 {
    background: transparent;
  }
  /* line 1473, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476 a, ul.slimmenu li#menu-item-2480 a {
    text-indent: -99999px;
    background: url("../../../assets/home.png") no-repeat 50% 50%;
    background-size: 70%;
  }

  /* line 1484, ../sass/sass_style.scss */
  #banner-image {
    height: 275px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
  }

  /* line 1497, ../sass/sass_style.scss */
  .slide-wrapper {
    padding-top: 20px;
    background-position: 50% 50%;
    background-size: cover;
  }
  /* line 1501, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding-left: 35px;
    padding-right: 35px;
  }
  /* line 1506, ../sass/sass_style.scss */
  .slide-wrapper .container .slide-caption .container, .slide-wrapper .row .slide-caption .container {
    padding: 0px;
  }

  /* line 1516, ../sass/sass_style.scss */
  .home-blog:nth-of-type(2) {
    display: inherit;
  }

  /* line 1522, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 177px;
  }
  /* line 1524, ../sass/sass_style.scss */
  .home-post .text-area.get-in-text {
    padding-left: 20px;
  }

  /* line 1531, ../sass/sass_style.scss */
  .member {
    margin-bottom: 20px;
  }
  /* line 1534, ../sass/sass_style.scss */
  .member ul li {
    list-style-type: none;
    display: inline-block;
    width: 32.33%;
    margin-bottom: 0px;
    margin-right: 1%;
  }
  /* line 1540, ../sass/sass_style.scss */
  .member ul li a {
    display: list-item;
  }
  /* line 1543, ../sass/sass_style.scss */
  .member ul li:last-child {
    margin-right: 0px;
  }

  /* line 1552, ../sass/sass_style.scss */
  .maincontent.lower {
    margin-top: -100px;
    margin-left: 20px;
    margin-right: 20px;
  }

  /* line 1560, ../sass/sass_style.scss */
  #title-wrap {
    background: url("../../../assets/slide_bg.png") repeat 50% 50%;
    min-height: 120px;
  }
  /* line 1563, ../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 1575, ../sass/sass_style.scss */
  .share ul.share-buttons {
    text-align: right;
  }
  /* line 1579, ../sass/sass_style.scss */
  .share ul.share-buttons li img {
    max-width: 25px;
  }

  /* line 1587, ../sass/sass_style.scss */
  #breadcrumbs {
    text-align: left;
    margin-left: 17px;
  }

  /* line 1597, ../sass/sass_style.scss */
  #flickr_badge_wrapper {
    width: 290px;
  }

  /* line 1603, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside img {
    margin-right: 3px;
    max-width: 78px;
  }
  /* line 1609, ../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 1619, ../sass/sass_style.scss */
  .footer-wrapper .footer-menu.secondary-footer-menu {
    text-align: right;
  }
  /* line 1621, ../sass/sass_style.scss */
  .footer-wrapper .footer-menu.secondary-footer-menu ul {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  /* line 1629, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    text-align: left;
    font-size: 14px;
  }
  /* line 1635, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li a {
    padding-right: 5px;
    padding-left: 5px;
  }
  /* line 1640, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:last-child {
    margin-left: 0px;
  }
  /* line 1642, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:last-child a {
    padding-right: 0px;
  }
  /* line 1647, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container li:first-child a {
    padding-left: 0px;
  }
  /* line 1656, ../sass/sass_style.scss */
  .footer-wrapper .soc-net {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 3px;
  }
  /* line 1664, ../sass/sass_style.scss */
  .footer-wrapper .footer-logo {
    padding-right: 0px;
  }

  /* line 1674, ../sass/sass_style.scss */
  #secondary {
    padding-left: 0px;
  }
  /* line 1678, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  /* line 1683, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 30px;
  }
  /* line 1687, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area {
    padding: 10px 15px;
    line-height: 20px;
  }
  /* line 1690, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    margin-top: 10px;
  }

  /* line 1702, ../sass/sass_style.scss */
  .tribe-events-list .type-tribe_events {
    position: relative;
    padding-left: 33.33333%;
  }

  /* line 1708, ../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 1721, ../sass/sass_style.scss */
  .event-text-feed {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
  }

  /* line 1728, ../sass/sass_style.scss */
  #tribe-events .tribe-events-sub-nav li a, ul.tribe-events-sub-nav a {
    font-size: 14px;
  }

  /* line 1735, ../sass/sass_style.scss */
  #brick-container article {
    margin-bottom: 30px;
  }
  /* line 1738, ../sass/sass_style.scss */
  #brick-container article .post-image {
    padding: 0px 15px;
  }
  /* line 1741, ../sass/sass_style.scss */
  #brick-container article .post-text {
    margin: 0px;
    font-size: 16px;
  }
  /* line 1746, ../sass/sass_style.scss */
  #brick-container article .post-text h3.entry-title {
    margin-bottom: 0px;
  }

  /* line 1759, ../sass/sass_style.scss */
  .staff {
    margin-bottom: 30px;
    background: #F2F2F2;
    padding: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  /* Tablet Landscape */
  /* line 1777, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 50px;
    margin-bottom: 35px;
    margin-top: 30px;
  }

  /* line 1786, ../sass/sass_style.scss */
  .soc-net img {
    width: 35px;
  }

  /* line 1791, ../sass/sass_style.scss */
  .language {
    font-size: 20px;
  }

  /* line 1796, ../sass/sass_style.scss */
  .email-widget input {
    padding: 13px;
    font-size: 20px;
  }
  /* line 1799, ../sass/sass_style.scss */
  .email-widget input[type=submit] {
    padding: 10px 10px 9px 10px;
    line-height: 32px;
  }

  /* line 1806, ../sass/sass_style.scss */
  .donate-header {
    font-size: 22px;
  }
  /* line 1808, ../sass/sass_style.scss */
  .donate-header a {
    padding: 15px 0px 17px 0px;
  }

  /* line 1814, ../sass/sass_style.scss */
  ul.slimmenu {
    margin-bottom: 20px;
  }
  /* line 1817, ../sass/sass_style.scss */
  ul.slimmenu li {
    margin-right: 5px;
  }
  /* line 1819, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 10px 15px;
    font-size: 17px;
  }
  /* line 1824, ../sass/sass_style.scss */
  ul.slimmenu li#menu-item-2476, ul.slimmenu li#menu-item-2480 {
    margin-right: 35px;
  }

  /* line 1833, ../sass/sass_style.scss */
  #banner-image {
    height: 365px;
    background-color: black;
  }

  /* line 1839, ../sass/sass_style.scss */
  .maincontent.lower {
    margin-top: -90px;
    margin-left: 0px;
    margin-right: 0px;
  }

  /* line 1848, ../sass/sass_style.scss */
  .share ul.share-buttons li img {
    max-width: 100%;
  }

  /* line 1858, ../sass/sass_style.scss */
  #flickr_badge_wrapper {
    width: 365px;
  }

  /* line 1862, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    font-size: 18px;
  }
  /* line 1866, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul li a {
    padding-right: 20px;
    padding-left: 5px;
  }
  /* line 1882, ../sass/sass_style.scss */
  .footer-wrapper .social-footer .col-sm-4:first-of-type aside img {
    max-width: 100px;
  }
  /* line 1890, ../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 1908, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding: 20px 40px;
  }

  /* line 1914, ../sass/sass_style.scss */
  .home-blog:nth-of-type(3) {
    display: inherit;
  }
  /* line 1917, ../sass/sass_style.scss */
  .home-blog img {
    max-height: 213px;
  }

  /* line 1922, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 198px;
  }

  /* line 1929, ../sass/sass_style.scss */
  #secondary {
    padding-left: 15px;
  }
  /* line 1931, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 35px;
    margin-bottom: 15px;
  }
  /* line 1935, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 40px;
  }
  /* line 1940, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    margin-top: 15px;
    font-size: 20px;
    line-height: 25px;
  }
  /* line 1950, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container .in-this-section {
    margin: 0px;
    padding: 15px;
    font-size: 22px;
  }
  /* line 1958, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li {
    padding: 6px 0px;
    font-size: 18px;
  }
  /* line 1965, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul {
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 3px;
  }
  /* line 1970, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul {
    padding-left: 20px;
  }
  /* line 1972, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul li {
    font-size: 15px;
    padding: 3px 0px;
  }

  /*---------Events -----------*/
  /* line 1990, ../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 1995, ../sass/sass_style.scss */
  .tribe-events-list .type-tribe_events {
    min-height: 193px;
  }

  /* line 2001, ../sass/sass_style.scss */
  #tribe-events-bar .tribe-bar-submit {
    width: 24%;
  }

  /*---------blog -----------*/
  /* line 2010, ../sass/sass_style.scss */
  #brick-container article .post-text {
    padding: 0px 25px 25px 25px;
  }
  /* line 2012, ../sass/sass_style.scss */
  #brick-container article .post-text .post-meta {
    font-size: 14px;
  }
  /* line 2016, ../sass/sass_style.scss */
  #brick-container article .post-text h3.entry-title {
    font-size: 22px;
    line-height: 30px;
  }

  /*--------- staff -----------*/
  /* line 2026, ../sass/sass_style.scss */
  .staff {
    padding: 0px;
  }
  /* line 2028, ../sass/sass_style.scss */
  .staff .staff-image {
    padding: 0px;
  }
  /* line 2030, ../sass/sass_style.scss */
  .staff .staff-image img {
    max-width: 100%;
    float: none;
    margin-right: 0px;
    width: auto;
    height: auto;
    margin-bottom: 0px;
  }
  /* line 2039, ../sass/sass_style.scss */
  .staff .staff-text {
    background: #F2F2F2;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 64.5%;
    min-height: 234px;
  }
  /* line 2047, ../sass/sass_style.scss */
  .staff h3.entry-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  /* Desktop */
  /* line 2059, ../sass/sass_style.scss */
  body {
    font-size: 16px;
  }

  /* line 2062, ../sass/sass_style.scss */
  h3.home-title {
    font-size: 65px;
    font-family: 'senbold', sans-serif;
  }

  /* line 2069, ../sass/sass_style.scss */
  ul.slimmenu li a {
    font-size: 20px;
  }

  /* line 2077, ../sass/sass_style.scss */
  .member ul li {
    font-size: 27px;
  }
  /* line 2079, ../sass/sass_style.scss */
  .member ul li a {
    padding: 30px 20px;
  }

  /******home*/
  /* line 2090, ../sass/sass_style.scss */
  .slide-wrapper .container, .slide-wrapper .row {
    padding: 0px;
  }

  /* line 2095, ../sass/sass_style.scss */
  .home-post .text-area {
    min-height: 197px;
  }

  /******FOOTER*/
  /* line 2105, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container {
    font-size: 18px;
    text-align: right;
  }
  /* line 2108, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul {
    margin-bottom: 0px;
    padding-top: 30px;
  }
  /* line 2112, ../sass/sass_style.scss */
  .footer-wrapper .main-footer-menu .menu-main-menu-container ul li a {
    padding-right: 9px;
    padding-left: 9px;
  }
  /* line 2119, ../sass/sass_style.scss */
  .footer-wrapper .soc-net {
    padding-top: 15px;
  }

  /* line 2131, ../sass/sass_style.scss */
  #secondary h3.widget-title {
    font-size: 40px;
  }
  /* line 2134, ../sass/sass_style.scss */
  #secondary aside {
    margin-bottom: 50px;
  }
  /* line 2138, ../sass/sass_style.scss */
  #secondary aside .getin-post .text-area h3.post-title {
    font-size: 23px;
    line-height: 29px;
  }
  /* line 2148, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container .in-this-section {
    margin: 0px;
    padding: 20px;
    font-size: 22px;
  }
  /* line 2154, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul {
    padding-left: 20px;
  }
  /* line 2156, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li {
    padding: 8px 0px;
    font-size: 19px;
  }
  /* line 2159, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul {
    padding-top: 8px;
  }
  /* line 2162, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul {
    padding-left: 20px;
  }
  /* line 2164, ../sass/sass_style.scss */
  #secondary .menu-main-menu-container ul li ul li ul li {
    font-size: 15px;
    padding: 3px 0px;
  }
}