@charset "UTF-8";
/**
 * @file
 * Style Imports.
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Lato:300,400,900");
/**
* @file
* Variables.
*/
/**
 * Typecsset
 *
 * Typecsset is a small, unopinionated library for creating beautifully set type
 * on the web. Typecsset gives perfect vertical rhythm at any configurable font
 * size, as well as many other typographical niceties.
 */
/*------------------------------------*\
    #SHARED
\*------------------------------------*/
/**
 * A lot of elements in Typecsset need to share some declarations (mainly for
 * vertical rhythm), so we `@extend` some silent classes.
 */
/* line 88, ../sass/partials/base/_typecsset.scss */
h1, h2, h3, h4, h5, h6, ul, ol, dd, p, address, pre, blockquote, table {
  margin: 0;
  padding: 0;
}

/* line 93, ../sass/partials/base/_typecsset.scss */
h1, h2, h3, h4, h5, h6, ul, ol, dd, p, address, pre, blockquote, table {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

/*------------------------------------*\
    #BASE
\*------------------------------------*/
/**
 * 1. Set the base element’s `font-size` to the value of your choosing. Set in
 *    ems, assuming a browser default of 16px.
 * 2. Work out the unitless `line-height` for your project based around your
 *    desired `line-height` (defined previously in pixels), and your project’s
 *    base font size.
 */
/* line 116, ../sass/partials/base/_typecsset.scss */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [2] */
}

/* line 130, ../sass/partials/base/_typecsset.scss */
body {
  margin: 0;
}

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/* line 137, ../sass/partials/base/_typecsset.scss */
h1 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

/* line 142, ../sass/partials/base/_typecsset.scss */
h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333;
}

/* line 147, ../sass/partials/base/_typecsset.scss */
h3 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
}

/* line 152, ../sass/partials/base/_typecsset.scss */
h4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 157, ../sass/partials/base/_typecsset.scss */
h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* line 162, ../sass/partials/base/_typecsset.scss */
h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
}

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
/* line 170, ../sass/partials/base/_typecsset.scss */
ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem;
}

/* line 175, ../sass/partials/base/_typecsset.scss */
li > ul,
li > ol {
  margin-bottom: 0;
}

/*------------------------------------*\
    #PARAGRAPHS
\*------------------------------------*/
/**
 * Not strictly a paragraph, but probably doesn’t need its own section.
 */
/*------------------------------------*\
    #CODE
\*------------------------------------*/
/**
 * 1. Fix an odd quirk whereby, without this, code blocks are rendered at a
 *    font-size smaller than 1em.
 */
/* line 216, ../sass/partials/base/_typecsset.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* [1] */
}

/*------------------------------------*\
    #QUOTES
\*------------------------------------*/
/**
 * 1. Hang the opening quote of the blockquote.
 */
/* line 229, ../sass/partials/base/_typecsset.scss */
blockquote {
  text-indent: -0.41em;
  /* [1] */
}

/**
 * Set up quote marks on quoting elements. This is very English-based, so we are
 * using “, ”, ‘, and ’ quotes.
 */
/* line 237, ../sass/partials/base/_typecsset.scss */
blockquote {
  quotes: "“" "”";
  margin-left: 48px;
  margin-left: 3rem;
}
/* line 244, ../sass/partials/base/_typecsset.scss */
blockquote p:before {
  content: "“";
  content: open-quote;
}
/* line 249, ../sass/partials/base/_typecsset.scss */
blockquote p:after {
  content: "";
  content: no-close-quote;
}
/* line 254, ../sass/partials/base/_typecsset.scss */
blockquote p:last-of-type:after {
  content: "”";
  content: close-quote;
}

