html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img:not(.video_play_button) {
  border: 0;
  width: 100%;
}

.fig-right-text-wrap img, .fig-left-text-wrap img {
  width: auto !important;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* we don't really need colors by issue type */
#colophon {
  border-top: 2px solid #E6EAEF;
  background-color: #fff;
  padding: 2rem 0;
  margin-bottom: 10px;
}
#colophon h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
#colophon ul {
  font-size: 0.7rem;
  padding-right: 0.5rem;
  margin-bottom: 0rem;
  text-transform: uppercase;
}
#colophon .columns-2 > li, #colophon .columns-3 > li, #colophon .columns-4 > li, #colophon .columns-5 > li, #colophon .columns-6 > li {
  max-width: 150px;
}
#colophon .columns-1 li {
  font-size: 0.7rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}

    /*.container {
        height: 350px;
        //@include display(flex);
        //@include flex-direction(column);
        //@include media(min-width 800px) {
            //@include flex-direction(row);
        //}
    }
    .footer-menu {
        //@include display(flex);
        //@include flex-direction(column);
        nav {
            display: inline-block;
            clear: both;
            @include media(min-width 800px) {
                height: 200px;
            }
        }
        .issues-footer-menu {
            float: left;
        }
        .projects-footer-menu {
            float: right;
        }

        .about-footer-menu {
            float: left;
        }

        .connect-footer-menu {
            float: left;
        }
        #footer-connect-menu, #footer-projects-menu{
            width: 415px;
        }
        h5 {
            font-family: $sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
        }
        ul {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        li {
            text-transform: uppercase;
            font-size: 11px;
            margin-bottom: 5px;
        }
        .columns-2 /*.columns-3 {
            & > li {
                //display: block;
                //width: auto;
                width: 185px;
                height: 20px;
               // margin: 0;
                //padding-right: 15px;
                //display: inline-block;
            }
        }

        @include media(min-width 800px) {
            @include flex-direction(row);
            h5 {

                font-size: 0.8rem;
            }
            ul {
                font-size: 0.8rem;
                padding-right: 0.5rem;
                margin-bottom: 0rem;
            }
        }

    }*/
@media screen and (min-width: 800px) {
  .footer-menu:first-of-type {
    width: 57.3509785009%;
    margin-right: 2.3576515979%;
  }
  .footer-menu:first-of-type .menu:first-of-type ul {
    -webkit-columns: 5;
    -moz-columns: 5;
    columns: 5;
  }

  .footer-menu:last-of-type {
    width: 40.2913699012%;
  }
}
#copyright {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  top: 10px;
}
@media screen and (min-width: 800px) {
  #copyright {
    position: relative;
    top: 0px;
  }
}
#copyright .container, #copyright body.has-container:not(.center-content) #content, body.has-container:not(.center-content) #copyright #content {
  height: 100px;
}

.footer-menu {
  width: 100% !important;
}

.top-row {
  width: 100%;
  height: 245px;
  display: block;
  background-color: #235EBD;
}

.bottom-row {
  width: 100%;
  height: 175px;
  display: block;
  background-color: #99ccff;
}

.issues-footer-menu {
  float: left;
  width: 100%;
  line-height: 1.3;
}

.projects-footer-menu {
  float: right;
  width: 40%;
}

.about-footer-menu {
  float: left;
  width: 40%;
  background-color: #3fab3f;
}

.connect-footer-menu {
  float: right;
  width: 40%;
  background-color: #F1D031;
}

.press-footer-menu {
  float: left;
  width: 20%;
  background-color: #268FBB;
}

#copyright, .meta, .entry-meta, .entry-footer {
  font-size: 0.9rem;
  font-weight: bolder;
}

.meta .font-weight-normal {
  font-weight: normal !important;
  font-size: 16px;
}

.press-entry-meta {
  margin-bottom: 10px;
}

.event-entry-meta {
  font-size: 14px;
  font-weight: bold;
  color: #888890;
}

.event-entry-meta-list {
  font-size: .9rem;
  font-weight: normal !important;
  margin-bottom: 15px;
  color: #333;
  font-style: italic;
}

.entry-meta {
  color: #333;
  font-weight: normal;
  margin-bottom: .3rem;
}
.entry-meta .posted-on:before {
  display: inline;
  content: "|";
  margin-left: 0.35rem;
  margin-right: 0.35rem;
}
.entry-meta .posted-on-empty:before {
  display: inline;
  margin-left: 0.35rem;
  margin-right: 0.35rem;
}

