/*
	Theme Name: NPSA Theme
	Description: This is the live theme for NPSA
	Author: Revunami	
	Author URI: http://www.revunami.com
	Version: 2.0.1

	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

	Template: genesis
	Template Version: 2.0.1

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

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

*/
/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */
/* Baseline Normalize
	normalize.css v3.0.0 | MIT License | git.io/normalize
--------------------------------------------- */
/* line 5, sass/partials/_reset.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

/* line 5, sass/partials/_reset.scss */
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 5, sass/partials/_reset.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 5, sass/partials/_reset.scss */
[hidden], template {
  display: none;
}

/* line 5, sass/partials/_reset.scss */
a {
  background: transparent;
}

/* line 5, sass/partials/_reset.scss */
a:active, a:hover {
  outline: 0;
}

/* line 5, sass/partials/_reset.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 5, sass/partials/_reset.scss */
b, strong {
  font-weight: bold;
}

/* line 5, sass/partials/_reset.scss */
dfn {
  font-style: italic;
}

/* line 5, sass/partials/_reset.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 5, sass/partials/_reset.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 5, sass/partials/_reset.scss */
small {
  font-size: 80%;
}

/* line 5, sass/partials/_reset.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 5, sass/partials/_reset.scss */
sup {
  top: -0.5em;
}

/* line 5, sass/partials/_reset.scss */
sub {
  bottom: -0.25em;
}

/* line 5, sass/partials/_reset.scss */
img {
  border: 0;
}

/* line 5, sass/partials/_reset.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 5, sass/partials/_reset.scss */
figure {
  margin: 1em 40px;
}

/* line 5, sass/partials/_reset.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 5, sass/partials/_reset.scss */
pre {
  overflow: auto;
}

/* line 5, sass/partials/_reset.scss */
code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

/* line 5, sass/partials/_reset.scss */
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 5, sass/partials/_reset.scss */
button {
  overflow: visible;
}

/* line 5, sass/partials/_reset.scss */
button, select {
  text-transform: none;
}

/* line 5, sass/partials/_reset.scss */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 5, sass/partials/_reset.scss */
button[disabled], html input[disabled] {
  cursor: default;
}

/* line 5, sass/partials/_reset.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 5, sass/partials/_reset.scss */
input {
  line-height: normal;
}

/* line 5, sass/partials/_reset.scss */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 5, sass/partials/_reset.scss */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 5, sass/partials/_reset.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 5, sass/partials/_reset.scss */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 5, sass/partials/_reset.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 5, sass/partials/_reset.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 5, sass/partials/_reset.scss */
textarea {
  overflow: auto;
}

/* line 5, sass/partials/_reset.scss */
optgroup {
  font-weight: bold;
}

/* line 5, sass/partials/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 5, sass/partials/_reset.scss */
td, th {
  padding: 0;
}

/* Box Sizing
--------------------------------------------- */
/* line 10, sass/partials/_reset.scss */
*,
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Float Clearing
--------------------------------------------- */
/* line 20, sass/partials/_reset.scss */
.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
  content: " ";
  display: table;
}

/* line 37, sass/partials/_reset.scss */
.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
  clear: both;
  content: " ";
  display: table;
}

/*
Defaults
---------------------------------------------------------------------------------------------------- */
/* Typographical Elements
--------------------------------------------- */
/* line 4, sass/partials/_defaults.scss */
body {
  background-color: #ffffff;
  color: #444444;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}

/* line 14, sass/partials/_defaults.scss */
a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/* line 25, sass/partials/_defaults.scss */
::-moz-selection {
  background-color: #000;
  color: #fff;
}

/* line 30, sass/partials/_defaults.scss */
::selection {
  background-color: #000;
  color: #fff;
}

/* line 35, sass/partials/_defaults.scss */
a {
  color: #e5554e;
  text-decoration: none;
}

/* line 40, sass/partials/_defaults.scss */
a:hover {
  color: #000000;
}

/* line 44, sass/partials/_defaults.scss */
p {
  margin: 0 0 28px;
  padding: 0;
  text-align: justify;
}

/* line 50, sass/partials/_defaults.scss */
ol,
ul {
  margin: 0;
  padding: 0;
}

/* line 56, sass/partials/_defaults.scss */
li {
  list-style-type: none;
}

/* line 60, sass/partials/_defaults.scss */
b,
strong {
  font-weight: 700;
}

/* line 65, sass/partials/_defaults.scss */
blockquote,
cite,
em,
i {
  font-style: italic;
}

/* line 72, sass/partials/_defaults.scss */
blockquote {
  margin: 40px;
}

/* line 76, sass/partials/_defaults.scss */
blockquote::before {
  content: "\201C";
  display: block;
  font-size: 30px;
  height: 0;
  left: -20px;
  position: relative;
  top: -10px;
}

/* line 86, sass/partials/_defaults.scss */
pre {
  background-color: #f5f5f5;
  font-size: 14px;
  padding: 24px;
}

/* Headings
--------------------------------------------- */
/* line 96, sass/partials/_defaults.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1b3963;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}

/* line 109, sass/partials/_defaults.scss */
h1 {
  color: #cd912a;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 113, sass/partials/_defaults.scss */
h2 {
  color: #1b3963;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 117, sass/partials/_defaults.scss */
h3 {
  color: #1b3963;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 121, sass/partials/_defaults.scss */
h4 {
  color: #1b3963;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 125, sass/partials/_defaults.scss */
h5 {
  color: #1b3963;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 129, sass/partials/_defaults.scss */
h6 {
  color: #1b3963;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
}

/* line 133, sass/partials/_defaults.scss */
.menu-text {
  color: #25848e;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}

/* Objects
--------------------------------------------- */
/* line 141, sass/partials/_defaults.scss */
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

/* line 150, sass/partials/_defaults.scss */
img {
  height: auto;
}

/* line 154, sass/partials/_defaults.scss */
.featured-content img,
.gallery img {
  width: auto;
}

/* Forms
--------------------------------------------- */
/* line 162, sass/partials/_defaults.scss */
input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  padding: 16px;
  width: 100%;
}

/* line 174, sass/partials/_defaults.scss */
input:focus,
textarea:focus {
  border: 1px solid #999;
  outline: none;
}

/* line 180, sass/partials/_defaults.scss */
input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: auto;
}

/* line 186, sass/partials/_defaults.scss */
::-moz-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 300;
}

/* line 192, sass/partials/_defaults.scss */
::-webkit-input-placeholder {
  color: #000;
  font-weight: 300;
}

/* line 197, sass/partials/_defaults.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
  background-color: #000;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  padding: 16px 24px;
  text-transform: uppercase;
  width: auto;
}

/* line 214, sass/partials/_defaults.scss */
.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"],
.footer-widgets .button {
  background-color: #e5554e;
  color: #fff;
}

/* line 224, sass/partials/_defaults.scss */
button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover {
  background-color: #e5554e;
  color: #fff;
}

/* line 233, sass/partials/_defaults.scss */
.entry-content .button:hover {
  color: #fff;
}

/* line 238, sass/partials/_defaults.scss */
.footer-widgets button:hover,
.footer-widgets input:hover[type="button"],
.footer-widgets input:hover[type="reset"],
.footer-widgets input:hover[type="submit"],
.footer-widgets .button:hover {
  background-color: #fff;
  color: #000;
}

/* line 248, sass/partials/_defaults.scss */
.button {
  display: inline-block;
}

/* line 252, sass/partials/_defaults.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
  display: none;
}

/* Tables
--------------------------------------------- */
/* line 260, sass/partials/_defaults.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin-bottom: 40px;
  width: 100%;
}

/* line 268, sass/partials/_defaults.scss */
tbody {
  border-bottom: 1px solid #ddd;
}

/* line 272, sass/partials/_defaults.scss */
td,
th {
  text-align: left;
}

/* line 277, sass/partials/_defaults.scss */
td {
  border-top: 1px solid #ddd;
  padding: 6px 0;
}

/* line 282, sass/partials/_defaults.scss */
th {
  font-weight: 400;
}

/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */
/* Site Containers
--------------------------------------------- */
/* line 5, sass/partials/_structure-layout.scss */
.site-inner,
.wrap {
  margin: 0 auto;
  max-width: 1140px;
}

/* line 11, sass/partials/_structure-layout.scss */
.site-inner {
  clear: both;
  padding-top: 40px;
  max-width: 1140px;
}

/* Column Widths and Positions
--------------------------------------------- */
/* Wrapping div for .content and .sidebar-primary */
/* line 22, sass/partials/_structure-layout.scss */
.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  width: 920px;
}

/* line 28, sass/partials/_structure-layout.scss */
.content-sidebar-sidebar .content-sidebar-wrap {
  float: left;
}

/* line 32, sass/partials/_structure-layout.scss */
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  float: right;
}

/* Content */
/* line 39, sass/partials/_structure-layout.scss */
.content {
  float: right;
  width: 820px;
}

/* line 44, sass/partials/_structure-layout.scss */
.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
  float: left;
}

/* line 50, sass/partials/_structure-layout.scss */
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
  width: 520px;
}