/* line 263, ../sass/partials/base/_typecsset.scss */
q {
  quotes: "‘" "’" "“" "”";
  /**
   * If an element opens with an inline quote, let’s hang that.
   */
}
/* line 266, ../sass/partials/base/_typecsset.scss */
q:before {
  content: "‘";
  content: open-quote;
}
/* line 271, ../sass/partials/base/_typecsset.scss */
q:after {
  content: "’";
  content: close-quote;
}
/* line 276, ../sass/partials/base/_typecsset.scss */
q q:before {
  content: "“";
  content: open-quote;
}
/* line 281, ../sass/partials/base/_typecsset.scss */
q q:after {
  content: "”";
  content: close-quote;
}
/* line 289, ../sass/partials/base/_typecsset.scss */
q:first-child {
  display: inline-block;
  text-indent: -0.22em;
}

/*------------------------------------*\
    #TABLES
\*------------------------------------*/
/**
 * Crude table styles; tables are very difficult to keep on the baseline.
 */
/* line 302, ../sass/partials/base/_typecsset.scss */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 309, ../sass/partials/base/_typecsset.scss */
th,
td {
  padding: 12px;
}

/**
 * @file
 * Mixins.
 */
/*From seven theme.*/
/*From seven theme.*/
/*
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/
/**
* @file
* Utility classes.
*/
/* line 7, ../sass/partials/base/_utility.scss */
.reset {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 12, ../sass/partials/base/_utility.scss */
.zero-padd-top {
  padding-top: 0 !important;
}

/* line 16, ../sass/partials/base/_utility.scss */
.zero-padd-bottom {
  padding-bottom: 0 !important;
}

/* line 21, ../sass/partials/base/_utility.scss */
.zero-margin-top {
  margin-top: 0 !important;
}

/* line 25, ../sass/partials/base/_utility.scss */
.zero-margin-bottom {
  margin-bottom: 0 !important;
}

/* line 30, ../sass/partials/base/_utility.scss */
.mv1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 35, ../sass/partials/base/_utility.scss */
.mv2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 40, ../sass/partials/base/_utility.scss */
.mv3 {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* line 45, ../sass/partials/base/_utility.scss */
.mv4 {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 50, ../sass/partials/base/_utility.scss */
.mv5 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* line 56, ../sass/partials/base/_utility.scss */
.pad1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 61, ../sass/partials/base/_utility.scss */
.pad2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 66, ../sass/partials/base/_utility.scss */
.pad3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* line 71, ../sass/partials/base/_utility.scss */
.pad4 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 76, ../sass/partials/base/_utility.scss */
.pad5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* line 81, ../sass/partials/base/_utility.scss */
.underlined {
  border-bottom: 1px dotted #ccc;
  padding-bottom: .5rem;
}

/**
* @file
* Foundation overrides
*/
/* line 6, ../sass/partials/base/_overrides.scss */
html, body {
  max-width: 100%;
}

/* line 10, ../sass/partials/base/_overrides.scss */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  color: #222;
  background: #fff;
  word-wrap: break-word;
}
@media screen and (min-width: 400px) {
  /* line 10, ../sass/partials/base/_overrides.scss */
  body {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.71429;
  }
}

/* line 21, ../sass/partials/base/_overrides.scss */
.position-right {
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  transform: translateX(100%);
  overflow-y: auto;
}

/* line 30, ../sass/partials/base/_overrides.scss */
.off-canvas {
  padding: 3.5rem 0;
  background: #8bffc2;
  color: #00a44e;
}
/* line 34, ../sass/partials/base/_overrides.scss */
.off-canvas a {
  color: #27652e;
}
/* line 36, ../sass/partials/base/_overrides.scss */
.off-canvas a.is-active {
  color: #ccc !important;
  font-weight: 700;
}
/* line 41, ../sass/partials/base/_overrides.scss */
.off-canvas .close-button {
  top: 0;
  left: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
  color: #3d3d3d;
  width: 100%;
  text-align: right;
}
/* line 48, ../sass/partials/base/_overrides.scss */
.off-canvas .close-button > span {
  margin-right: 1rem;
}
/* line 51, ../sass/partials/base/_overrides.scss */
.off-canvas .close-button .cross {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
}
/* line 54, ../sass/partials/base/_overrides.scss */
.off-canvas .close-button:focus {
  outline: none;
}

/* line 61, ../sass/partials/base/_overrides.scss */
.adminimal-admin-toolbar .off-canvas {
  padding: 6rem 0;
}
/* line 64, ../sass/partials/base/_overrides.scss */
.adminimal-admin-toolbar .close-button {
  top: 2.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 69, ../sass/partials/base/_overrides.scss */
  .hide-for-tablets {
    display: none !important;
  }
}

/* line 76, ../sass/partials/base/_overrides.scss */
.hamburger-caret:after {
  content: "\00bb" !important;
  border: none !important;
  width: 1.5rem !important;
  height: 1rem;
  display: block;
  font-size: 16px;
  line-height: 0.4;
  margin-right: -13px;
}

/* line 88, ../sass/partials/base/_overrides.scss */
.menu-item--expanded ul {
  display: none;
}

/* line 92, ../sass/partials/base/_overrides.scss */
.marketviewWrpr {
  height: 29.375rem;
}

/* line 96, ../sass/partials/base/_overrides.scss */
.tabs {
  border: none;
}
/* line 98, ../sass/partials/base/_overrides.scss */
.tabs.primary {
  margin-bottom: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
/* line 104, ../sass/partials/base/_overrides.scss */
.tabs.primary li.is-active {
  background: #ccc;
}
/* line 109, ../sass/partials/base/_overrides.scss */
.tabs.primary a:hover {
  background: #eee !important;
}

/* line 116, ../sass/partials/base/_overrides.scss */
.tooltip {
  min-width: 10rem;
}

/* line 120, ../sass/partials/base/_overrides.scss */
small {
  font-size: 85%;
}

/* line 124, ../sass/partials/base/_overrides.scss */
.lead {
  font-size: 200%;
}

/* line 128, ../sass/partials/base/_overrides.scss */
input[type="checkbox"], input[type="radio"] {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 132, ../sass/partials/base/_overrides.scss */
html.js input.form-autocomplete,
.ajax-progress .throbber,
.ajax-progress.ajax-progress-throbber {
  display: none;
}

/* line 138, ../sass/partials/base/_overrides.scss */
p {
  font-size: inherit;
  margin-bottom: 0;
}

/* line 144, ../sass/partials/base/_overrides.scss */
.node p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
/* line 150, ../sass/partials/base/_overrides.scss */
.node img.align-right {
  margin-left: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
/* line 155, ../sass/partials/base/_overrides.scss */
.node img.align-left {
  margin-right: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* line 163, ../sass/partials/base/_overrides.scss */
.views-infinite-scroll-content-wrapper {
  width: 100%;
}

/**
* @file
* Node Styling
*/
/* line 6, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 769px) {
  /* line 8, ../sass/partials/modules/_node.scss */
  .node--view-mode-teaser .article__media {
    margin-right: -10px;
  }
}
/* line 14, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser .article__tease .node__title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
/* line 20, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser .article__tease .node__title a:hover {
  color: #222;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  /* line 14, ../sass/partials/modules/_node.scss */
  .node--view-mode-teaser .article__tease .node__title {
    font-size: 20px;
  }
}
/* line 29, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser .article__tease .node__meta {
  margin: .25rem 0;
}
/* line 31, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser .article__tease .node__meta a {
  color: #00a44e;
  font-weight: 400;
}
/* line 36, ../sass/partials/modules/_node.scss */
.node--view-mode-teaser .article__tease .field--name-field-summary {
  line-height: 1.5;
}

/* line 2, ../sass/partials/modules/_views.scss */
.row.override {
  margin-left: 0;
  margin-right: 0;
}

/* line 9, ../sass/partials/modules/_views.scss */
.override .row.view-content {
  margin-left: 0;
}

/* line 14, ../sass/partials/modules/_views.scss */
.view-header {
  width: 100%;
}

/* line 19, ../sass/partials/modules/_views.scss */
.row.view-content {
  width: 100%;
}

/* line 26, ../sass/partials/modules/_views.scss */
.views-row a {
  color: #222;
  font-weight: 600;
}

/**
* @file
* Search style.
*/
/* line 7, ../sass/partials/modules/_search.scss */
#navbar .search-block-form {
  position: relative;
  text-align: right;
  z-index: 1;
  bottom: -2.5rem;
}
/* line 12, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form {
  position: absolute;
  right: 0;
  top: -40px;
  height: 48px;
}
/* line 17, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form .form-type-search {
  display: inline-block;
  width: 0;
  margin: 0;
  height: 2rem;
  margin-top: 2px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* line 24, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form .form-type-search input[type='search'] {
  display: none;
  margin: 0;
  background: #8bffc2;
  width: 100%;
  position: relative;
  top: 0;
  right: 2.5rem;
  border: 1px solid #25ff8c;
  border-right: none;
  border-radius: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* line 36, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form .form-type-search input[type='search']::-webkit-input-placeholder, #navbar .search-block-form #search-block-form .form-type-search input[type='search']:-moz-placeholder, #navbar .search-block-form #search-block-form .form-type-search input[type='search']::-moz-placeholder, #navbar .search-block-form #search-block-form .form-type-search input[type='search']:-ms-input-placeholder {
  color: #000 !important;
}
/* line 41, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form input[type='submit'] {
  position: absolute;
  top: 2px;
  right: 0;
  display: inline-block;
  background: url("images/sprite.png") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  background-position: -4px -62px;
  float: right;
  background-color: transparent;
  padding: 1rem;
  height: 39px;
  width: 40px;
  border-radius: 0;
}
/* line 53, ../sass/partials/modules/_search.scss */
#navbar .search-block-form #search-block-form input[type='submit']:focus {
  outline: none;
}
/* line 60, ../sass/partials/modules/_search.scss */
#navbar.search-expanded .menu--main {
  opacity: .4;
}
/* line 63, ../sass/partials/modules/_search.scss */
#navbar.search-expanded .search-block-form {
  width: 100%;
}
/* line 66, ../sass/partials/modules/_search.scss */
#navbar.search-expanded #search-block-form {
  width: 100%;
}
/* line 68, ../sass/partials/modules/_search.scss */
#navbar.search-expanded #search-block-form .form-type-search {
  width: 50%;
}
/* line 70, ../sass/partials/modules/_search.scss */
#navbar.search-expanded #search-block-form .form-type-search input[type='search'] {
  display: block;
}
/* line 74, ../sass/partials/modules/_search.scss */
#navbar.search-expanded #search-block-form input[type='submit'] {
  background-position: -4px -27px !important;
  background-color: #25ff8c;
  padding: 1rem;
  height: 39px;
  width: 40px;
}