.events-address-list {
  font-style: normal !important;
}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img:not(.video_play_button) {
  border: 0;
  width: 100%;
}

.fig-right-text-wrap img, .fig-left-text-wrap img {
  width: auto !important;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.container, body.has-container:not(.center-content) #content {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.container::after, body.has-container:not(.center-content) #content::after {
  clear: both;
  content: "";
  display: table;
}

body.has-container:not(.center-content) #content {
  margin-top: 1rem;
}

body.has-container.center-content #content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin-top: 1rem;
}
body.has-container.center-content #content::after {
  clear: both;
  content: "";
  display: table;
}

@media screen and (min-width: 750px) {
  body.has-sidebar #primary {
    float: left;
    display: block;
    width: calc(100% - 300px);
  }
  body.has-sidebar #secondary {
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    width: 300px;
    padding-left: 3%;
  }
}

@media screen and (min-width: 750px) {
  body.page-template-page-jobs #primary {
    float: left;
    display: block;
    width: calc(100% - 300px);
  }
  body.page-template-page-jobs #secondary {
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    width: 300px;
    padding-left: 3%;
  }
}

@media screen and (min-width: 600px) {
  .columns-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}

@media screen and (min-width: 600px) {
  .columns-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
  }
}

@media screen and (min-width: 600px) {
  .columns-4 {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
  }
}

@media screen and (min-width: 600px) {
  .columns-5 {
    -webkit-columns: 5;
    -moz-columns: 5;
    columns: 5;
  }
}

@media screen and (min-width: 600px) {
  .columns-6 {
    -webkit-columns: 6;
    -moz-columns: 6;
    columns: 6;
  }
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex.flex-article {
  margin-bottom: 0.5rem;
  padding: 0.85ssrem 0;
  border-bottom: 1px solid #ddd;
}
.flex.flex-article:last-of-type {
  margin-bottom: 0px;
}
.flex.flex-article .entry-thumbnail {
  -webkit-flex-basis: 150px;
  -moz-flex-basis: 150px;
  flex-basis: 150px;
  -ms-flex-preferred-size: 150px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  margin-right: 1rem;
}
.flex.flex-article .entry-title {
  margin-bottom: 0.35rem;
}

body.single article .entry-content p {
  line-height: 1.7;
}
body.single article .entry-content p a {
  color: #235EBD;
}

.events-page-header {
  height: 45px;
  clear: both;
  padding-bottom: 65px;
}

.archive-title {
  border-bottom: 1px solid #ddd;
  font-size: 2.5rem;
}

.events-archive-title, .issue-archive-title, .press-archive-title, .experts-archive-title, .project-archive-title {
  border-bottom: none !important;
  font-size: 2.5rem;
}

.events-archive-subtitle {
  border-bottom: none;
  padding-bottom: 0.75rem;
  font-size: 2.5rem;
}

.events-top {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.75rem;
  font-size: 2.5rem;
}

.archive-follow-links-wrapper {
  float: right;
  margin-top: -2.5px;
  min-width: 300px;
  text-align: right;
}

.archive-follow-links {
  display: inline-block;
  height: 20px;
}

.archive-follow-text-wrapper {
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}

.archive-follow-text {
  color: #333;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}

.archive-intro-text {
  width: 100%;
  min-height: 50px;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  padding-bottom: 15px;
}

h2 .events-archive-subtitle {
  float: left;
}

.follow-link {
  margin-right: 2.5px;
  color: #183c75;
}

body:not(.paged) .archive-title {
  margin-top: 0;
}

.featured-posts {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  border-bottom: medium solid #888890;
}
.featured-posts a:first-of-type {
  width: 100%;
  border-bottom: 1px solid #ddd;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}
@media screen and (min-width: 650px) {
  .featured-posts a:first-of-type {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
  }
  .featured-posts a:first-of-type > div:first-of-type {
    -webkit-flex-basis: 300px;
    -moz-flex-basis: 300px;
    flex-basis: 300px;
    -ms-flex-preferred-size: 300px;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    -ms-flex-negative: 0;
    margin-right: 1rem;
  }
}
.featured-posts a {
  width: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.featured-posts a h3 {
  margin-top: 0px;
  margin-bottom: 20px;
}
.featured-posts a div {
  width: 66.667%;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.featured-posts a h4 {
  margin: 0px;
  font-size: 1rem;
}
.featured-posts a .entry-article-type {
  color: #333;
  font-size: 0.9rem;
  float: left;
}
.featured-posts a .entry-author {
  color: #888890;
  font-size: 0.7rem;
  float: left;
}
.featured-posts a .entry-thumbnail {
  width: 120px;
  height: 100%;
  margin-right: 0.8rem;
  float: left;
}
.featured-posts a .entry-thumbnail img {
  width: 100%;
  height: 100%;
}
.featured-posts a:hover {
  background-color: #f7f7f7;
}
.featured-posts a:nth-of-type(2) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.8rem;
  border-right: 1px solid #ddd;
}
.featured-posts a:nth-of-type(3) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}
.featured-posts a:nth-of-type(4) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.8rem;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.featured-posts a:nth-of-type(5) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  border-top: 1px solid #ddd;
}
.featured-posts a .entry-meta {
  font-size: 0.8rem;
  margin-bottom: .9rem;
}
.featured-posts a .entry-subtitle {
  color: #888890;
  font-weight: lighter;
}

#upcoming-events {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: thick solid #CDCDD3;
}
#upcoming-events article:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

p.entry-excerpt {
  font-size: 1rem;
  line-height: 2.2rem !important;
}

body.single-reports h2.chapter-title {
  border-top: 0px;
  padding-top: 1rem;
  font-size: 2rem;
}
body.single-reports h1.entry-title {
  font-size: 2.5rem;
}
body.single-reports h4.entry-subtitle {
  font-size: 1.5rem;
}
body.single-reports #report-details {
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  margin: 0, 0, 1.5rem, 1rem !important;
}
body.single-reports #report-details ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
body.single-reports #report-details li {
  float: left;
  display: inline-block;
  width: 50%;
}
body.single-reports #report-details img {
  display: inline-block;
  max-width: 200px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  body.single-reports #report-details {
    float: right;
    max-width: 250px;
    margin-left: 1rem;
  }
}