/* line 56, sass/partials/_structure-layout.scss */
.full-width-content .content {
  width: 100%;
}

/* Primary Sidebar */
/* line 62, sass/partials/_structure-layout.scss */
.sidebar-primary {
  float: right;
  width: 270px;
}

/* line 67, sass/partials/_structure-layout.scss */
.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
  float: left;
}

/* Secondary Sidebar */
/* line 74, sass/partials/_structure-layout.scss */
.sidebar-secondary {
  float: left;
  width: 180px;
}

/* line 79, sass/partials/_structure-layout.scss */
.content-sidebar-sidebar .sidebar-secondary {
  float: right;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */
/* line 87, sass/partials/_structure-layout.scss */
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 2.564102564102564%;
}

/* line 102, sass/partials/_structure-layout.scss */
.one-half,
.three-sixths,
.two-fourths {
  width: 48.717948717948715%;
}

/* line 108, sass/partials/_structure-layout.scss */
.one-third,
.two-sixths {
  width: 31.623931623931625%;
}

/* line 113, sass/partials/_structure-layout.scss */
.four-sixths,
.two-thirds {
  width: 65.81196581196582%;
}

/* line 118, sass/partials/_structure-layout.scss */
.one-fourth {
  width: 23.076923076923077%;
}

/* line 122, sass/partials/_structure-layout.scss */
.three-fourths {
  width: 74.35897435897436%;
}

/* line 126, sass/partials/_structure-layout.scss */
.one-sixth {
  width: 14.52991452991453%;
}

/* line 130, sass/partials/_structure-layout.scss */
.five-sixths {
  width: 82.90598290598291%;
}

/* line 134, sass/partials/_structure-layout.scss */
.first {
  clear: both;
  margin-left: 0;
}

/*
Common Classes
---------------------------------------------------------------------------------------------------- */
/* Avatar
--------------------------------------------- */
/* line 4, sass/partials/_common-classes.scss */
.avatar {
  float: left;
}

/* line 8, sass/partials/_common-classes.scss */
.alignleft .avatar,
.author-box .avatar {
  margin-right: 24px;
}

/* line 13, sass/partials/_common-classes.scss */
.alignright .avatar {
  margin-left: 24px;
}

/* line 17, sass/partials/_common-classes.scss */
.comment .avatar {
  margin: 0 16px 24px 0;
}

/* Genesis
--------------------------------------------- */
/* line 24, sass/partials/_common-classes.scss */
.breadcrumb {
  margin-bottom: 15px;
  color: #a8b2b6;
  font-size: 13px;
}

/* line 30, sass/partials/_common-classes.scss */
.breadcrumb a {
  color: #a8b2b6;
  text-decoration: underline;
}

/* line 37, sass/partials/_common-classes.scss */
.archive-description,
.author-box {
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  margin-bottom: 40px;
  padding: 40px;
}

/* line 46, sass/partials/_common-classes.scss */
.author-box-title {
  font-size: 16px;
  margin-bottom: 4px;
}

/* line 51, sass/partials/_common-classes.scss */
.archive-description p:last-child,
.author-box p:last-child {
  margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */
/* line 59, sass/partials/_common-classes.scss */
.search-form {
  overflow: hidden;
}
/* line 62, sass/partials/_common-classes.scss */
.search-form input[type="search"] {
  color: #b9e0cc;
  border: none;
}

/* line 69, sass/partials/_common-classes.scss */
.site-header .search-form {
  float: right;
  margin-top: 12px;
}

/* line 74, sass/partials/_common-classes.scss */
.entry-content .search-form,
.site-header .search-form {
  width: 100%;
}

/* line 79, sass/partials/_common-classes.scss */
.search-form input[type="submit"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
  color: #b9e0cc;
}

/* Titles
--------------------------------------------- */
/* line 93, sass/partials/_common-classes.scss */
.archive-title {
  font-size: 20px;
}

/* line 97, sass/partials/_common-classes.scss */
.entry-title {
  font-size: 36px;
  margin: 0 0 10px 0;
}

/* line 102, sass/partials/_common-classes.scss */
.entry-title a,
.sidebar .widget-title a {
  color: #000;
}

/* line 107, sass/partials/_common-classes.scss */
.entry-title a:hover {
  color: #e5554e;
}

/* line 111, sass/partials/_common-classes.scss */
.widget-title {
  font-size: 18px;
  margin-bottom: 20px;
}

/* line 116, sass/partials/_common-classes.scss */
.footer-widgets .widget-title {
  color: #fff;
}

/* WordPress
--------------------------------------------- */
/* line 123, sass/partials/_common-classes.scss */
.alignleft {
  float: left;
  text-align: left;
}

/* line 128, sass/partials/_common-classes.scss */
.alignright {
  float: right;
  text-align: right;
}

/* line 133, sass/partials/_common-classes.scss */
a.alignleft,
a.alignright {
  max-width: 100%;
}

/* line 138, sass/partials/_common-classes.scss */
img.centered,
.aligncenter {
  display: block;
  margin: 0 auto 24px;
}

/* line 144, sass/partials/_common-classes.scss */
img.alignnone,
.alignnone {
  margin-bottom: 12px;
}

/* line 149, sass/partials/_common-classes.scss */
a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 24px 24px 0;
}

/* line 155, sass/partials/_common-classes.scss */
a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 24px 24px;
}

/* line 161, sass/partials/_common-classes.scss */
.wp-caption-text {
  font-weight: 700;
  text-align: center;
}

/* line 166, sass/partials/_common-classes.scss */
.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

/*
Widgets
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_widgets.scss */
.widget {
  word-wrap: break-word;
}
/* line 4, sass/partials/_widgets.scss */
.widget ol > li {
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 20px;
  text-indent: -20px;
}
/* line 11, sass/partials/_widgets.scss */
.widget li li {
  border: 0;
  margin: 0 0 0 30px;
  padding: 0;
}

/* line 18, sass/partials/_widgets.scss */
.widget_calendar table {
  width: 100%;
}
/* line 21, sass/partials/_widgets.scss */
.widget_calendar table td,
.widget_calendar table th {
  text-align: center;
}

/* Featured Content
--------------------------------------------- */
/* line 30, sass/partials/_widgets.scss */
.featured-content .entry {
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 20px;
  padding: 0 0 24px;
}