/* line 86, ../sass/partials/modules/_search.scss */
.off-canvas .search-block-form {
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #00a44e;
  border-top: 2px solid #00a44e;
  background: #58ffa7;
}
/* line 93, ../sass/partials/modules/_search.scss */
.off-canvas #search-block-form {
  position: relative;
}
/* line 95, ../sass/partials/modules/_search.scss */
.off-canvas #search-block-form input[type='search'] {
  width: 86%;
  margin: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #00a44e;
  border-right: none;
}
/* line 103, ../sass/partials/modules/_search.scss */
.off-canvas #search-block-form input[type='submit'] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: uppercase;
  display: inline-block;
  background: url("images/sprite.png") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  background-position: 6px -55px;
  width: 50px;
  height: 39px;
  float: right;
  background-color: #00a44e;
  padding: 18px;
  background-size: 40px;
}

/* line 124, ../sass/partials/modules/_search.scss */
.path-search .solr-search-filters {
  border: 1px solid #ccc;
  margin-right: 2rem;
  overflow: auto;
}
/* line 128, ../sass/partials/modules/_search.scss */
.path-search .solr-search-filters a {
  color: #222;
}
/* line 131, ../sass/partials/modules/_search.scss */
.path-search .solr-search-filters li {
  margin-bottom: .5rem;
}
/* line 133, ../sass/partials/modules/_search.scss */
.path-search .solr-search-filters li.facet-item--collapsed:before {
  content: "\00BB \0020";
}
/* line 139, ../sass/partials/modules/_search.scss */
.path-search .solr-search-page .form-item, .path-search .solr-search-page .form-actions {
  display: inline;
  margin: 0;
}
/* line 143, ../sass/partials/modules/_search.scss */
.path-search .solr-search-page .form-item {
  width: 85%;
}
/* line 146, ../sass/partials/modules/_search.scss */
.path-search .solr-search-page input[type='text'] {
  border-radius: 0;
}
/* line 149, ../sass/partials/modules/_search.scss */
.path-search .solr-search-page input[type='submit'] {
  background-color: #00a44e;
  text-indent: 0;
  text-transform: uppercase;
  padding: 12px 1rem;
  border-radius: 0;
  border-color: #00a44e;
}