body.single-reports.long-form #content {
  /*  @include swoop($mystic); */
  padding-top: 1rem;
  padding-bottom: 1rem;
}
body.single-reports.long-form .meta-issue {
  text-transform: uppercase;
  font-size: 14px;
}
body.single-reports.long-form h1.entry-title {
  font-size: 2.5rem;
}
body.single-reports.long-form h4.entry-subtitle {
  font-size: 1.5rem;
}
body.single-reports.long-form #report-overview {
  padding: 1rem;
  position: relative;
  margin-bottom: -1px;
  text-align: center;
}
body.single-reports.long-form #report-overview .overview-container {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
body.single-reports.long-form #report-overview .overview-container::after {
  clear: both;
  content: "";
  display: table;
}
body.single-reports.long-form #report-overview .report-details {
  margin-bottom: 2rem;
}
body.single-reports.long-form #report-overview .report-details .button {
  margin-bottom: 1rem;
  line-height: normal;
}
body.single-reports.long-form .stickied {
  position: fixed;
  display: block !important;
  left: 0;
  top: 0px;
  z-index: 100;
}
body.single-reports.long-form .report-toolbar {
  display: none;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
body.single-reports.long-form .report-toolbar::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 420px) {
  body.single-reports.long-form .report-toolbar > div {
    float: left;
    width: 50%;
  }
}
body.single-reports.long-form .report-toolbar > div:last-of-type::after {
  clear: both;
  content: "";
  display: table;
}
body.single-reports.long-form .report-toolbar .sd-block {
  display: none;
}
@media screen and (min-width: 420px) {
  body.single-reports.long-form .report-toolbar .sd-block {
    display: inline-block;
  }
}
body.single-reports.long-form .report-toolbar .sd-title {
  display: none;
}
body.single-reports.long-form .report-toolbar .sd-content {
  position: relative;
  top: 6px;
  left: 9px;
}
body.single-reports.long-form .report-toolbar .sd-content ul {
  margin: 0 !important;
}
body.single-reports.long-form .report-toolbar .sd-content ul li a {
  padding: 0.4rem 0.5rem;
  line-height: 1;
}
body.single-reports.long-form .report-toolbar .sd-content ul li a:before {
  font-size: 0.9rem;
}
body.single-reports.long-form .report-toolbar .chapters-select-list {
  cursor: pointer;
}
@media screen and (min-width: 420px) {
  body.single-reports.long-form .report-toolbar .chapters-select-list {
    float: right;
  }
}
body.single-reports.long-form .chapters-select-list {
  background-color: transparent;
  color: #183c75;
  border: 0;
  width: auto;
  font-weight: bolder;
  padding: 0.5rem 1rem;
}
body.single-reports.long-form .chapters-select-list option {
  background-color: #ddd;
  color: #333;
  border: 0;
  font-weight: bolder;
}
body.single-reports.long-form #primary {
  background-color: white;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem 1rem 1rem;
}
body.single-reports.long-form #primary::after {
  clear: both;
  content: "";
  display: table;
}
body.single-reports.long-form .entry-content {
  counter-reset: paragraph;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
body.single-reports.long-form .entry-content::after {
  clear: both;
  content: "";
  display: table;
}
body.single-reports.long-form .entry-content p.counter-paragraph:before {
  position: absolute;
  margin-left: -1.35rem;
  color: #999;
  content: counter(paragraph);
  counter-increment: paragraph;
  opacity: 0.4;
  font-size: .8rem;
}
body.single-reports.long-form .entry-content p.counter-paragraph:hover:before {
  opacity: 1.0;
}
body.single-reports.long-form .entry-content .alignleft {
  margin-right: 2.5rem !important;
}
body.single-reports.long-form .entry-content figure.oembed[data-src*="twitter.com"] {
  margin: 0;
}
body.single-reports.long-form .entry-content figure.oembed[data-src*="instagram.com"] {
  margin-left: 2rem;
  float: right;
  width: 350px;
}
body.single-reports.long-form .entry-content .pretty-embed {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body.single-reports.long-form .entry-content .tweet-embed {
  position: relative;
}
body.single-reports.long-form .entry-content .tweet-embed .tweet-offset {
  padding: 1rem 0;
}
@media screen and (min-width: 600px) {
  body.single-reports.long-form .entry-content .tweet-embed .tweet-offset {
    position: relative;
    float: left;
    width: 250px;
    margin-right: 2.5rem;
    border-top: 2px solid #00aced;
  }
}
body.single-reports.long-form .entry-content .tweet-embed .tweet-offset iframe[style] {
  width: 100% !important;
}
body.single-reports.long-form .entry-content .ccb-download {
  margin-bottom: 1rem;
}
body.single-reports.long-form .entry-content .ccb-pullquote.alignleft, body.single-reports.long-form .entry-content .ccb-pullquote.alignright {
  max-width: 400px;
}
body.single-reports.long-form .entry-content .sharedaddy {
  margin-top: 2.5rem;
}
body.single-reports.long-form .entry-content .sharedaddy .sd-block div {
  flex-grow: 1;
}
body.single-reports.long-form .report-title {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}
body.single-reports.long-form .report-title::after {
  clear: both;
  content: "";
  display: table;
}
body.single-reports.long-form .entry-title {
  line-height: 1;
}
body.single-reports.long-form #report-header {
  position: relative;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: left;
  color: #fff;
}
body.single-reports.long-form #report-header:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 39.2361111111%;
}
body.single-reports.long-form #report-header > .maintain-aspect-ratio {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
body.single-reports.long-form #report-header.parallax-header {
  background-attachment: fixed;
}
body.single-reports.long-form #report-header .header-gradient {
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}
@media screen and (min-width: 700px) {
  body.single-reports.long-form #report-header .header-gradient {
    background-color: rgba(0, 0, 0, 0.1);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 59%, rgba(0, 0, 0, 0.65) 100%);
    background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 59%, rgba(0, 0, 0, 0.65) 100%);
    padding-bottom: 2rem;
  }
}
body.single-reports.long-form #report-header .report-title {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
body.single-reports.long-form #report-header .entry-title,
body.single-reports.long-form #report-header .entry-subtitle {
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
body.single-reports.long-form #report-header .entry-title {
  font-size: 2.5rem;
  line-height: 1.15;
}
@media screen and (min-width: 900px) {
  body.single-reports.long-form #report-header .entry-title {
    font-size: 3rem;
  }
}
body.single-reports.long-form #report-header .entry-subtitle {
  font-weight: lighter;
}
body.single-reports.long-form #key-points {
  counter-reset: keyPoints;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}