/* line 36, sass/partials/_widgets.scss */
.footer-widgets .entry {
  border-bottom: 1px dotted #666;
}

/* line 40, sass/partials/_widgets.scss */
.featured-content .entry-title {
  font-size: 20px;
}

/* Homepage widget styling 
---------------------------------------------- */
/* line 47, sass/partials/_widgets.scss */
.homewidget {
  background-color: #fcfcfc;
  border: solid 3px #e1e1e1;
  margin-bottom: 30px;
}

/* line 54, sass/partials/_widgets.scss */
.hp-widget {
  border-bottom: solid 3px #b9e0cc;
  padding-left: 10px;
}

/*
Widget title style 
-------------------------------------------- */
/* line 64, sass/partials/_widgets.scss */
.widget-title {
  color: #1b3963;
  font-size: 20px;
  border-bottom: 2px solid #e1e1e1;
  padding: 0 18px 10px 18px;
  margin-bottom: 10px;
}

/* line 73, sass/partials/_widgets.scss */
p.more-from-event_tax {
  float: right;
  margin-right: 18px;
}
/* line 78, sass/partials/_widgets.scss */
p.more-from-event_tax a {
  background-color: #b9e0cc;
  padding: 6px 8px;
  font-size: 14px;
  color: #25848e;
  border-left: 6px solid #25848e;
  float: right;
}

/* line 84, sass/partials/_widgets.scss */
p.more-from-news_type {
  float: right;
  margin-right: 18px;
}
/* line 89, sass/partials/_widgets.scss */
p.more-from-news_type a {
  background-color: #b9e0cc;
  padding: 6px 8px;
  font-size: 14px;
  color: #25848e;
  border-left: 6px solid #25848e;
  float: right;
}

/* line 95, sass/partials/_widgets.scss */
p.more-from-video_type {
  float: right;
  margin-right: 18px;
}
/* line 100, sass/partials/_widgets.scss */
p.more-from-video_type a {
  background-color: #b9e0cc;
  padding: 6px 8px;
  font-size: 14px;
  color: #25848e;
  border-left: 6px solid #25848e;
  float: right;
}

/*
widget nav menu styles 
----------------------------------------- */
/* line 113, sass/partials/_widgets.scss */
.widget_nav_menu li:before {
  content: '\f111';
  /* FontAwesome char code inside the '' */
  color: #cd912a;
  font-size: 13px;
  font-family: 'FontAwesome';
  /* FontAwesome or whatever */
  display: inline-block;
  width: 18px;
  /* same as padding-left set on li */
  margin-left: 18px;
  /* same as padding-left set on li */
  margin-right: 6px;
}
/* line 125, sass/partials/_widgets.scss */
.widget_nav_menu li {
  font-size: 18px;
}
/* line 129, sass/partials/_widgets.scss */
.widget_nav_menu li a {
  color: #25848e;
}

/*
widget menu style for homepage 
-------------------------------------- */
/* line 144, sass/partials/_widgets.scss */
.home .widget_nav_menu h4 {
  font-size: 24px;
  font-weight: 400;
}
/* line 152, sass/partials/_widgets.scss */
.home .widget_nav_menu li {
  font-size: 18px;
  text-transform: uppercase;
}

/*
latest news styling
---------------------------------------- */
/* line 168, sass/partials/_widgets.scss */
.featured-content-latest-news article h2.entry-title:before {
  font-size: 10px !important;
}
/* line 173, sass/partials/_widgets.scss */
.featured-content-latest-news article h2.entry-title {
  margin-bottom: 0px;
}
/* line 178, sass/partials/_widgets.scss */
.featured-content-latest-news article h2.entry-title a {
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 1.4;
}
/* line 188, sass/partials/_widgets.scss */
.featured-content-latest-news h6 {
  margin-bottom: 20px;
}

/*
style for featured video 
------------------------------------------ */
/* line 203, sass/partials/_widgets.scss */
.featured-content-featured-video a img {
  margin-bottom: 0px;
}

/* line 216, sass/partials/_widgets.scss */
.homewidget h6.hp-widget {
  padding: 6px 18px;
}

/*
Plugins
---------------------------------------------------------------------------------------------------- */
/* Genesis eNews Extended
--------------------------------------------- */
/* line 6, sass/partials/_plugins.scss */
.enews-widget,
.enews-widget .widget-title {
  color: #fff;
}
/* line 11, sass/partials/_plugins.scss */
.enews-widget input,
.enews-widget input:focus {
  border: 1px solid #000;
}
/* line 16, sass/partials/_plugins.scss */
.enews-widget input {
  font-size: 16px;
  margin-bottom: 16px;
}
/* line 21, sass/partials/_plugins.scss */
.enews-widget input[type="submit"] {
  background-color: #e5554e;
  color: #fff;
  margin: 0;
  width: 100%;
}
/* line 28, sass/partials/_plugins.scss */
.enews-widget input:hover[type="submit"] {
  background-color: #fff;
  color: #000;
}

/* line 34, sass/partials/_plugins.scss */
.sidebar .widget.enews-widget {
  background-color: #000;
}

/* line 39, sass/partials/_plugins.scss */
.enews form + p {
  margin-top: 24px;
}

/* Gravity Forms
--------------------------------------------- */
/* line 3, sass/partials/_gravity-forms.scss */
div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
  font-size: 18px;
  padding: 16px;
}
/* line 11, sass/partials/_gravity-forms.scss */
div.gform_wrapper .ginput_complex label {
  padding: 0;
}
/* line 15, sass/partials/_gravity-forms.scss */
div.gform_wrapper li,
div.gform_wrapper form li {
  margin: 16px 0 0;
}
/* line 20, sass/partials/_gravity-forms.scss */
div.gform_wrapper .gform_footer input[type=submit] {
  font-size: 16px;
  padding: 16px 24px;
}

/* Jetpack
--------------------------------------------- */
/* line 1, sass/partials/_jetpack.scss */
#wpstats {
  display: none;
}

/*
Site Header
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_site-header.scss */
.site-header {
  background-color: #fff;
  max-height: 80px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.22);
}
/* line 6, sass/partials/_site-header.scss */
.site-header .wrap {
  padding: 0;
}

/* Title Area
--------------------------------------------- */
/* line 14, sass/partials/_site-header.scss */
.title-area {
  float: left;
  padding: 10px 0;
  width: 360px;
}

/* line 21, sass/partials/_site-header.scss */
.header-full-width .title-area {
  width: 100%;
}

/* line 26, sass/partials/_site-header.scss */
.site-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
/* line 31, sass/partials/_site-header.scss */
.site-title a,
.site-title a:hover {
  color: #000;
}

/* line 37, sass/partials/_site-header.scss */
.header-image .site-title > a {
  background: url(images/logo.png) no-repeat left;
  float: left;
  min-height: 60px;
  width: 100%;
}

/* line 44, sass/partials/_site-header.scss */
.site-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

/* line 50, sass/partials/_site-header.scss */
.site-description,
.site-title {
  margin-bottom: 0;
}

/* line 56, sass/partials/_site-header.scss */
.header-image .site-description,
.header-image .site-title {
  display: block;
  text-indent: -9999px;
}

/* Widget Area
--------------------------------------------- */
/* line 67, sass/partials/_site-header.scss */
.site-header .widget-area {
  float: right;
  text-align: right;
  width: 740px;
}

/*
sidr styling
-------------------------------------------- */
/* line 80, sass/partials/_site-header.scss */
#primary-nav-link-container a {
  margin-right: 1rem;
  color: #a6b1b3;
  font-weight: 400;
}

/* line 90, sass/partials/_site-header.scss */
.header-login a {
  margin-right: 1.5rem !important;
  text-transform: uppercase;
}