/* line 3, ../sass/partials/modules/_blocks.scss */
.block-system-branding-block {
  margin-bottom: 0 !important;
}

/**
 * @file
 * User page.
 */
/* line 8, ../sass/partials/modules/_user.scss */
.profile .author-info .form-item {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 13, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link a {
  margin-right: .5rem;
  width: 2.3rem;
  height: 2.2rem;
  font-size: 0;
  display: inline-block;
  line-height: 2rem;
  padding: 0 5px;
  border: 1px solid #999;
  vertical-align: top;
  border-radius: 3px;
  color: #999;
  font-weight: 700;
}
/* line 26, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link a:hover {
  border-color: #00a44e;
}
/* line 28, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link a:hover:before {
  color: #00a44e;
}
/* line 32, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link a:before {
  font-family: Flaticon;
  font-size: 1.5rem;
  font-weight: 400;
  margin-right: .5rem;
  color: #999;
}
/* line 41, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.email a {
  font-size: 14px;
  width: 6rem;
  color: #999;
}
/* line 45, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.email a:hover {
  color: #00a44e;
}
/* line 48, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.email a span {
  position: relative;
  top: -3px;
}
/* line 52, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.email a:before {
  content: '\f100';
}
/* line 59, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.twitter a:before {
  content: "\f107";
}
/* line 66, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.facebook a:before {
  content: "\f108";
}
/* line 73, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.linkedin a:before {
  content: "\f104";
}
/* line 80, ../sass/partials/modules/_user.scss */
.profile .author-info .contact .contact-link.google a:before {
  content: "\f105";
}

/* line 91, ../sass/partials/modules/_user.scss */
.user-contents .block-title {
  border-bottom: 1px dotted #ccc;
}
/* line 93, ../sass/partials/modules/_user.scss */
.user-contents .block-title * {
  display: inline;
}
/* line 97, ../sass/partials/modules/_user.scss */
.user-contents span {
  font-weight: 700;
  color: #000;
}

/* line 2, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default {
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 40.625rem;
}
/* line 7, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views_slideshow_cycle_teaser_section {
  width: 100% !important;
}
/* line 9, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views_slideshow_cycle_teaser_section .views_slideshow_cycle_slide {
  width: 100% !important;
}
/* line 13, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom {
  margin: 1rem 10px .5rem 20px;
}
/* line 16, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .widget_pager .views_slideshow_pager_field_item {
  display: inline;
  height: 75px !important;
  cursor: pointer;
}
/* line 20, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .widget_pager .views_slideshow_pager_field_item:focus {
  outline: none;
}
/* line 24, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .widget_pager .views_slideshow_pager_field_item {
  margin: 0 .25rem;
}
/* line 29, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom {
  position: absolute;
  bottom: -0.5rem;
  width: 38.4375rem;
}
@media screen and (max-width: 550px) {
  /* line 29, ../sass/partials/modules/_slideshow.scss */
  .view-slideshow .skin-default .views-slideshow-controls-bottom {
    display: none;
  }
}
/* line 36, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper {
  position: relative;
}
/* line 38, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow {
  position: absolute;
  top: 0;
  height: 65px;
  width: 1.5rem;
  z-index: 100;
  background: #00a44e;
  font-size: 0;
  border-radius: 0;
}
/* line 47, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow.jc-prev {
  left: 0;
}
/* line 49, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow.jc-prev:before {
  content: '\02039';
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  line-height: 0.5;
}
/* line 57, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow.jc-next {
  right: 0;
}
/* line 59, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow.jc-next:after {
  content: '\0203A';
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  line-height: 0.5;
}
/* line 67, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jc-arrow:focus {
  outline: none;
}
/* line 71, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-bottom .jc-wrapper .jcarousellite-wrapper {
  left: 1.625rem !important;
  z-index: 200 !important;
}
/* line 77, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top {
  margin: 20px 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
/* line 81, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .farmjournal-social-sharing {
  text-align: left;
}
/* line 83, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .farmjournal-social-sharing a {
  line-height: .5;
}
/* line 88, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .views_slideshow_controls_text span {
  position: absolute;
}
/* line 90, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .views_slideshow_controls_text span.views_slideshow_controls_text_previous {
  left: -10px;
}
/* line 93, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .views_slideshow_controls_text span.views_slideshow_controls_text_next {
  right: 10px;
}
/* line 98, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .views_slideshow_slide_counter {
  font-weight: 700;
  text-align: center;
}
/* line 102, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .skin-default .views-slideshow-controls-top .slide-controls {
  line-height: 2.5;
  position: relative;
}
@media screen and (min-width: 769px) {
  /* line 107, ../sass/partials/modules/_slideshow.scss */
  .view-slideshow .skin-default .slideshow-image {
    flex: 0 0 63%;
    max-width: 63%;
  }
}
@media screen and (min-width: 769px) {
  /* line 113, ../sass/partials/modules/_slideshow.scss */
  .view-slideshow .skin-default .slideshow-caption {
    flex: 0 0 37%;
    max-width: 37%;
  }
}
/* line 121, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .attachment p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
/* line 126, ../sass/partials/modules/_slideshow.scss */
.view-slideshow .attachment .views-slideshow-controls-bottom {
  visibility: hidden;
  opacity: 0;
}