@media screen and (min-width: 600px) {
  body.single-reports.long-form #key-points {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
  }
}
body.single-reports.long-form #key-points > aside {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
}
@media screen and (min-width: 600px) {
  body.single-reports.long-form #key-points > aside {
    width: 33%;
  }
}
body.single-reports.long-form #key-points > aside:before {
  content: counter(keyPoints);
  counter-increment: keyPoints;
  display: inline-block;
  border-radius: 50%;
  background-color: #183c75;
  color: #fff;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  float: left;
  margin-right: 1rem;
}
@media screen and (min-width: 600px) {
  body.single-reports.long-form #key-points > aside:before {
    float: none;
    margin-right: 0;
  }
}

.filter-field {
  display: inline-block;
  margin-right: 10px;
}

.search-form-link {
  cursor: pointer;
}

.bold-header {
  width: 100%;
  margin-top: 35px;
  font-weight: bold;
  font-size: 1.3rem !important;
}

#district-filter-moveon, #filter-by-zip {
  width: 155px;
}

#form-moveon #web-to-lead input[type=hidden] {
  display: none;
}

#town-halls, #town-halls-moveon, #town-halls-moveon-zip {
  width: 100%;
}
#town-halls .single-event-entry, #town-halls .single-event-entry-zip, #town-halls-moveon .single-event-entry, #town-halls-moveon .single-event-entry-zip, #town-halls-moveon-zip .single-event-entry, #town-halls-moveon-zip .single-event-entry-zip {
  min-height: 100px;
  width: 100%;
  border-bottom: 4px solid #183c75;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