/*
Site Navigation
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_site-navigation.scss */
.genesis-nav-menu {
  clear: both;
  font-size: 16px;
  line-height: 1;
  width: 100%;
}
/* line 8, sass/partials/_site-navigation.scss */
.genesis-nav-menu .menu-item {
  display: inline-block;
  text-align: left;
}
/* line 13, sass/partials/_site-navigation.scss */
.genesis-nav-menu a {
  color: #333;
  display: block;
  padding: 30px 24px;
}
/* line 19, sass/partials/_site-navigation.scss */
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
  color: #e5554e;
}
/* line 25, sass/partials/_site-navigation.scss */
.genesis-nav-menu .sub-menu {
  left: -9999px;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .4s ease-in-out;
  -moz-transition: opacity .4s ease-in-out;
  -ms-transition: opacity .4s ease-in-out;
  -o-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
  width: 200px;
  z-index: 99;
}
/* line 37, sass/partials/_site-navigation.scss */
.genesis-nav-menu .sub-menu a {
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 0;
  font-size: 14px;
  padding: 20px;
  position: relative;
  width: 200px;
}
/* line 47, sass/partials/_site-navigation.scss */
.genesis-nav-menu .sub-menu .sub-menu {
  margin: -55px 0 0 199px;
}
/* line 52, sass/partials/_site-navigation.scss */
.genesis-nav-menu .menu-item:hover {
  position: static;
}
/* line 55, sass/partials/_site-navigation.scss */
.genesis-nav-menu .menu-item:hover > .sub-menu {
  left: auto;
  opacity: 1;
}
/* line 61, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .first > a {
  padding-left: 0;
}
/* line 65, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .last > a {
  padding-right: 0;
}
/* line 69, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .right {
  color: #fff;
  float: right;
  list-style-type: none;
  padding: 30px 0;
}
/* line 76, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .right > a {
  display: inline;
  padding: 0;
}
/* line 81, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .rss > a {
  margin-left: 48px;
}
/* line 85, sass/partials/_site-navigation.scss */
.genesis-nav-menu > .search {
  padding: 10px 0 0;
}

/* Site Header Navigation
--------------------------------------------- */
/* line 95, sass/partials/_site-navigation.scss */
.site-header .sub-menu {
  border-top: 1px solid #eee;
}
/* line 98, sass/partials/_site-navigation.scss */
.site-header .sub-menu .sub-menu {
  margin-top: -56px;
}
/* line 103, sass/partials/_site-navigation.scss */
.site-header .genesis-nav-menu li li {
  margin-left: 0;
}

/* Primary Navigation
--------------------------------------------- */
/* line 111, sass/partials/_site-navigation.scss */
.nav-primary {
  display: none;
  background-color: #333;
}
/* line 115, sass/partials/_site-navigation.scss */
.nav-primary a {
  color: #fff;
}
/* line 119, sass/partials/_site-navigation.scss */
.nav-primary .sub-menu a {
  color: #333;
}
/* line 123, sass/partials/_site-navigation.scss */
.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary .sub-menu .current-menu-item > a:hover {
  color: #e5554e;
}

/* Secondary Navigation
--------------------------------------------- */
/* line 133, sass/partials/_site-navigation.scss */
.nav-secondary {
  background-color: #fff;
}

/* styles for Sidr nav 
--------------------------------------------- */
/* Adding a responsive side menu in Genesis */
/* line 142, sass/partials/_site-navigation.scss */
#primary-nav-link-container {
  /*text-align: center; */
  /* display: none; */
  width: 200px;
  float: right;
  margin-top: 25px;
}

/* line 151, sass/partials/_site-navigation.scss */
a#primary-nav-link:focus {
  outline: none;
}

@media only screen and (max-width: 1023px) {
  /* line 157, sass/partials/_site-navigation.scss */
  #primary-nav-container {
    display: none;
  }

  /* line 161, sass/partials/_site-navigation.scss */
  #primary-nav-link-container {
    display: block;
  }
}
/*
Content Area
---------------------------------------------------------------------------------------------------- */
/* Entries
--------------------------------------------- */
/* line 4, sass/partials/_content-area.scss */
.entry {
  margin-bottom: 40px;
  /* padding: 50px 60px; */
}

/* line 9, sass/partials/_content-area.scss */
.content .entry {
  background-color: #fff;
  /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); */
}

/* line 15, sass/partials/_content-area.scss */
.entry-content ol,
.entry-content ul {
  margin-bottom: 28px;
  margin-left: 40px;
}
/* line 21, sass/partials/_content-area.scss */
.entry-content ol > li {
  list-style-type: decimal;
}
/* line 25, sass/partials/_content-area.scss */
.entry-content ul > li {
  list-style-type: disc;
}
/* line 29, sass/partials/_content-area.scss */
.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0;
}
/* line 34, sass/partials/_content-area.scss */
.entry-content code {
  background-color: #000;
  color: #ddd;
}

/* Entry Meta
--------------------------------------------- */
/* line 43, sass/partials/_content-area.scss */
p.entry-meta {
  font-size: 16px;
  margin-bottom: 0;
  display: none;
}

/* line 49, sass/partials/_content-area.scss */
.entry-header .entry-meta {
  margin-bottom: 24px;
}

/* line 53, sass/partials/_content-area.scss */
.entry-footer .entry-meta {
  border-top: 2px solid #f5f5f5;
  padding-top: 24px;
}

/* line 58, sass/partials/_content-area.scss */
.entry-categories,
.entry-tags {
  display: block;
}