/**
* @file
* Layout styling.
*/
/* line 7, ../sass/partials/layout/_layout.scss */
header .hamburger {
  display: inline-block;
  background: url("images/sprite.png") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  background-position: -10px -0px;
  width: 24px;
  height: 24px;
  float: right;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1000px) {
  /* line 16, ../sass/partials/layout/_layout.scss */
  header .site--header {
    width: 90%;
    float: left;
  }
}

/* line 23, ../sass/partials/layout/_layout.scss */
footer {
  background: #fafafa;
}
/* line 25, ../sass/partials/layout/_layout.scss */
footer .site-footer__top {
  background: #ccc;
}
/* line 28, ../sass/partials/layout/_layout.scss */
footer .site-footer {
  background: #eee;
}

/* line 1, ../sass/partials/design/_design.scss */
.block-title {
  margin-bottom: 1rem;
  color: #000;
  font-weight: 700;
}
/* line 5, ../sass/partials/design/_design.scss */
.block-title .more-link {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  margin-left: 1rem;
}
/* line 9, ../sass/partials/design/_design.scss */
.block-title .more-link:after {
  content: "\00bb";
}
/* line 13, ../sass/partials/design/_design.scss */
.block-title a {
  font-weight: 400 !important;
  color: #00a44e;
}
/* line 16, ../sass/partials/design/_design.scss */
.block-title a:after {
  content: "\00bb";
  font-size: 20px;
  color: #999;
  margin-left: 0.625rem;
}