#town-halls .single-event-entry p, #town-halls .single-event-entry-zip p, #town-halls-moveon .single-event-entry p, #town-halls-moveon .single-event-entry-zip p, #town-halls-moveon-zip .single-event-entry p, #town-halls-moveon-zip .single-event-entry-zip p {
  padding: 0 !important;
  margin: 0 !important;
}

#senate-offices-text, #house-offices-text {
  font-size: 1.1rem;
  font-weight: bold;
}
#senate-offices-text p, #house-offices-text p {
  font-size: 1.3rem;
}

#offices, #senate-offices-moveon, #house-offices-moveon {
  width: 100%;
  display: none;
  margin-bottom: 20px;
  border-bottom: 4px solid #183c75;
}
#offices .single-district-entry, #senate-offices-moveon .single-district-entry, #house-offices-moveon .single-district-entry {
  display: inline-block;
  margin-right: 35px;
  min-height: 165px;
  margin-bottom: 20px;
  vertical-align: top;
  width: 200px;
}
@media (max-width: 600px) and (min-width: 350px) {
  #offices .single-district-entry, #senate-offices-moveon .single-district-entry, #house-offices-moveon .single-district-entry {
    display: inline-block;
    min-height: 145px;
    vertical-align: top;
    width: 170px;
  }
  #offices .single-district-entry:nth-child(odd), #senate-offices-moveon .single-district-entry:nth-child(odd), #house-offices-moveon .single-district-entry:nth-child(odd) {
    margin-right: 20px;
  }
}
@media (max-width: 350px) {
  #offices .single-district-entry, #senate-offices-moveon .single-district-entry, #house-offices-moveon .single-district-entry {
    display: inline-block;
    min-height: 145px;
    vertical-align: top;
    width: 124px;
  }
  #offices .single-district-entry:nth-child(odd), #senate-offices-moveon .single-district-entry:nth-child(odd), #house-offices-moveon .single-district-entry:nth-child(odd) {
    margin-right: 20px;
  }
}
#offices .single-district-entry p, #senate-offices-moveon .single-district-entry p, #house-offices-moveon .single-district-entry p {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 600px) {
  #offices .single-district-entry p, #senate-offices-moveon .single-district-entry p, #house-offices-moveon .single-district-entry p {
    font-size: 0.9rem;
  }
}
#offices .single-district-entry p:first-child, #senate-offices-moveon .single-district-entry p:first-child, #house-offices-moveon .single-district-entry p:first-child {
  font-weight: bold;
  font-size: 1.3rem;
}
@media (max-width: 600px) {
  #offices .single-district-entry p:first-child, #senate-offices-moveon .single-district-entry p:first-child, #house-offices-moveon .single-district-entry p:first-child {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=style.min.css.map */