/* line 63, sass/partials/_content-area.scss */
.entry-comments-link::before {
  content: "\2014";
  margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */
/* line 71, sass/partials/_content-area.scss */
.pagination {
  margin: 40px 0;
}

/* line 75, sass/partials/_content-area.scss */
.adjacent-entry-pagination {
  margin-bottom: 0;
}

/* line 80, sass/partials/_content-area.scss */
.archive-pagination li {
  display: inline;
}
/* line 84, sass/partials/_content-area.scss */
.archive-pagination li a {
  background-color: #b9e0cc;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  color: #1b3963;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 8px 12px;
}
/* line 94, sass/partials/_content-area.scss */
.archive-pagination li a:hover,
.archive-pagination .active a {
  background-color: #25848e;
  font-weight: 400;
  color: #ffffff;
}

/* Comments
--------------------------------------------- */
/* line 105, sass/partials/_content-area.scss */
.comment-respond,
.entry-comments,
.entry-pings {
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* line 113, sass/partials/_content-area.scss */
.comment-respond,
.entry-pings {
  padding: 40px 40px 16px;
}

/* line 118, sass/partials/_content-area.scss */
.entry-comments {
  padding: 40px;
}

/* line 122, sass/partials/_content-area.scss */
.comment-header {
  font-size: 16px;
}

/* line 126, sass/partials/_content-area.scss */
li.comment {
  background-color: #f5f5f5;
  border: 2px solid #fff;
  border-right: none;
}

/* line 132, sass/partials/_content-area.scss */
.comment-content {
  clear: both;
  word-wrap: break-word;
}

/* line 138, sass/partials/_content-area.scss */
.comment-list li {
  margin-top: 24px;
  padding: 32px;
}
/* line 143, sass/partials/_content-area.scss */
.comment-list li li {
  margin-right: -32px;
}

/* line 148, sass/partials/_content-area.scss */
.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
  width: 50%;
}

/* line 154, sass/partials/_content-area.scss */
.comment-respond label {
  display: block;
  margin-right: 12px;
}

/* line 159, sass/partials/_content-area.scss */
.entry-comments .comment-author {
  margin-bottom: 0;
}

/* line 163, sass/partials/_content-area.scss */
.entry-pings .reply {
  display: none;
}

/* line 170, sass/partials/_content-area.scss */
.form-allowed-tags {
  background-color: #f5f5f5;
  font-size: 16px;
  padding: 24px;
}

/* styles for inputs within the site
----------------------------------------------------------------------------------------- */
/* line 178, sass/partials/_content-area.scss */
.site-inner input, textarea, select {
  border: 1px solid #ddd !important;
}

/* line 183, sass/partials/_content-area.scss */
.tml input[type="checkbox"] {
  margin-right: 10px;
}

/*
Sidebars
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_sidebars.scss */
.sidebar {
  font-size: 16px;
}
/* line 4, sass/partials/_sidebars.scss */
.sidebar li {
  border-bottom: 2px solid #e1e1e1;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
/* line 10, sass/partials/_sidebars.scss */
.sidebar p:last-child,
.sidebar ul > li:last-child {
  margin-bottom: 0;
}
/* line 15, sass/partials/_sidebars.scss */
.sidebar .widget {
  background-color: #fff;
  /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); */
  margin-bottom: 40px;
  padding: 0;
  float: left;
  min-width: 100%;
}

/* line 26, sass/partials/_sidebars.scss */
aside .sidebar {
  float: left;
}

/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_footer-widgets.scss */
.footer-widgets {
  background-color: #000;
  clear: both;
  padding-bottom: 40px;
  padding-top: 40px;
}
/* line 7, sass/partials/_footer-widgets.scss */
.footer-widgets,
.footer-widgets a {
  color: #999;
}
/* line 12, sass/partials/_footer-widgets.scss */
.footer-widgets input {
  border: 1px solid #000;
}
/* line 16, sass/partials/_footer-widgets.scss */
.footer-widgets a.button,
.footer-widgets a:hover {
  color: #fff;
}
/* line 21, sass/partials/_footer-widgets.scss */
.footer-widgets li {
  border-bottom: 1px dotted #666;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
/* line 27, sass/partials/_footer-widgets.scss */
.footer-widgets .widget {
  margin-bottom: 40px;
}
/* line 31, sass/partials/_footer-widgets.scss */
.footer-widgets p:last-child,
.footer-widgets ul > li:last-child,
.footer-widgets .widget:last-child {
  margin-bottom: 0;
}

/* line 38, sass/partials/_footer-widgets.scss */
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
  width: 340px;
}

/* line 44, sass/partials/_footer-widgets.scss */
.footer-widgets-1 {
  margin-right: 60px;
}

/* line 48, sass/partials/_footer-widgets.scss */
.footer-widgets-1,
.footer-widgets-2 {
  float: left;
}

/* line 53, sass/partials/_footer-widgets.scss */
.footer-widgets-3 {
  float: right;
}

/*
Site Footer
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_site-footer.scss */
.site-footer {
  background-color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 0 0 20px 0;
  text-align: center;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.22);
}
/* line 10, sass/partials/_site-footer.scss */
.site-footer .genesis-nav-menu a {
  padding: 20px 15px;
  color: #575757;
  font-weight: 300;
  font-size: 18px;
}
/* line 18, sass/partials/_site-footer.scss */
.site-footer p {
  margin-bottom: 0;
}
/* line 22, sass/partials/_site-footer.scss */
.site-footer .creds p {
  text-align: center;
  font-size: 12px;
  color: #1b3963;
  font-weight: 400;
  line-height: 1.6;
}
/* line 30, sass/partials/_site-footer.scss */
.site-footer .creds p a {
  color: #1b3963;
  font-weight: 400;
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1139px) {
  /* line 3, sass/partials/_media-queries.scss */
  .site-inner,
  .wrap {
    max-width: 960px;
  }

  /* line 8, sass/partials/_media-queries.scss */
  .content-sidebar-sidebar .content-sidebar-wrap,
  .sidebar-content-sidebar .content-sidebar-wrap,
  .sidebar-sidebar-content .content-sidebar-wrap {
    width: 740px;
  }

  /* line 14, sass/partials/_media-queries.scss */
  .content,
  .site-header .widget-area {
    width: 620px;
  }

  /* line 19, sass/partials/_media-queries.scss */
  .sidebar-content-sidebar .content,
  .sidebar-sidebar-content .content,
  .content-sidebar-sidebar .content {
    width: 400px;
  }

  /* line 25, sass/partials/_media-queries.scss */
  .footer-widgets-1,
  .footer-widgets-2,
  .footer-widgets-3,
  .sidebar-primary,
  .title-area {
    width: 300px;
  }

  /* line 33, sass/partials/_media-queries.scss */
  .footer-widgets-1 {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  /* line 41, sass/partials/_media-queries.scss */
  .site-inner,
  .wrap {
    max-width: 768px;
  }

  /* line 46, sass/partials/_media-queries.scss */
  .content,
  .content-sidebar-sidebar .content,
  .content-sidebar-sidebar .content-sidebar-wrap,
  .footer-widgets-1,
  .footer-widgets-2,
  .footer-widgets-3,
  .sidebar-content-sidebar .content,
  .sidebar-content-sidebar .content-sidebar-wrap,
  .sidebar-primary,
  .sidebar-secondary,
  .sidebar-sidebar-content .content,
  .sidebar-sidebar-content .content-sidebar-wrap,
  .site-header,
  .title-area {
    width: 100%;
  }
  /* line 62, sass/partials/_media-queries.scss */
  .content .widget-area,
  .content-sidebar-sidebar .content .widget-area,
  .content-sidebar-sidebar .content-sidebar-wrap .widget-area,
  .footer-widgets-1 .widget-area,
  .footer-widgets-2 .widget-area,
  .footer-widgets-3 .widget-area,
  .sidebar-content-sidebar .content .widget-area,
  .sidebar-content-sidebar .content-sidebar-wrap .widget-area,
  .sidebar-primary .widget-area,
  .sidebar-secondary .widget-area,
  .sidebar-sidebar-content .content .widget-area,
  .sidebar-sidebar-content .content-sidebar-wrap .widget-area,
  .site-header .widget-area,
  .title-area .widget-area {
    width: 75%;
  }
  /* line 68, sass/partials/_media-queries.scss */
  .content #search-nav,
  .content-sidebar-sidebar .content #search-nav,
  .content-sidebar-sidebar .content-sidebar-wrap #search-nav,
  .footer-widgets-1 #search-nav,
  .footer-widgets-2 #search-nav,
  .footer-widgets-3 #search-nav,
  .sidebar-content-sidebar .content #search-nav,
  .sidebar-content-sidebar .content-sidebar-wrap #search-nav,
  .sidebar-primary #search-nav,
  .sidebar-secondary #search-nav,
  .sidebar-sidebar-content .content #search-nav,
  .sidebar-sidebar-content .content-sidebar-wrap #search-nav,
  .site-header #search-nav,
  .title-area #search-nav {
    width: auto;
  }

  /* line 74, sass/partials/_media-queries.scss */
  .site-header .wrap {
    padding: 0 5%;
  }

  /* line 78, sass/partials/_media-queries.scss */
  .header-image .title-area {
    background-position: center top;
    width: 25%;
  }

  /* line 83, sass/partials/_media-queries.scss */
  .genesis-nav-menu li,
  .site-header ul.genesis-nav-menu,
  .site-header .search-form {
    float: none;
  }

  /* line 89, sass/partials/_media-queries.scss */
  .genesis-nav-menu,
  .site-description,
  .site-header .title-area,
  .site-header .search-form,
  .site-title {
    text-align: center;
  }

  /* line 97, sass/partials/_media-queries.scss */
  .genesis-nav-menu a,
  .genesis-nav-menu > .first > a,
  .genesis-nav-menu > .last > a {
    padding: 20px 16px;
  }

  /* line 103, sass/partials/_media-queries.scss */
  .site-header .search-form {
    margin: 12px auto;
  }

  /* line 107, sass/partials/_media-queries.scss */
  .genesis-nav-menu li.right {
    display: none;
  }

  /* line 111, sass/partials/_media-queries.scss */
  .footer-widgets-1 {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 119, sass/partials/_media-queries.scss */
  body {
    background-color: #fff;
    font-size: 16px;
  }

  /* line 124, sass/partials/_media-queries.scss */
  .homewidget {
    margin-bottom: 40px !important;
  }

  /* line 129, sass/partials/_media-queries.scss */
  .site-inner,
  .wrap {
    padding-left: 5%;
    padding-right: 5%;
  }

  /* line 135, sass/partials/_media-queries.scss */
  .archive-description,
  .author-box,
  .comment-respond,
  .entry,
  .entry-comments,
  .sidebar .widget,
  .site-header {
    padding: 0;
  }

  /* line 145, sass/partials/_media-queries.scss */
  .archive-description,
  .author-box,
  .comment-respond,
  .content .entry,
  .entry-comments,
  .entry-pings,
  .sidebar .widget {
    box-shadow: none;
  }

  /* line 155, sass/partials/_media-queries.scss */
  .archive-pagination li a {
    margin-bottom: 4px;
  }

  /* line 159, sass/partials/_media-queries.scss */
  .five-sixths,
  .four-sixths,
  .one-fourth,
  .one-half,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-sixths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    margin: 0;
    width: 100%;
  }

  /* line 174, sass/partials/_media-queries.scss */
  .sidebar .widget.enews-widget {
    padding: 40px;
  }

  /* line 181, sass/partials/_media-queries.scss */
  .site-footer .genesis-nav-menu {
    display: none;
  }
  /* line 186, sass/partials/_media-queries.scss */
  .site-footer .creds {
    margin-top: 15px;
  }

  /* line 195, sass/partials/_media-queries.scss */
  .what-do img {
    width: 100%;
    max-height: inherit !important;
  }
}
@media only screen and (max-width: 320px) {
  /* line 209, sass/partials/_media-queries.scss */
  .header-login a {
    margin-right: .5rem !important;
    font-size: 14px;
  }

  /* line 215, sass/partials/_media-queries.scss */
  #primary-nav-link-container a {
    margin-right: 0;
    font-size: 14px;
  }
}
@media only screen and (min-device-width: 320px) and (max-width: 568px) {
  /* line 228, sass/partials/_media-queries.scss */
  #search-nav {
    display: none !important;
  }

  /* line 233, sass/partials/_media-queries.scss */
  .header-image .title-area {
    width: 75%;
  }

  /* line 238, sass/partials/_media-queries.scss */
  .site-header .widget-area {
    width: 25%;
  }

  /* line 243, sass/partials/_media-queries.scss */
  .post-2 h1.entry-title {
    /* word-break:break-all; */
    font-size: 22px;
  }

  /* line 249, sass/partials/_media-queries.scss */
  h1.entry-title {
    font-size: 22px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) {
  /* STYLES GO HERE */
}
/*
Search styling
---------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_search.scss */
input:focus::-webkit-input-placeholder {
  color: transparent;
}