/* line 25, ../sass/partials/design/_design.scss */
.more-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  margin-left: 1rem;
  color: #999 !important;
}
/* line 29, ../sass/partials/design/_design.scss */
.more-link:after {
  content: "\00bb";
  margin-left: 0.625rem;
}

/* line 35, ../sass/partials/design/_design.scss */
.page-title {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  color: #000;
}

/* line 42, ../sass/partials/design/_design.scss */
.bordered {
  border: 1px solid #ccc;
  border-radius: 5px;
}
/* line 45, ../sass/partials/design/_design.scss */
.bordered .block-title {
  padding: 0.625rem;
  border-bottom: 1px solid #ccc;
}

/* line 53, ../sass/partials/design/_design.scss */
.breadcrumb li a {
  font-weight: 700;
  color: #999;
}

/* line 61, ../sass/partials/design/_design.scss */
.scroller ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
/* line 66, ../sass/partials/design/_design.scss */
.scroller ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  height: 10rem;
  background-color: #36454f;
}
/* line 72, ../sass/partials/design/_design.scss */
.scroller ::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.3);
}

/**
* @file
* Navigation styling
*/
/* line 6, ../sass/partials/navigation/_navigation.scss */
.menu {
  margin-left: 0 !important;
}

/* line 11, ../sass/partials/navigation/_navigation.scss */
.region-secondary-menu .menu--account {
  float: right;
}
/* line 13, ../sass/partials/navigation/_navigation.scss */
.region-secondary-menu .menu--account a {
  color: #3d3d3d;
}

/* line 21, ../sass/partials/navigation/_navigation.scss */
.menu--account .menu-item a {
  padding: .25rem .5rem;
  margin-right: .25rem;
  border-right: 1px solid #ccc;
  font-weight: 400;
  line-height: 2.5;
}
/* line 29, ../sass/partials/navigation/_navigation.scss */
.menu--account .menu-item:last-child a {
  border-right: none;
}

/* line 36, ../sass/partials/navigation/_navigation.scss */
#navbar {
  background: #00a44e;
  position: relative;
  top: 0;
}
/* line 40, ../sass/partials/navigation/_navigation.scss */
#navbar > .row {
  position: relative;
}
/* line 43, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main {
  display: inline-block;
}
/* line 46, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 48, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item a {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  line-height: 3;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 0 0.75rem;
}
/* line 58, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item.is-active > a, #navbar .menu--main .menu .menu-item:hover > a {
  background: #27652e;
}
/* line 62, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item.menu-item--collapsed {
  list-style: none;
}
/* line 65, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item.menu-item--expanded {
  list-style: none;
}
/* line 67, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item.menu-item--expanded > a {
  padding-right: 1.5rem;
}
/* line 69, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .menu-item.menu-item--expanded > a:after {
  position: absolute;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border: 4px inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent;
  right: 10px;
  margin-top: -2px;
}
/* line 86, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .submenu {
  border-top: none;
  padding: 0.625rem 0;
  border-bottom: 5px solid #00a44e;
  min-width: 200px;
}
/* line 91, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .submenu a {
  color: #1f191a;
  text-transform: capitalize;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  line-height: 1.2;
  font-weight: 600;
  padding: .5rem .75rem;
}
/* line 98, ../sass/partials/navigation/_navigation.scss */
#navbar .menu--main .menu .submenu a:hover {
  color: #000;
  background: #fafafa;
}
/* line 106, ../sass/partials/navigation/_navigation.scss */
#navbar.sticky {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 10;
}

/* line 116, ../sass/partials/navigation/_navigation.scss */
.off-canvas .menu--main:before {
  content: "Menu";
  border-bottom: 1px solid #ccc;
  width: 100%;
  display: inline-block;
  padding: .25rem 1rem .5rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  color: #3d3d3d;
  font-weight: bold;
}
/* line 127, ../sass/partials/navigation/_navigation.scss */
.off-canvas .menu--main a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
  padding: .25rem 1rem;
  border-bottom: 1px solid #ccc;
}
/* line 132, ../sass/partials/navigation/_navigation.scss */
.off-canvas .menu--main .is-drilldown-submenu-parent > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #00a44e;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

/* line 149, ../sass/partials/navigation/_navigation.scss */
.navbar-fixed {
  margin-bottom: 4.25rem !important;
}

/* line 153, ../sass/partials/navigation/_navigation.scss */
.block-local-tasks-block {
  position: relative;
  left: 0;
}
@media screen and (min-width: 1200px) {
  /* line 153, ../sass/partials/navigation/_navigation.scss */
  .block-local-tasks-block {
    position: absolute;
    left: 1rem;
  }
  /* line 158, ../sass/partials/navigation/_navigation.scss */
  .block-local-tasks-block .tabs li {
    display: block !important;
    margin: 0;
  }
}
/* line 167, ../sass/partials/navigation/_navigation.scss */
.block-local-tasks-block .tabs li {
  display: inline-block;
}