/* line 2, sass/partials/_search.scss */
input:focus:-moz-placeholder {
  color: transparent;
}

/* Firefox 18- */
/* line 3, sass/partials/_search.scss */
input:focus::-moz-placeholder {
  color: transparent;
}

/* Firefox 19+ */
/* line 4, sass/partials/_search.scss */
input:focus:-ms-input-placeholder {
  color: transparent;
}

/* oldIE ;) */
/* line 6, sass/partials/_search.scss */
::-moz-placeholder {
  color: #a6b1b3;
  font-weight: 300;
}

/* line 13, sass/partials/_search.scss */
::-webkit-input-placeholder {
  color: #a6b1b3;
  font-weight: 300;
}

/* line 21, sass/partials/_search.scss */
.search-form input[type="search"] {
  padding-right: 0rem;
  -moz-transition: 400ms width ease;
  -webkit-transition-duration: 400ms;
  -webkit-transition-property: width;
  -webkit-transition-timing-function: ease;
  -o-transition-duration: 400ms;
  -o-transition-property: width;
  -o-transition-timing-function: ease;
  width: 40px;
  margin-top: 3px;
  color: #b9e0cc !important;
  font-weight: 400;
}

/* line 36, sass/partials/_search.scss */
.search-form:focus {
  color: #b9e0cc;
}

/* line 41, sass/partials/_search.scss */
.search-form input[type="search"]:focus {
  color: #b9e0cc;
  border-bottom: 2px solid #a6b1b3;
  width: 220px;
}

/* line 47, sass/partials/_search.scss */
.search-form {
  position: relative;
  font-family: FontAwesome;
  color: #b9e0cc;
  font-weight: 300;
}

/* line 56, sass/partials/_search.scss */
.search-form input[type="submit"] {
  position: absolute;
  font-family: FontAwesome;
  clip: inherit;
  width: 1px;
  height: 1px;
  background: transparent;
  right: 10px;
  top: 18px;
  color: #b9e0cc;
}

/* line 68, sass/partials/_search.scss */
.search-form input[type="submit"]:hover {
  color: #F15123;
}

/* style to get rid of search box border
----------------------------------------------------------------------- */
/* line 75, sass/partials/_search.scss */
input, select, textarea {
  border: none;
}

/* Style for div surrounding search 
----------------------------------------------------------------------- */
/* line 83, sass/partials/_search.scss */
#search-nav {
  width: 330px;
  float: right;
  color: #b9e0cc;
}
/* line 89, sass/partials/_search.scss */
#search-nav form {
  color: #b9e0cc;
}
/* line 94, sass/partials/_search.scss */
#search-nav input {
  color: #b9e0cc;
}

/* 
Button Styles
---------------------------------------------------------------------------------------------------- */
/* line 2, sass/partials/_buttons.scss */
.bttn {
  background-color: #b9e0cc;
  padding: 6px 8px;
  font-size: 14px;
  color: #25848e;
  border-left: 6px solid #25848e;
  float: right;
}