/**
* @file
* Typography
*/
/* line 6, ../sass/partials/typography/_typography.scss */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

/* line 11, ../sass/partials/typography/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #3d3d3d;
  letter-spacing: normal;
}

/* line 18, ../sass/partials/typography/_typography.scss */
h1 {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 769px) {
  /* line 18, ../sass/partials/typography/_typography.scss */
  h1 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

/* line 25, ../sass/partials/typography/_typography.scss */
h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 769px) {
  /* line 25, ../sass/partials/typography/_typography.scss */
  h2 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.09091;
  }
}

/* line 32, ../sass/partials/typography/_typography.scss */
h3 {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  /* line 32, ../sass/partials/typography/_typography.scss */
  h3 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.33333;
  }
}

/* line 39, ../sass/partials/typography/_typography.scss */
h4 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* line 43, ../sass/partials/typography/_typography.scss */
h5 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* line 50, ../sass/partials/typography/_typography.scss */
h6 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

/* line 56, ../sass/partials/typography/_typography.scss */
p.lead {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/* line 60, ../sass/partials/typography/_typography.scss */
.content ul {
  list-style-position: inside;
  list-style-type: disc;
}

/* line 64, ../sass/partials/typography/_typography.scss */
.content ol {
  list-style-position: inside;
  list-style-type: decimal;
}

/* line 68, ../sass/partials/typography/_typography.scss */
strong, b {
  font-weight: 700;
}

/* line 72, ../sass/partials/typography/_typography.scss */
em, i, q {
  font-style: italic;
}

/* line 76, ../sass/partials/typography/_typography.scss */
blockquote {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* line 80, ../sass/partials/typography/_typography.scss */
hr {
  background: none;
  height: 1px;
  border: 1px solid #36454f;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/* line 87, ../sass/partials/typography/_typography.scss */
blockquote {
  font-style: italic;
  margin: 1.5rem 0;
  padding: 0.5rem 1rem;
  color: #36454f;
}
/* line 92, ../sass/partials/typography/_typography.scss */
blockquote:before {
  content: "\201C";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333;
  margin-right: 0.2rem;
  vertical-align: -0.4rem;
}
/* line 98, ../sass/partials/typography/_typography.scss */
blockquote:after {
  content: "\201D";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333;
  vertical-align: -0.45em;
}
/* line 103, ../sass/partials/typography/_typography.scss */
blockquote p {
  padding: 0 0 0 1rem;
  margin-bottom: .5rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
/* line 107, ../sass/partials/typography/_typography.scss */
blockquote p:last-child {
  margin-bottom: 0;
}
/* line 110, ../sass/partials/typography/_typography.scss */
blockquote p:before, blockquote p:after {
  content: '';
}

/* line 116, ../sass/partials/typography/_typography.scss */
a {
  text-decoration: none;
  color: #00a44e;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
/* line 120, ../sass/partials/typography/_typography.scss */
a:hover, a:focus {
  color: #27652e;
}
/* line 123, ../sass/partials/typography/_typography.scss */
a.button {
  color: #fff;
  padding: 1rem;
  border: 1px solid #00a44e;
  border-radius: 0;
  background: #00a44e;
}
/* line 129, ../sass/partials/typography/_typography.scss */
a.button:hover {
  background: #27652e;
}

/* line 136, ../sass/partials/typography/_typography.scss */
figcaption {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4;
  line-height: 1.4;
}

/* line 141, ../sass/partials/typography/_typography.scss */
.muted {
  color: #999;
}
/* line 143, ../sass/partials/typography/_typography.scss */
.muted a {
  color: #999;
}

/* line 148, ../sass/partials/typography/_typography.scss */
.small {
  font-size: 85%;
  line-height: 1.2;
}

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