/* line 13, sass/partials/_buttons.scss */
.bttn-reg {
  background-color: #b9e0cc;
  padding: 6px 8px;
  font-size: 14px;
  color: #25848e;
  border-left: 6px solid #25848e;
  float: right;
  background-color: #25848e;
  border-left: 6px solid #b9e0cc;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

/*
education page styles
--------------------------------------------------------------------------------------------------- */
/* line 2, sass/partials/_education.scss */
.rl-dot {
  color: #cd912a;
  font-size: 12px;
}

/* line 11, sass/partials/_education.scss */
.reading-list {
  margin-left: 22px !important;
}
/* line 20, sass/partials/_education.scss */
.reading-list li .rl-dot {
  margin-right: 10px;
  position: relative;
}
/* line 27, sass/partials/_education.scss */
.reading-list li a {
  color: #1b3963;
  font-size: 18px;
}

/* line 34, sass/partials/_education.scss */
.rl-author {
  color: #25848e;
  font-size: 13px;
  margin-left: 20px;
  text-transform: none;
}

/* line 42, sass/partials/_education.scss */
.rl-header {
  font-weight: 300;
  font-size: 20px;
}

/* line 50, sass/partials/_education.scss */
.rl {
  border-bottom: 2px solid #e1e1e1;
  margin-bottom: 15px;
}

/* line 57, sass/partials/_education.scss */
.rl-video {
  margin-left: 22px;
}
/* line 61, sass/partials/_education.scss */
.rl-video p {
  margin: 0;
}

/* line 68, sass/partials/_education.scss */
.education-wrap {
  margin-bottom: 40px;
  display: block;
  float: left;
  width: 100%;
}

/* 
Who We are Page styles 
-------------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/who-are.scss */
.offices {
  padding: 10px 20px;
}

/* line 7, sass/partials/who-are.scss */
.office-list {
  margin-left: 22px !important;
  margin-right: 22px !important;
}
/* line 12, sass/partials/who-are.scss */
.office-list li .rl-dot {
  margin-right: 10px;
  position: relative;
  margin-bottom: 10px;
}
/* line 20, sass/partials/who-are.scss */
.office-list li a {
  color: #1b3963;
  font-size: 18px;
}

/* line 28, sass/partials/who-are.scss */
.rl-office {
  border-bottom: 2px solid #e1e1e1;
  padding-top: 5px;
}

/* line 34, sass/partials/who-are.scss */
.office-info {
  padding: 0 22px;
}
/* line 38, sass/partials/who-are.scss */
.office-info .office-title {
  color: #25848e;
  font-weight: 400;
  font-size: 17px;
  margin: 0;
}
/* line 47, sass/partials/who-are.scss */
.office-info p {
  font-weight: 300;
  font-size: 17px;
  color: #25848e;
  line-height: 1.4;
}

/* 
Events detail page styling and archive page styling
------------------------------------------------------------------------------------------------- */
/* line 2, sass/partials/_events.scss */
.event-p {
  margin: 0 0 5px;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}

/* line 11, sass/partials/_events.scss */
.event-location {
  margin: 0 0 14px !important;
}

/* line 17, sass/partials/_events.scss */
.event-col-1 {
  width: 22.807018%;
  float: left;
}

/* line 24, sass/partials/_events.scss */
.event-col-2 {
  width: 51.754386%;
}

/* line 30, sass/partials/_events.scss */
.event-col-3 {
  width: 21.929825%;
}

/* line 36, sass/partials/_events.scss */
.event-col-2,
.event-col-3 {
  float: left;
  margin-left: 1.754386%;
}

/* line 45, sass/partials/_events.scss */
.event-fet-col {
  width: 71.929825%;
  float: left;
}

/* line 51, sass/partials/_events.scss */
.event-other-col {
  width: 24.561404%;
  float: left;
  margin-left: 3.508772%;
}

@media only screen and (max-width: 768px) {
  /* line 61, sass/partials/_events.scss */
  .event-col-1,
  .event-col-2,
  .event-col-3,
  .event-fet-col,
  .event-other-col {
    margin: 0;
    width: 100%;
  }
}
/* line 73, sass/partials/_events.scss */
.event-rs-header {
  padding-left: 18px;
}

/* line 79, sass/partials/_events.scss */
.event-detail-photo {
  padding-top: 14px;
}

/* line 87, sass/partials/_events.scss */
p.post-meta {
  display: none !important;
}

/* line 96, sass/partials/_events.scss */
.featured-content-upcoming-event article {
  margin-left: 18px;
  margin-right: 18px;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
/* line 106, sass/partials/_events.scss */
.featured-content-upcoming-event h2.entry-title {
  margin-bottom: 12px;
}
/* line 110, sass/partials/_events.scss */
.featured-content-upcoming-event h2.entry-title a {
  color: #25848e;
  font-size: 16px;
  font-weight: 400;
}
/* line 120, sass/partials/_events.scss */
.featured-content-upcoming-event .fe-p {
  color: #575757;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  margin: 0 0 14px;
}

/*
Styling for the other events photos and text 
-------------------------------------------------------------------- */
/* line 136, sass/partials/_events.scss */
.event-other-col h6 {
  margin: 0 18px 10px 18px;
}
/* line 141, sass/partials/_events.scss */
.event-other-col .rl.other-rl {
  padding: 0 18px 10px 18px;
}
/* line 145, sass/partials/_events.scss */
.event-other-col .rl.other-rl h5 {
  line-height: 1;
  text-transform: none;
  font-size: 18px;
}
/* line 151, sass/partials/_events.scss */
.event-other-col .rl.other-rl h5 a {
  color: #1b3963;
  margin: 0;
}
/* line 161, sass/partials/_events.scss */
.event-other-col .rl.other-rl p {
  margin: 0 0 5px;
  font-size: 12px;
  color: #25848e;
  text-align: left;
}
/* line 168, sass/partials/_events.scss */
.event-other-col .rl.other-rl p a {
  color: #25848e;
  text-decoration: underline;
}

/* line 180, sass/partials/_events.scss */
.event-fet-col .menu-text {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1b3963;
}
/* line 187, sass/partials/_events.scss */
.event-fet-col p {
  margin: 0 0 10px;
}

/* line 195, sass/partials/_events.scss */
.featured-event-img {
  position: relative;
}
/* line 199, sass/partials/_events.scss */
.featured-event-img img {
  display: block;
}
/* line 205, sass/partials/_events.scss */
.featured-event-img a {
  display: block;
}
/* line 209, sass/partials/_events.scss */
.featured-event-img a h1 {
  font-weight: 400;
  padding-right: 18px;
  text-align: left;
  font-size: 30px;
}

@media only screen and (max-width: 480px) {
  /* line 228, sass/partials/_events.scss */
  .featured-event-img h1 {
    position: static !important;
    transform: none !important;
  }
}
/* line 240, sass/partials/_events.scss */
.congress-border {
  border-top: 2px solid #e1e1e1;
}
/* line 245, sass/partials/_events.scss */
.congress-border h4 {
  font-weight: 400;
  margin-top: 40px;
}

/* line 253, sass/partials/_events.scss */
.congress-slide {
  max-width: 260px;
  /*margin-right: 15px;*/
}
/* line 258, sass/partials/_events.scss */
.congress-slide img {
  max-height: 105px;
}
/* line 263, sass/partials/_events.scss */
.congress-slide p {
  background-color: #fcfcfc;
  border-bottom: solid 3px #e1e1e1;
  border-left: solid 3px #e1e1e1;
  border-right: solid 3px #e1e1e1;
  padding: 6px 18px;
  text-align: left;
}
/* line 272, sass/partials/_events.scss */
.congress-slide p a {
  color: #1b3963;
}

/* line 281, sass/partials/_events.scss */
.flxstyle {
  margin-left: 15px;
}

/* line 287, sass/partials/_events.scss */
.events .entry-title a {
  color: #cd912a;
}

/* line 296, sass/partials/_events.scss */
.single-events .entry-title {
  font-size: 32px;
}
/* line 301, sass/partials/_events.scss */
.single-events h3 {
  font-size: 24px;
}

/* line 311, sass/partials/_events.scss */
.tax-event_tax .entry-title {
  font-size: 28px;
}
/* line 317, sass/partials/_events.scss */
.tax-event_tax h3 {
  font-size: 22px;
}

/* line 323, sass/partials/_events.scss */
.event-detail-header {
  color: #25848e;
  text-transform: none;
}

/* line 330, sass/partials/_events.scss */
.alt-rl {
  max-width: 35%;
  margin-bottom: 20px;
  padding: 0 20px 0 0;
}

/*
Bring in lists styles 
------------------------------------------------------------------------------------------------ */
/* line 3, sass/partials/_lists.scss */
.npsa-list {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
/* line 8, sass/partials/_lists.scss */
.npsa-list li {
  border-bottom: 2px solid #e1e1e1;
  padding: 12px 0 12px 18px;
  color: #25848e;
}
/* line 14, sass/partials/_lists.scss */
.npsa-list li .rl-dot {
  margin-right: 10px;
  position: relative;
  margin-bottom: 10px;
}
/* line 25, sass/partials/_lists.scss */
.npsa-list li a {
  color: #1b3963;
  font-size: 18px;
}

/* line 35, sass/partials/_lists.scss */
.events-sidebar-alt ul {
  margin-left: 0;
}
/* line 41, sass/partials/_lists.scss */
.events-sidebar-alt li {
  list-style-type: none !important;
}

/* 
reading list archive 
----------------------------------------------------------------------------------------------- */
/* line 4, sass/partials/_reading.scss */
.news .entry-title {
  color: #1b3963;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
}
/* line 8, sass/partials/_reading.scss */
.news .entry-title a {
  color: #25848e;
}

/* line 19, sass/partials/_reading.scss */
.entry.news {
  margin-bottom: 20px;
}

/* line 28, sass/partials/_reading.scss */
.video .entry-title {
  color: #1b3963;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
}
/* line 32, sass/partials/_reading.scss */
.video .entry-title a {
  color: #25848e;
}

/* line 44, sass/partials/_reading.scss */
.featured-content-latest-news article {
  padding: 0 18px !important;
  margin-bottom: 12px !important;
  border-bottom: none !important;
}
/* line 65, sass/partials/_reading.scss */
.featured-content-latest-news article .bullet-para {
  float: left;
  padding-top: 5px;
}
/* line 72, sass/partials/_reading.scss */
.featured-content-latest-news article .bullet-news {
  font-size: 11px;
  color: #cd912a;
  float: left;
  width: 18px;
}
/* line 80, sass/partials/_reading.scss */
.featured-content-latest-news article h2.entry-title {
  font-size: 15px;
  text-transform: none;
  float: left;
  width: 90%;
}
/* line 87, sass/partials/_reading.scss */
.featured-content-latest-news article h2.entry-title a {
  color: #575757;
}

/* line 98, sass/partials/_reading.scss */
.author-archive {
  font-size: 18px;
  font-weight: 300;
}

/*
add in sidr css 
---------------------------------------------------------------------------------------------- */
/* line 2, sass/partials/_sidr.scss */
.sidr {
  background: #b9e0cc !important;
  font-family: 'Open Sans' !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  border-top: none !important;
}
/* line 12, sass/partials/_sidr.scss */
.sidr ul {
  border-top: none !important;
  border-bottom: none !important;
}
/* line 18, sass/partials/_sidr.scss */
.sidr ul li {
  border-top: none !important;
  border-bottom: 2px solid #25848e !important;
}
/* line 23, sass/partials/_sidr.scss */
.sidr ul li :hover {
  color: #ffffff !important;
  background-color: #b9e0cc;
}
/* line 31, sass/partials/_sidr.scss */
.sidr ul li a {
  color: #25848e !important;
  border-top: none;
  line-height: 1.45 !important;
  padding: 12px 15px !important;
}

/*
Homepage widget styles
---------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_home.scss */
.homewidget {
  min-height: 382px;
}
/* line 5, sass/partials/_home.scss */
.homewidget .entry-title {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
}
/* line 12, sass/partials/_home.scss */
.homewidget .entry-title a {
  color: #25848e;
  text-align: left;
}
/* line 20, sass/partials/_home.scss */
.homewidget p.fe-p {
  text-align: left;
  color: #575757;
  font-size: 13px;
  margin-top: 0px;
  margin-bottom: 14px;
}
/* line 32, sass/partials/_home.scss */
.homewidget .featured-content-upcoming-events img {
  margin-bottom: 0px;
}
/* line 37, sass/partials/_home.scss */
.homewidget .featured-content-upcoming-events article {
  margin: 0 18px 0 0;
}
/* line 45, sass/partials/_home.scss */
.homewidget .featured-content-upcoming-events .featured-content-featured-video article.video {
  margin: 0 18px 0 18px;
}
/* line 55, sass/partials/_home.scss */
.homewidget .featured-content-upcoming-events article {
  margin: 0 18px;
}

/* line 71, sass/partials/_home.scss */
.fixedtopright .textwidget p {
  margin: 0 18px 28px;
  font-size: 14px;
}

/* line 85, sass/partials/_home.scss */
.quote {
  color: #25848e;
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 1.4;
  font-weight: 400;
}

/* line 94, sass/partials/_home.scss */
.quote-name {
  color: #25848e;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 400;
}

/* line 107, sass/partials/_home.scss */
.featured-content-featured-video article {
  padding: 0 18px !important;
}

/* line 113, sass/partials/_home.scss */
.post-2.entry {
  margin-bottom: 0px;
}

/* 
What Do styling
--------------------------------------------------------------------------------------------- */
/* line 2, sass/partials/_what-do.scss */
.what-do {
  margin-bottom: 35px;
}
/* line 6, sass/partials/_what-do.scss */
.what-do img {
  width: 100%;
  max-height: 135px;
}
/* line 12, sass/partials/_what-do.scss */
.what-do p {
  background-color: #b9e0cc;
  padding: 6px 18px;
  margin-bottom: 0;
  margin-top: -10px;
}
/* line 19, sass/partials/_what-do.scss */
.what-do p a {
  color: #1b3963;
}

/* line 27, sass/partials/_what-do.scss */
.what-alt {
  background-color: #b9e0cc;
  padding: 6px 18px;
  margin-bottom: 0;
  margin-top: -10px;
}
/* line 34, sass/partials/_what-do.scss */
.what-alt img {
  width: 100%;
}
/* line 39, sass/partials/_what-do.scss */
.what-alt a {
  color: #1b3963;
}

/* line 48, sass/partials/_what-do.scss */
.page-id-123 p {
  text-align: left;
}

/* 
video styles 
-------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_video.scss */
.video .post-image {
  display: none;
}

/*
Mailchimp Styles
------------------------------------------------------------------------------------------- */
/* line 1, sass/partials/_mailchimp.scss */
#mc_embed_signup input.mce_inline_error {
  border-color: #cd912a !important;
}

/* line 6, sass/partials/_mailchimp.scss */
#mc_embed_signup input {
  border: 1px solid #b9e0cc;
}

/* line 12, sass/partials/_mailchimp.scss */
#mc_embed_signup select {
  border: 1px solid #b9e0cc;
}

/* line 18, sass/partials/_mailchimp.scss */
#mc_embed_signup div.mce_inline_error {
  background-color: #cd912a !important;
}

/* line 25, sass/partials/_mailchimp.scss */
#mc_embed_signup ul {
  margin-left: 0px;
}
/* line 29, sass/partials/_mailchimp.scss */
#mc_embed_signup ul li {
  list-style-type: none;
}

/* line 36, sass/partials/_mailchimp.scss */
#mc_embed_signup form {
  padding: 0px !important;
}
/* line 40, sass/partials/_mailchimp.scss */
#mc_embed_signup form br {
  display: none;
}

/* line 47, sass/partials/_mailchimp.scss */
#mc_embed_signup .button {
  background-color: #b9e0cc !important;
  color: #1b3963 !important;
}

/*
Members styling 
------------------------------------------------------------------------------------------- */
/* line 7, sass/partials/_members.scss */
.pmpro_member_directory_display-name a {
  font-size: 22px;
}

/* line 16, sass/partials/_members.scss */
.pmpro_member_directory_search input.search-field {
  width: 200px;
}

/*
Event Details
------------------------------------------------------------------------------------------- */
/* line 3, sass/partials/_event-details.scss */
.single-details #nav_menu-3 {
  display: none;
}
/* line 8, sass/partials/_event-details.scss */
.single-details .widget-2 {
  display: none;
}
/* line 13, sass/partials/_event-details.scss */
.single-details .widget-3 {
  display: none;
}
