@charset "UTF-8";
/* Media Queries
*********************************** */
/*
  I am incrementing min breakpoints by 0.0625rem (1px as the REM size is set at 16px)
  Please see _sitewide_typography.scss !
*/
/* Set Initial grid values
*********************************** */
/* HOW TO USE: Effgrid can be called like this:

@include grid( $property, $num_cols, $num_guts, $num_cols_parent, $grid:desktop );

	What to these parameters mean?

	$property : this is the CSS property you wish to insert, for example 'width'
	$num_cols : the number of columns you want to be included in the percentage generated for the property
	$num_guts : the number of gutters you want to be included in the percentage generated for the property
	$num_cols_parent : the number of grid columns that the elements parent is occupying
	$grid : leave blank for desktop, inside media queries for tablet sizes, specify 'tablet'


	For example:

	// Assume the container is 12 columns
	.full_width_container {


		// Item we are going to set as 6 columns wide
		.item_we_would_like_to_manipulate {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}
		}
	}


	A further example, where the container is 6 columns:
	.full_width_container {

		.six_column_container {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}

			// Item we are going to set as 3 columns wide
			.item_we_would_like_to_manipulate {
				@include grid(width,3,0,6); // compiles to width: X%; item will be 3 columns of 12 columns grid
			}
		}
	}

*/
/* Generate percentage grid values
*********************************** */
section.full_width__grid {
  display: none;
  background-color: transparent !important;
}
.show_grid section.full_width__grid {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.show_grid section.full_width__grid,
.show_grid section.full_width__grid .width_holder_inner,
.show_grid section.full_width__grid div {
  height: 100%;
}
.show_grid section.full_width__grid .col,
.show_grid section.full_width__grid .gutter {
  display: block;
  overflow: hidden;
  float: left;
  margin: 0;
}
.show_grid section.full_width__grid .col {
  width: 6.2636562272%;
  background-color: rgba(61, 58, 125, 0.2);
}
.show_grid section.full_width__grid .gutter {
  width: 2.2578295703%;
  background-color: rgba(61, 58, 125, 0.1);
}
@media only screen and (max-width: 48rem) {
  .show_grid section.full_width__grid .col {
    width: 4.6680071288%;
  }
  .show_grid section.full_width__grid .gutter {
    width: 3.9985376776%;
  }
}

/* 	Fonts
*********************************** */
/*	Colours
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*	Assets – JPG Graphics
************************************* */
/*  Show/hide mixins
*********************************** */
/*  Display mixins
*********************************** */
/*  Typography mixins
*********************************** */
/*  'Paragraph style' Mixins
*********************************** */
/*  Layout mixins
*********************************** */
/*  Normalize

    This file is a fork of these original sources:
    - normalize.css v2.1.2 | MIT License | git.io/normalize
    - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-scss
*********************************** */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

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

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Arial;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

a:-webkit-any-link {
  text-decoration: none;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: rhythm(1) 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: rhythm(1) 20px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
}

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

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

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

/* Address differences between Firefox and other browsers. */
hr {
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: rhythm(1) 0;
}

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

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: Arial;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "“" "”" "‘" "’";
}

/* 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;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: rhythm(1) 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 20px;
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 20px;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
}
.lt-ie9 img {
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

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

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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. Remove 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;
}

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* remove some webkit styling of buttons and fields (on tablets and phones) */
input {
  -webkit-border-radius: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
}

.search-form .search-advanced {
  display: none;
}

.feed-icon {
  display: none;
}

.masonry_gutter_sizer,
.masonry_grid_sizer {
  display: block;
}

.visually-hidden,
.element-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.visually-hidden--focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.visually-hidden--focusable:active, .visually-hidden--focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

.accessible_hide {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/*	Webfonts
		- if the project requires selfhosted webfonts,
		place @font-face rules here
*********************************** */
/*  Wrapper layouts
    Site layout and structure
*********************************** */
html {
  width: 100%;
  overflow-y: scroll;
}

body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  min-width: 320px;
  background-color: white;
}
body.logged-in {
  overflow: hidden;
}

.page-standard {
  position: relative;
  overflow: hidden;
  background-color: white;
  min-height: 100vh;
  z-index: 2;
}

/* Site layout – Width holders
******************************** */
section.full_width {
  display: block;
  width: 100%;
  background-color: transparent;
}
section.full_width .section_inner {
  max-width: 85.8125rem;
  margin: 0 auto;
  padding: 0 2%;
  padding-left: 3%;
  padding-right: 3%;
}
@media only screen and (max-width: 43.5rem) {
  section.full_width .section_inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 34.5rem) {
  section.full_width .section_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width .section_inner {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
}

/*  Site layout – Width holders
    Particular width holders
******************************** */
/* Sitewide Typography
************************************* */
html {
  /*
    I am setting REM size at default 16,
    (not allowing user to change font-size in their browser settings)
    because of the many issues arising from using flexible sized root EMs with Media Queries

    Media queries, even when set with REMs always come down to PX
    and allowing the root em size to change impacts the Media Query ranges.
    It is not possible to have seamless media query ranges on all devices with a flexible REM size.

    However I am still using REMs across the project because they are nice units to work with.
  */
  font-size: 16px;
}

body, input, textarea, select {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  color: #000000;
  letter-spacing: 0;
}
@media only screen and (max-width: 48rem) {
  body, input, textarea, select {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  body, input, textarea, select {
    font-size: 1.25rem;
  }
}

#admin-menu, #admin-menu ul, #admin-menu ol, #admin-menu li {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.1em;
}

a, a:link {
  color: #aa8f00;
  text-decoration: none;
}
p a {
  border-bottom: 0.0625rem solid #aa8f00;
}
p a:hover, p a:focus {
  color: #c4a400;
}

p {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 1em;
}
@media only screen and (max-width: 48rem) {
  p {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  p {
    font-size: 1.25rem;
  }
}

h1 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.275em;
  font-style: normal;
  font-size: 3.125rem;
  margin: 0;
  text-align: center;
  display: block;
  max-width: 43.5625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.45em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 79.5rem) {
  h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  h1 {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  h1 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  h1 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  h1 {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  h1 {
    font-size: 1.875rem;
  }
}
body.front h1 {
  display: none;
}

h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2em;
  font-style: normal;
  font-size: 2.25rem;
  margin-top: 1.3em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 79.5rem) {
  h2 {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  h2 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  h2 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  h2 {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 48rem) {
  h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  h3 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  h3 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  h3 {
    font-size: 1.3125rem;
  }
}

h4 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 39rem) {
  h4 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  h4 {
    font-size: 1.1875rem;
  }
}

.field--name-field-introduction {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
  color: #aa8f00;
  text-align: center;
  width: 65.9140568099%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.85em;
}
@media only screen and (max-width: 79.5rem) {
  .field--name-field-introduction {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .field--name-field-introduction {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .field--name-field-introduction {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  .field--name-field-introduction {
    font-size: 1.1875rem;
  }
}
@media only screen and (max-width: 70.5rem) {
  .field--name-field-introduction {
    width: 82.957028405%;
  }
}
@media only screen and (max-width: 48rem) {
  .field--name-field-introduction {
    width: 87.4726875455%;
  }
}
@media only screen and (max-width: 30rem) {
  .field--name-field-introduction {
    width: 100%;
  }
}

.field--name-field-sub-title {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2em;
  font-style: normal;
  font-size: 2.25rem;
  margin-top: 1.3em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 79.5rem) {
  .field--name-field-sub-title {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .field--name-field-sub-title {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  .field--name-field-sub-title {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .field--name-field-sub-title {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .field--name-field-sub-title {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  .field--name-field-sub-title {
    font-size: 1.5rem;
  }
}

/*  Generic block layouts:
		(generic responsive layouts that can be used by different elements)
************************************* */
.view-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}

.view-resources-results {
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media only screen and (min-width: 48.0625rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    margin-right: 2.2578295703%;
    padding-bottom: 2.2578295703%;
  }
}
@media only screen and (min-width: 66.0625rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    width: 23.3066278223%;
  }
  #search_box > article:nth-child(4n+4),
.views-row-view-method--none:nth-child(4n+4),
.views-row-view-method-listing_resource:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 48.0625rem) and (max-width: 66rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    width: 31.8281136198%;
  }
  #search_box > article:nth-child(3n+3),
.views-row-view-method--none:nth-child(3n+3),
.views-row-view-method-listing_resource:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 48rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    width: 30.6676415482%;
  }
}
@media only screen and (min-width: 34.5625rem) and (max-width: 48rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    width: 48.0007311612%;
    margin-right: 3.9985376776%;
    padding-bottom: 3.9985376776%;
  }
  #search_box > article:nth-child(2n+2),
.views-row-view-method--none:nth-child(2n+2),
.views-row-view-method-listing_resource:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 34.5rem) {
  #search_box > article,
.views-row-view-method--none,
.views-row-view-method-listing_resource {
    width: 100%;
    margin-right: 0;
    padding-bottom: 6%;
  }
}

/* Media Queries
*********************************** */
/*
  I am incrementing min breakpoints by 0.0625rem (1px as the REM size is set at 16px)
  Please see _sitewide_typography.scss !
*/
/* 	Fonts
*********************************** */
/*	Colours
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*	Assets – JPG Graphics
************************************* */
/*  Show/hide mixins
*********************************** */
/*  Display mixins
*********************************** */
/*  Typography mixins
*********************************** */
/*  'Paragraph style' Mixins
*********************************** */
/*	Paragraphs
************************************* */
.field--name-body p,
.field--name-body li,
.cke_editable p,
.cke_editable li {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  color: #000000;
}
@media only screen and (max-width: 48rem) {
  .field--name-body p,
.field--name-body li,
.cke_editable p,
.cke_editable li {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .field--name-body p,
.field--name-body li,
.cke_editable p,
.cke_editable li {
    font-size: 1.25rem;
  }
}
.field--name-body p em,
.field--name-body li em,
.cke_editable p em,
.cke_editable li em {
  font-style: italic;
}
.field--name-body p u,
.field--name-body li u,
.cke_editable p u,
.cke_editable li u {
  text-decoration: underline;
}
.field--name-body p strong,
.field--name-body li strong,
.cke_editable p strong,
.cke_editable li strong {
  font-weight: 700;
}
.field--name-body p a,
.field--name-body p a:link,
.field--name-body li a,
.field--name-body li a:link,
.cke_editable p a,
.cke_editable p a:link,
.cke_editable li a,
.cke_editable li a:link {
  color: #aa8f00;
  text-decoration: none;
}
.field--name-body p a:hover,
.field--name-body p a:link:hover,
.field--name-body li a:hover,
.field--name-body li a:link:hover,
.cke_editable p a:hover,
.cke_editable p a:link:hover,
.cke_editable li a:hover,
.cke_editable li a:link:hover {
  opacity: 0.7;
}
.field--name-body ul,
.cke_editable ul {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  .field--name-body ul,
.cke_editable ul {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .field--name-body ul,
.cke_editable ul {
    font-size: 1.25rem;
  }
}

p.intro_large, .cke_editable p.intro_large {
  -webkit-font-smoothing: antialiased;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15em;
  font-style: normal;
  color: #aa8f00;
}
@media only screen and (max-width: 61.5rem) {
  p.intro_large, .cke_editable p.intro_large {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 48rem) {
  p.intro_large, .cke_editable p.intro_large {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  p.intro_large, .cke_editable p.intro_large {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  p.intro_large, .cke_editable p.intro_large {
    font-size: 1.5rem;
  }
}

p.subtitle, .cke_editable p.subtitle {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
  color: #aa8f00;
}
@media only screen and (max-width: 79.5rem) {
  p.subtitle, .cke_editable p.subtitle {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  p.subtitle, .cke_editable p.subtitle {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  p.subtitle, .cke_editable p.subtitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  p.subtitle, .cke_editable p.subtitle {
    font-size: 1.1875rem;
  }
}

/*  Headings
************************************* */
article.entity--type-node .field--name-body h2, .cke_editable h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2em;
  font-style: normal;
  font-size: 2.25rem;
  margin-top: 1.3em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 79.5rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  article.entity--type-node .field--name-body h2, .cke_editable h2 {
    font-size: 1.5rem;
  }
}
article.entity--type-node .field--name-body h2 strong, .cke_editable h2 strong {
  font-weight: 600;
}
article.entity--type-node .field--name-body h2 em, .cke_editable h2 em {
  font-style: normal;
}
article.entity--type-node .field--name-body h2 a, .cke_editable h2 a {
  color: #aa8f00;
  text-decoration: none;
}

article.entity--type-node .field--name-body h3,
h3 .cke_editable {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 48rem) {
  article.entity--type-node .field--name-body h3,
h3 .cke_editable {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  article.entity--type-node .field--name-body h3,
h3 .cke_editable {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  article.entity--type-node .field--name-body h3,
h3 .cke_editable {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  article.entity--type-node .field--name-body h3,
h3 .cke_editable {
    font-size: 1.3125rem;
  }
}
article.entity--type-node .field--name-body h3 strong,
h3 .cke_editable strong {
  font-weight: 700;
}
article.entity--type-node .field--name-body h3 em,
h3 .cke_editable em {
  font-style: normal;
}
article.entity--type-node .field--name-body h3 u,
h3 .cke_editable u {
  text-decoration: none;
}
article.entity--type-node .field--name-body h3 a,
h3 .cke_editable a {
  color: #000000;
  text-decoration: none;
}

article.entity--type-node .field--name-body h4,
h4 .cke_editable {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 39rem) {
  article.entity--type-node .field--name-body h4,
h4 .cke_editable {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  article.entity--type-node .field--name-body h4,
h4 .cke_editable {
    font-size: 1.1875rem;
  }
}
article.entity--type-node .field--name-body h4 strong,
h4 .cke_editable strong {
  font-weight: 700;
}
article.entity--type-node .field--name-body h4 em,
h4 .cke_editable em {
  font-style: normal;
}
article.entity--type-node .field--name-body h4 u,
h4 .cke_editable u {
  text-decoration: none;
}
article.entity--type-node .field--name-body h4 a,
h4 .cke_editable a {
  color: #000000;
  text-decoration: none;
}

.cke_editable .pull_quote, .content .field--name-body .pull_quote {
  -webkit-font-smoothing: antialiased;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15em;
  font-style: italic;
  color: #aa8f00;
  padding-left: 1em;
  border-left: 0.28em solid #aa8f00;
}
@media only screen and (max-width: 61.5rem) {
  .cke_editable .pull_quote, .content .field--name-body .pull_quote {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 48rem) {
  .cke_editable .pull_quote, .content .field--name-body .pull_quote {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  .cke_editable .pull_quote, .content .field--name-body .pull_quote {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  .cke_editable .pull_quote, .content .field--name-body .pull_quote {
    font-size: 1.5rem;
  }
}
.cke_editable .pull_quote strong, .content .field--name-body .pull_quote strong {
  display: block;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin-top: 0.65em;
}
@media only screen and (max-width: 48rem) {
  .cke_editable .pull_quote strong, .content .field--name-body .pull_quote strong {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .cke_editable .pull_quote strong, .content .field--name-body .pull_quote strong {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .cke_editable .pull_quote, .content .field--name-body .pull_quote {
    padding-left: 0.5em;
    border-left-width: 0.142em;
  }
}

.pull_quote_left,
.pull_quote_right {
  width: 37%;
}

.pull_quote_left {
  float: left;
  clear: right;
  margin-right: 1em;
}

.pull_quote_right {
  float: right;
  clear: right;
  margin-left: 1em;
  margin-right: 22.2%;
}
@media only screen and (max-width: 79.5rem) {
  .pull_quote_right {
    margin-right: 10.3%;
  }
}
@media only screen and (max-width: 66rem) {
  .pull_quote_right {
    margin-right: 0;
  }
}

@media only screen and (max-width: 34.5rem) {
  .pull_quote_left,
.pull_quote_right {
    box-sizing: border-box;
    width: 100%;
    float: none;
    clear: none;
  }

  .pull_quote_left {
    margin-right: 0;
  }

  .pull_quote_right {
    margin-left: 0;
  }
}
.call_to_action {
  display: inline-block;
  color: #aa8f00;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  padding-top: 0.575em;
  padding-bottom: 0.575em;
  padding-left: 1.65em;
  padding-right: 1.65em;
  border: 0.0625rem solid #aa8f00;
  border-radius: 2em;
}
.call_to_action:hover, .call_to_action:focus {
  color: white;
  background-color: #aa8f00;
  border-color: #aa8f00;
}
@media only screen and (max-width: 30rem) {
  .call_to_action {
    font-size: 0.9375rem;
  }
}

.cke_editable ul, .content .field--name-body ul,
.cke_editable ol,
.content .field--name-body ol {
  margin-top: 0;
  margin-bottom: 1em;
}

/*  Images
************************************* */
.cke_editable img,
.cke_editable figure,
.content .field--name-body img,
.content .field--name-body figure {
  display: block;
  float: none;
  max-width: 100%;
  height: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 34.5rem) {
  .cke_editable img,
.cke_editable figure,
.content .field--name-body img,
.content .field--name-body figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cke_editable img.align-left, .cke_editable img.align-center,
.cke_editable figure.align-left,
.cke_editable figure.align-center,
.content .field--name-body img.align-left,
.content .field--name-body img.align-center,
.content .field--name-body figure.align-left,
.content .field--name-body figure.align-center {
  float: left;
  clear: left;
}
@media only screen and (min-width: 34.5625rem) {
  .cke_editable img.align-left, .cke_editable img.align-center,
.cke_editable figure.align-left,
.cke_editable figure.align-center,
.content .field--name-body img.align-left,
.content .field--name-body img.align-center,
.content .field--name-body figure.align-left,
.content .field--name-body figure.align-center {
    margin-right: 1.4em;
    margin-bottom: 1em;
    margin-top: 0.2em;
  }
}
@media only screen and (max-width: 34.5rem) {
  .cke_editable img.align-left, .cke_editable img.align-center,
.cke_editable figure.align-left,
.cke_editable figure.align-center,
.content .field--name-body img.align-left,
.content .field--name-body img.align-center,
.content .field--name-body figure.align-left,
.content .field--name-body figure.align-center {
    clear: both;
    float: none;
  }
}
.cke_editable img.align-right,
.cke_editable figure.align-right,
.content .field--name-body img.align-right,
.content .field--name-body figure.align-right {
  float: right;
  clear: right;
  margin-right: 22.2%;
}
@media only screen and (min-width: 34.5625rem) {
  .cke_editable img.align-right,
.cke_editable figure.align-right,
.content .field--name-body img.align-right,
.content .field--name-body figure.align-right {
    margin-left: 1.4em;
    margin-bottom: 1em;
    margin-top: 0.2em;
  }
}
@media only screen and (max-width: 34.5rem) {
  .cke_editable img.align-right,
.cke_editable figure.align-right,
.content .field--name-body img.align-right,
.content .field--name-body figure.align-right {
    clear: both;
    float: none;
  }
}
@media only screen and (max-width: 79.5rem) {
  .cke_editable img.align-right,
.cke_editable figure.align-right,
.content .field--name-body img.align-right,
.content .field--name-body figure.align-right {
    margin-right: 10.3%;
  }
}
@media only screen and (max-width: 66rem) {
  .cke_editable img.align-right,
.cke_editable figure.align-right,
.content .field--name-body img.align-right,
.content .field--name-body figure.align-right {
    margin-right: 0;
  }
}
.cke_editable figure,
.content .field--name-body figure {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}
.cke_editable figure br,
.content .field--name-body figure br {
  display: none;
}
.cke_editable figure,
.cke_editable figure img,
.content .field--name-body figure,
.content .field--name-body figure img {
  max-width: 100%;
  height: auto;
}
.cke_editable figure img,
.content .field--name-body figure img {
  margin: 0;
  z-index: 1;
}
.cke_editable figure figcaption,
.content .field--name-body figure figcaption {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: white;
  background-color: #aa8f00;
  padding-top: 0.5em;
  padding-bottom: 0.45em;
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (max-width: 48rem) {
  .cke_editable figure figcaption,
.content .field--name-body figure figcaption {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .cke_editable figure figcaption,
.content .field--name-body figure figcaption {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 30.0625rem) {
  .cke_editable figure figcaption,
.content .field--name-body figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.field--name-body iframe {
  max-width: 100%;
  margin-bottom: 30px;
}

.cke_editable hr,
.field--name-body hr {
  border: 0;
  border-bottom: 1px solid red;
  margin-top: 34px;
  margin-bottom: 37px;
}

/* Standard mixins
*********************************** */
/* Standard vars
*********************************** */
/* Standard selectors
*********************************** */
.animate_init {
  backface-visibility: hidden;
}

.strand_wrap.animate_init, .block > article.entity--type-node > .content > .field--name-body.animate_init, .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content .field--name-body.animate_init, .field--name-field-sub-title.animate_init, article.node--type-timeline-extra.animate_init {
  -ms-transform: translate3d(0, 100px, 0);
  -o-transform: translate3d(0, 100px, 0);
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0s;
}
.strand_wrap.in_viewport, .block > article.entity--type-node > .content > .field--name-body.in_viewport, .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content .field--name-body.in_viewport, .field--name-field-sub-title.in_viewport, article.node--type-timeline-extra.in_viewport {
  -ms-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  transition-property: transform, opacity;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content .field--name-body .pull_quote {
  transition-delay: 0.25s;
}
.content .field--name-body .pull_quote.animate_init {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0s;
}
.content .field--name-body .pull_quote.in_viewport {
  opacity: 1;
  transition-property: transform, opacity;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.content .field--name-body .pull_quote.pull_normal.animate_init, .content .field--name-body .pull_quote.pull_quote_left.animate_init {
  -ms-transform: translate3d(-100px, 0, 0);
  -o-transform: translate3d(-100px, 0, 0);
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
}
.content .field--name-body .pull_quote.pull_normal.in_viewport, .content .field--name-body .pull_quote.pull_quote_left.in_viewport {
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.content .field--name-body .pull_quote.pull_quote_right.animate_init {
  -ms-transform: translate3d(100px, 0, 0);
  -o-transform: translate3d(100px, 0, 0);
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}
.content .field--name-body .pull_quote.pull_quote_right.in_viewport {
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.strand_wrap:nth-child(1) {
  transition-delay: 0.25s;
}
.strand_wrap:nth-child(2) {
  transition-delay: 0.5s;
}
.strand_wrap:nth-child(3) {
  transition-delay: 0.75s;
}
.strand_wrap:nth-child(4) {
  transition-delay: 1s;
}

.field--name-field-sub-title {
  transition-delay: 0.25s;
}

.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content .field--name-body {
  transition-delay: 0.5s;
}

.skip_link {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  text-align: center;
  margin: 0 !important;
}
@media only screen and (max-width: 39rem) {
  .skip_link {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .skip_link {
    font-size: 1.1875rem;
  }
}
.skip_link:focus {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.block-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}
.block-tabs ul li {
  margin-right: 6px;
}
.block-tabs ul li:last-child {
  margin-right: 0;
}
.block-tabs ul li a {
  display: block;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  padding: 4px 10px 5px;
  border: 1px solid #000000;
}
@media only screen and (max-width: 48rem) {
  .block-tabs ul li a {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .block-tabs ul li a {
    font-size: 0.875rem;
  }
}
.block-tabs ul li a.is-active, .block-tabs ul li a:hover, .block-tabs ul li a:focus {
  background-color: #aa8f00;
  color: white;
}

.drupal-messages {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
  color: #aa8f00;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 79.5rem) {
  .drupal-messages {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .drupal-messages {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .drupal-messages {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  .drupal-messages {
    font-size: 1.1875rem;
  }
}

/* Header – Layout
*********************************** */
section.full_width__header {
  position: relative;
  z-index: 200;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.region-header {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.region-header .block {
  flex-grow: 0;
  margin-left: 1rem;
}
.region-header .block:first-child {
  margin-left: 0;
}
.region-header .block.site-branding {
  flex-grow: 1;
}
@media only screen and (max-width: 39rem) {
  .region-header .block {
    margin-left: 0.5rem;
  }
}

/* Header – Elements
*********************************** */
.block.site-branding {
  margin-right: 1rem;
}
.block.site-branding a.logo {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 12.0625rem;
  margin: 0;
}
.block.site-branding a.logo::after {
  content: " ";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 34%;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22193%22%20height%3D%2265.404%22%20viewBox%3D%220%200%20193%2065.404%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M33.052%2C40.246a19.469%2C19.469%2C0%2C0%2C0-2.639-7.306%2C16.143%2C16.143%2C0%2C0%2C0-5.127-5.916c-3.15-1.921-3.582.068-5.9%2C1.713a6.33%2C6.33%2C0%2C0%2C1-4.816.8c-1.741-.328-2.948-1.607-4.6-2.036-.984-.257-1.943-.071-3.21%2C1.181A27.35%2C27.35%2C0%2C0%2C0%2C.718%2C37.528c-1.411%2C3.8-.57%2C6.678%2C1.025%2C5.007s2.079-3.786%2C3.783-5.347c.784-.718%2C1.363.109%2C1.381.829a13.87%2C13.87%2C0%2C0%2C1-.466%2C2.7A39.375%2C39.375%2C0%2C0%2C0%2C5.955%2C47a72.454%2C72.454%2C0%2C0%2C0%2C.814%2C12.649c.152.941.2%2C2.518.851%2C3.294%2C1.091%2C1.293%2C3.745%2C2.829%2C5.432-3.939.3-1.2%2C1.026-3.289%2C2.545-3.226a3.645%2C3.645%2C0%2C0%2C1%2C2.883%2C2.239c.9%2C1.91.82%2C4.271%2C2.151%2C6.013.733.957%2C2.079%2C1.9%2C3.22%2C1.042a7.188%2C7.188%2C0%2C0%2C0%2C1.879-3.179c2.589-7.172-1.158-19.119-.375-22%2C.719-2.644%2C1.717-1.7%2C2.016-.282%2C1.23%2C5.863%2C3.659%2C7.4%2C4.33%2C7.412s2.128-.389%2C1.351-6.777%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M26.119%2C16.966l-7.042-4.1L25.57%2C7.944a1%2C1%2C0%2C0%2C0-.961-1.725l-7.6%2C2.95.2-8.147A1%2C1%2C0%2C0%2C0%2C15.266.7L12.833%2C8.478%2C6.59%2C3.24A1%2C1%2C0%2C0%2C0%2C5.122%2C4.564l4.567%2C6.75L1.7%2C12.929A1%2C1%2C0%2C0%2C0%2C1.819%2C14.9l8.124.638L6.228%2C22.792a1%2C1%2C0%2C0%2C0%2C1.615%2C1.136l5.565-5.952L16.764%2C25.4a.992.992%2C0%2C0%2C0%2C.746.575.962.962%2C0%2C0%2C0%2C.441-.028%2C1%2C1%2C0%2C0%2C0%2C.707-1.1l-1.184-8.067%2C7.9%2C2.01a1%2C1%2C0%2C0%2C0%2C.748-1.827%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M167.126%2C32.5a.853.853%2C0%2C0%2C0-.973-.875%2C2.534%2C2.534%2C0%2C0%2C0-2.255%2C2.361C165.975%2C33.953%2C167.129%2C33.487%2C167.126%2C32.5Z%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M92.228%2C32.705a.852.852%2C0%2C0%2C0-.972-.875A2.535%2C2.535%2C0%2C0%2C0%2C89%2C34.191C91.078%2C34.162%2C92.231%2C33.7%2C92.228%2C32.705Z%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M80.179%2C32.091A2.628%2C2.628%2C0%2C0%2C0%2C78.451%2C33L77.8%2C38.423a2.816%2C2.816%2C0%2C0%2C0%2C.762.09c1.961%2C0%2C3.041-2.017%2C3.034-4.44C81.589%2C32.8%2C81.265%2C32.088%2C80.179%2C32.091Z%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M67.3%2C29.288c-2.677.008-3.87%2C2.851-3.862%2C5.875.006%2C2.123.957%2C3.506%2C2.757%2C3.5%2C2.678-.008%2C3.847-2.966%2C3.839-5.9C70.022%2C30.62%2C69.119%2C29.283%2C67.3%2C29.288Z%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M179.12%2C21.98l-121.782.341a13.648%2C13.648%2C0%2C1%2C0%2C.077%2C27.292l120.94-.338c7.634-.022%2C14.666-6.161%2C14.645-13.685A13.763%2C13.763%2C0%2C0%2C0%2C179.12%2C21.98ZM65.874%2C41.181c-4.039.011-5.478-2.755-5.487-6.055-.013-4.571%2C2.447-8.364%2C7.223-8.378%2C4.041-.011%2C5.456%2C2.756%2C5.465%2C6.055C73.088%2C37.375%2C70.629%2C41.167%2C65.874%2C41.181Zm12.23-.243a3.083%2C3.083%2C0%2C0%2C1-.6-.067l-.564%2C4.572L74.1%2C45.8l1.557-12.955-.031-2.722%2C2.77-.354%2C0%2C1.222h.023a3.96%2C3.96%2C0%2C0%2C1%2C2.858-1.345c2.17-.006%2C3.144%2C1.674%2C3.151%2C3.96C84.443%2C37.9%2C81.912%2C40.928%2C78.1%2C40.938Zm12.825-2.3a4.427%2C4.427%2C0%2C0%2C0%2C2.053-.56l.975%2C2.145a6.44%2C6.44%2C0%2C0%2C1-3.482.933c-3.278.009-4.393-2.089-4.4-4.812-.012-4.271%2C2.52-6.7%2C5.659-6.711%2C1.917-.005%2C2.934%2C1.054%2C2.939%2C2.739.006%2C2.17-1.7%2C3.583-5.805%2C3.595%2C0%2C0-.023.255-.023.461C88.849%2C37.838%2C89.475%2C38.644%2C90.929%2C38.64ZM105.661%2C33.2l-.925%2C7.621-2.793.007.835-7.065c.111-.9-.1-1.778-1.252-1.775a2.435%2C2.435%2C0%2C0%2C0-1.775.954l-.947%2C7.9-2.816.008.971-8.082-.032-2.7%2C2.768-.354%2C0%2C1.27h.023a4.306%2C4.306%2C0%2C0%2C1%2C3.136-1.417C105.05%2C29.553%2C105.909%2C31.235%2C105.661%2C33.2Zm15.5-3.759-4.086.011-.382%2C3.279%2C3.6-.01L120%2C35.259l-3.6.01-.678%2C5.519-2.956.008%2C1.67-13.9%2C7.018-.02Zm9.6%2C11.168-2.792.354%2C0-1.269h-.022a4.566%2C4.566%2C0%2C0%2C1-3.182%2C1.394c-2.077.005-2.958-1.723-2.733-3.616l.563-4.781-.031-2.7%2C3.208-.355-.879%2C7.274c-.113.9.074%2C1.777%2C1.227%2C1.774a2.857%2C2.857%2C0%2C0%2C0%2C1.8-.952l.925-7.759%2C2.861-.353-.97%2C8.289Zm9.737-8.5-2.839.008-.563%2C4.572c-.113.854-.205%2C1.731%2C1%2C1.727a3.163%2C3.163%2C0%2C0%2C0%2C1.338-.372l.674%2C2.144a5.406%2C5.406%2C0%2C0%2C1-2.835.771c-2.355.007-3.306-1.561-3.036-3.754l.633-5.08-1.592%2C0%2C.225-1.963%2C1.637-.373.225-1.917%2C2.815-.353-.245%2C2.284%2C2.837-.008Zm10.525%2C8.442-2.792.353%2C0-1.269h-.022a4.572%2C4.572%2C0%2C0%2C1-3.183%2C1.394c-2.077.006-2.959-1.723-2.733-3.616l.564-4.78-.032-2.7%2C3.208-.355-.879%2C7.274c-.114.9.074%2C1.778%2C1.226%2C1.774a2.854%2C2.854%2C0%2C0%2C0%2C1.8-.951l.925-7.759%2C2.86-.354-.969%2C8.289Zm9.367-8.5a3.894%2C3.894%2C0%2C0%2C0-2.974%2C1.137l-.878%2C7.483-2.816.008.969-8.082-.03-2.7%2C2.791-.353%2C0%2C1.592h.024a4.031%2C4.031%2C0%2C0%2C1%2C3.249-1.716Zm5.436%2C6.378a4.442%2C4.442%2C0%2C0%2C0%2C2.052-.561l.975%2C2.145a6.438%2C6.438%2C0%2C0%2C1-3.482.934c-3.278.009-4.392-2.089-4.4-4.813-.012-4.271%2C2.521-6.7%2C5.66-6.71%2C1.915%2C0%2C2.934%2C1.054%2C2.938%2C2.739.006%2C2.17-1.7%2C3.583-5.805%2C3.594%2C0%2C0-.023.255-.022.462C163.747%2C37.629%2C164.372%2C38.435%2C165.827%2C38.431Zm11.705-6.126a5.035%2C5.035%2C0%2C0%2C0-2.124-.526c-.833%2C0-1.5.305-1.5%2C1.02%2C0%2C.507.348.76.786.968l1.295.62a2.858%2C2.858%2C0%2C0%2C1%2C1.925%2C2.717c.006%2C2.171-1.745%2C3.814-4.306%2C3.821a8.215%2C8.215%2C0%2C0%2C1-3.35-.659l.893-2.357a5.759%2C5.759%2C0%2C0%2C0%2C2.4.661c.992%2C0%2C1.523-.442%2C1.521-1.065a1.059%2C1.059%2C0%2C0%2C0-.719-1.014l-1.387-.689a2.775%2C2.775%2C0%2C0%2C1-1.761-2.742c-.006-2.285%2C1.975-3.652%2C4.259-3.658a7.438%2C7.438%2C0%2C0%2C1%2C2.98.545Z%22%20fill%3D%22%23b1953a%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: 99.6% auto;
}
.block.site-branding a.logo img {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
@media only screen and (max-width: 30rem) {
  .block.site-branding a.logo {
    width: 11.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .block.site-branding a.logo {
    width: 10.625rem;
  }
}

section.full_width__header #block-newopenfutures-searchbutton .search_button {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 3rem;
  height: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23b1953a%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1.5625rem auto;
}
body.not_touch_device section.full_width__header #block-newopenfutures-searchbutton .search_button:hover, body.not_touch_device section.full_width__header #block-newopenfutures-searchbutton .search_button:focus {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23262a34%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-newopenfutures-searchbutton .search_button {
    background-size: 1.4375rem auto;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__header #block-newopenfutures-searchbutton .search_button {
    width: 2.625rem;
    height: 2.625rem;
    background-size: 1.375rem auto;
  }
}

/* Header – When over image
*********************************** */
.page-standard.has_top_banner section.full_width__header {
  position: absolute;
  top: 0;
  left: 0;
}
.page-standard.has_top_banner section.full_width__header .skip_link {
  color: white;
}
.page-standard.has_top_banner section.full_width__header .block.site-branding a.logo::after {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22193%22%20height%3D%2265.404%22%20viewBox%3D%220%200%20193%2065.404%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M33.052%2C40.246a19.469%2C19.469%2C0%2C0%2C0-2.639-7.306%2C16.143%2C16.143%2C0%2C0%2C0-5.127-5.916c-3.15-1.921-3.582.068-5.9%2C1.713a6.33%2C6.33%2C0%2C0%2C1-4.816.8c-1.741-.328-2.948-1.607-4.6-2.036-.984-.257-1.943-.071-3.21%2C1.181A27.35%2C27.35%2C0%2C0%2C0%2C.718%2C37.528c-1.411%2C3.8-.57%2C6.678%2C1.025%2C5.007s2.079-3.786%2C3.783-5.347c.784-.718%2C1.363.109%2C1.381.829a13.87%2C13.87%2C0%2C0%2C1-.466%2C2.7A39.375%2C39.375%2C0%2C0%2C0%2C5.955%2C47a72.454%2C72.454%2C0%2C0%2C0%2C.814%2C12.649c.152.941.2%2C2.518.851%2C3.294%2C1.091%2C1.293%2C3.745%2C2.829%2C5.432-3.939.3-1.2%2C1.026-3.289%2C2.545-3.226a3.645%2C3.645%2C0%2C0%2C1%2C2.883%2C2.239c.9%2C1.91.82%2C4.271%2C2.151%2C6.013.733.957%2C2.079%2C1.9%2C3.22%2C1.042a7.188%2C7.188%2C0%2C0%2C0%2C1.879-3.179c2.589-7.172-1.158-19.119-.375-22%2C.719-2.644%2C1.717-1.7%2C2.016-.282%2C1.23%2C5.863%2C3.659%2C7.4%2C4.33%2C7.412s2.128-.389%2C1.351-6.777%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M26.119%2C16.966l-7.042-4.1L25.57%2C7.944a1%2C1%2C0%2C0%2C0-.961-1.725l-7.6%2C2.95.2-8.147A1%2C1%2C0%2C0%2C0%2C15.266.7L12.833%2C8.478%2C6.59%2C3.24A1%2C1%2C0%2C0%2C0%2C5.122%2C4.564l4.567%2C6.75L1.7%2C12.929A1%2C1%2C0%2C0%2C0%2C1.819%2C14.9l8.124.638L6.228%2C22.792a1%2C1%2C0%2C0%2C0%2C1.615%2C1.136l5.565-5.952L16.764%2C25.4a.992.992%2C0%2C0%2C0%2C.746.575.962.962%2C0%2C0%2C0%2C.441-.028%2C1%2C1%2C0%2C0%2C0%2C.707-1.1l-1.184-8.067%2C7.9%2C2.01a1%2C1%2C0%2C0%2C0%2C.748-1.827%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M167.126%2C32.5a.853.853%2C0%2C0%2C0-.973-.875%2C2.534%2C2.534%2C0%2C0%2C0-2.255%2C2.361C165.975%2C33.953%2C167.129%2C33.487%2C167.126%2C32.5Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M92.228%2C32.705a.852.852%2C0%2C0%2C0-.972-.875A2.535%2C2.535%2C0%2C0%2C0%2C89%2C34.191C91.078%2C34.162%2C92.231%2C33.7%2C92.228%2C32.705Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M80.179%2C32.091A2.628%2C2.628%2C0%2C0%2C0%2C78.451%2C33L77.8%2C38.423a2.816%2C2.816%2C0%2C0%2C0%2C.762.09c1.961%2C0%2C3.041-2.017%2C3.034-4.44C81.589%2C32.8%2C81.265%2C32.088%2C80.179%2C32.091Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M67.3%2C29.288c-2.677.008-3.87%2C2.851-3.862%2C5.875.006%2C2.123.957%2C3.506%2C2.757%2C3.5%2C2.678-.008%2C3.847-2.966%2C3.839-5.9C70.022%2C30.62%2C69.119%2C29.283%2C67.3%2C29.288Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D%22M179.12%2C21.98l-121.782.341a13.648%2C13.648%2C0%2C1%2C0%2C.077%2C27.292l120.94-.338c7.634-.022%2C14.666-6.161%2C14.645-13.685A13.763%2C13.763%2C0%2C0%2C0%2C179.12%2C21.98ZM65.874%2C41.181c-4.039.011-5.478-2.755-5.487-6.055-.013-4.571%2C2.447-8.364%2C7.223-8.378%2C4.041-.011%2C5.456%2C2.756%2C5.465%2C6.055C73.088%2C37.375%2C70.629%2C41.167%2C65.874%2C41.181Zm12.23-.243a3.083%2C3.083%2C0%2C0%2C1-.6-.067l-.564%2C4.572L74.1%2C45.8l1.557-12.955-.031-2.722%2C2.77-.354%2C0%2C1.222h.023a3.96%2C3.96%2C0%2C0%2C1%2C2.858-1.345c2.17-.006%2C3.144%2C1.674%2C3.151%2C3.96C84.443%2C37.9%2C81.912%2C40.928%2C78.1%2C40.938Zm12.825-2.3a4.427%2C4.427%2C0%2C0%2C0%2C2.053-.56l.975%2C2.145a6.44%2C6.44%2C0%2C0%2C1-3.482.933c-3.278.009-4.393-2.089-4.4-4.812-.012-4.271%2C2.52-6.7%2C5.659-6.711%2C1.917-.005%2C2.934%2C1.054%2C2.939%2C2.739.006%2C2.17-1.7%2C3.583-5.805%2C3.595%2C0%2C0-.023.255-.023.461C88.849%2C37.838%2C89.475%2C38.644%2C90.929%2C38.64ZM105.661%2C33.2l-.925%2C7.621-2.793.007.835-7.065c.111-.9-.1-1.778-1.252-1.775a2.435%2C2.435%2C0%2C0%2C0-1.775.954l-.947%2C7.9-2.816.008.971-8.082-.032-2.7%2C2.768-.354%2C0%2C1.27h.023a4.306%2C4.306%2C0%2C0%2C1%2C3.136-1.417C105.05%2C29.553%2C105.909%2C31.235%2C105.661%2C33.2Zm15.5-3.759-4.086.011-.382%2C3.279%2C3.6-.01L120%2C35.259l-3.6.01-.678%2C5.519-2.956.008%2C1.67-13.9%2C7.018-.02Zm9.6%2C11.168-2.792.354%2C0-1.269h-.022a4.566%2C4.566%2C0%2C0%2C1-3.182%2C1.394c-2.077.005-2.958-1.723-2.733-3.616l.563-4.781-.031-2.7%2C3.208-.355-.879%2C7.274c-.113.9.074%2C1.777%2C1.227%2C1.774a2.857%2C2.857%2C0%2C0%2C0%2C1.8-.952l.925-7.759%2C2.861-.353-.97%2C8.289Zm9.737-8.5-2.839.008-.563%2C4.572c-.113.854-.205%2C1.731%2C1%2C1.727a3.163%2C3.163%2C0%2C0%2C0%2C1.338-.372l.674%2C2.144a5.406%2C5.406%2C0%2C0%2C1-2.835.771c-2.355.007-3.306-1.561-3.036-3.754l.633-5.08-1.592%2C0%2C.225-1.963%2C1.637-.373.225-1.917%2C2.815-.353-.245%2C2.284%2C2.837-.008Zm10.525%2C8.442-2.792.353%2C0-1.269h-.022a4.572%2C4.572%2C0%2C0%2C1-3.183%2C1.394c-2.077.006-2.959-1.723-2.733-3.616l.564-4.78-.032-2.7%2C3.208-.355-.879%2C7.274c-.114.9.074%2C1.778%2C1.226%2C1.774a2.854%2C2.854%2C0%2C0%2C0%2C1.8-.951l.925-7.759%2C2.86-.354-.969%2C8.289Zm9.367-8.5a3.894%2C3.894%2C0%2C0%2C0-2.974%2C1.137l-.878%2C7.483-2.816.008.969-8.082-.03-2.7%2C2.791-.353%2C0%2C1.592h.024a4.031%2C4.031%2C0%2C0%2C1%2C3.249-1.716Zm5.436%2C6.378a4.442%2C4.442%2C0%2C0%2C0%2C2.052-.561l.975%2C2.145a6.438%2C6.438%2C0%2C0%2C1-3.482.934c-3.278.009-4.392-2.089-4.4-4.813-.012-4.271%2C2.521-6.7%2C5.66-6.71%2C1.915%2C0%2C2.934%2C1.054%2C2.938%2C2.739.006%2C2.17-1.7%2C3.583-5.805%2C3.594%2C0%2C0-.023.255-.022.462C163.747%2C37.629%2C164.372%2C38.435%2C165.827%2C38.431Zm11.705-6.126a5.035%2C5.035%2C0%2C0%2C0-2.124-.526c-.833%2C0-1.5.305-1.5%2C1.02%2C0%2C.507.348.76.786.968l1.295.62a2.858%2C2.858%2C0%2C0%2C1%2C1.925%2C2.717c.006%2C2.171-1.745%2C3.814-4.306%2C3.821a8.215%2C8.215%2C0%2C0%2C1-3.35-.659l.893-2.357a5.759%2C5.759%2C0%2C0%2C0%2C2.4.661c.992%2C0%2C1.523-.442%2C1.521-1.065a1.059%2C1.059%2C0%2C0%2C0-.719-1.014l-1.387-.689a2.775%2C2.775%2C0%2C0%2C1-1.761-2.742c-.006-2.285%2C1.975-3.652%2C4.259-3.658a7.438%2C7.438%2C0%2C0%2C1%2C2.98.545Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
.page-standard.has_top_banner section.full_width__header #block-newopenfutures-searchbutton .search_button {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}

#block-newopenfutures-mainnavigation ul.menu,
#block-newopenfutures-mainnavigation-2 ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#block-newopenfutures-mainnavigation {
  display: block;
}
#block-newopenfutures-mainnavigation.js_engaged {
  display: none;
}

#block-newopenfutures-mainnavigation-2 {
  display: none;
}
#block-newopenfutures-mainnavigation-2.js_engaged {
  display: block;
}
#block-newopenfutures-mainnavigation-2 .menu_outer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: white;
  -webkit-overflow-scrolling: touch;
  background-color: #aa8f00;
  box-sizing: content-box;
  padding-top: 2rem;
  padding-bottom: 6rem;
  padding-left: 3.125rem;
  padding-right: 7vw;
  width: 32rem;
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.25s;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .content_overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
}
#block-newopenfutures-mainnavigation-2 .menu_outer.closed {
  display: block;
  z-index: -1;
  height: 0;
}
#block-newopenfutures-mainnavigation-2 .menu_outer.open .content_overlay {
  opacity: 0.15;
}
#block-newopenfutures-mainnavigation-2 .menu_outer.open .menu_inner {
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
#block-newopenfutures-mainnavigation-2 .menu_outer.open ul.menu {
  opacity: 1;
}
#block-newopenfutures-mainnavigation-2 .menu_outer.menu_hidden {
  display: none;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu {
  display: block;
  width: 100%;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li a.menu-item {
  color: white;
  flex-grow: 1;
  box-sizing: border-box;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  max-width: calc(100% - 3rem);
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li a.menu-item.menu-item--active-trail {
  color: #262a34;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li .menu_control {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: transparent;
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2239.941%22%20height%3D%2225.035%22%20viewBox%3D%220%200%2039.941%2025.035%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22roof%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M37.942%2C0A2%2C2%2C0%2C0%2C1%2C39.46%2C3.3L21.425%2C24.337a2%2C2%2C0%2C0%2C1-1.519.7h0a2%2C2%2C0%2C0%2C1-1.519-.7L.481%2C3.43A2%2C2%2C0%2C0%2C1%2C3.519.828L19.907%2C19.962%2C36.423.7A2%2C2%2C0%2C0%2C1%2C37.942%2C0Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  background-position: 50% 50%;
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  will-change: transform;
  transition: transform 0.25s;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li .menu_control.open {
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 30rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu li .menu_control {
    width: 2.625rem;
    height: 2.625rem;
  }
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu {
  margin-top: 8.6rem;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
  font-size: 2.25rem;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 79.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li {
    font-size: 1.5rem;
  }
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2em;
  font-style: normal;
  font-size: 2.25rem;
  margin-top: 1.3em;
  margin-bottom: 0.6em;
  padding-right: 0.5em;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 79.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu > li > a.menu-item {
    font-size: 1.5rem;
  }
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu {
  font-size: 1.625rem;
  margin-top: 0.85em;
}
@media only screen and (max-width: 48rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu {
    font-size: 1.3125rem;
  }
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li {
  margin-bottom: 0.85em;
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin: 0;
  position: relative;
  padding-left: 1em;
}
@media only screen and (max-width: 48rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item {
    font-size: 1.3125rem;
  }
}
#block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner ul.menu ul.menu li a.menu-item::before {
  content: "– ";
  display: inline-block;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 43.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer > ul.menu {
    margin-top: 1rem;
  }
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner {
    box-sizing: border-box;
    width: 100%;
    padding-top: 1.6rem;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media only screen and (max-width: 43.5rem) and (max-width: 43.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 43.5rem) and (max-width: 34.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 43.5rem) and (max-width: 30rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
}
@media only screen and (max-width: 43.5rem) {
  #block-newopenfutures-mainnavigation-2 .menu_outer .menu_inner > ul.menu {
    margin-top: 1rem;
  }
}
body.not_touch_device #block-newopenfutures-mainnavigation-2 .menu_inner ul.menu li a.menu-item:hover, body.not_touch_device #block-newopenfutures-mainnavigation-2 .menu_inner ul.menu li a.menu-item:focus {
  color: #262a34;
}
body.not_touch_device #block-newopenfutures-mainnavigation-2 .menu_inner ul.menu .menu_control:hover, body.not_touch_device #block-newopenfutures-mainnavigation-2 .menu_inner ul.menu .menu_control:focus {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2239.941%22%20height%3D%2225.035%22%20viewBox%3D%220%200%2039.941%2025.035%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22roof%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M37.942%2C0A2%2C2%2C0%2C0%2C1%2C39.46%2C3.3L21.425%2C24.337a2%2C2%2C0%2C0%2C1-1.519.7h0a2%2C2%2C0%2C0%2C1-1.519-.7L.481%2C3.43A2%2C2%2C0%2C0%2C1%2C3.519.828L19.907%2C19.962%2C36.423.7A2%2C2%2C0%2C0%2C1%2C37.942%2C0Z%22%20fill%3D%22%23262a34%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  padding: 0;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  border: 0;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line {
  display: block;
  background-color: #aa8f00;
  position: absolute;
  left: 50%;
  height: 0.125rem;
  width: 2.6875rem;
  transform-origin: 50% 50%;
  -ms-transform: translateX(-50%) rotate(0deg);
  -o-transform: translateX(-50%) rotate(0deg);
  -webkit-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_1 {
  top: 0.71875rem;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_2, #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_3 {
  top: 1.46875rem;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_4 {
  top: 2.21875rem;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button.open .line.id_1, #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button.open .line.id_4 {
  width: 0;
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button.open .line.id_2 {
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
#block-newopenfutures-mainnavigation-2 .main_nav_toggle_button.open .line.id_3 {
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(-45deg);
}
@media only screen and (max-width: 39rem) {
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line {
    width: 2.5rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_1 {
    top: 0.84375rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_4 {
    top: 2.09375rem;
  }
}
@media only screen and (max-width: 30rem) {
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button {
    width: 2.625rem;
    height: 2.625rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line {
    width: 2.0625rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_1 {
    top: 0.6875rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_2, #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_3 {
    top: 1.25rem;
  }
  #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line.id_4 {
    top: 1.8125rem;
  }
}
body.not_touch_device #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button:hover .line, body.not_touch_device #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button:focus .line {
  background-color: #262a34;
}
#block-newopenfutures-mainnavigation-2 .close_btn {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  cursor: pointer;
}
#block-newopenfutures-mainnavigation-2 .close_btn .line {
  display: block;
  width: 2.125rem;
  height: 0.125rem;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
}
#block-newopenfutures-mainnavigation-2 .close_btn .line.id_1 {
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
#block-newopenfutures-mainnavigation-2 .close_btn .line.id_2 {
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 30rem) {
  #block-newopenfutures-mainnavigation-2 .close_btn {
    width: 2.625rem;
    height: 2.625rem;
  }
}
body.not_touch_device #block-newopenfutures-mainnavigation-2 .close_btn:hover .line, body.not_touch_device #block-newopenfutures-mainnavigation-2 .close_btn:focus .line {
  background-color: #262a34;
}
.page-standard.has_top_banner #block-newopenfutures-mainnavigation-2 .main_nav_toggle_button .line {
  background-color: white;
}

section.full_width__header #block-searchform {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
section.full_width__header #block-searchform section.full_width__search_overlay {
  position: relative;
  z-index: 2;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: transform 0.25s;
}
section.full_width__header #block-searchform .content_overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
}
section.full_width__header #block-searchform.closed {
  display: block;
  z-index: -1;
  height: 0;
}
section.full_width__header #block-searchform.open {
  display: block;
}
section.full_width__header #block-searchform.open .content_overlay {
  opacity: 0.15;
}
section.full_width__header #block-searchform.open section.full_width__search_overlay {
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
section.full_width__header #block-searchform.open ul.menu {
  opacity: 1;
}
section.full_width__header #block-searchform.hidden {
  display: none;
}
section.full_width__header #block-searchform section.full_width__search_overlay {
  font-size: 1.375rem;
  background-color: #aa8f00;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform section.full_width__search_overlay {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform section.full_width__search_overlay {
    font-size: 1.1875rem;
  }
}
section.full_width__header #block-searchform section.full_width__search_overlay .section_inner {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform section.full_width__search_overlay .section_inner {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform section.full_width__search_overlay .section_inner {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__header #block-searchform section.full_width__search_overlay {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
section.full_width__header #block-searchform form {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin: 0;
}
section.full_width__header #block-searchform form .form-item {
  display: block;
  flex-grow: 1;
  margin-right: 1rem;
  margin-bottom: 0;
}
section.full_width__header #block-searchform form .form-item input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: white;
  border: 0;
  padding-left: 1em;
  padding-right: 0.7em;
  margin: 0 !important;
  -webkit-appearance: none;
}
section.full_width__header #block-searchform form .form-item input::-webkit-input-placeholder {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform form .form-item input::-webkit-input-placeholder {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-item input::-webkit-input-placeholder {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-item input::-webkit-input-placeholder {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__header #block-searchform form .form-item input::-webkit-input-placeholder {
    font-size: 1.3125rem;
  }
}
section.full_width__header #block-searchform form .form-item input::-moz-placeholder {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform form .form-item input::-moz-placeholder {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-item input::-moz-placeholder {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-item input::-moz-placeholder {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__header #block-searchform form .form-item input::-moz-placeholder {
    font-size: 1.3125rem;
  }
}
section.full_width__header #block-searchform form .form-item input:-moz-placeholder {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform form .form-item input:-moz-placeholder {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-item input:-moz-placeholder {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-item input:-moz-placeholder {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__header #block-searchform form .form-item input:-moz-placeholder {
    font-size: 1.3125rem;
  }
}
section.full_width__header #block-searchform form .form-item input:-ms-input-placeholder {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform form .form-item input:-ms-input-placeholder {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-item input:-ms-input-placeholder {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-item input:-ms-input-placeholder {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__header #block-searchform form .form-item input:-ms-input-placeholder {
    font-size: 1.3125rem;
  }
}
section.full_width__header #block-searchform form .form-actions {
  margin: 0;
}
section.full_width__header #block-searchform form .form-submit {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2em;
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1.2em auto;
  padding: 0;
  border: 0;
  margin: 0 !important;
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-submit {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-submit {
    font-size: 1.1875rem;
  }
}
section.full_width__header #block-searchform form .form-submit:hover, section.full_width__header #block-searchform form .form-submit:focus {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23262a34%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
@media only screen and (max-width: 48rem) {
  section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  section.full_width__header #block-searchform form .form-item input,
section.full_width__header #block-searchform form .form-submit {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
  }
  section.full_width__header #block-searchform form .form-item input {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

/* 	Footer – Layout
*********************************** */
section.full_width__footer {
  font-size: 1.625rem;
  padding-top: 3.1em;
  padding-bottom: 3.25em;
}
@media only screen and (max-width: 48rem) {
  section.full_width__footer {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__footer {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__footer {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__footer {
    font-size: 1.3125rem;
  }
}
section.full_width__footer .section_wrap {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__footer .section_wrap {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__footer .section_wrap {
    font-size: 1.25rem;
  }
}
section.full_width__footer footer {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
section.full_width__footer footer > * {
  margin-right: 2.9rem;
}
section.full_width__footer footer > *:last-child {
  margin-right: 0;
}

/* 	Footer – Elements
*********************************** */
section.full_width__footer .of_logo {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 6.75rem;
  height: 6.75rem;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22214%22%20height%3D%22216.106%22%20viewBox%3D%220%200%20214%20216.106%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.874%2C123.678a37.8%2C37.8%2C0%2C0%2C0-5.084-14.2c-2.491-4.341-5.58-8.849-9.926-11.517-6.106-3.747-6.955.113-11.473%2C3.3-2.682%2C1.891-6.216%2C2.135-9.355%2C1.533-3.381-.645-5.715-3.137-8.912-3.978-1.91-.5-3.772-.147-6.24%2C2.276-3.578%2C3.528-9.211%2C10.264-11.783%2C17.136-2.76%2C7.366-1.142%2C12.964%2C1.964%2C9.729s4.056-7.341%2C7.374-10.362c1.526-1.391%2C2.645.219%2C2.677%2C1.616a27.136%2C27.136%2C0%2C0%2C1-.917%2C5.246%2C76.37%2C76.37%2C0%2C0%2C0-.98%2C12.186A140.6%2C140.6%2C0%2C0%2C0%2C88.732%2C161.2c.29%2C1.829.364%2C4.891%2C1.634%2C6.4%2C2.113%2C2.518%2C7.256%2C5.515%2C10.571-7.618.586-2.321%2C2.01-6.383%2C4.958-6.252%2C2.533.112%2C4.582%2C2.228%2C5.585%2C4.363%2C1.741%2C3.716%2C1.571%2C8.3%2C4.145%2C11.688%2C1.418%2C1.864%2C4.027%2C3.7%2C6.247%2C2.041%2C1.779-1.327%2C2.932-4.149%2C3.666-6.162%2C5.066-13.914-2.145-37.134-.608-42.716%2C1.41-5.129%2C3.344-3.3%2C3.916-.537%2C2.357%2C11.392%2C7.066%2C14.386%2C8.369%2C14.416s4.133-.743%2C2.659-13.151%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M126.537%2C78.434l-13.651-8%2C12.634-9.52a1.936%2C1.936%2C0%2C0%2C0-1.855-3.355l-14.773%2C5.686.439-15.819a1.945%2C1.945%2C0%2C0%2C0-1.617-1.961%2C1.924%2C1.924%2C0%2C0%2C0-2.163%2C1.327l-4.767%2C15.089L88.69%2C51.674a1.937%2C1.937%2C0%2C0%2C0-2.856%2C2.563l8.829%2C13.131L79.146%2C70.462a1.936%2C1.936%2C0%2C0%2C0%2C.216%2C3.83l15.772%2C1.283L87.882%2C89.641a1.935%2C1.935%2C0%2C0%2C0%2C3.129%2C2.213l10.838-11.529%2C6.478%2C14.438a1.924%2C1.924%2C0%2C0%2C0%2C1.445%2C1.12%2C1.888%2C1.888%2C0%2C0%2C0%2C.855-.051%2C1.936%2C1.936%2C0%2C0%2C0%2C1.38-2.128l-2.256-15.672%2C15.324%2C3.947a1.936%2C1.936%2C0%2C0%2C0%2C1.462-3.545%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M54.465%2C188.446a10.808%2C10.808%2C0%2C0%2C0-3.441-3.942c-2.944-2.14-6.046-2.592-7.893-1.71a2.67%2C2.67%2C0%2C0%2C0-1.022.825%2C15.205%2C15.205%2C0%2C0%2C0-1.575%2C2.414%2C3.192%2C3.192%2C0%2C0%2C1%2C.832-.569c1.885-.878%2C4.624-.5%2C7.287%2C1.153.247.161.5.323.739.5a10.7%2C10.7%2C0%2C0%2C1%2C3.411%2C3.917%2C5.283%2C5.283%2C0%2C0%2C1%2C.535%2C3.693%2C14.238%2C14.238%2C0%2C0%2C0%2C1.274-2.017%2C4.879%2C4.879%2C0%2C0%2C0-.147-4.268m-2.122%2C3a10.37%2C10.37%2C0%2C0%2C0-3.306-3.8c-.241-.173-.479-.338-.722-.483-2.595-1.623-5.239-1.955-6.975-1.143a2.756%2C2.756%2C0%2C0%2C0-1.076.879c-.03.039-.057.091-.081.126a2.251%2C2.251%2C0%2C0%2C0-.161.3%2C4.611%2C4.611%2C0%2C0%2C0%2C.35%2C3.881%2C10.4%2C10.4%2C0%2C0%2C0%2C3.314%2C3.805c.24.17.482.334.724.487%2C2.6%2C1.623%2C5.24%2C1.952%2C6.978%2C1.142h0a2.935%2C2.935%2C0%2C0%2C0%2C1.062-.873c.034-.05.068-.1.095-.14.059-.1.108-.2.155-.3a4.59%2C4.59%2C0%2C0%2C0-.36-3.875m-1.1%2C4.532%2C0%2C0-.142.069c-1.429.675-3.877.434-6.323-1.1l-.025-.011c-.229-.144-.458-.3-.681-.462a9.813%2C9.813%2C0%2C0%2C1-3.116-3.565A4.883%2C4.883%2C0%2C0%2C1%2C40.4%2C188.4a2.3%2C2.3%2C0%2C0%2C1%2C.323-1.018l.006-.015c.023-.035.043-.068.062-.093v0a5.646%2C5.646%2C0%2C0%2C0%2C.625%2C2.776%2C10.517%2C10.517%2C0%2C0%2C0%2C3.323%2C3.808c.237.175.478.335.718.487a8.48%2C8.48%2C0%2C0%2C0%2C6.065%2C1.438%2C2.547%2C2.547%2C0%2C0%2C1-.282.194m.94-1.095-.03.02c-1.429.678-3.874.433-6.323-1.092a.2.2%2C0%2C0%2C1-.025-.017c-.229-.144-.456-.3-.682-.466a9.779%2C9.779%2C0%2C0%2C1-3.112-3.558%2C4.875%2C4.875%2C0%2C0%2C1-.562-2.513%2C2.579%2C2.579%2C0%2C0%2C1%2C.142-.631.037.037%2C0%2C0%2C1%2C.03-.013c1.418-.694%2C3.87-.448%2C6.323%2C1.082a.158.158%2C0%2C0%2C1%2C.027.016c.228.147.457.3.686.464a9.656%2C9.656%2C0%2C0%2C1%2C3.1%2C3.556%2C4.163%2C4.163%2C0%2C0%2C1%2C.426%2C3.152m12.024-28.7c-.432.333-2.6%2C2.243-4.765%2C4.168-2.418%2C2.147-4.9%2C4.3-4.9%2C4.3l-.026%2C1.169s3.055-2.666%2C5.809-5.085c1.992-1.75%2C3.863-3.369%2C4.406-3.746%2C1.292-.9%2C3.231-1.462%2C4.273-.819s5.587%2C6.215%2C5.89%2C6.941c.023.06.043.075.055.052a4.353%2C4.353%2C0%2C0%2C0-.14-1.479c-.25-.829-4.3-6.019-5.485-6.685s-3.85.217-5.118%2C1.183m-.066%2C2.466c-.325.265-9%2C7.77-9%2C7.77h0l0%2C.006%2C2.593%2C2.749-1.063.917h0l0%2C0-.219.189a5.224%2C5.224%2C0%2C0%2C0-.458-.719c0%2C.084.6-.494.6-.494a8.6%2C8.6%2C0%2C0%2C0-.757-.789c-.478-.538-.954-1.014-1.45-1.533-.643-.679-.571-1.213-.552-2.108a.66.66%2C0%2C0%2C1%2C.106-.361.719.719%2C0%2C0%2C1%2C.138-.167c.026-.017%2C2.507-2.169%2C4.89-4.288.847-.755%2C1.583-1.412%2C2.211-1.961a5.088%2C5.088%2C0%2C0%2C0-3.434-.424%2C3.975%2C3.975%2C0%2C0%2C0-4.1-.111c-2.68%2C1.436-11.35%2C10.222-12.063%2C11.976l.712%2C2.657a4.155%2C4.155%2C0%2C0%2C1%2C.946-.617c2.418-1.167%2C5.986-.549%2C9.05%2C1.674a11.794%2C11.794%2C0%2C0%2C1%2C3.645%2C4.224%2C5.749%2C5.749%2C0%2C0%2C1%2C.018%2C5.745c.026.012.05.035.08.05q3.684%2C2.448%2C7.362%2C4.913c1.13.744%2C2.248%2C1.5%2C3.373%2C2.247a3.2%2C3.2%2C0%2C0%2C0%2C1.441.724c4.681.291%2C8.058-4.667%2C9.875-8.352.372-.765%2C1.186-2.313.628-3.181-.485-.752-7.472-7.057-10.124-9.846-.644.5-1.284%2C1-1.877%2C1.468-1.753%2C1.372-3.126%2C2.443-3.126%2C2.443a.716.716%2C0%2C0%2C1-.8.055l-1.846-1.163-.9.577-.551-.259-.292-.132%2C1.6-1.1%2C2.354%2C1.462s1.367-1.074%2C3.121-2.443c.578-.457%2C1.2-.939%2C1.834-1.432v0c2.6-2.025%2C5.338-4.127%2C5.661-4.421a1.951%2C1.951%2C0%2C0%2C0%2C.339-.407%2C1.079%2C1.079%2C0%2C0%2C0%2C.11-.226l-.165-.362a33.378%2C33.378%2C0%2C0%2C0-5.487-6.464c-1.141-.639-2.925.277-4.415%2C1.509M65.5%2C194.88a.448.448%2C0%2C0%2C1%2C.2.4.454.454%2C0%2C0%2C1-.068.245.408.408%2C0%2C0%2C1-.141.142l-1.259.84a.494.494%2C0%2C0%2C1-.534%2C0l-1.5-1.057a.478.478%2C0%2C0%2C1-.2-.407.441.441%2C0%2C0%2C1%2C.071-.235.524.524%2C0%2C0%2C1%2C.155-.156l1.306-.8a.474.474%2C0%2C0%2C1%2C.52.02Zm-3.576-2.392a.473.473%2C0%2C0%2C1%2C.2.394.488.488%2C0%2C0%2C1-.076.248.5.5%2C0%2C0%2C1-.135.142l-1.26.837a.456.456%2C0%2C0%2C1-.536-.009l-1.506-1.052a.493.493%2C0%2C0%2C1-.2-.408.479.479%2C0%2C0%2C1%2C.076-.238.543.543%2C0%2C0%2C1%2C.153-.157l1.306-.791a.461.461%2C0%2C0%2C1%2C.52.015ZM45.086%2C179.5a.367.367%2C0%2C0%2C1-.108.088.344.344%2C0%2C0%2C1-.411-.53A106.077%2C106.077%2C0%2C0%2C1%2C56%2C168.515a.331.331%2C0%2C0%2C1%2C.475.043.335.335%2C0%2C0%2C1-.047.481A106.95%2C106.95%2C0%2C0%2C0%2C45.086%2C179.5%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M202.263%2C57.45A13.549%2C13.549%2C0%2C0%2C0%2C198%2C53.311c-2.833-1.7-6.858-.376-8.551%2C2.421a3.7%2C3.7%2C0%2C0%2C0-.191%2C3.2%2C1.594%2C1.594%2C0%2C0%2C0-2.152%2C1.85%2C8.859%2C8.859%2C0%2C0%2C0-2.337-.235%2C10.863%2C10.863%2C0%2C0%2C0-5.222%2C1.368%2C11.887%2C11.887%2C0%2C0%2C0-3.872%2C3.878%2C4.188%2C4.188%2C0%2C0%2C0-.572%2C3.169%2C7.213%2C7.213%2C0%2C0%2C0-.353%2C2.51c.153%2C3.791%2C1.5%2C4.477%2C1.639%2C5.467s-.726%2C3.54-.819%2C4.142c-.083.5.951.706%2C1.265.815a2.338%2C2.338%2C0%2C0%2C1%2C.792.349c.288.286.226.8.6%2C1.013a2.5%2C2.5%2C0%2C0%2C0%2C2.1-.235c.174-.076.1.619-.116%2C1.033s-.455.53-.575.84c-.424%2C1.08.7.509.8%2C1.374s.366%2C1.7%2C1.4%2C1.782c2.915.247%2C3.931-3.277%2C5.075-2.577%2C1.754%2C1.073%2C3.162%2C3.307%2C2.734%2C5.3-.252%2C1.149-2.6%2C3.737-1.034%2C4.873%2C1.333.972%2C6.148-3.175%2C7.213-4.062%2C1.01-.842%2C4.9-4.3%2C4.891-5.663%2C0-1.064-3.788-3.992-4.484-4.866a14.356%2C14.356%2C0%2C0%2C1-1.417-2.081%2C15.333%2C15.333%2C0%2C0%2C0%2C1.5-7.039%2C13.123%2C13.123%2C0%2C0%2C0-4.057-8.07%2C1.569%2C1.569%2C0%2C0%2C0%2C.458-.4%2C1.606%2C1.606%2C0%2C0%2C0-.144-2.084%2C1.02%2C1.02%2C0%2C0%2C1%2C.748-.458%2C3.06%2C3.06%2C0%2C0%2C1%2C3.837%2C2.66c.56%2C2.568-.644%2C3.075-.053%2C5.932s4.333%2C3.2%2C5.406%2C2.3A4.165%2C4.165%2C0%2C0%2C0%2C204.2%2C69.2c0%2C.86-1.787.895-2.22.512-.977-.835.154-3.171.606-4.04a7.966%2C7.966%2C0%2C0%2C0-.323-8.219%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M26.794%2C87.9a8.922%2C8.922%2C0%2C0%2C1-.52-1.61%2C2.805%2C2.805%2C0%2C0%2C1%2C.161-2.151%2C9.5%2C9.5%2C0%2C0%2C0%2C.747-4.4A7.959%2C7.959%2C0%2C0%2C0%2C26.3%2C76.56a1.075%2C1.075%2C0%2C0%2C0%2C.841-.263c2.721-2.343-.749-4-2.8-4.8a51.783%2C51.783%2C0%2C0%2C0-5.529-1.8%2C11.675%2C11.675%2C0%2C0%2C0-6.414-.211%2C13.444%2C13.444%2C0%2C0%2C0-5.872%2C4.07%2C15.553%2C15.553%2C0%2C0%2C0-2.8%2C6.4c-.782%2C3.317%2C1.237%2C7.816%2C1.978%2C8.977.4.607.708.731.921.712a16.249%2C16.249%2C0%2C0%2C1-1.292%2C2.322%2C35.1%2C35.1%2C0%2C0%2C1-2.312%2C3.138c-.343.414-1.576%2C1.386-1.677%2C1.9-.276%2C1.44%2C3.053%2C4.126%2C4.172%2C5.264%2C1.479%2C1.5%2C3.962%2C3.968%2C6.1%2C4.427%2C2.949.633%2C2.243-2.081%2C1.8-3.963a5.024%2C5.024%2C0%2C0%2C1%2C.217-3.616c.49-1.019.951-2.109%2C2.006-2.451a3.561%2C3.561%2C0%2C0%2C1%2C2.494.642%2C5.308%2C5.308%2C0%2C0%2C0%2C2.715.645%2C1.815%2C1.815%2C0%2C0%2C0%2C1.321-.648c.434-.567.194-1.8.59-1.916a.721.721%2C0%2C0%2C0%2C.514-.876c-.173-.419-.511-.6-.818-1.026a1.249%2C1.249%2C0%2C0%2C1-.241-1.312c.119-.263.5.114.713.19a1.744%2C1.744%2C0%2C0%2C0%2C1.122.2%2C1.131%2C1.131%2C0%2C0%2C0%2C.789-.665c.1-.276.172-1.261.628-1.181.707.123%2C1.67.229%2C1.891-.687a6.374%2C6.374%2C0%2C0%2C0-.576-2.127%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.959%2C94.951c1.319-1.7%2C1.1-3.091.01-4.036-.01-.027-.036-.033-.071-.064a5.045%2C5.045%2C0%2C0%2C0-3.132-.829.127.127%2C0%2C0%2C0-.07.01l1.629-2.868a7.826%2C7.826%2C0%2C0%2C1%2C3.311%2C1.379%2C1.343%2C1.343%2C0%2C0%2C0%2C.179.13%2C5.242%2C5.242%2C0%2C0%2C1%2C1.914%2C3.847%2C6.259%2C6.259%2C0%2C0%2C1-1.544%2C4.266%2C11.07%2C11.07%2C0%2C0%2C1-5.032%2C3.258c-5.163%2C1.809-6.3%2C2.3-9.378%2C4.442l3.457-5.184a49.78%2C49.78%2C0%2C0%2C1%2C4.977-1.984%2C8.215%2C8.215%2C0%2C0%2C0%2C3.75-2.367%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M136.118%2C58.983c.093.887%2C2.923%2C1.32%2C6.335.968s6.094-1.35%2C6.006-2.228-2.925-1.318-6.338-.972-6.1%2C1.354-6%2C2.232%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.272%2C85.528c-.237%2C1.579-12.311%2C20-12.311%2C20a21.314%2C21.314%2C0%2C0%2C1-11.6-4.964%2C31.531%2C31.531%2C0%2C0%2C1-8.507-10.411l3.109-26.784-4.736-3.31s.035-.01.074-.024a4.472%2C4.472%2C0%2C0%2C0%2C1.894.625%2C19.4%2C19.4%2C0%2C0%2C0%2C4.4%2C0%2C20.848%2C20.848%2C0%2C0%2C0%2C3.713-.7%2C5.136%2C5.136%2C0%2C0%2C0%2C2.291-1.183c.035.007.078.013.078.013l-5.012%2C4.663%2C1.328%2C19.9L155.737%2C73.1a29.785%2C29.785%2C0%2C0%2C0%2C4.1%2C5.763%2C32.976%2C32.976%2C0%2C0%2C0%2C5.157%2C4.473v.048c2.25%2C1.534%2C4%2C2.383%2C4.34%2C1.967.4-.5-1.406-2.654-4.16-5.083l-.133%2C2.211a31.115%2C31.115%2C0%2C0%2C1-4.667-4.1%2C28.908%2C28.908%2C0%2C0%2C1-3.969-5.566l9.329%2C1.88-.39%2C4.76s5.138%2C4.609%2C4.931%2C6.074%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M141.7%2C12.148a6.522%2C6.522%2C0%2C0%2C0%2C4.833-.655%2C6.479%2C6.479%2C0%2C0%2C0%2C3.375-3.531l.014-.006-.008%2C0V7.948l-.007.006a6.533%2C6.533%2C0%2C0%2C0-4.836.647%2C6.546%2C6.546%2C0%2C0%2C0-3.38%2C3.533l-.009.009.006%2C0%2C0%2C0Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.379%2C9.816a.558.558%2C0%2C0%2C0-.549-.3.548.548%2C0%2C0%2C0-.205.062.556.556%2C0%2C0%2C0-.3.544.523.523%2C0%2C0%2C0%2C.055.194c0%2C.016.06.111.145.333a7.438%2C7.438%2C0%2C0%2C1%2C.437%2C1.864%2C6.932%2C6.932%2C0%2C0%2C1-.129%2C2.212%2C4.457%2C4.457%2C0%2C0%2C0%2C.555.138%2C3.1%2C3.1%2C0%2C0%2C0%2C.542.07%2C8.213%2C8.213%2C0%2C0%2C0%2C.139-2.549%2C7.819%2C7.819%2C0%2C0%2C0-.694-2.568%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M140.659%2C14.939a1.806%2C1.806%2C0%2C0%2C0%2C.663-.174l0%2C0a.371.371%2C0%2C0%2C1%2C.5.162.567.567%2C0%2C0%2C1%2C.043.13.361.361%2C0%2C0%2C1-.2.363%2C2.7%2C2.7%2C0%2C0%2C1-.935.256%2C4.871%2C4.871%2C0%2C0%2C1-1.485-.082%2C3.568%2C3.568%2C0%2C0%2C1-2.281-1.195.353.353%2C0%2C0%2C1%2C.1-.512.369.369%2C0%2C0%2C1%2C.512.1%2C1.676%2C1.676%2C0%2C0%2C0%2C.671.506%2C6.084%2C6.084%2C0%2C0%2C0%2C.112-1.791%2C11.718%2C11.718%2C0%2C0%2C0-4.552.033%2C7.151%2C7.151%2C0%2C0%2C0-5.476%2C6.043c-.912%2C5.5-.214%2C9.208%2C3.051%2C10.336.848.294%2C2.068.117%2C3%2C.425%2C1.048.341%2C1.8%2C1.234%2C2.851%2C1.6%2C3.273%2C1.128%2C5.885-.693%2C8.794-6.243%2C1.209-2.3%2C1.727-5.034.385-7.409a8.629%2C8.629%2C0%2C0%2C0-3.332-3.144%2C13.674%2C13.674%2C0%2C0%2C0-2.365-1.045%2C8.836%2C8.836%2C0%2C0%2C1-.157%2C1.649.722.722%2C0%2C0%2C1%2C.1%2C0%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M112.948%2C179.844c-11.968-.022-21.666%2C6.547-21.679%2C14.66-.02%2C6.64%2C6.45%2C12.247%2C15.355%2C14.084%2C1.993%2C2.694-.484%2C7.518-.484%2C7.518a19.341%2C19.341%2C0%2C0%2C0%2C8.647-6.939c11.074-.626%2C19.782-6.913%2C19.795-14.607.006-8.108-9.675-14.694-21.634-14.716m.577%2C23.978c1.069%2C1.174-1.076%2C2.683-2.01%2C3.076a1.23%2C1.23%2C0%2C0%2C1-.86.249c-.443.006-.491-.126-.7-.476-.489-.68-.844-1.089-.556-2a2.1%2C2.1%2C0%2C0%2C1%2C2.031-1.367%2C3.682%2C3.682%2C0%2C0%2C1%2C2.093.523m6.327-18.574a8.091%2C8.091%2C0%2C0%2C1%2C.736%2C1.356%2C3.894%2C3.894%2C0%2C0%2C1%2C.735%2C1.592%2C6.9%2C6.9%2C0%2C0%2C1-.644%2C2.921%2C5.278%2C5.278%2C0%2C0%2C1-.608%2C1.484c-.226.285-.537.465-.806.746a3.641%2C3.641%2C0%2C0%2C1-1.312%2C1c-.52.195-1.143.088-1.663.28a4.2%2C4.2%2C0%2C0%2C0-.712.483c-.362.174-.723.192-1.036.326a11.968%2C11.968%2C0%2C0%2C0-1.265.946c-1.243.943-.289%2C2.058-.309%2C3.249-.02.638-.808.743-1.266.661a4.548%2C4.548%2C0%2C0%2C1-.747-.121c-.929-.323-1.1-2.113-1.155-2.946a7.863%2C7.863%2C0%2C0%2C1%2C.112-.87c.029-.305-.156-.569.071-.853.27-.317.736-.4%2C1.071-.665.258-.228.406-.549.685-.742a8.728%2C8.728%2C0%2C0%2C1%2C1.965-1.059c.125-.027.268.053.361.017.351-.134.7-.476%2C1.151-.64a6.766%2C6.766%2C0%2C0%2C0%2C1.792-.495c.913-.67%2C2.084-2.469%2C1.679-3.606a4.9%2C4.9%2C0%2C0%2C0-1.915-2.433%2C4.115%2C4.115%2C0%2C0%2C0-2.3-.114c-.939.235-1.38%2C1.508-2.374%2C1.417a1.968%2C1.968%2C0%2C0%2C1-.664-.267.794.794%2C0%2C0%2C1-.575-.651c-.37-1.422%2C1.249-2.739%2C2.554-2.989.41-.052.894-.047%2C1.294-.062a6.57%2C6.57%2C0%2C0%2C1%2C1.276.262%2C6.253%2C6.253%2C0%2C0%2C1%2C3.867%2C1.778%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M74.57%2C144.591l-.84%2C1.565%2C1.662.656a3.356%2C3.356%2C0%2C0%2C1-1.137%2C6.477l-1.784.043.279%2C1.767a3.358%2C3.358%2C0%2C0%2C1-6.18%2C2.26l-.93-1.519-1.391%2C1.118a3.359%2C3.359%2C0%2C0%2C1-5.052-4.224l.852-1.557-1.665-.645a3.37%2C3.37%2C0%2C0%2C1-2.088-3.7%2C3.336%2C3.336%2C0%2C0%2C1%2C3.221-2.784l1.781-.055-.279-1.749a3.358%2C3.358%2C0%2C0%2C1%2C6.179-2.275l.934%2C1.514%2C1.389-1.1a3.355%2C3.355%2C0%2C0%2C1%2C5.049%2C4.213%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M143.162%2C132.449a.4.4%2C0%2C0%2C0%2C.217.47l4.911%2C2.314-3.823%2C3.856a.4.4%2C0%2C0%2C0%2C.458.635l4.87-2.393.623%2C5.39a.41.41%2C0%2C0%2C0%2C.384.358.4.4%2C0%2C0%2C0%2C.409-.314l1.161-5.31%2C4.609%2C2.879a.4.4%2C0%2C0%2C0%2C.514-.073.4.4%2C0%2C0%2C0%2C.009-.517l-3.422-4.219%2C5.124-1.813a.391.391%2C0%2C0%2C0%2C.256-.447.4.4%2C0%2C0%2C0-.4-.329l-5.431.045%2C1.778-5.129a.41.41%2C0%2C0%2C0-.187-.489.406.406%2C0%2C0%2C0-.51.113l-3.345%2C4.274-2.9-4.591a.4.4%2C0%2C0%2C0-.734.309l1.255%2C5.283-5.4-.59a.4.4%2C0%2C0%2C0-.43.288%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14.143%2C117.97l2.615-2.386a.382.382%2C0%2C0%2C0%2C.1-.4.367.367%2C0%2C0%2C0-.328-.245L13%2C114.667l.713-3.47a.366.366%2C0%2C0%2C0-.153-.378.371.371%2C0%2C0%2C0-.411-.014l-3.016%2C1.863-1.462-3.226a.369.369%2C0%2C0%2C0-.346-.217.363.363%2C0%2C0%2C0-.338.229L6.64%2C112.733l-3.08-1.75a.374.374%2C0%2C0%2C0-.41.03.36.36%2C0%2C0%2C0-.136.384l.837%2C3.441-3.519.4a.376.376%2C0%2C0%2C0-.317.264.38.38%2C0%2C0%2C0%2C.117.4l2.7%2C2.287L.221%2C120.573a.377.377%2C0%2C0%2C0-.1.4.389.389%2C0%2C0%2C0%2C.326.25l3.53.265-.709%2C3.467a.374.374%2C0%2C0%2C0%2C.563.4l3.012-1.856%2C1.468%2C3.217a.37.37%2C0%2C0%2C0%2C.684-.011l1.343-3.276%2C3.081%2C1.749a.377.377%2C0%2C0%2C0%2C.551-.416l-.843-3.444%2C3.52-.393a.373.373%2C0%2C0%2C0%2C.317-.264.367.367%2C0%2C0%2C0-.117-.393Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M175.032%2C150.308l-.971%2C3.453-3.185-1.9a.43.43%2C0%2C0%2C0-.171-.059.453.453%2C0%2C0%2C0-.413.155.408.408%2C0%2C0%2C0-.095.2.425.425%2C0%2C0%2C0%2C.142.375l2.618%2C2.562-3.262%2C1.68a.432.432%2C0%2C0%2C0-.232.317.366.366%2C0%2C0%2C0%2C.041.241.437.437%2C0%2C0%2C0%2C.336.251.354.354%2C0%2C0%2C0%2C.2-.019l3.584-.872-.082%2C3.581a.449.449%2C0%2C0%2C0%2C.877.132l.97-3.447%2C3.182%2C1.893a.532.532%2C0%2C0%2C0%2C.172.066.463.463%2C0%2C0%2C0%2C.415-.159.451.451%2C0%2C0%2C0%2C.091-.205.459.459%2C0%2C0%2C0-.115-.355l-2.641-2.575%2C3.266-1.688a.444.444%2C0%2C0%2C0%2C.232-.309.5.5%2C0%2C0%2C0-.029-.223.467.467%2C0%2C0%2C0-.356-.273.487.487%2C0%2C0%2C0-.172.007l-3.606.881.082-3.58a.435.435%2C0%2C0%2C0-.389-.437.425.425%2C0%2C0%2C0-.488.308%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.12%2C80.3l-.8%2C4.7-4.477-2.062a.471.471%2C0%2C0%2C0-.231-.052.589.589%2C0%2C0%2C0-.523.256.489.489%2C0%2C0%2C0-.1.287.542.542%2C0%2C0%2C0%2C.24.47l3.822%2C3.015L68.98%2C89.594a.566.566%2C0%2C0%2C0-.262.449.489.489%2C0%2C0%2C0%2C.088.309.563.563%2C0%2C0%2C0%2C.482.284.459.459%2C0%2C0%2C0%2C.263-.046l4.609-1.656.394%2C4.741a.6.6%2C0%2C0%2C0%2C1.179.053l.8-4.695%2C4.476%2C2.052a.556.556%2C0%2C0%2C0%2C.232.063.609.609%2C0%2C0%2C0%2C.523-.27.515.515%2C0%2C0%2C0%2C.093-.285.59.59%2C0%2C0%2C0-.2-.452L77.8%2C87.111l4.079-2.692a.6.6%2C0%2C0%2C0%2C.26-.441.607.607%2C0%2C0%2C0-.068-.286.632.632%2C0%2C0%2C0-.505-.315.662.662%2C0%2C0%2C0-.227.038L76.7%2C85.092l-.4-4.751a.573.573%2C0%2C0%2C0-.571-.518.562.562%2C0%2C0%2C0-.606.475%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M192.766%2C148.739a.424.424%2C0%2C0%2C0-.386.287l-1.783%2C5.017-5.146-1.383a.443.443%2C0%2C0%2C0-.455.159.425.425%2C0%2C0%2C0-.016.479l2.809%2C4.525L183.5%2C160.98a.424.424%2C0%2C0%2C0-.158.455.429.429%2C0%2C0%2C0%2C.361.319l5.291.619-.2%2C5.322a.429.429%2C0%2C0%2C0%2C.255.408.424.424%2C0%2C0%2C0%2C.47-.09l3.785-3.748%2C4.041%2C3.48a.417.417%2C0%2C0%2C0%2C.472.056.43.43%2C0%2C0%2C0%2C.224-.425l-.57-5.3%2C5.237-.983a.444.444%2C0%2C0%2C0%2C.341-.338.433.433%2C0%2C0%2C0-.191-.443l-4.5-2.856%2C2.493-4.709a.428.428%2C0%2C0%2C0-.058-.477.419.419%2C0%2C0%2C0-.459-.127l-5.037%2C1.735L193.175%2C149a.435.435%2C0%2C0%2C0-.409-.256%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M208.523%2C89.115a.223.223%2C0%2C0%2C0-.2.152l-.95%2C2.669L204.63%2C91.2a.226.226%2C0%2C0%2C0-.25.341l1.5%2C2.406-2.281%2C1.682a.227.227%2C0%2C0%2C0%2C.108.409l2.815.331-.106%2C2.833a.219.219%2C0%2C0%2C0%2C.135.214.216.216%2C0%2C0%2C0%2C.248-.045l2.018-2%2C2.147%2C1.854a.226.226%2C0%2C0%2C0%2C.372-.2l-.3-2.821%2C2.785-.523a.229.229%2C0%2C0%2C0%2C.182-.182.223.223%2C0%2C0%2C0-.1-.232l-2.4-1.521%2C1.329-2.507A.229.229%2C0%2C0%2C0%2C212.8%2C91a.22.22%2C0%2C0%2C0-.244-.067l-2.68.922-1.133-2.6a.229.229%2C0%2C0%2C0-.217-.137%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M40.613%2C165.006a13.46%2C13.46%2C0%2C0%2C0-.17-2.614c-.091-1.11-.192-2.217-.282-3.326a6.858%2C6.858%2C0%2C0%2C1%2C.294-2.6%2C20.988%2C20.988%2C0%2C0%2C1%2C2.779-5.015l2.07-2.9c.622-.737%2C1.262-1.515%2C1.967-2.342%2C8.623-10.192%2C12.093-11.834%2C14.532-14.722%2C3.932-4.649-4.825-10.285-8.008-4.932-1.913%2C3.212-2.139%2C6.743-8.882%2C18.057-.561.956-1.1%2C1.826-1.606%2C2.673%2C0%2C0-2.113%2C2.953-2.128%2C2.975-1.817%2C2.538-4.681%2C3.93-5.724%2C7.013-.111.339-.637%2C2.779-.654%2C2.781s-.024%2C0-.038.01a21.6%2C21.6%2C0%2C0%2C0-4.918-.681c-.307-.013-.61-.007-.9%2C0a17.732%2C17.732%2C0%2C0%2C0-7.013%2C1.363c-1.8.833-3.134%2C2.034-3.231%2C3.678a.988.988%2C0%2C0%2C0%2C0%2C.167%2C12.353%2C12.353%2C0%2C0%2C0%2C.232%2C1.467c2.4%2C11.356%2C15.867%2C14.346%2C21.233.665a10.82%2C10.82%2C0%2C0%2C0%2C.391-1.356%2C3.429%2C3.429%2C0%2C0%2C0%2C.064-.357m-1.336.036c-.015.769-.8%2C1.7-2.392%2C2.434a16.31%2C16.31%2C0%2C0%2C1-6.434%2C1.241c-.282%2C0-.568%2C0-.854%2C0a17.572%2C17.572%2C0%2C0%2C1-6.888-1.46c-1.749-.827-2.6-1.879-2.582-2.686v-.015l0-.041c0-.775.776-1.714%2C2.395-2.459a16.3%2C16.3%2C0%2C0%2C1%2C6.432-1.238c.282-.01.563%2C0%2C.848%2C0a17.475%2C17.475%2C0%2C0%2C1%2C6.9%2C1.459c1.742.827%2C2.6%2C1.879%2C2.579%2C2.683%2C0%2C.014%2C0%2C.041%2C0%2C.085%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M179.356%2C124.805a4.49%2C4.49%2C0%2C0%2C0-1.168-1.888%2C29.676%2C29.676%2C0%2C0%2C0-3.691-2.589c-1.547-1.043-2.884-1.412-4.077-.77a8.309%2C8.309%2C0%2C0%2C0-3.875%2C6.7c.059%2C1.359%2C1.058%2C2.305%2C2.745%2C3.106a30.142%2C30.142%2C0%2C0%2C0%2C4.115%2C1.841%2C4.574%2C4.574%2C0%2C0%2C0%2C2.178.05%2C11.778%2C11.778%2C0%2C0%2C0%2C3.773-6.455%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M199.641%2C138.974a1.774%2C1.774%2C0%2C0%2C0%2C.031-1.041s-19.38-12.517-19.411-12.625a11.751%2C11.751%2C0%2C0%2C1-3.772%2C6.457c.028%2C0%2C.677.315%2C1.772.86a1.627%2C1.627%2C0%2C0%2C0%2C.71.767.154.154%2C0%2C0%2C0%2C.05.029l4.419%2C2.36a1.932%2C1.932%2C0%2C0%2C0%2C1.383.153c7.467%2C3.781%2C12.463%2C6.106%2C12.463%2C6.106a2.145%2C2.145%2C0%2C0%2C0%2C.913-.581%2C5.24%2C5.24%2C0%2C0%2C0%2C.922-1.249%2C5.108%2C5.108%2C0%2C0%2C0%2C.52-1.236m-14.3-4.317a.318.318%2C0%2C0%2C0-.038.064.956.956%2C0%2C0%2C1-1.2.291l-4.444-2.372-.095.146.085-.149a.65.65%2C0%2C0%2C1-.273-.916c.013-.021.019-.035.025-.044a.949.949%2C0%2C0%2C1%2C1.215-.311l4.435%2C2.363.02.011a.655.655%2C0%2C0%2C1%2C.27.917%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M185.073%2C133.74l-.019-.011-4.434-2.363a.951.951%2C0%2C0%2C0-1.217.311.2.2%2C0%2C0%2C1-.026.044.654.654%2C0%2C0%2C0%2C.275.916l-.086.149.1-.146%2C4.444%2C2.372a.958.958%2C0%2C0%2C0%2C1.2-.291.365.365%2C0%2C0%2C1%2C.035-.064.653.653%2C0%2C0%2C0-.27-.917%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M211.911%2C147.464a2.073%2C2.073%2C0%2C0%2C1-2.019.051%2C1.739%2C1.739%2C0%2C0%2C1-.922-1.193%2C5.767%2C5.767%2C0%2C0%2C0-.423-1.743%2C1.709%2C1.709%2C0%2C0%2C0-.718-.723%2C4.147%2C4.147%2C0%2C0%2C0-1.492-.285%2C2.423%2C2.423%2C0%2C0%2C1-.8-.252%2C1.957%2C1.957%2C0%2C0%2C1-.2-.117%2C6.355%2C6.355%2C0%2C0%2C0-.852-.689c-.026-.009-.054-.021-.079-.028%2C0%2C.033-.009.063-.013.1a2.643%2C2.643%2C0%2C0%2C1-.549%2C1.079l-.008.036h0a.03.03%2C0%2C0%2C1%2C.014.006c.11.043.35.338.743.623.1.063.2.123.309.181a3.659%2C3.659%2C0%2C0%2C0%2C1.256.394%2C3.818%2C3.818%2C0%2C0%2C1%2C1.036.147c.053.023.089.046.156.166a5.578%2C5.578%2C0%2C0%2C1%2C.288%2C1.375%2C3.11%2C3.11%2C0%2C0%2C0%2C1.61%2C2.115l.009%2C0a3.455%2C3.455%2C0%2C0%2C0%2C3.358-.1Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M200.387%2C139.392a4.863%2C4.863%2C0%2C0%2C1-.515%2C1.24%2C5.122%2C5.122%2C0%2C0%2C1-.927%2C1.246l3.264%2C1.816a1.371%2C1.371%2C0%2C0%2C0%2C.761-.41c.047-.048.1-.114.152-.173a2.544%2C2.544%2C0%2C0%2C0%2C.281-.412%2C2.408%2C2.408%2C0%2C0%2C0%2C.267-.668c.007-.036.012-.072.016-.107a1.217%2C1.217%2C0%2C0%2C0-.074-.748Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M125.308%2C14.048l-6.934-2.366%2C2.654-6.425a.692.692%2C0%2C0%2C0-.114-.742.673.673%2C0%2C0%2C0-.678-.207l-7.608%2C2.3L110.03.416A.656.656%2C0%2C0%2C0%2C108.9.254l-4.556%2C5.959-6.81-3a.634.634%2C0%2C0%2C0-.655.071.735.735%2C0%2C0%2C0-.273.627l.655%2C6.685L89.51%2C12.279a.692.692%2C0%2C0%2C0-.5.531.71.71%2C0%2C0%2C0%2C.244.7l5.368%2C4.341-4.973%2C5.457a.719.719%2C0%2C0%2C0-.129.753.705.705%2C0%2C0%2C0%2C.62.427l7.729.054-.051%2C6.686a.667.667%2C0%2C0%2C0%2C.353.62.647.647%2C0%2C0%2C0%2C.687-.02l6.035-4.105c3.053%2C7.369%2C14.272%2C6.828%2C14.272%2C6.828s-6.664-4.315-5.039-9.187c.014-.029%2C7.135.642%2C7.135.642a.674.674%2C0%2C0%2C0%2C.62-.317.7.7%2C0%2C0%2C0%2C.012-.714l-3.213-5.838%2C6.761-3.831a.7.7%2C0%2C0%2C0-.135-1.259m-14.971%2C9.679a1.39%2C1.39%2C0%2C0%2C1-.475.812%2C1.706%2C1.706%2C0%2C0%2C1-2.659-.871%2C2.136%2C2.136%2C0%2C0%2C1%2C.261-1.729%2C1.7%2C1.7%2C0%2C0%2C1%2C.405-.607%2C1.991%2C1.991%2C0%2C0%2C1%2C2.624.794%2C2.24%2C2.24%2C0%2C0%2C1-.156%2C1.6M108.25%2C13.182a3.073%2C3.073%2C0%2C0%2C1%2C.056.5%2C18.524%2C18.524%2C0%2C0%2C1%2C.576%2C2.673%2C7.884%2C7.884%2C0%2C0%2C1%2C.19%2C1.06c-.011.192.065.415.059.611a2.674%2C2.674%2C0%2C0%2C1-.247.752c-.108.325-.078.692-.425.882-.552.339-1.617-.248-1.882-.754a8.312%2C8.312%2C0%2C0%2C1-.457-2.721c-.185-1.527-.9-3.191-1.2-4.634-.135-.7-.734-1.745.042-2.22a1.838%2C1.838%2C0%2C0%2C1%2C2.167.281c.3.391.258%2C1.154.411%2C1.6.207.677.481%2C1.318.706%2C1.966%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2229.167%20104.311%2024.575%20106.481%2046.022%20111.25%2051.068%20108.653%2029.167%20104.311%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2223.919%20107.225%2023.883%20108.127%2046.09%20113.066%2051.317%20111.381%2051.705%20109.233%2046.202%20112.188%2023.919%20107.225%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M64.24%2C70.781a1.159%2C1.159%2C0%2C0%2C0-.6-1.021l-2.166-.346v.025a1.223%2C1.223%2C0%2C0%2C1%2C.974%2C1.4c-.031.828-2.345%2C26.845-2.419%2C27.756a1.785%2C1.785%2C0%2C0%2C1-1.165%2C1.607l.026.041c1.346.039%2C1.638-.09%2C2.035-.314a1.657%2C1.657%2C0%2C0%2C0%2C.778-1.106c.084-.325%2C2.635-27.209%2C2.539-28.042%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M41.479%2C102.592l-.022.579s6.829%2C1.22%2C7.46%2C1.311a8.1%2C8.1%2C0%2C0%2C0%2C2.7-.241%2C17.216%2C17.216%2C0%2C0%2C0%2C4-.977%2C1.522%2C1.522%2C0%2C0%2C0%2C.6-1.238c.024-.561.033-1.685.033-1.685l-.593-.063s-.012%2C1.049-.031%2C1.525-.075.953-.506%2C1.109-4.242.9-4.971.96a7.071%2C7.071%2C0%2C0%2C1-2.136-.121c-.978-.14-6.531-1.159-6.531-1.159%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M49.3%2C99.439c-.015.241-.041.606-.078.9a1.445%2C1.445%2C0%2C0%2C1-1.234%2C1.251c-.522.131-3.922.4-6.012.555%2C1.914.328%2C4.882.838%2C5.525.93.661.094%2C1.024.14%2C1.315.15a5.446%2C5.446%2C0%2C0%2C0%2C.775-.031c.742-.061%2C4.523-.8%2C4.908-.944.271-.1.337-.393.361-.9.006-.327.01-.834.009-1.116Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M60.621%2C69.832c-.057%2C0-.117%2C0-.184%2C0-.326.009-1.943.02-4.18.034-5.822.045-17.88.127-18.8.291-.317.156-.455.441-.522%2C1.063-.03.3-.514%2C5.726-1.03%2C11.463-.562%2C6.293-1.143%2C12.8-1.18%2C13.123-.056.5-.022.618.448.717.9.2%2C20.126%2C3.267%2C22.967%2C3.379.114%2C0%2C.176%2C0%2C.2%2C0a1.352%2C1.352%2C0%2C0%2C0%2C.9-1.253c.013-.157.1-1.095.223-2.528.6-6.71%2C2.174-24.538%2C2.2-25.21.029-.706-.308-1.048-1.054-1.077M56.938%2C90.991%2C37.813%2C88.9l1.53-16.1%2C19.312.119Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M88.251%2C206.665l-2.346.19%2C1.178%2C2.045a.641.641%2C0%2C0%2C1%2C.087.418.708.708%2C0%2C0%2C1-.211.4.671.671%2C0%2C0%2C1-.536.166.748.748%2C0%2C0%2C1-.3-.115l-1.919-1.363-.414%2C2.326a.651.651%2C0%2C0%2C1-.621.54c-.038%2C0-.078%2C0-.12%2C0a.657.657%2C0%2C0%2C1-.548-.488l-.605-2.275-1.8%2C1.5a.661.661%2C0%2C0%2C1-.517.159.7.7%2C0%2C0%2C1-.317-.135.656.656%2C0%2C0%2C1-.248-.616.648.648%2C0%2C0%2C1%2C.053-.191l1.007-2.134-2.352.006c-.03-.006-.061-.006-.088-.01a.653.653%2C0%2C0%2C1-.556-.514.566.566%2C0%2C0%2C1-.013-.231.656.656%2C0%2C0%2C1%2C.372-.517l2.142-.986-1.8-1.511a.678.678%2C0%2C0%2C1-.231-.6.634.634%2C0%2C0%2C1%2C.076-.217.645.645%2C0%2C0%2C1%2C.675-.35.207.207%2C0%2C0%2C1%2C.085.02l2.27.619-.408-2.318a.563.563%2C0%2C0%2C1%2C0-.208.664.664%2C0%2C0%2C1%2C1.2-.289l1.348%2C1.936%2C1.174-2.037a.647.647%2C0%2C0%2C1%2C.658-.329.525.525%2C0%2C0%2C1%2C.114.025.663.663%2C0%2C0%2C1%2C.459.694l-.212%2C2.344%2C2.21-.8a.66.66%2C0%2C0%2C1%2C.317-.037.651.651%2C0%2C0%2C1%2C.473.305.692.692%2C0%2C0%2C1%2C.1.445.675.675%2C0%2C0%2C1-.19.383l-1.669%2C1.65%2C2.205.81a.664.664%2C0%2C0%2C1-.173%2C1.286m-3.716-6.442-.287-.164Zm-6.817%2C6.221h0v0Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M17.929%2C145.6a.616.616%2C0%2C0%2C0-.047.347l.524%2C2.714-1.94%2C1.961a.541.541%2C0%2C0%2C0-.106.144.577.577%2C0%2C0%2C0-.026.434.554.554%2C0%2C0%2C0%2C.456.364l2.741.344%2C1.265%2C2.449a.56.56%2C0%2C0%2C0%2C1%2C0%2C.036.036%2C0%2C0%2C1%2C0-.015l1.173-2.495%2C2.721-.448a.54.54%2C0%2C0%2C0%2C.411-.311.311.311%2C0%2C0%2C0%2C.035-.077.57.57%2C0%2C0%2C0-.154-.572l-2.008-1.883.411-2.73a.574.574%2C0%2C0%2C0-.229-.542.563.563%2C0%2C0%2C0-.59-.027l-2.42%2C1.33-2.463-1.239a.575.575%2C0%2C0%2C0-.589.059.564.564%2C0%2C0%2C0-.164.2%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M91.589%2C37.093l-.1.234.1-.238-3.657-1.5%2C3.657-1.5a.477.477%2C0%2C0%2C0%2C.291-.446.49.49%2C0%2C0%2C0-.016-.135.5.5%2C0%2C0%2C0-.458-.341.581.581%2C0%2C0%2C0-.123.02l-3.833.931%2C2.078-3.368a.481.481%2C0%2C0%2C0-.123-.63.474.474%2C0%2C0%2C0-.647.081l-2.556%2C3-.3-3.943a.473.473%2C0%2C0%2C0-.943%2C0l-.3%2C3.939L82.092%2C30.2a.458.458%2C0%2C0%2C0-.361-.169.451.451%2C0%2C0%2C0-.284.094.47.47%2C0%2C0%2C0-.2.377.476.476%2C0%2C0%2C0%2C.073.255L83.4%2C34.116l-3.842-.931a.37.37%2C0%2C0%2C0-.111-.02.482.482%2C0%2C0%2C0-.452.332.467.467%2C0%2C0%2C0-.026.144.488.488%2C0%2C0%2C0%2C.3.446l3.655%2C1.5-3.655%2C1.5a.479.479%2C0%2C0%2C0-.294.443.388.388%2C0%2C0%2C0%2C.03.156.458.458%2C0%2C0%2C0%2C.446.317.5.5%2C0%2C0%2C0%2C.105-.012l3.849-.931-2.075%2C3.365a.51.51%2C0%2C0%2C0-.073.25.473.473%2C0%2C0%2C0%2C.2.382.458.458%2C0%2C0%2C0%2C.279.09.5.5%2C0%2C0%2C0%2C.358-.161l2.564-3.02.3%2C3.944a.473.473%2C0%2C0%2C0%2C.943%2C0l.3-3.944%2C2.559%2C3.013a.472.472%2C0%2C0%2C0%2C.835-.3.516.516%2C0%2C0%2C0-.068-.25L87.45%2C37.062l3.848.931a.488.488%2C0%2C0%2C0%2C.566-.308.544.544%2C0%2C0%2C0%2C.016-.15.468.468%2C0%2C0%2C0-.291-.442%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M213.136%2C129.078l-.212.506.208-.509-3.188-1.312%2C3.188-1.312a.782.782%2C0%2C0%2C0%2C.484-.724.986.986%2C0%2C0%2C0-.026-.221l-.012-.03a.791.791%2C0%2C0%2C0-.745-.533.651.651%2C0%2C0%2C0-.209.031l-3.328.8%2C1.808-2.939a.783.783%2C0%2C0%2C0%2C.121-.408.779.779%2C0%2C0%2C0-.782-.784.788.788%2C0%2C0%2C0-.605.283l-2.23%2C2.621-.261-3.437a.784.784%2C0%2C0%2C0-1.563.005l-.26%2C3.432-2.235-2.628a.8.8%2C0%2C0%2C0-.6-.276.789.789%2C0%2C0%2C0-.781.785.761.761%2C0%2C0%2C0%2C.126.417l1.8%2C2.929-3.353-.811a.585.585%2C0%2C0%2C0-.188-.025.778.778%2C0%2C0%2C0-.742.548.584.584%2C0%2C0%2C0-.036.239.772.772%2C0%2C0%2C0%2C.483.721l3.188%2C1.312L200%2C129.075a.776.776%2C0%2C0%2C0-.483.725.7.7%2C0%2C0%2C0%2C.041.265.778.778%2C0%2C0%2C0%2C.737.517.745.745%2C0%2C0%2C0%2C.174-.018l3.367-.813-1.812%2C2.936a.75.75%2C0%2C0%2C0-.117.41.793.793%2C0%2C0%2C0%2C.781.784.8.8%2C0%2C0%2C0%2C.591-.267l2.245-2.64.266%2C3.441a.781.781%2C0%2C0%2C0%2C1.557%2C0l.261-3.44%2C2.236%2C2.633a.8.8%2C0%2C0%2C0%2C.6.273.777.777%2C0%2C0%2C0%2C.782-.781.79.79%2C0%2C0%2C0-.121-.414l-1.808-2.935%2C3.357.81a.8.8%2C0%2C0%2C0%2C.183.021.788.788%2C0%2C0%2C0%2C.742-.526.913.913%2C0%2C0%2C0%2C.038-.25.786.786%2C0%2C0%2C0-.48-.728%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M152.1%2C200.505l-4.32%2C1.14%2C2%2C4a.66.66%2C0%2C0%2C1-.2.84.677.677%2C0%2C0%2C1-.866-.074l-3.142-3.172-2.454%2C3.733a.668.668%2C0%2C0%2C1-1.2-.543l1.169-4.311-4.458-.259a.666.666%2C0%2C0%2C1-.129-1.309l4.32-1.14-2.007-4a.673.673%2C0%2C0%2C1%2C.211-.841.682.682%2C0%2C0%2C1%2C.863.07l3.146%2C3.178%2C2.455-3.733a.668.668%2C0%2C0%2C1%2C.833-.241.658.658%2C0%2C0%2C1%2C.369.776l-1.176%2C4.318%2C4.459.263a.664.664%2C0%2C0%2C1%2C.134%2C1.306%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M80.891%2C177.709l2.854%2C2.883-3.568%2C1.938a.411.411%2C0%2C0%2C0-.148.125.48.48%2C0%2C0%2C0-.071.474.422.422%2C0%2C0%2C0%2C.15.208.46.46%2C0%2C0%2C0%2C.44.08l3.907-1.017-.108%2C4.045a.5.5%2C0%2C0%2C0%2C.182.4.417.417%2C0%2C0%2C0%2C.26.1.459.459%2C0%2C0%2C0%2C.428-.176.418.418%2C0%2C0%2C0%2C.092-.194l1.065-3.892%2C3.458%2C2.12a.486.486%2C0%2C0%2C0%2C.6-.757l-2.853-2.881%2C3.563-1.934a.415.415%2C0%2C0%2C0%2C.153-.128.5.5%2C0%2C0%2C0%2C.068-.482.466.466%2C0%2C0%2C0-.152-.2.512.512%2C0%2C0%2C0-.408-.1l-3.935%2C1.037.106-4.057a.51.51%2C0%2C0%2C0-.184-.4.481.481%2C0%2C0%2C0-.23-.092.493.493%2C0%2C0%2C0-.454.173.45.45%2C0%2C0%2C0-.083.165l-1.077%2C3.918-3.455-2.113a.485.485%2C0%2C0%2C0-.6.754%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M161.03%2C155.472c-.012-.17-.021-.376-.018-.64a5.676%2C5.676%2C0%2C0%2C1%2C.766-2.91%2C4.584%2C4.584%2C0%2C0%2C1%2C3.564-2.039c5.16-.681%2C8.449-4.35%2C8.506-8.3l0-.009a7.149%2C7.149%2C0%2C0%2C0-.551-2.859%2C6.486%2C6.486%2C0%2C0%2C0-6.107-4.2%2C7.521%2C7.521%2C0%2C0%2C0-3.3.707l.715%2C1.45a5.765%2C5.765%2C0%2C0%2C1%2C2.565-.541%2C4.849%2C4.849%2C0%2C0%2C1%2C4.641%2C3.2%2C5.687%2C5.687%2C0%2C0%2C1%2C.43%2C2.23c-.045%2C3.044-2.593%2C6.115-7.11%2C6.728a6.2%2C6.2%2C0%2C0%2C0-4.715%2C2.778%2C7.306%2C7.306%2C0%2C0%2C0-1.013%2C3.746c0%2C.257%2C0%2C.487.016.675l-2.569%2C2.159-7.5-7.358c-1.076-2.889-3.534-5.875-7.03-5.965a4.583%2C4.583%2C0%2C0%2C0-.469.014%2C7.125%2C7.125%2C0%2C0%2C0-6.328%2C5.98c-.01.13-.015.262-.015.4-.015%2C3.165%2C2.357%2C5.463%2C4.933%2C7.6l.037-.049%2C6.181%2C8.078-2.562%2C2.236-.057-.082a1.328%2C1.328%2C0%2C0%2C1-.689.232%2C8.564%2C8.564%2C0%2C0%2C1-3.538-1.036%2C5.723%2C5.723%2C0%2C0%2C0-2.853-.528A6.1%2C6.1%2C0%2C0%2C0%2C131.6%2C173.7a5.782%2C5.782%2C0%2C0%2C0%2C1.626%2C3.553%2C11.457%2C11.457%2C0%2C0%2C0%2C3.825%2C2.432%2C16.066%2C16.066%2C0%2C0%2C1%2C3.576%2C1.911c2.434%2C1.959%2C3.441%2C4.85%2C3.7%2C8%2C.029.376.046.755.059%2C1.139l1.632-.044c-.01-.41-.031-.819-.066-1.227-.27-3.393-1.4-6.809-4.3-9.144a17.538%2C17.538%2C0%2C0%2C0-3.926-2.133%2C10%2C10%2C0%2C0%2C1-3.313-2.062%2C4.144%2C4.144%2C0%2C0%2C1-1.183-2.556%2C4.612%2C4.612%2C0%2C0%2C1%2C1.015-3.2%2C3.938%2C3.938%2C0%2C0%2C1%2C4.9-1.2%2C9.629%2C9.629%2C0%2C0%2C0%2C4.342%2C1.177%2C2.981%2C2.981%2C0%2C0%2C0%2C.841-.187l14.193%2C25.625A41.271%2C41.271%2C0%2C0%2C0%2C173.767%2C188c6.595-5.281%2C8.9-12.345%2C9.358-13.173Zm-19.909%2C1.314c-2.379-1.989-4.068-3.942-4-6.049a2.924%2C2.924%2C0%2C0%2C1%2C.011-.293%2C5.582%2C5.582%2C0%2C0%2C1%2C4.838-4.506c.1-.006.209-.013.327-.01%2C2.41-.009%2C4.55%2C2.316%2C5.5%2C4.789Zm31.166%2C18.564-.7.411-.81-1.408.695-.418Zm-1.221-2.113-.705.407-.81-1.415.7-.416Zm-1.216-2.128-.709.413-.813-1.418.706-.405Zm-16.378%2C5.583-.027.032-.026-.023.011-.018c-.017-.024-.043-.02-.065-.039a.413.413%2C0%2C0%2C1-.073-.392.485.485%2C0%2C0%2C1%2C.124-.182l12.555-10.72a.424.424%2C0%2C0%2C1%2C.575.044c.021.031.006.06.023.073h.021l.813%2C1.413-.707.4-.567-.989-12.183%2C10.4a.383.383%2C0%2C0%2C1-.474%2C0m1.881%2C1.575-1.266-1.036.511-.637%2C1.266%2C1.032Zm1.9%2C1.537-1.269-1.035.516-.634%2C1.268%2C1.023Zm1.9%2C1.532-1.266-1.034.523-.622%2C1.268%2C1.021Zm1.9%2C1.538-1.26-1.03.514-.623%2C1.266%2C1.021Zm1.913%2C1.543-1.27-1.029.51-.644%2C1.271%2C1.04Zm1.064.182-.121-.809%2C1.608-.232.123.8Zm2.414-.355-.125-.812%2C1.625-.236.119.807Zm1.369-16.667.813%2C1.417-.708.4-.812-1.406Zm1.051%2C16.3-.123-.805%2C1.62-.237.12.8Zm2.2-1.3-.787-.235.49-1.558.781.24Zm.713-2.328-.774-.24.482-1.568.78.252Zm.729-2.346-.781-.236.34-1.084-.079-.13%2C4.114-2.323-3.239%2C2.194.03.332Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.914%2C58.267c-.014-.006-.029-.018-.046-.027-3.425-1.934-7.028-4.353-10.919-3.817a12.127%2C12.127%2C0%2C0%2C0-3.323%2C1.142%2C10.742%2C10.742%2C0%2C0%2C0-.937-6.517%2C10.012%2C10.012%2C0%2C0%2C0-5.167-5.45l-.018-.007%2C0%2C.015c-.769%2C1.908-.59%2C4.724.648%2C7.5a10.814%2C10.814%2C0%2C0%2C0%2C4.318%2C5.038c-.313.159-.622.317-.925.457-1.575.74-2.791%2C1.11-4.155.7a4.128%2C4.128%2C0%2C0%2C1-1-.482c-2.207-1.321-4.706-5.187-8.405-7.576a11.093%2C11.093%2C0%2C0%2C0-3.106-1.391%2C10.112%2C10.112%2C0%2C0%2C0-3.434-.3%2C21.7%2C21.7%2C0%2C0%2C0%2C.846-9.939c-.89-4.494-3.159-8.1-5.768-9.772l-.018-.019c.008%2C0%2C0%2C0%2C0%2C.006s-.007-.009-.013%2C0v.023C36.706%2C30.4%2C36.021%2C34.6%2C36.9%2C39.11a17.939%2C17.939%2C0%2C0%2C0%2C3.089%2C7.17c.56.717.977%2C1.23%2C1.359%2C1.644-.148.036-.3.065-.442.109-4.91%2C1.482-8.277.5-10.74-1.036a13.849%2C13.849%2C0%2C0%2C1-4.632-5.022.74.74%2C0%2C0%2C1-.047-.1A1.453%2C1.453%2C0%2C0%2C0%2C22.853%2C43.1a16.456%2C16.456%2C0%2C0%2C0%2C5.762%2C6.353%2C14.026%2C14.026%2C0%2C0%2C0%2C5.4%2C2.029%2C17.382%2C17.382%2C0%2C0%2C0-5.353%2C3.825c-2.953%2C3.076-4.509%2C6.733-4.4%2C9.64%2C0%2C0-.015.008%2C0%2C.013l0%2C.019.023-.029c2.9.016%2C6.5-1.688%2C9.46-4.782a14.941%2C14.941%2C0%2C0%2C0%2C4.383-8.6%2C19.535%2C19.535%2C0%2C0%2C0%2C3.632-.757%2C7.51%2C7.51%2C0%2C0%2C1%2C6.675.892c2.894%2C1.782%2C5.165%2C5.261%2C8.023%2C7.31a12.22%2C12.22%2C0%2C0%2C0-6.755-.223c-3.2.748-5.74%2C2.457-6.9%2C4.38%2C0%2C0-.012%2C0-.006%2C0l-.011.019.027-.013c1.863%2C1.231%2C4.913%2C1.646%2C8.124.891a10.981%2C10.981%2C0%2C0%2C0%2C6.851-4.285%2C5.8%2C5.8%2C0%2C0%2C0%2C.769.3%2C8.4%2C8.4%2C0%2C0%2C0%2C6.241-.863%2C18.647%2C18.647%2C0%2C0%2C1%2C4.612-1.932c2.16-.433%2C5.584%2C1.416%2C9%2C3.462a1.452%2C1.452%2C0%2C0%2C0%2C1.5-2.483m-43.729-5.62c-1.717%2C1.122-3.043%2C3.257-5.04%2C6.148A28.055%2C28.055%2C0%2C0%2C1%2C26.5%2C63.853a.364.364%2C0%2C1%2C1-.46-.564%2C26.755%2C26.755%2C0%2C0%2C0%2C4.508-4.912c1.991-2.859%2C3.322-5.066%2C5.242-6.335a.359.359%2C0%2C0%2C1%2C.393-.005.414.414%2C0%2C0%2C1%2C.109.108.362.362%2C0%2C0%2C1-.106.5m5.933-6.267a.4.4%2C0%2C0%2C1-.079.015.386.386%2C0%2C0%2C1-.405-.264A58.3%2C58.3%2C0%2C0%2C1%2C39%2C34.084a25.724%2C25.724%2C0%2C0%2C1-.152-3.3.388.388%2C0%2C0%2C1%2C.4-.368.383.383%2C0%2C0%2C1%2C.365.4%2C26.17%2C26.17%2C0%2C0%2C0%2C.152%2C3.19%2C57.467%2C57.467%2C0%2C0%2C0%2C2.592%2C11.883.385.385%2C0%2C0%2C1-.247.487M56.062%2C60.326c-.006%2C0-2.815%2C1.005-5.184%2C1.738a46.793%2C46.793%2C0%2C0%2C1-5.505%2C1.221.361.361%2C0%2C1%2C1-.114-.712%2C47.548%2C47.548%2C0%2C0%2C0%2C5.407-1.2c2.346-.727%2C5.146-1.728%2C5.154-1.728a.356.356%2C0%2C0%2C1%2C.314.029.4.4%2C0%2C0%2C1%2C.148.186.365.365%2C0%2C0%2C1-.22.468m8.519-5.274a.364.364%2C0%2C0%2C1-.447-.252s-.332-1.192-.951-2.933l-2.1-4.571c-.7-1.171-1.274-1.917-1.272-1.922a.361.361%2C0%2C0%2C1%2C.067-.509.372.372%2C0%2C0%2C1%2C.414-.019.347.347%2C0%2C0%2C1%2C.092.087%2C24.016%2C24.016%2C0%2C0%2C1%2C3.035%2C5.472c.919%2C2.416%2C1.412%2C4.194%2C1.414%2C4.2a.359.359%2C0%2C0%2C1-.254.444%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.989%2C42.8a3.822%2C3.822%2C0%2C1%2C1-2.044-5%2C3.826%2C3.826%2C0%2C0%2C1%2C2.044%2C5%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Crect%20x%3D%22152.265%22%20y%3D%2248.711%22%20width%3D%2216.42%22%20height%3D%223.528%22%20transform%3D%22translate%2851.843%20178.924%29%20rotate%28-67.238%29%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.342%2C49.563a1.007%2C1.007%2C0%2C0%2C1%2C.6-1.283c.144-.047.214-.073.232-.078A7.223%2C7.223%2C0%2C0%2C0%2C172.2%2C39a1%2C1%2C0%2C0%2C1%2C1.876-.7%2C9.229%2C9.229%2C0%2C0%2C1-5.134%2C11.75c-.165.065-.268.091-.311.108v0a1.007%2C1.007%2C0%2C0%2C1-1.284-.6%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M169.163%2C54a1%2C1%2C0%2C0%2C1%2C.57-1.3c.159-.059.24-.081.25-.088A11.986%2C11.986%2C0%2C0%2C0%2C176.616%2C37.2a1%2C1%2C0%2C0%2C1%2C1.87-.722%2C14%2C14%2C0%2C0%2C1-7.741%2C17.99c-.17.071-.27.095-.288.1v0A1%2C1%2C0%2C0%2C1%2C169.163%2C54%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.942%2C58.348a1%2C1%2C0%2C0%2C1%2C.563-1.3c.166-.06.25-.082.257-.088a16.69%2C16.69%2C0%2C0%2C0%2C9.2-21.534%2C1%2C1%2C0%2C1%2C1%2C1.862-.73%2C18.689%2C18.689%2C0%2C0%2C1-10.3%2C24.114c-.173.07-.269.094-.284.1a1%2C1%2C0%2C0%2C1-1.3-.566%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M155.1%2C44.443a9.217%2C9.217%2C0%2C0%2C1%2C5.137-11.749c.165-.064.27-.091.308-.111h0a1%2C1%2C0%2C0%2C1%2C.684%2C1.881c-.14.052-.217.073-.234.079a7.222%2C7.222%2C0%2C0%2C0-4.022%2C9.2%2C1%2C1%2C0%2C0%2C1-1.325%2C1.273%2C1.039%2C1.039%2C0%2C0%2C1-.551-.574%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M150.689%2C46.265a13.993%2C13.993%2C0%2C0%2C1%2C7.739-17.989c.172-.071.27-.093.285-.1a1%2C1%2C0%2C1%2C1%2C.728%2C1.864c-.16.06-.241.082-.253.086a12%2C12%2C0%2C0%2C0-6.635%2C15.422.994.994%2C0%2C0%2C1-.574%2C1.292%2C1%2C1%2C0%2C0%2C1-1.29-.572%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M146.343%2C48.049a18.694%2C18.694%2C0%2C0%2C1%2C10.309-24.118c.168-.068.267-.093.281-.1a1%2C1%2C0%2C0%2C1%2C.732%2C1.864c-.164.063-.244.084-.255.091a16.686%2C16.686%2C0%2C0%2C0-9.2%2C21.534%2C1%2C1%2C0%2C0%2C1-1.317%2C1.289%2C1.035%2C1.035%2C0%2C0%2C1-.549-.558%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M62.656%2C29.015c-5.823%2C1.808-11.378%2C1.608-14.4-.223%2C0%2C0%2C5.308%2C9.618%2C7.736%2C10.465%2C2.327.8%2C5.246%2C1.02%2C9.894-.421%2C5.786-1.8%2C8.717-4.286%2C9.415-6.736.664-2.339-1.35-11.868-1.35-11.868-.794%2C3.552-4.794%2C6.758-11.3%2C8.783%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.138%2C16.686l-.317-.556a7.505%2C7.505%2C0%2C0%2C0-.715-1.062%2C1.361%2C1.361%2C0%2C0%2C0-.57-.432l-.793-.258.6-.575%2C2.8-2.565.086-.082.118-.036a2.237%2C2.237%2C0%2C0%2C1%2C.527-.049%2C1.9%2C1.9%2C0%2C0%2C1%2C1.208.439%2C1.648%2C1.648%2C0%2C0%2C1%2C.477%2C1.711l-.034.116-.092.087L75.6%2C16.236Z%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.451%2C13.542a2.636%2C2.636%2C0%2C0%2C0%2C.92-.5l8.541-7.114A2.641%2C2.641%2C0%2C1%2C0%2C85.5%2C1.9L76.951%2C9.014a2.646%2C2.646%2C0%2C0%2C0-.83%2C1.283l.2.2.021-.019.238-.061a2.294%2C2.294%2C0%2C0%2C1%2C.654-.067%2C2.348%2C2.348%2C0%2C0%2C1%2C1.512.559%2C2.164%2C2.164%2C0%2C0%2C1%2C.634%2C2.232l-.074.228-.014.015%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M70.473%2C14.631a12.322%2C12.322%2C0%2C0%2C0-4.782-.8%2C25.856%2C25.856%2C0%2C0%2C0-7.663%2C1.3%2C24.508%2C24.508%2C0%2C0%2C0-8%2C4.143c-1.989%2C1.638-3.26%2C3.43-3.27%2C5.238a3.223%2C3.223%2C0%2C0%2C0%2C.162%2C1.02%2C4.3%2C4.3%2C0%2C0%2C0%2C2.645%2C2.55%2C12.57%2C12.57%2C0%2C0%2C0%2C4.77.792A25.83%2C25.83%2C0%2C0%2C0%2C62%2C27.574%2C24.608%2C24.608%2C0%2C0%2C0%2C70%2C23.434C71.989%2C21.788%2C73.262%2C20%2C73.269%2C18.2a3.188%2C3.188%2C0%2C0%2C0-.156-1.021%2C4.3%2C4.3%2C0%2C0%2C0-2.64-2.543M56.428%2C19.267a.761.761%2C0%2C0%2C1-.039-.121.838.838%2C0%2C0%2C1%2C.015-.3%2C2.671%2C2.671%2C0%2C0%2C1%2C.124-.3A4%2C4%2C0%2C0%2C1%2C59%2C17.023c1.3-.308%2C2.488-.093%2C2.884.461a.775.775%2C0%2C0%2C1%2C.12.279.217.217%2C0%2C0%2C1%2C.017.048.707.707%2C0%2C0%2C1%2C0%2C.146c-.057.767-1.208%2C1.626-2.621%2C1.962-1.342.319-2.613.088-2.94-.544a.311.311%2C0%2C0%2C1-.04-.108m3.617%2C2.9c-1.436.341-3.05.185-3.4-.49-.041-.082-.217-1.6-.229-1.68l0%2C0a.358.358%2C0%2C0%2C0%2C.038.116c.355.674%2C1.708.926%2C3.143.577%2C1.515-.359%2C2.737-1.28%2C2.8-2.094a.528.528%2C0%2C0%2C0-.006-.158c.111.379.723%2C1.494.719%2C1.547-.061.815-1.552%2C1.828-3.066%2C2.187%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M67.654%2C117.834l-2.276-1.066.006%2C2.518a.687.687%2C0%2C0%2C1-.144.434.717.717%2C0%2C0%2C1-.407.261.738.738%2C0%2C0%2C1-.587-.126.79.79%2C0%2C0%2C1-.212-.269L62.98%2C117.3l-1.62%2C1.936a.7.7%2C0%2C0%2C1-.863.173%2C1.05%2C1.05%2C0%2C0%2C1-.112-.065.7.7%2C0%2C0%2C1-.246-.743l.648-2.431-2.471.436a.705.705%2C0%2C0%2C1-.563-.128.733.733%2C0%2C0%2C1-.221-.293.736.736%2C0%2C0%2C1%2C.245-.853l2.069-1.442-2.184-1.242c-.024-.021-.053-.036-.076-.056a.706.706%2C0%2C0%2C1-.247-.775.638.638%2C0%2C0%2C1%2C.115-.217.69.69%2C0%2C0%2C1%2C.619-.281l2.507.22-.869-2.354a.735.735%2C0%2C0%2C1%2C.105-.681.619.619%2C0%2C0%2C1%2C.185-.16.69.69%2C0%2C0%2C1%2C.811.034.213.213%2C0%2C0%2C1%2C.069.063l1.777%2C1.779.849-2.363a.671.671%2C0%2C0%2C1%2C.105-.2.7.7%2C0%2C0%2C1%2C.652-.271.718.718%2C0%2C0%2C1%2C.346.138.71.71%2C0%2C0%2C1%2C.273.5l.218%2C2.51%2C2.175-1.268a.7.7%2C0%2C0%2C1%2C.782.049.961.961%2C0%2C0%2C1%2C.094.085.712.712%2C0%2C0%2C1%2C.056.889l-1.443%2C2.058%2C2.476.427a.656.656%2C0%2C0%2C1%2C.315.137.7.7%2C0%2C0%2C1%2C.275.529.727.727%2C0%2C0%2C1-.146.464.68.68%2C0%2C0%2C1-.376.252l-2.425.646%2C1.61%2C1.922a.7.7%2C0%2C0%2C1%2C.022.892.714.714%2C0%2C0%2C1-.862.207%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M19.453%2C55.159l-3.2.194L15.8%2C52.174a.351.351%2C0%2C0%2C0-.635-.153l-1.846%2C2.625-2.762-1.633a.347.347%2C0%2C0%2C0-.393.024.353.353%2C0%2C0%2C0-.123.378l.9%2C3.08-3%2C1.142a.347.347%2C0%2C0%2C0-.226.322.352.352%2C0%2C0%2C0%2C.22.332l2.969%2C1.216L9.929%2C62.56a.353.353%2C0%2C0%2C0%2C.507.414l2.8-1.562%2C1.78%2C2.669a.358.358%2C0%2C0%2C0%2C.369.149.353.353%2C0%2C0%2C0%2C.273-.288l.523-3.164%2C3.2.275a.351.351%2C0%2C0%2C0%2C.291-.586l-2.146-2.386%2C2.205-2.329a.349.349%2C0%2C0%2C0%2C.062-.392.344.344%2C0%2C0%2C0-.336-.2%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M173.845%2C28.092l-2.43-.476%2C1.509-1.962a.586.586%2C0%2C0%2C0-.061-.78.585.585%2C0%2C0%2C0-.784-.024l-1.886%2C1.6-.6-2.4a.585.585%2C0%2C0%2C0-1.153.158l.079%2C2.475-2.251-1.034a.586.586%2C0%2C0%2C0-.6%2C1l1.984%2C1.483-2.213%2C1.115a.585.585%2C0%2C0%2C0%2C.344%2C1.1c.021%2C0%2C.044-.008.067-.012l2.4-.627-.508%2C2.425a.583.583%2C0%2C0%2C0%2C.393.675.559.559%2C0%2C0%2C0%2C.261.023.578.578%2C0%2C0%2C0%2C.456-.341l1-2.265%2C1.579%2C1.91a.588.588%2C0%2C0%2C0%2C.531.206.6.6%2C0%2C0%2C0%2C.244-.092.587.587%2C0%2C0%2C0%2C.2-.759l-1.144-2.2%2C2.476-.042.071-.008a.587.587%2C0%2C0%2C0%2C.032-1.156%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M135.065%2C36.8a1.931%2C1.931%2C0%2C0%2C0-1.559.167l-.877.505-.412-.922a1.936%2C1.936%2C0%2C0%2C0-1.173-1.048%2C1.882%2C1.882%2C0%2C0%2C0-.744-.085%2C1.924%2C1.924%2C0%2C0%2C0-1.708%2C1.425l-.264.979-.943-.361-.094-.032a1.929%2C1.929%2C0%2C0%2C0-2.262%2C2.8l.507.873-.922.414a1.93%2C1.93%2C0%2C0%2C0%2C.195%2C3.6c.031.009.064.02.094.027l.979.261-.358.946a1.924%2C1.924%2C0%2C0%2C0%2C.552%2C2.156%2C1.924%2C1.924%2C0%2C0%2C0%2C2.216.2l.876-.505.413.922a1.93%2C1.93%2C0%2C0%2C0%2C3.625-.294l.262-.977.945.361.094.032a1.928%2C1.928%2C0%2C0%2C0%2C2.26-2.8l-.5-.874.92-.414a1.93%2C1.93%2C0%2C0%2C0-.194-3.6c-.033-.009-.064-.02-.095-.028l-.977-.26.358-.947a1.924%2C1.924%2C0%2C0%2C0-.554-2.155%2C1.867%2C1.867%2C0%2C0%2C0-.655-.367%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.768%2C115.086c1.046-.246%2C2.021-.449%2C2.959-.659l3.5-.515c4.024-.58%2C3.447%2C1.438%2C5.894.435a19.932%2C19.932%2C0%2C0%2C1%2C2.531-.851c1.653%2C2.993%2C6.363%2C4.71%2C11.568%2C3.933%2C6.135-.9%2C13.856-5.354%2C13.268-9.369S202.2%2C102%2C196.075%2C102.9c-5.047.742-8.972%2C3.578-9.875%2C6.8a21.4%2C21.4%2C0%2C0%2C1-2.78-.084c-2.624-.258-1.506%2C1.527-5.528%2C2.109l-3.414.511c-.922.052-1.887.129-2.923.2-12.79.843-16.093-.443-19.711-.2-5.834.393-4.814%2C10.07%2C1.089%2C8.714%2C3.548-.816%2C6.328-2.99%2C18.835-5.862m11.115-4.418a.421.421%2C0%2C0%2C1-.035-.1.322.322%2C0%2C0%2C1%2C.606-.19%2C5.257%2C5.257%2C0%2C0%2C1%2C.508%2C1.626%2C5.106%2C5.106%2C0%2C0%2C1-.04%2C1.666.321.321%2C0%2C0%2C1-.631-.117%2C4.342%2C4.342%2C0%2C0%2C0%2C.034-1.462%2C4.5%2C4.5%2C0%2C0%2C0-.442-1.424M151.668%2C120.1a3.242%2C3.242%2C0%2C0%2C1-.937-1.952%2C1.823%2C1.823%2C0%2C0%2C1%2C.569-1.326%2C1.852%2C1.852%2C0%2C0%2C1-1.056-1.674%2C3.469%2C3.469%2C0%2C0%2C1%2C.34-1.521l-.009-.008a.361.361%2C0%2C0%2C1%2C.455-.152.341.341%2C0%2C0%2C1%2C.168.451s-.071.161-.157.393a3.163%2C3.163%2C0%2C0%2C0-.114.826c.021.536.17.992%2C1.046%2C1.232a.341.341%2C0%2C0%2C1%2C.254.327l0%2C.026c0%2C.009.013.021%2C0%2C.041a.311.311%2C0%2C0%2C1-.15.291%2C1.208%2C1.208%2C0%2C0%2C0-.666%2C1.079%2C2.667%2C2.667%2C0%2C0%2C0%2C.734%2C1.491.333.333%2C0%2C0%2C1-.016.48.318.318%2C0%2C0%2C1-.468%2C0%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M44.908%2C129.819c2.826-2.384%2C4.3-4.835%2C3.946-8.12h.007a.03.03%2C0%2C0%2C0-.007-.021h.013l-.008-.007%2C0-.006h-.01l-.009-.007c.006%2C0%2C.005%2C0%2C.005%2C0l0%2C0v0c-.006%2C0-.006-.011-.006-.021l0%2C.012s-.006-.016-.011-.016l-.009.007c-2.031-2.6-5.419-3.242-8.487-3.073a42.84%2C42.84%2C0%2C0%2C0-13.67%2C3.609l.011.026c-.612.546-1.326%2C3.669-.364%2C6.563l-1.279.206a3.844%2C3.844%2C0%2C0%2C0-3.582-.12l-14.6%2C5.99a3.66%2C3.66%2C0%2C0%2C0-1.806%2C4.57H5.034c0%2C.007.007.013.007.019l.006.011%2C0%2C0h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C.008h0l0%2C.008s0%2C0%2C0%2C.013h0s0%2C0%2C.012.01l0%2C0a3.722%2C3.722%2C0%2C0%2C0%2C4.771%2C1.9l14.638-5.885a3.724%2C3.724%2C0%2C0%2C0%2C2.2-2.46l1.061-.748c1.327%2C2.745%2C4.013%2C4.484%2C4.832%2C4.449l.011.022a45.916%2C45.916%2C0%2C0%2C0%2C12.32-6.937M8.961%2C141.077a5.6%2C5.6%2C0%2C0%2C1-2.126-5.422.257.257%2C0%2C0%2C1%2C.3-.207.253.253%2C0%2C0%2C1%2C.2.295%2C5.1%2C5.1%2C0%2C0%2C0%2C1.934%2C4.929.254.254%2C0%2C0%2C1-.308.405m15.812-6.738a.254.254%2C0%2C1%2C1-.307.405%2C5.6%2C5.6%2C0%2C0%2C1-2.126-5.424.255.255%2C0%2C1%2C1%2C.5.09%2C5.1%2C5.1%2C0%2C0%2C0%2C1.931%2C4.929m1.312-1.235a.253.253%2C0%2C0%2C1-.358-.027%2C5.51%2C5.51%2C0%2C0%2C1-.939-1.529l0-.009a5.527%2C5.527%2C0%2C0%2C1-.415-1.967.253.253%2C0%2C1%2C1%2C.506-.011%2C5.064%2C5.064%2C0%2C0%2C0%2C1.235%2C3.185.255.255%2C0%2C0%2C1-.027.358%22%20fill%3D%22%23999%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 1s;
}
section.full_width__footer .of_logo:hover, section.full_width__footer .of_logo:focus {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22214%22%20height%3D%22216.106%22%20viewBox%3D%220%200%20214%20216.106%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.874%2C123.678a37.8%2C37.8%2C0%2C0%2C0-5.084-14.2c-2.491-4.341-5.58-8.849-9.926-11.517-6.106-3.747-6.955.113-11.473%2C3.3-2.682%2C1.891-6.216%2C2.135-9.355%2C1.533-3.381-.645-5.715-3.137-8.912-3.978-1.91-.5-3.772-.147-6.24%2C2.276-3.578%2C3.528-9.211%2C10.264-11.783%2C17.136-2.76%2C7.366-1.142%2C12.964%2C1.964%2C9.729s4.056-7.341%2C7.374-10.362c1.526-1.391%2C2.645.219%2C2.677%2C1.616a27.136%2C27.136%2C0%2C0%2C1-.917%2C5.246%2C76.37%2C76.37%2C0%2C0%2C0-.98%2C12.186A140.6%2C140.6%2C0%2C0%2C0%2C88.732%2C161.2c.29%2C1.829.364%2C4.891%2C1.634%2C6.4%2C2.113%2C2.518%2C7.256%2C5.515%2C10.571-7.618.586-2.321%2C2.01-6.383%2C4.958-6.252%2C2.533.112%2C4.582%2C2.228%2C5.585%2C4.363%2C1.741%2C3.716%2C1.571%2C8.3%2C4.145%2C11.688%2C1.418%2C1.864%2C4.027%2C3.7%2C6.247%2C2.041%2C1.779-1.327%2C2.932-4.149%2C3.666-6.162%2C5.066-13.914-2.145-37.134-.608-42.716%2C1.41-5.129%2C3.344-3.3%2C3.916-.537%2C2.357%2C11.392%2C7.066%2C14.386%2C8.369%2C14.416s4.133-.743%2C2.659-13.151%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M126.537%2C78.434l-13.651-8%2C12.634-9.52a1.936%2C1.936%2C0%2C0%2C0-1.855-3.355l-14.773%2C5.686.439-15.819a1.945%2C1.945%2C0%2C0%2C0-1.617-1.961%2C1.924%2C1.924%2C0%2C0%2C0-2.163%2C1.327l-4.767%2C15.089L88.69%2C51.674a1.937%2C1.937%2C0%2C0%2C0-2.856%2C2.563l8.829%2C13.131L79.146%2C70.462a1.936%2C1.936%2C0%2C0%2C0%2C.216%2C3.83l15.772%2C1.283L87.882%2C89.641a1.935%2C1.935%2C0%2C0%2C0%2C3.129%2C2.213l10.838-11.529%2C6.478%2C14.438a1.924%2C1.924%2C0%2C0%2C0%2C1.445%2C1.12%2C1.888%2C1.888%2C0%2C0%2C0%2C.855-.051%2C1.936%2C1.936%2C0%2C0%2C0%2C1.38-2.128l-2.256-15.672%2C15.324%2C3.947a1.936%2C1.936%2C0%2C0%2C0%2C1.462-3.545%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M54.465%2C188.446a10.808%2C10.808%2C0%2C0%2C0-3.441-3.942c-2.944-2.14-6.046-2.592-7.893-1.71a2.67%2C2.67%2C0%2C0%2C0-1.022.825%2C15.205%2C15.205%2C0%2C0%2C0-1.575%2C2.414%2C3.192%2C3.192%2C0%2C0%2C1%2C.832-.569c1.885-.878%2C4.624-.5%2C7.287%2C1.153.247.161.5.323.739.5a10.7%2C10.7%2C0%2C0%2C1%2C3.411%2C3.917%2C5.283%2C5.283%2C0%2C0%2C1%2C.535%2C3.693%2C14.238%2C14.238%2C0%2C0%2C0%2C1.274-2.017%2C4.879%2C4.879%2C0%2C0%2C0-.147-4.268m-2.122%2C3a10.37%2C10.37%2C0%2C0%2C0-3.306-3.8c-.241-.173-.479-.338-.722-.483-2.595-1.623-5.239-1.955-6.975-1.143a2.756%2C2.756%2C0%2C0%2C0-1.076.879c-.03.039-.057.091-.081.126a2.251%2C2.251%2C0%2C0%2C0-.161.3%2C4.611%2C4.611%2C0%2C0%2C0%2C.35%2C3.881%2C10.4%2C10.4%2C0%2C0%2C0%2C3.314%2C3.805c.24.17.482.334.724.487%2C2.6%2C1.623%2C5.24%2C1.952%2C6.978%2C1.142h0a2.935%2C2.935%2C0%2C0%2C0%2C1.062-.873c.034-.05.068-.1.095-.14.059-.1.108-.2.155-.3a4.59%2C4.59%2C0%2C0%2C0-.36-3.875m-1.1%2C4.532%2C0%2C0-.142.069c-1.429.675-3.877.434-6.323-1.1l-.025-.011c-.229-.144-.458-.3-.681-.462a9.813%2C9.813%2C0%2C0%2C1-3.116-3.565A4.883%2C4.883%2C0%2C0%2C1%2C40.4%2C188.4a2.3%2C2.3%2C0%2C0%2C1%2C.323-1.018l.006-.015c.023-.035.043-.068.062-.093v0a5.646%2C5.646%2C0%2C0%2C0%2C.625%2C2.776%2C10.517%2C10.517%2C0%2C0%2C0%2C3.323%2C3.808c.237.175.478.335.718.487a8.48%2C8.48%2C0%2C0%2C0%2C6.065%2C1.438%2C2.547%2C2.547%2C0%2C0%2C1-.282.194m.94-1.095-.03.02c-1.429.678-3.874.433-6.323-1.092a.2.2%2C0%2C0%2C1-.025-.017c-.229-.144-.456-.3-.682-.466a9.779%2C9.779%2C0%2C0%2C1-3.112-3.558%2C4.875%2C4.875%2C0%2C0%2C1-.562-2.513%2C2.579%2C2.579%2C0%2C0%2C1%2C.142-.631.037.037%2C0%2C0%2C1%2C.03-.013c1.418-.694%2C3.87-.448%2C6.323%2C1.082a.158.158%2C0%2C0%2C1%2C.027.016c.228.147.457.3.686.464a9.656%2C9.656%2C0%2C0%2C1%2C3.1%2C3.556%2C4.163%2C4.163%2C0%2C0%2C1%2C.426%2C3.152m12.024-28.7c-.432.333-2.6%2C2.243-4.765%2C4.168-2.418%2C2.147-4.9%2C4.3-4.9%2C4.3l-.026%2C1.169s3.055-2.666%2C5.809-5.085c1.992-1.75%2C3.863-3.369%2C4.406-3.746%2C1.292-.9%2C3.231-1.462%2C4.273-.819s5.587%2C6.215%2C5.89%2C6.941c.023.06.043.075.055.052a4.353%2C4.353%2C0%2C0%2C0-.14-1.479c-.25-.829-4.3-6.019-5.485-6.685s-3.85.217-5.118%2C1.183m-.066%2C2.466c-.325.265-9%2C7.77-9%2C7.77h0l0%2C.006%2C2.593%2C2.749-1.063.917h0l0%2C0-.219.189a5.224%2C5.224%2C0%2C0%2C0-.458-.719c0%2C.084.6-.494.6-.494a8.6%2C8.6%2C0%2C0%2C0-.757-.789c-.478-.538-.954-1.014-1.45-1.533-.643-.679-.571-1.213-.552-2.108a.66.66%2C0%2C0%2C1%2C.106-.361.719.719%2C0%2C0%2C1%2C.138-.167c.026-.017%2C2.507-2.169%2C4.89-4.288.847-.755%2C1.583-1.412%2C2.211-1.961a5.088%2C5.088%2C0%2C0%2C0-3.434-.424%2C3.975%2C3.975%2C0%2C0%2C0-4.1-.111c-2.68%2C1.436-11.35%2C10.222-12.063%2C11.976l.712%2C2.657a4.155%2C4.155%2C0%2C0%2C1%2C.946-.617c2.418-1.167%2C5.986-.549%2C9.05%2C1.674a11.794%2C11.794%2C0%2C0%2C1%2C3.645%2C4.224%2C5.749%2C5.749%2C0%2C0%2C1%2C.018%2C5.745c.026.012.05.035.08.05q3.684%2C2.448%2C7.362%2C4.913c1.13.744%2C2.248%2C1.5%2C3.373%2C2.247a3.2%2C3.2%2C0%2C0%2C0%2C1.441.724c4.681.291%2C8.058-4.667%2C9.875-8.352.372-.765%2C1.186-2.313.628-3.181-.485-.752-7.472-7.057-10.124-9.846-.644.5-1.284%2C1-1.877%2C1.468-1.753%2C1.372-3.126%2C2.443-3.126%2C2.443a.716.716%2C0%2C0%2C1-.8.055l-1.846-1.163-.9.577-.551-.259-.292-.132%2C1.6-1.1%2C2.354%2C1.462s1.367-1.074%2C3.121-2.443c.578-.457%2C1.2-.939%2C1.834-1.432v0c2.6-2.025%2C5.338-4.127%2C5.661-4.421a1.951%2C1.951%2C0%2C0%2C0%2C.339-.407%2C1.079%2C1.079%2C0%2C0%2C0%2C.11-.226l-.165-.362a33.378%2C33.378%2C0%2C0%2C0-5.487-6.464c-1.141-.639-2.925.277-4.415%2C1.509M65.5%2C194.88a.448.448%2C0%2C0%2C1%2C.2.4.454.454%2C0%2C0%2C1-.068.245.408.408%2C0%2C0%2C1-.141.142l-1.259.84a.494.494%2C0%2C0%2C1-.534%2C0l-1.5-1.057a.478.478%2C0%2C0%2C1-.2-.407.441.441%2C0%2C0%2C1%2C.071-.235.524.524%2C0%2C0%2C1%2C.155-.156l1.306-.8a.474.474%2C0%2C0%2C1%2C.52.02Zm-3.576-2.392a.473.473%2C0%2C0%2C1%2C.2.394.488.488%2C0%2C0%2C1-.076.248.5.5%2C0%2C0%2C1-.135.142l-1.26.837a.456.456%2C0%2C0%2C1-.536-.009l-1.506-1.052a.493.493%2C0%2C0%2C1-.2-.408.479.479%2C0%2C0%2C1%2C.076-.238.543.543%2C0%2C0%2C1%2C.153-.157l1.306-.791a.461.461%2C0%2C0%2C1%2C.52.015ZM45.086%2C179.5a.367.367%2C0%2C0%2C1-.108.088.344.344%2C0%2C0%2C1-.411-.53A106.077%2C106.077%2C0%2C0%2C1%2C56%2C168.515a.331.331%2C0%2C0%2C1%2C.475.043.335.335%2C0%2C0%2C1-.047.481A106.95%2C106.95%2C0%2C0%2C0%2C45.086%2C179.5%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M202.263%2C57.45A13.549%2C13.549%2C0%2C0%2C0%2C198%2C53.311c-2.833-1.7-6.858-.376-8.551%2C2.421a3.7%2C3.7%2C0%2C0%2C0-.191%2C3.2%2C1.594%2C1.594%2C0%2C0%2C0-2.152%2C1.85%2C8.859%2C8.859%2C0%2C0%2C0-2.337-.235%2C10.863%2C10.863%2C0%2C0%2C0-5.222%2C1.368%2C11.887%2C11.887%2C0%2C0%2C0-3.872%2C3.878%2C4.188%2C4.188%2C0%2C0%2C0-.572%2C3.169%2C7.213%2C7.213%2C0%2C0%2C0-.353%2C2.51c.153%2C3.791%2C1.5%2C4.477%2C1.639%2C5.467s-.726%2C3.54-.819%2C4.142c-.083.5.951.706%2C1.265.815a2.338%2C2.338%2C0%2C0%2C1%2C.792.349c.288.286.226.8.6%2C1.013a2.5%2C2.5%2C0%2C0%2C0%2C2.1-.235c.174-.076.1.619-.116%2C1.033s-.455.53-.575.84c-.424%2C1.08.7.509.8%2C1.374s.366%2C1.7%2C1.4%2C1.782c2.915.247%2C3.931-3.277%2C5.075-2.577%2C1.754%2C1.073%2C3.162%2C3.307%2C2.734%2C5.3-.252%2C1.149-2.6%2C3.737-1.034%2C4.873%2C1.333.972%2C6.148-3.175%2C7.213-4.062%2C1.01-.842%2C4.9-4.3%2C4.891-5.663%2C0-1.064-3.788-3.992-4.484-4.866a14.356%2C14.356%2C0%2C0%2C1-1.417-2.081%2C15.333%2C15.333%2C0%2C0%2C0%2C1.5-7.039%2C13.123%2C13.123%2C0%2C0%2C0-4.057-8.07%2C1.569%2C1.569%2C0%2C0%2C0%2C.458-.4%2C1.606%2C1.606%2C0%2C0%2C0-.144-2.084%2C1.02%2C1.02%2C0%2C0%2C1%2C.748-.458%2C3.06%2C3.06%2C0%2C0%2C1%2C3.837%2C2.66c.56%2C2.568-.644%2C3.075-.053%2C5.932s4.333%2C3.2%2C5.406%2C2.3A4.165%2C4.165%2C0%2C0%2C0%2C204.2%2C69.2c0%2C.86-1.787.895-2.22.512-.977-.835.154-3.171.606-4.04a7.966%2C7.966%2C0%2C0%2C0-.323-8.219%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M26.794%2C87.9a8.922%2C8.922%2C0%2C0%2C1-.52-1.61%2C2.805%2C2.805%2C0%2C0%2C1%2C.161-2.151%2C9.5%2C9.5%2C0%2C0%2C0%2C.747-4.4A7.959%2C7.959%2C0%2C0%2C0%2C26.3%2C76.56a1.075%2C1.075%2C0%2C0%2C0%2C.841-.263c2.721-2.343-.749-4-2.8-4.8a51.783%2C51.783%2C0%2C0%2C0-5.529-1.8%2C11.675%2C11.675%2C0%2C0%2C0-6.414-.211%2C13.444%2C13.444%2C0%2C0%2C0-5.872%2C4.07%2C15.553%2C15.553%2C0%2C0%2C0-2.8%2C6.4c-.782%2C3.317%2C1.237%2C7.816%2C1.978%2C8.977.4.607.708.731.921.712a16.249%2C16.249%2C0%2C0%2C1-1.292%2C2.322%2C35.1%2C35.1%2C0%2C0%2C1-2.312%2C3.138c-.343.414-1.576%2C1.386-1.677%2C1.9-.276%2C1.44%2C3.053%2C4.126%2C4.172%2C5.264%2C1.479%2C1.5%2C3.962%2C3.968%2C6.1%2C4.427%2C2.949.633%2C2.243-2.081%2C1.8-3.963a5.024%2C5.024%2C0%2C0%2C1%2C.217-3.616c.49-1.019.951-2.109%2C2.006-2.451a3.561%2C3.561%2C0%2C0%2C1%2C2.494.642%2C5.308%2C5.308%2C0%2C0%2C0%2C2.715.645%2C1.815%2C1.815%2C0%2C0%2C0%2C1.321-.648c.434-.567.194-1.8.59-1.916a.721.721%2C0%2C0%2C0%2C.514-.876c-.173-.419-.511-.6-.818-1.026a1.249%2C1.249%2C0%2C0%2C1-.241-1.312c.119-.263.5.114.713.19a1.744%2C1.744%2C0%2C0%2C0%2C1.122.2%2C1.131%2C1.131%2C0%2C0%2C0%2C.789-.665c.1-.276.172-1.261.628-1.181.707.123%2C1.67.229%2C1.891-.687a6.374%2C6.374%2C0%2C0%2C0-.576-2.127%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.959%2C94.951c1.319-1.7%2C1.1-3.091.01-4.036-.01-.027-.036-.033-.071-.064a5.045%2C5.045%2C0%2C0%2C0-3.132-.829.127.127%2C0%2C0%2C0-.07.01l1.629-2.868a7.826%2C7.826%2C0%2C0%2C1%2C3.311%2C1.379%2C1.343%2C1.343%2C0%2C0%2C0%2C.179.13%2C5.242%2C5.242%2C0%2C0%2C1%2C1.914%2C3.847%2C6.259%2C6.259%2C0%2C0%2C1-1.544%2C4.266%2C11.07%2C11.07%2C0%2C0%2C1-5.032%2C3.258c-5.163%2C1.809-6.3%2C2.3-9.378%2C4.442l3.457-5.184a49.78%2C49.78%2C0%2C0%2C1%2C4.977-1.984%2C8.215%2C8.215%2C0%2C0%2C0%2C3.75-2.367%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M136.118%2C58.983c.093.887%2C2.923%2C1.32%2C6.335.968s6.094-1.35%2C6.006-2.228-2.925-1.318-6.338-.972-6.1%2C1.354-6%2C2.232%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.272%2C85.528c-.237%2C1.579-12.311%2C20-12.311%2C20a21.314%2C21.314%2C0%2C0%2C1-11.6-4.964%2C31.531%2C31.531%2C0%2C0%2C1-8.507-10.411l3.109-26.784-4.736-3.31s.035-.01.074-.024a4.472%2C4.472%2C0%2C0%2C0%2C1.894.625%2C19.4%2C19.4%2C0%2C0%2C0%2C4.4%2C0%2C20.848%2C20.848%2C0%2C0%2C0%2C3.713-.7%2C5.136%2C5.136%2C0%2C0%2C0%2C2.291-1.183c.035.007.078.013.078.013l-5.012%2C4.663%2C1.328%2C19.9L155.737%2C73.1a29.785%2C29.785%2C0%2C0%2C0%2C4.1%2C5.763%2C32.976%2C32.976%2C0%2C0%2C0%2C5.157%2C4.473v.048c2.25%2C1.534%2C4%2C2.383%2C4.34%2C1.967.4-.5-1.406-2.654-4.16-5.083l-.133%2C2.211a31.115%2C31.115%2C0%2C0%2C1-4.667-4.1%2C28.908%2C28.908%2C0%2C0%2C1-3.969-5.566l9.329%2C1.88-.39%2C4.76s5.138%2C4.609%2C4.931%2C6.074%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M141.7%2C12.148a6.522%2C6.522%2C0%2C0%2C0%2C4.833-.655%2C6.479%2C6.479%2C0%2C0%2C0%2C3.375-3.531l.014-.006-.008%2C0V7.948l-.007.006a6.533%2C6.533%2C0%2C0%2C0-4.836.647%2C6.546%2C6.546%2C0%2C0%2C0-3.38%2C3.533l-.009.009.006%2C0%2C0%2C0Z%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.379%2C9.816a.558.558%2C0%2C0%2C0-.549-.3.548.548%2C0%2C0%2C0-.205.062.556.556%2C0%2C0%2C0-.3.544.523.523%2C0%2C0%2C0%2C.055.194c0%2C.016.06.111.145.333a7.438%2C7.438%2C0%2C0%2C1%2C.437%2C1.864%2C6.932%2C6.932%2C0%2C0%2C1-.129%2C2.212%2C4.457%2C4.457%2C0%2C0%2C0%2C.555.138%2C3.1%2C3.1%2C0%2C0%2C0%2C.542.07%2C8.213%2C8.213%2C0%2C0%2C0%2C.139-2.549%2C7.819%2C7.819%2C0%2C0%2C0-.694-2.568%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M140.659%2C14.939a1.806%2C1.806%2C0%2C0%2C0%2C.663-.174l0%2C0a.371.371%2C0%2C0%2C1%2C.5.162.567.567%2C0%2C0%2C1%2C.043.13.361.361%2C0%2C0%2C1-.2.363%2C2.7%2C2.7%2C0%2C0%2C1-.935.256%2C4.871%2C4.871%2C0%2C0%2C1-1.485-.082%2C3.568%2C3.568%2C0%2C0%2C1-2.281-1.195.353.353%2C0%2C0%2C1%2C.1-.512.369.369%2C0%2C0%2C1%2C.512.1%2C1.676%2C1.676%2C0%2C0%2C0%2C.671.506%2C6.084%2C6.084%2C0%2C0%2C0%2C.112-1.791%2C11.718%2C11.718%2C0%2C0%2C0-4.552.033%2C7.151%2C7.151%2C0%2C0%2C0-5.476%2C6.043c-.912%2C5.5-.214%2C9.208%2C3.051%2C10.336.848.294%2C2.068.117%2C3%2C.425%2C1.048.341%2C1.8%2C1.234%2C2.851%2C1.6%2C3.273%2C1.128%2C5.885-.693%2C8.794-6.243%2C1.209-2.3%2C1.727-5.034.385-7.409a8.629%2C8.629%2C0%2C0%2C0-3.332-3.144%2C13.674%2C13.674%2C0%2C0%2C0-2.365-1.045%2C8.836%2C8.836%2C0%2C0%2C1-.157%2C1.649.722.722%2C0%2C0%2C1%2C.1%2C0%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M112.948%2C179.844c-11.968-.022-21.666%2C6.547-21.679%2C14.66-.02%2C6.64%2C6.45%2C12.247%2C15.355%2C14.084%2C1.993%2C2.694-.484%2C7.518-.484%2C7.518a19.341%2C19.341%2C0%2C0%2C0%2C8.647-6.939c11.074-.626%2C19.782-6.913%2C19.795-14.607.006-8.108-9.675-14.694-21.634-14.716m.577%2C23.978c1.069%2C1.174-1.076%2C2.683-2.01%2C3.076a1.23%2C1.23%2C0%2C0%2C1-.86.249c-.443.006-.491-.126-.7-.476-.489-.68-.844-1.089-.556-2a2.1%2C2.1%2C0%2C0%2C1%2C2.031-1.367%2C3.682%2C3.682%2C0%2C0%2C1%2C2.093.523m6.327-18.574a8.091%2C8.091%2C0%2C0%2C1%2C.736%2C1.356%2C3.894%2C3.894%2C0%2C0%2C1%2C.735%2C1.592%2C6.9%2C6.9%2C0%2C0%2C1-.644%2C2.921%2C5.278%2C5.278%2C0%2C0%2C1-.608%2C1.484c-.226.285-.537.465-.806.746a3.641%2C3.641%2C0%2C0%2C1-1.312%2C1c-.52.195-1.143.088-1.663.28a4.2%2C4.2%2C0%2C0%2C0-.712.483c-.362.174-.723.192-1.036.326a11.968%2C11.968%2C0%2C0%2C0-1.265.946c-1.243.943-.289%2C2.058-.309%2C3.249-.02.638-.808.743-1.266.661a4.548%2C4.548%2C0%2C0%2C1-.747-.121c-.929-.323-1.1-2.113-1.155-2.946a7.863%2C7.863%2C0%2C0%2C1%2C.112-.87c.029-.305-.156-.569.071-.853.27-.317.736-.4%2C1.071-.665.258-.228.406-.549.685-.742a8.728%2C8.728%2C0%2C0%2C1%2C1.965-1.059c.125-.027.268.053.361.017.351-.134.7-.476%2C1.151-.64a6.766%2C6.766%2C0%2C0%2C0%2C1.792-.495c.913-.67%2C2.084-2.469%2C1.679-3.606a4.9%2C4.9%2C0%2C0%2C0-1.915-2.433%2C4.115%2C4.115%2C0%2C0%2C0-2.3-.114c-.939.235-1.38%2C1.508-2.374%2C1.417a1.968%2C1.968%2C0%2C0%2C1-.664-.267.794.794%2C0%2C0%2C1-.575-.651c-.37-1.422%2C1.249-2.739%2C2.554-2.989.41-.052.894-.047%2C1.294-.062a6.57%2C6.57%2C0%2C0%2C1%2C1.276.262%2C6.253%2C6.253%2C0%2C0%2C1%2C3.867%2C1.778%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M74.57%2C144.591l-.84%2C1.565%2C1.662.656a3.356%2C3.356%2C0%2C0%2C1-1.137%2C6.477l-1.784.043.279%2C1.767a3.358%2C3.358%2C0%2C0%2C1-6.18%2C2.26l-.93-1.519-1.391%2C1.118a3.359%2C3.359%2C0%2C0%2C1-5.052-4.224l.852-1.557-1.665-.645a3.37%2C3.37%2C0%2C0%2C1-2.088-3.7%2C3.336%2C3.336%2C0%2C0%2C1%2C3.221-2.784l1.781-.055-.279-1.749a3.358%2C3.358%2C0%2C0%2C1%2C6.179-2.275l.934%2C1.514%2C1.389-1.1a3.355%2C3.355%2C0%2C0%2C1%2C5.049%2C4.213%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M143.162%2C132.449a.4.4%2C0%2C0%2C0%2C.217.47l4.911%2C2.314-3.823%2C3.856a.4.4%2C0%2C0%2C0%2C.458.635l4.87-2.393.623%2C5.39a.41.41%2C0%2C0%2C0%2C.384.358.4.4%2C0%2C0%2C0%2C.409-.314l1.161-5.31%2C4.609%2C2.879a.4.4%2C0%2C0%2C0%2C.514-.073.4.4%2C0%2C0%2C0%2C.009-.517l-3.422-4.219%2C5.124-1.813a.391.391%2C0%2C0%2C0%2C.256-.447.4.4%2C0%2C0%2C0-.4-.329l-5.431.045%2C1.778-5.129a.41.41%2C0%2C0%2C0-.187-.489.406.406%2C0%2C0%2C0-.51.113l-3.345%2C4.274-2.9-4.591a.4.4%2C0%2C0%2C0-.734.309l1.255%2C5.283-5.4-.59a.4.4%2C0%2C0%2C0-.43.288%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14.143%2C117.97l2.615-2.386a.382.382%2C0%2C0%2C0%2C.1-.4.367.367%2C0%2C0%2C0-.328-.245L13%2C114.667l.713-3.47a.366.366%2C0%2C0%2C0-.153-.378.371.371%2C0%2C0%2C0-.411-.014l-3.016%2C1.863-1.462-3.226a.369.369%2C0%2C0%2C0-.346-.217.363.363%2C0%2C0%2C0-.338.229L6.64%2C112.733l-3.08-1.75a.374.374%2C0%2C0%2C0-.41.03.36.36%2C0%2C0%2C0-.136.384l.837%2C3.441-3.519.4a.376.376%2C0%2C0%2C0-.317.264.38.38%2C0%2C0%2C0%2C.117.4l2.7%2C2.287L.221%2C120.573a.377.377%2C0%2C0%2C0-.1.4.389.389%2C0%2C0%2C0%2C.326.25l3.53.265-.709%2C3.467a.374.374%2C0%2C0%2C0%2C.563.4l3.012-1.856%2C1.468%2C3.217a.37.37%2C0%2C0%2C0%2C.684-.011l1.343-3.276%2C3.081%2C1.749a.377.377%2C0%2C0%2C0%2C.551-.416l-.843-3.444%2C3.52-.393a.373.373%2C0%2C0%2C0%2C.317-.264.367.367%2C0%2C0%2C0-.117-.393Z%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M175.032%2C150.308l-.971%2C3.453-3.185-1.9a.43.43%2C0%2C0%2C0-.171-.059.453.453%2C0%2C0%2C0-.413.155.408.408%2C0%2C0%2C0-.095.2.425.425%2C0%2C0%2C0%2C.142.375l2.618%2C2.562-3.262%2C1.68a.432.432%2C0%2C0%2C0-.232.317.366.366%2C0%2C0%2C0%2C.041.241.437.437%2C0%2C0%2C0%2C.336.251.354.354%2C0%2C0%2C0%2C.2-.019l3.584-.872-.082%2C3.581a.449.449%2C0%2C0%2C0%2C.877.132l.97-3.447%2C3.182%2C1.893a.532.532%2C0%2C0%2C0%2C.172.066.463.463%2C0%2C0%2C0%2C.415-.159.451.451%2C0%2C0%2C0%2C.091-.205.459.459%2C0%2C0%2C0-.115-.355l-2.641-2.575%2C3.266-1.688a.444.444%2C0%2C0%2C0%2C.232-.309.5.5%2C0%2C0%2C0-.029-.223.467.467%2C0%2C0%2C0-.356-.273.487.487%2C0%2C0%2C0-.172.007l-3.606.881.082-3.58a.435.435%2C0%2C0%2C0-.389-.437.425.425%2C0%2C0%2C0-.488.308%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.12%2C80.3l-.8%2C4.7-4.477-2.062a.471.471%2C0%2C0%2C0-.231-.052.589.589%2C0%2C0%2C0-.523.256.489.489%2C0%2C0%2C0-.1.287.542.542%2C0%2C0%2C0%2C.24.47l3.822%2C3.015L68.98%2C89.594a.566.566%2C0%2C0%2C0-.262.449.489.489%2C0%2C0%2C0%2C.088.309.563.563%2C0%2C0%2C0%2C.482.284.459.459%2C0%2C0%2C0%2C.263-.046l4.609-1.656.394%2C4.741a.6.6%2C0%2C0%2C0%2C1.179.053l.8-4.695%2C4.476%2C2.052a.556.556%2C0%2C0%2C0%2C.232.063.609.609%2C0%2C0%2C0%2C.523-.27.515.515%2C0%2C0%2C0%2C.093-.285.59.59%2C0%2C0%2C0-.2-.452L77.8%2C87.111l4.079-2.692a.6.6%2C0%2C0%2C0%2C.26-.441.607.607%2C0%2C0%2C0-.068-.286.632.632%2C0%2C0%2C0-.505-.315.662.662%2C0%2C0%2C0-.227.038L76.7%2C85.092l-.4-4.751a.573.573%2C0%2C0%2C0-.571-.518.562.562%2C0%2C0%2C0-.606.475%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M192.766%2C148.739a.424.424%2C0%2C0%2C0-.386.287l-1.783%2C5.017-5.146-1.383a.443.443%2C0%2C0%2C0-.455.159.425.425%2C0%2C0%2C0-.016.479l2.809%2C4.525L183.5%2C160.98a.424.424%2C0%2C0%2C0-.158.455.429.429%2C0%2C0%2C0%2C.361.319l5.291.619-.2%2C5.322a.429.429%2C0%2C0%2C0%2C.255.408.424.424%2C0%2C0%2C0%2C.47-.09l3.785-3.748%2C4.041%2C3.48a.417.417%2C0%2C0%2C0%2C.472.056.43.43%2C0%2C0%2C0%2C.224-.425l-.57-5.3%2C5.237-.983a.444.444%2C0%2C0%2C0%2C.341-.338.433.433%2C0%2C0%2C0-.191-.443l-4.5-2.856%2C2.493-4.709a.428.428%2C0%2C0%2C0-.058-.477.419.419%2C0%2C0%2C0-.459-.127l-5.037%2C1.735L193.175%2C149a.435.435%2C0%2C0%2C0-.409-.256%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M208.523%2C89.115a.223.223%2C0%2C0%2C0-.2.152l-.95%2C2.669L204.63%2C91.2a.226.226%2C0%2C0%2C0-.25.341l1.5%2C2.406-2.281%2C1.682a.227.227%2C0%2C0%2C0%2C.108.409l2.815.331-.106%2C2.833a.219.219%2C0%2C0%2C0%2C.135.214.216.216%2C0%2C0%2C0%2C.248-.045l2.018-2%2C2.147%2C1.854a.226.226%2C0%2C0%2C0%2C.372-.2l-.3-2.821%2C2.785-.523a.229.229%2C0%2C0%2C0%2C.182-.182.223.223%2C0%2C0%2C0-.1-.232l-2.4-1.521%2C1.329-2.507A.229.229%2C0%2C0%2C0%2C212.8%2C91a.22.22%2C0%2C0%2C0-.244-.067l-2.68.922-1.133-2.6a.229.229%2C0%2C0%2C0-.217-.137%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M40.613%2C165.006a13.46%2C13.46%2C0%2C0%2C0-.17-2.614c-.091-1.11-.192-2.217-.282-3.326a6.858%2C6.858%2C0%2C0%2C1%2C.294-2.6%2C20.988%2C20.988%2C0%2C0%2C1%2C2.779-5.015l2.07-2.9c.622-.737%2C1.262-1.515%2C1.967-2.342%2C8.623-10.192%2C12.093-11.834%2C14.532-14.722%2C3.932-4.649-4.825-10.285-8.008-4.932-1.913%2C3.212-2.139%2C6.743-8.882%2C18.057-.561.956-1.1%2C1.826-1.606%2C2.673%2C0%2C0-2.113%2C2.953-2.128%2C2.975-1.817%2C2.538-4.681%2C3.93-5.724%2C7.013-.111.339-.637%2C2.779-.654%2C2.781s-.024%2C0-.038.01a21.6%2C21.6%2C0%2C0%2C0-4.918-.681c-.307-.013-.61-.007-.9%2C0a17.732%2C17.732%2C0%2C0%2C0-7.013%2C1.363c-1.8.833-3.134%2C2.034-3.231%2C3.678a.988.988%2C0%2C0%2C0%2C0%2C.167%2C12.353%2C12.353%2C0%2C0%2C0%2C.232%2C1.467c2.4%2C11.356%2C15.867%2C14.346%2C21.233.665a10.82%2C10.82%2C0%2C0%2C0%2C.391-1.356%2C3.429%2C3.429%2C0%2C0%2C0%2C.064-.357m-1.336.036c-.015.769-.8%2C1.7-2.392%2C2.434a16.31%2C16.31%2C0%2C0%2C1-6.434%2C1.241c-.282%2C0-.568%2C0-.854%2C0a17.572%2C17.572%2C0%2C0%2C1-6.888-1.46c-1.749-.827-2.6-1.879-2.582-2.686v-.015l0-.041c0-.775.776-1.714%2C2.395-2.459a16.3%2C16.3%2C0%2C0%2C1%2C6.432-1.238c.282-.01.563%2C0%2C.848%2C0a17.475%2C17.475%2C0%2C0%2C1%2C6.9%2C1.459c1.742.827%2C2.6%2C1.879%2C2.579%2C2.683%2C0%2C.014%2C0%2C.041%2C0%2C.085%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M179.356%2C124.805a4.49%2C4.49%2C0%2C0%2C0-1.168-1.888%2C29.676%2C29.676%2C0%2C0%2C0-3.691-2.589c-1.547-1.043-2.884-1.412-4.077-.77a8.309%2C8.309%2C0%2C0%2C0-3.875%2C6.7c.059%2C1.359%2C1.058%2C2.305%2C2.745%2C3.106a30.142%2C30.142%2C0%2C0%2C0%2C4.115%2C1.841%2C4.574%2C4.574%2C0%2C0%2C0%2C2.178.05%2C11.778%2C11.778%2C0%2C0%2C0%2C3.773-6.455%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M199.641%2C138.974a1.774%2C1.774%2C0%2C0%2C0%2C.031-1.041s-19.38-12.517-19.411-12.625a11.751%2C11.751%2C0%2C0%2C1-3.772%2C6.457c.028%2C0%2C.677.315%2C1.772.86a1.627%2C1.627%2C0%2C0%2C0%2C.71.767.154.154%2C0%2C0%2C0%2C.05.029l4.419%2C2.36a1.932%2C1.932%2C0%2C0%2C0%2C1.383.153c7.467%2C3.781%2C12.463%2C6.106%2C12.463%2C6.106a2.145%2C2.145%2C0%2C0%2C0%2C.913-.581%2C5.24%2C5.24%2C0%2C0%2C0%2C.922-1.249%2C5.108%2C5.108%2C0%2C0%2C0%2C.52-1.236m-14.3-4.317a.318.318%2C0%2C0%2C0-.038.064.956.956%2C0%2C0%2C1-1.2.291l-4.444-2.372-.095.146.085-.149a.65.65%2C0%2C0%2C1-.273-.916c.013-.021.019-.035.025-.044a.949.949%2C0%2C0%2C1%2C1.215-.311l4.435%2C2.363.02.011a.655.655%2C0%2C0%2C1%2C.27.917%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M185.073%2C133.74l-.019-.011-4.434-2.363a.951.951%2C0%2C0%2C0-1.217.311.2.2%2C0%2C0%2C1-.026.044.654.654%2C0%2C0%2C0%2C.275.916l-.086.149.1-.146%2C4.444%2C2.372a.958.958%2C0%2C0%2C0%2C1.2-.291.365.365%2C0%2C0%2C1%2C.035-.064.653.653%2C0%2C0%2C0-.27-.917%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M211.911%2C147.464a2.073%2C2.073%2C0%2C0%2C1-2.019.051%2C1.739%2C1.739%2C0%2C0%2C1-.922-1.193%2C5.767%2C5.767%2C0%2C0%2C0-.423-1.743%2C1.709%2C1.709%2C0%2C0%2C0-.718-.723%2C4.147%2C4.147%2C0%2C0%2C0-1.492-.285%2C2.423%2C2.423%2C0%2C0%2C1-.8-.252%2C1.957%2C1.957%2C0%2C0%2C1-.2-.117%2C6.355%2C6.355%2C0%2C0%2C0-.852-.689c-.026-.009-.054-.021-.079-.028%2C0%2C.033-.009.063-.013.1a2.643%2C2.643%2C0%2C0%2C1-.549%2C1.079l-.008.036h0a.03.03%2C0%2C0%2C1%2C.014.006c.11.043.35.338.743.623.1.063.2.123.309.181a3.659%2C3.659%2C0%2C0%2C0%2C1.256.394%2C3.818%2C3.818%2C0%2C0%2C1%2C1.036.147c.053.023.089.046.156.166a5.578%2C5.578%2C0%2C0%2C1%2C.288%2C1.375%2C3.11%2C3.11%2C0%2C0%2C0%2C1.61%2C2.115l.009%2C0a3.455%2C3.455%2C0%2C0%2C0%2C3.358-.1Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M200.387%2C139.392a4.863%2C4.863%2C0%2C0%2C1-.515%2C1.24%2C5.122%2C5.122%2C0%2C0%2C1-.927%2C1.246l3.264%2C1.816a1.371%2C1.371%2C0%2C0%2C0%2C.761-.41c.047-.048.1-.114.152-.173a2.544%2C2.544%2C0%2C0%2C0%2C.281-.412%2C2.408%2C2.408%2C0%2C0%2C0%2C.267-.668c.007-.036.012-.072.016-.107a1.217%2C1.217%2C0%2C0%2C0-.074-.748Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M125.308%2C14.048l-6.934-2.366%2C2.654-6.425a.692.692%2C0%2C0%2C0-.114-.742.673.673%2C0%2C0%2C0-.678-.207l-7.608%2C2.3L110.03.416A.656.656%2C0%2C0%2C0%2C108.9.254l-4.556%2C5.959-6.81-3a.634.634%2C0%2C0%2C0-.655.071.735.735%2C0%2C0%2C0-.273.627l.655%2C6.685L89.51%2C12.279a.692.692%2C0%2C0%2C0-.5.531.71.71%2C0%2C0%2C0%2C.244.7l5.368%2C4.341-4.973%2C5.457a.719.719%2C0%2C0%2C0-.129.753.705.705%2C0%2C0%2C0%2C.62.427l7.729.054-.051%2C6.686a.667.667%2C0%2C0%2C0%2C.353.62.647.647%2C0%2C0%2C0%2C.687-.02l6.035-4.105c3.053%2C7.369%2C14.272%2C6.828%2C14.272%2C6.828s-6.664-4.315-5.039-9.187c.014-.029%2C7.135.642%2C7.135.642a.674.674%2C0%2C0%2C0%2C.62-.317.7.7%2C0%2C0%2C0%2C.012-.714l-3.213-5.838%2C6.761-3.831a.7.7%2C0%2C0%2C0-.135-1.259m-14.971%2C9.679a1.39%2C1.39%2C0%2C0%2C1-.475.812%2C1.706%2C1.706%2C0%2C0%2C1-2.659-.871%2C2.136%2C2.136%2C0%2C0%2C1%2C.261-1.729%2C1.7%2C1.7%2C0%2C0%2C1%2C.405-.607%2C1.991%2C1.991%2C0%2C0%2C1%2C2.624.794%2C2.24%2C2.24%2C0%2C0%2C1-.156%2C1.6M108.25%2C13.182a3.073%2C3.073%2C0%2C0%2C1%2C.056.5%2C18.524%2C18.524%2C0%2C0%2C1%2C.576%2C2.673%2C7.884%2C7.884%2C0%2C0%2C1%2C.19%2C1.06c-.011.192.065.415.059.611a2.674%2C2.674%2C0%2C0%2C1-.247.752c-.108.325-.078.692-.425.882-.552.339-1.617-.248-1.882-.754a8.312%2C8.312%2C0%2C0%2C1-.457-2.721c-.185-1.527-.9-3.191-1.2-4.634-.135-.7-.734-1.745.042-2.22a1.838%2C1.838%2C0%2C0%2C1%2C2.167.281c.3.391.258%2C1.154.411%2C1.6.207.677.481%2C1.318.706%2C1.966%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2229.167%20104.311%2024.575%20106.481%2046.022%20111.25%2051.068%20108.653%2029.167%20104.311%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2223.919%20107.225%2023.883%20108.127%2046.09%20113.066%2051.317%20111.381%2051.705%20109.233%2046.202%20112.188%2023.919%20107.225%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M64.24%2C70.781a1.159%2C1.159%2C0%2C0%2C0-.6-1.021l-2.166-.346v.025a1.223%2C1.223%2C0%2C0%2C1%2C.974%2C1.4c-.031.828-2.345%2C26.845-2.419%2C27.756a1.785%2C1.785%2C0%2C0%2C1-1.165%2C1.607l.026.041c1.346.039%2C1.638-.09%2C2.035-.314a1.657%2C1.657%2C0%2C0%2C0%2C.778-1.106c.084-.325%2C2.635-27.209%2C2.539-28.042%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M41.479%2C102.592l-.022.579s6.829%2C1.22%2C7.46%2C1.311a8.1%2C8.1%2C0%2C0%2C0%2C2.7-.241%2C17.216%2C17.216%2C0%2C0%2C0%2C4-.977%2C1.522%2C1.522%2C0%2C0%2C0%2C.6-1.238c.024-.561.033-1.685.033-1.685l-.593-.063s-.012%2C1.049-.031%2C1.525-.075.953-.506%2C1.109-4.242.9-4.971.96a7.071%2C7.071%2C0%2C0%2C1-2.136-.121c-.978-.14-6.531-1.159-6.531-1.159%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M49.3%2C99.439c-.015.241-.041.606-.078.9a1.445%2C1.445%2C0%2C0%2C1-1.234%2C1.251c-.522.131-3.922.4-6.012.555%2C1.914.328%2C4.882.838%2C5.525.93.661.094%2C1.024.14%2C1.315.15a5.446%2C5.446%2C0%2C0%2C0%2C.775-.031c.742-.061%2C4.523-.8%2C4.908-.944.271-.1.337-.393.361-.9.006-.327.01-.834.009-1.116Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M60.621%2C69.832c-.057%2C0-.117%2C0-.184%2C0-.326.009-1.943.02-4.18.034-5.822.045-17.88.127-18.8.291-.317.156-.455.441-.522%2C1.063-.03.3-.514%2C5.726-1.03%2C11.463-.562%2C6.293-1.143%2C12.8-1.18%2C13.123-.056.5-.022.618.448.717.9.2%2C20.126%2C3.267%2C22.967%2C3.379.114%2C0%2C.176%2C0%2C.2%2C0a1.352%2C1.352%2C0%2C0%2C0%2C.9-1.253c.013-.157.1-1.095.223-2.528.6-6.71%2C2.174-24.538%2C2.2-25.21.029-.706-.308-1.048-1.054-1.077M56.938%2C90.991%2C37.813%2C88.9l1.53-16.1%2C19.312.119Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M88.251%2C206.665l-2.346.19%2C1.178%2C2.045a.641.641%2C0%2C0%2C1%2C.087.418.708.708%2C0%2C0%2C1-.211.4.671.671%2C0%2C0%2C1-.536.166.748.748%2C0%2C0%2C1-.3-.115l-1.919-1.363-.414%2C2.326a.651.651%2C0%2C0%2C1-.621.54c-.038%2C0-.078%2C0-.12%2C0a.657.657%2C0%2C0%2C1-.548-.488l-.605-2.275-1.8%2C1.5a.661.661%2C0%2C0%2C1-.517.159.7.7%2C0%2C0%2C1-.317-.135.656.656%2C0%2C0%2C1-.248-.616.648.648%2C0%2C0%2C1%2C.053-.191l1.007-2.134-2.352.006c-.03-.006-.061-.006-.088-.01a.653.653%2C0%2C0%2C1-.556-.514.566.566%2C0%2C0%2C1-.013-.231.656.656%2C0%2C0%2C1%2C.372-.517l2.142-.986-1.8-1.511a.678.678%2C0%2C0%2C1-.231-.6.634.634%2C0%2C0%2C1%2C.076-.217.645.645%2C0%2C0%2C1%2C.675-.35.207.207%2C0%2C0%2C1%2C.085.02l2.27.619-.408-2.318a.563.563%2C0%2C0%2C1%2C0-.208.664.664%2C0%2C0%2C1%2C1.2-.289l1.348%2C1.936%2C1.174-2.037a.647.647%2C0%2C0%2C1%2C.658-.329.525.525%2C0%2C0%2C1%2C.114.025.663.663%2C0%2C0%2C1%2C.459.694l-.212%2C2.344%2C2.21-.8a.66.66%2C0%2C0%2C1%2C.317-.037.651.651%2C0%2C0%2C1%2C.473.305.692.692%2C0%2C0%2C1%2C.1.445.675.675%2C0%2C0%2C1-.19.383l-1.669%2C1.65%2C2.205.81a.664.664%2C0%2C0%2C1-.173%2C1.286m-3.716-6.442-.287-.164Zm-6.817%2C6.221h0v0Z%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M17.929%2C145.6a.616.616%2C0%2C0%2C0-.047.347l.524%2C2.714-1.94%2C1.961a.541.541%2C0%2C0%2C0-.106.144.577.577%2C0%2C0%2C0-.026.434.554.554%2C0%2C0%2C0%2C.456.364l2.741.344%2C1.265%2C2.449a.56.56%2C0%2C0%2C0%2C1%2C0%2C.036.036%2C0%2C0%2C1%2C0-.015l1.173-2.495%2C2.721-.448a.54.54%2C0%2C0%2C0%2C.411-.311.311.311%2C0%2C0%2C0%2C.035-.077.57.57%2C0%2C0%2C0-.154-.572l-2.008-1.883.411-2.73a.574.574%2C0%2C0%2C0-.229-.542.563.563%2C0%2C0%2C0-.59-.027l-2.42%2C1.33-2.463-1.239a.575.575%2C0%2C0%2C0-.589.059.564.564%2C0%2C0%2C0-.164.2%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M91.589%2C37.093l-.1.234.1-.238-3.657-1.5%2C3.657-1.5a.477.477%2C0%2C0%2C0%2C.291-.446.49.49%2C0%2C0%2C0-.016-.135.5.5%2C0%2C0%2C0-.458-.341.581.581%2C0%2C0%2C0-.123.02l-3.833.931%2C2.078-3.368a.481.481%2C0%2C0%2C0-.123-.63.474.474%2C0%2C0%2C0-.647.081l-2.556%2C3-.3-3.943a.473.473%2C0%2C0%2C0-.943%2C0l-.3%2C3.939L82.092%2C30.2a.458.458%2C0%2C0%2C0-.361-.169.451.451%2C0%2C0%2C0-.284.094.47.47%2C0%2C0%2C0-.2.377.476.476%2C0%2C0%2C0%2C.073.255L83.4%2C34.116l-3.842-.931a.37.37%2C0%2C0%2C0-.111-.02.482.482%2C0%2C0%2C0-.452.332.467.467%2C0%2C0%2C0-.026.144.488.488%2C0%2C0%2C0%2C.3.446l3.655%2C1.5-3.655%2C1.5a.479.479%2C0%2C0%2C0-.294.443.388.388%2C0%2C0%2C0%2C.03.156.458.458%2C0%2C0%2C0%2C.446.317.5.5%2C0%2C0%2C0%2C.105-.012l3.849-.931-2.075%2C3.365a.51.51%2C0%2C0%2C0-.073.25.473.473%2C0%2C0%2C0%2C.2.382.458.458%2C0%2C0%2C0%2C.279.09.5.5%2C0%2C0%2C0%2C.358-.161l2.564-3.02.3%2C3.944a.473.473%2C0%2C0%2C0%2C.943%2C0l.3-3.944%2C2.559%2C3.013a.472.472%2C0%2C0%2C0%2C.835-.3.516.516%2C0%2C0%2C0-.068-.25L87.45%2C37.062l3.848.931a.488.488%2C0%2C0%2C0%2C.566-.308.544.544%2C0%2C0%2C0%2C.016-.15.468.468%2C0%2C0%2C0-.291-.442%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M213.136%2C129.078l-.212.506.208-.509-3.188-1.312%2C3.188-1.312a.782.782%2C0%2C0%2C0%2C.484-.724.986.986%2C0%2C0%2C0-.026-.221l-.012-.03a.791.791%2C0%2C0%2C0-.745-.533.651.651%2C0%2C0%2C0-.209.031l-3.328.8%2C1.808-2.939a.783.783%2C0%2C0%2C0%2C.121-.408.779.779%2C0%2C0%2C0-.782-.784.788.788%2C0%2C0%2C0-.605.283l-2.23%2C2.621-.261-3.437a.784.784%2C0%2C0%2C0-1.563.005l-.26%2C3.432-2.235-2.628a.8.8%2C0%2C0%2C0-.6-.276.789.789%2C0%2C0%2C0-.781.785.761.761%2C0%2C0%2C0%2C.126.417l1.8%2C2.929-3.353-.811a.585.585%2C0%2C0%2C0-.188-.025.778.778%2C0%2C0%2C0-.742.548.584.584%2C0%2C0%2C0-.036.239.772.772%2C0%2C0%2C0%2C.483.721l3.188%2C1.312L200%2C129.075a.776.776%2C0%2C0%2C0-.483.725.7.7%2C0%2C0%2C0%2C.041.265.778.778%2C0%2C0%2C0%2C.737.517.745.745%2C0%2C0%2C0%2C.174-.018l3.367-.813-1.812%2C2.936a.75.75%2C0%2C0%2C0-.117.41.793.793%2C0%2C0%2C0%2C.781.784.8.8%2C0%2C0%2C0%2C.591-.267l2.245-2.64.266%2C3.441a.781.781%2C0%2C0%2C0%2C1.557%2C0l.261-3.44%2C2.236%2C2.633a.8.8%2C0%2C0%2C0%2C.6.273.777.777%2C0%2C0%2C0%2C.782-.781.79.79%2C0%2C0%2C0-.121-.414l-1.808-2.935%2C3.357.81a.8.8%2C0%2C0%2C0%2C.183.021.788.788%2C0%2C0%2C0%2C.742-.526.913.913%2C0%2C0%2C0%2C.038-.25.786.786%2C0%2C0%2C0-.48-.728%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M152.1%2C200.505l-4.32%2C1.14%2C2%2C4a.66.66%2C0%2C0%2C1-.2.84.677.677%2C0%2C0%2C1-.866-.074l-3.142-3.172-2.454%2C3.733a.668.668%2C0%2C0%2C1-1.2-.543l1.169-4.311-4.458-.259a.666.666%2C0%2C0%2C1-.129-1.309l4.32-1.14-2.007-4a.673.673%2C0%2C0%2C1%2C.211-.841.682.682%2C0%2C0%2C1%2C.863.07l3.146%2C3.178%2C2.455-3.733a.668.668%2C0%2C0%2C1%2C.833-.241.658.658%2C0%2C0%2C1%2C.369.776l-1.176%2C4.318%2C4.459.263a.664.664%2C0%2C0%2C1%2C.134%2C1.306%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M80.891%2C177.709l2.854%2C2.883-3.568%2C1.938a.411.411%2C0%2C0%2C0-.148.125.48.48%2C0%2C0%2C0-.071.474.422.422%2C0%2C0%2C0%2C.15.208.46.46%2C0%2C0%2C0%2C.44.08l3.907-1.017-.108%2C4.045a.5.5%2C0%2C0%2C0%2C.182.4.417.417%2C0%2C0%2C0%2C.26.1.459.459%2C0%2C0%2C0%2C.428-.176.418.418%2C0%2C0%2C0%2C.092-.194l1.065-3.892%2C3.458%2C2.12a.486.486%2C0%2C0%2C0%2C.6-.757l-2.853-2.881%2C3.563-1.934a.415.415%2C0%2C0%2C0%2C.153-.128.5.5%2C0%2C0%2C0%2C.068-.482.466.466%2C0%2C0%2C0-.152-.2.512.512%2C0%2C0%2C0-.408-.1l-3.935%2C1.037.106-4.057a.51.51%2C0%2C0%2C0-.184-.4.481.481%2C0%2C0%2C0-.23-.092.493.493%2C0%2C0%2C0-.454.173.45.45%2C0%2C0%2C0-.083.165l-1.077%2C3.918-3.455-2.113a.485.485%2C0%2C0%2C0-.6.754%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M161.03%2C155.472c-.012-.17-.021-.376-.018-.64a5.676%2C5.676%2C0%2C0%2C1%2C.766-2.91%2C4.584%2C4.584%2C0%2C0%2C1%2C3.564-2.039c5.16-.681%2C8.449-4.35%2C8.506-8.3l0-.009a7.149%2C7.149%2C0%2C0%2C0-.551-2.859%2C6.486%2C6.486%2C0%2C0%2C0-6.107-4.2%2C7.521%2C7.521%2C0%2C0%2C0-3.3.707l.715%2C1.45a5.765%2C5.765%2C0%2C0%2C1%2C2.565-.541%2C4.849%2C4.849%2C0%2C0%2C1%2C4.641%2C3.2%2C5.687%2C5.687%2C0%2C0%2C1%2C.43%2C2.23c-.045%2C3.044-2.593%2C6.115-7.11%2C6.728a6.2%2C6.2%2C0%2C0%2C0-4.715%2C2.778%2C7.306%2C7.306%2C0%2C0%2C0-1.013%2C3.746c0%2C.257%2C0%2C.487.016.675l-2.569%2C2.159-7.5-7.358c-1.076-2.889-3.534-5.875-7.03-5.965a4.583%2C4.583%2C0%2C0%2C0-.469.014%2C7.125%2C7.125%2C0%2C0%2C0-6.328%2C5.98c-.01.13-.015.262-.015.4-.015%2C3.165%2C2.357%2C5.463%2C4.933%2C7.6l.037-.049%2C6.181%2C8.078-2.562%2C2.236-.057-.082a1.328%2C1.328%2C0%2C0%2C1-.689.232%2C8.564%2C8.564%2C0%2C0%2C1-3.538-1.036%2C5.723%2C5.723%2C0%2C0%2C0-2.853-.528A6.1%2C6.1%2C0%2C0%2C0%2C131.6%2C173.7a5.782%2C5.782%2C0%2C0%2C0%2C1.626%2C3.553%2C11.457%2C11.457%2C0%2C0%2C0%2C3.825%2C2.432%2C16.066%2C16.066%2C0%2C0%2C1%2C3.576%2C1.911c2.434%2C1.959%2C3.441%2C4.85%2C3.7%2C8%2C.029.376.046.755.059%2C1.139l1.632-.044c-.01-.41-.031-.819-.066-1.227-.27-3.393-1.4-6.809-4.3-9.144a17.538%2C17.538%2C0%2C0%2C0-3.926-2.133%2C10%2C10%2C0%2C0%2C1-3.313-2.062%2C4.144%2C4.144%2C0%2C0%2C1-1.183-2.556%2C4.612%2C4.612%2C0%2C0%2C1%2C1.015-3.2%2C3.938%2C3.938%2C0%2C0%2C1%2C4.9-1.2%2C9.629%2C9.629%2C0%2C0%2C0%2C4.342%2C1.177%2C2.981%2C2.981%2C0%2C0%2C0%2C.841-.187l14.193%2C25.625A41.271%2C41.271%2C0%2C0%2C0%2C173.767%2C188c6.595-5.281%2C8.9-12.345%2C9.358-13.173Zm-19.909%2C1.314c-2.379-1.989-4.068-3.942-4-6.049a2.924%2C2.924%2C0%2C0%2C1%2C.011-.293%2C5.582%2C5.582%2C0%2C0%2C1%2C4.838-4.506c.1-.006.209-.013.327-.01%2C2.41-.009%2C4.55%2C2.316%2C5.5%2C4.789Zm31.166%2C18.564-.7.411-.81-1.408.695-.418Zm-1.221-2.113-.705.407-.81-1.415.7-.416Zm-1.216-2.128-.709.413-.813-1.418.706-.405Zm-16.378%2C5.583-.027.032-.026-.023.011-.018c-.017-.024-.043-.02-.065-.039a.413.413%2C0%2C0%2C1-.073-.392.485.485%2C0%2C0%2C1%2C.124-.182l12.555-10.72a.424.424%2C0%2C0%2C1%2C.575.044c.021.031.006.06.023.073h.021l.813%2C1.413-.707.4-.567-.989-12.183%2C10.4a.383.383%2C0%2C0%2C1-.474%2C0m1.881%2C1.575-1.266-1.036.511-.637%2C1.266%2C1.032Zm1.9%2C1.537-1.269-1.035.516-.634%2C1.268%2C1.023Zm1.9%2C1.532-1.266-1.034.523-.622%2C1.268%2C1.021Zm1.9%2C1.538-1.26-1.03.514-.623%2C1.266%2C1.021Zm1.913%2C1.543-1.27-1.029.51-.644%2C1.271%2C1.04Zm1.064.182-.121-.809%2C1.608-.232.123.8Zm2.414-.355-.125-.812%2C1.625-.236.119.807Zm1.369-16.667.813%2C1.417-.708.4-.812-1.406Zm1.051%2C16.3-.123-.805%2C1.62-.237.12.8Zm2.2-1.3-.787-.235.49-1.558.781.24Zm.713-2.328-.774-.24.482-1.568.78.252Zm.729-2.346-.781-.236.34-1.084-.079-.13.71-.413.165.284.03.332Z%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.914%2C58.267c-.014-.006-.029-.018-.046-.027-3.425-1.934-7.028-4.353-10.919-3.817a12.127%2C12.127%2C0%2C0%2C0-3.323%2C1.142%2C10.742%2C10.742%2C0%2C0%2C0-.937-6.517%2C10.012%2C10.012%2C0%2C0%2C0-5.167-5.45l-.018-.007%2C0%2C.015c-.769%2C1.908-.59%2C4.724.648%2C7.5a10.814%2C10.814%2C0%2C0%2C0%2C4.318%2C5.038c-.313.159-.622.317-.925.457-1.575.74-2.791%2C1.11-4.155.7a4.128%2C4.128%2C0%2C0%2C1-1-.482c-2.207-1.321-4.706-5.187-8.405-7.576a11.093%2C11.093%2C0%2C0%2C0-3.106-1.391%2C10.112%2C10.112%2C0%2C0%2C0-3.434-.3%2C21.7%2C21.7%2C0%2C0%2C0%2C.846-9.939c-.89-4.494-3.159-8.1-5.768-9.772l-.018-.019c.008%2C0%2C0%2C0%2C0%2C.006s-.007-.009-.013%2C0v.023C36.706%2C30.4%2C36.021%2C34.6%2C36.9%2C39.11a17.939%2C17.939%2C0%2C0%2C0%2C3.089%2C7.17c.56.717.977%2C1.23%2C1.359%2C1.644-.148.036-.3.065-.442.109-4.91%2C1.482-8.277.5-10.74-1.036a13.849%2C13.849%2C0%2C0%2C1-4.632-5.022.74.74%2C0%2C0%2C1-.047-.1A1.453%2C1.453%2C0%2C0%2C0%2C22.853%2C43.1a16.456%2C16.456%2C0%2C0%2C0%2C5.762%2C6.353%2C14.026%2C14.026%2C0%2C0%2C0%2C5.4%2C2.029%2C17.382%2C17.382%2C0%2C0%2C0-5.353%2C3.825c-2.953%2C3.076-4.509%2C6.733-4.4%2C9.64%2C0%2C0-.015.008%2C0%2C.013l0%2C.019.023-.029c2.9.016%2C6.5-1.688%2C9.46-4.782a14.941%2C14.941%2C0%2C0%2C0%2C4.383-8.6%2C19.535%2C19.535%2C0%2C0%2C0%2C3.632-.757%2C7.51%2C7.51%2C0%2C0%2C1%2C6.675.892c2.894%2C1.782%2C5.165%2C5.261%2C8.023%2C7.31a12.22%2C12.22%2C0%2C0%2C0-6.755-.223c-3.2.748-5.74%2C2.457-6.9%2C4.38%2C0%2C0-.012%2C0-.006%2C0l-.011.019.027-.013c1.863%2C1.231%2C4.913%2C1.646%2C8.124.891a10.981%2C10.981%2C0%2C0%2C0%2C6.851-4.285%2C5.8%2C5.8%2C0%2C0%2C0%2C.769.3%2C8.4%2C8.4%2C0%2C0%2C0%2C6.241-.863%2C18.647%2C18.647%2C0%2C0%2C1%2C4.612-1.932c2.16-.433%2C5.584%2C1.416%2C9%2C3.462a1.452%2C1.452%2C0%2C0%2C0%2C1.5-2.483m-43.729-5.62c-1.717%2C1.122-3.043%2C3.257-5.04%2C6.148A28.055%2C28.055%2C0%2C0%2C1%2C26.5%2C63.853a.364.364%2C0%2C1%2C1-.46-.564%2C26.755%2C26.755%2C0%2C0%2C0%2C4.508-4.912c1.991-2.859%2C3.322-5.066%2C5.242-6.335a.359.359%2C0%2C0%2C1%2C.393-.005.414.414%2C0%2C0%2C1%2C.109.108.362.362%2C0%2C0%2C1-.106.5m5.933-6.267a.4.4%2C0%2C0%2C1-.079.015.386.386%2C0%2C0%2C1-.405-.264A58.3%2C58.3%2C0%2C0%2C1%2C39%2C34.084a25.724%2C25.724%2C0%2C0%2C1-.152-3.3.388.388%2C0%2C0%2C1%2C.4-.368.383.383%2C0%2C0%2C1%2C.365.4%2C26.17%2C26.17%2C0%2C0%2C0%2C.152%2C3.19%2C57.467%2C57.467%2C0%2C0%2C0%2C2.592%2C11.883.385.385%2C0%2C0%2C1-.247.487M56.062%2C60.326c-.006%2C0-2.815%2C1.005-5.184%2C1.738a46.793%2C46.793%2C0%2C0%2C1-5.505%2C1.221.361.361%2C0%2C1%2C1-.114-.712%2C47.548%2C47.548%2C0%2C0%2C0%2C5.407-1.2c2.346-.727%2C5.146-1.728%2C5.154-1.728a.356.356%2C0%2C0%2C1%2C.314.029.4.4%2C0%2C0%2C1%2C.148.186.365.365%2C0%2C0%2C1-.22.468m8.519-5.274a.364.364%2C0%2C0%2C1-.447-.252s-.332-1.192-.951-2.933l-2.1-4.571c-.7-1.171-1.274-1.917-1.272-1.922a.361.361%2C0%2C0%2C1%2C.067-.509.372.372%2C0%2C0%2C1%2C.414-.019.347.347%2C0%2C0%2C1%2C.092.087%2C24.016%2C24.016%2C0%2C0%2C1%2C3.035%2C5.472c.919%2C2.416%2C1.412%2C4.194%2C1.414%2C4.2a.359.359%2C0%2C0%2C1-.254.444%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.989%2C42.8a3.822%2C3.822%2C0%2C1%2C1-2.044-5%2C3.826%2C3.826%2C0%2C0%2C1%2C2.044%2C5%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Crect%20x%3D%22152.265%22%20y%3D%2248.711%22%20width%3D%2216.42%22%20height%3D%223.528%22%20transform%3D%22translate%2851.843%20178.924%29%20rotate%28-67.238%29%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.342%2C49.563a1.007%2C1.007%2C0%2C0%2C1%2C.6-1.283c.144-.047.214-.073.232-.078A7.223%2C7.223%2C0%2C0%2C0%2C172.2%2C39a1%2C1%2C0%2C0%2C1%2C1.876-.7%2C9.229%2C9.229%2C0%2C0%2C1-5.134%2C11.75c-.165.065-.268.091-.311.108v0a1.007%2C1.007%2C0%2C0%2C1-1.284-.6%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M169.163%2C54a1%2C1%2C0%2C0%2C1%2C.57-1.3c.159-.059.24-.081.25-.088A11.986%2C11.986%2C0%2C0%2C0%2C176.616%2C37.2a1%2C1%2C0%2C0%2C1%2C1.87-.722%2C14%2C14%2C0%2C0%2C1-7.741%2C17.99c-.17.071-.27.095-.288.1v0A1%2C1%2C0%2C0%2C1%2C169.163%2C54%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.942%2C58.348a1%2C1%2C0%2C0%2C1%2C.563-1.3c.166-.06.25-.082.257-.088a16.69%2C16.69%2C0%2C0%2C0%2C9.2-21.534%2C1%2C1%2C0%2C1%2C1%2C1.862-.73%2C18.689%2C18.689%2C0%2C0%2C1-10.3%2C24.114c-.173.07-.269.094-.284.1a1%2C1%2C0%2C0%2C1-1.3-.566%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M155.1%2C44.443a9.217%2C9.217%2C0%2C0%2C1%2C5.137-11.749c.165-.064.27-.091.308-.111h0a1%2C1%2C0%2C0%2C1%2C.684%2C1.881c-.14.052-.217.073-.234.079a7.222%2C7.222%2C0%2C0%2C0-4.022%2C9.2%2C1%2C1%2C0%2C0%2C1-1.325%2C1.273%2C1.039%2C1.039%2C0%2C0%2C1-.551-.574%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M150.689%2C46.265a13.993%2C13.993%2C0%2C0%2C1%2C7.739-17.989c.172-.071.27-.093.285-.1a1%2C1%2C0%2C1%2C1%2C.728%2C1.864c-.16.06-.241.082-.253.086a12%2C12%2C0%2C0%2C0-6.635%2C15.422.994.994%2C0%2C0%2C1-.574%2C1.292%2C1%2C1%2C0%2C0%2C1-1.29-.572%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M146.343%2C48.049a18.694%2C18.694%2C0%2C0%2C1%2C10.309-24.118c.168-.068.267-.093.281-.1a1%2C1%2C0%2C0%2C1%2C.732%2C1.864c-.164.063-.244.084-.255.091a16.686%2C16.686%2C0%2C0%2C0-9.2%2C21.534%2C1%2C1%2C0%2C0%2C1-1.317%2C1.289%2C1.035%2C1.035%2C0%2C0%2C1-.549-.558%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M62.656%2C29.015c-5.823%2C1.808-11.378%2C1.608-14.4-.223%2C0%2C0%2C5.308%2C9.618%2C7.736%2C10.465%2C2.327.8%2C5.246%2C1.02%2C9.894-.421%2C5.786-1.8%2C8.717-4.286%2C9.415-6.736.664-2.339-1.35-11.868-1.35-11.868-.794%2C3.552-4.794%2C6.758-11.3%2C8.783%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.138%2C16.686l-.317-.556a7.505%2C7.505%2C0%2C0%2C0-.715-1.062%2C1.361%2C1.361%2C0%2C0%2C0-.57-.432l-.793-.258.6-.575%2C2.8-2.565.086-.082.118-.036a2.237%2C2.237%2C0%2C0%2C1%2C.527-.049%2C1.9%2C1.9%2C0%2C0%2C1%2C1.208.439%2C1.648%2C1.648%2C0%2C0%2C1%2C.477%2C1.711l-.034.116-.092.087L75.6%2C16.236Z%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.451%2C13.542a2.636%2C2.636%2C0%2C0%2C0%2C.92-.5l8.541-7.114A2.641%2C2.641%2C0%2C1%2C0%2C85.5%2C1.9L76.951%2C9.014a2.646%2C2.646%2C0%2C0%2C0-.83%2C1.283l.2.2.021-.019.238-.061a2.294%2C2.294%2C0%2C0%2C1%2C.654-.067%2C2.348%2C2.348%2C0%2C0%2C1%2C1.512.559%2C2.164%2C2.164%2C0%2C0%2C1%2C.634%2C2.232l-.074.228-.014.015%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M70.473%2C14.631a12.322%2C12.322%2C0%2C0%2C0-4.782-.8%2C25.856%2C25.856%2C0%2C0%2C0-7.663%2C1.3%2C24.508%2C24.508%2C0%2C0%2C0-8%2C4.143c-1.989%2C1.638-3.26%2C3.43-3.27%2C5.238a3.223%2C3.223%2C0%2C0%2C0%2C.162%2C1.02%2C4.3%2C4.3%2C0%2C0%2C0%2C2.645%2C2.55%2C12.57%2C12.57%2C0%2C0%2C0%2C4.77.792A25.83%2C25.83%2C0%2C0%2C0%2C62%2C27.574%2C24.608%2C24.608%2C0%2C0%2C0%2C70%2C23.434C71.989%2C21.788%2C73.262%2C20%2C73.269%2C18.2a3.188%2C3.188%2C0%2C0%2C0-.156-1.021%2C4.3%2C4.3%2C0%2C0%2C0-2.64-2.543M56.428%2C19.267a.761.761%2C0%2C0%2C1-.039-.121.838.838%2C0%2C0%2C1%2C.015-.3%2C2.671%2C2.671%2C0%2C0%2C1%2C.124-.3A4%2C4%2C0%2C0%2C1%2C59%2C17.023c1.3-.308%2C2.488-.093%2C2.884.461a.775.775%2C0%2C0%2C1%2C.12.279.217.217%2C0%2C0%2C1%2C.017.048.707.707%2C0%2C0%2C1%2C0%2C.146c-.057.767-1.208%2C1.626-2.621%2C1.962-1.342.319-2.613.088-2.94-.544a.311.311%2C0%2C0%2C1-.04-.108m3.617%2C2.9c-1.436.341-3.05.185-3.4-.49-.041-.082-.217-1.6-.229-1.68l0%2C0a.358.358%2C0%2C0%2C0%2C.038.116c.355.674%2C1.708.926%2C3.143.577%2C1.515-.359%2C2.737-1.28%2C2.8-2.094a.528.528%2C0%2C0%2C0-.006-.158c.111.379.723%2C1.494.719%2C1.547-.061.815-1.552%2C1.828-3.066%2C2.187%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M67.654%2C117.834l-2.276-1.066.006%2C2.518a.687.687%2C0%2C0%2C1-.144.434.717.717%2C0%2C0%2C1-.407.261.738.738%2C0%2C0%2C1-.587-.126.79.79%2C0%2C0%2C1-.212-.269L62.98%2C117.3l-1.62%2C1.936a.7.7%2C0%2C0%2C1-.863.173%2C1.05%2C1.05%2C0%2C0%2C1-.112-.065.7.7%2C0%2C0%2C1-.246-.743l.648-2.431-2.471.436a.705.705%2C0%2C0%2C1-.563-.128.733.733%2C0%2C0%2C1-.221-.293.736.736%2C0%2C0%2C1%2C.245-.853l2.069-1.442-2.184-1.242c-.024-.021-.053-.036-.076-.056a.706.706%2C0%2C0%2C1-.247-.775.638.638%2C0%2C0%2C1%2C.115-.217.69.69%2C0%2C0%2C1%2C.619-.281l2.507.22-.869-2.354a.735.735%2C0%2C0%2C1%2C.105-.681.619.619%2C0%2C0%2C1%2C.185-.16.69.69%2C0%2C0%2C1%2C.811.034.213.213%2C0%2C0%2C1%2C.069.063l1.777%2C1.779.849-2.363a.671.671%2C0%2C0%2C1%2C.105-.2.7.7%2C0%2C0%2C1%2C.652-.271.718.718%2C0%2C0%2C1%2C.346.138.71.71%2C0%2C0%2C1%2C.273.5l.218%2C2.51%2C2.175-1.268a.7.7%2C0%2C0%2C1%2C.782.049.961.961%2C0%2C0%2C1%2C.094.085.712.712%2C0%2C0%2C1%2C.056.889l-1.443%2C2.058%2C2.476.427a.656.656%2C0%2C0%2C1%2C.315.137.7.7%2C0%2C0%2C1%2C.275.529.727.727%2C0%2C0%2C1-.146.464.68.68%2C0%2C0%2C1-.376.252l-2.425.646%2C1.61%2C1.922a.7.7%2C0%2C0%2C1%2C.022.892.714.714%2C0%2C0%2C1-.862.207%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M19.453%2C55.159l-3.2.194L15.8%2C52.174a.351.351%2C0%2C0%2C0-.635-.153l-1.846%2C2.625-2.762-1.633a.347.347%2C0%2C0%2C0-.393.024.353.353%2C0%2C0%2C0-.123.378l.9%2C3.08-3%2C1.142a.347.347%2C0%2C0%2C0-.226.322.352.352%2C0%2C0%2C0%2C.22.332l2.969%2C1.216L9.929%2C62.56a.353.353%2C0%2C0%2C0%2C.507.414l2.8-1.562%2C1.78%2C2.669a.358.358%2C0%2C0%2C0%2C.369.149.353.353%2C0%2C0%2C0%2C.273-.288l.523-3.164%2C3.2.275a.351.351%2C0%2C0%2C0%2C.291-.586l-2.146-2.386%2C2.205-2.329a.349.349%2C0%2C0%2C0%2C.062-.392.344.344%2C0%2C0%2C0-.336-.2%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M173.845%2C28.092l-2.43-.476%2C1.509-1.962a.586.586%2C0%2C0%2C0-.061-.78.585.585%2C0%2C0%2C0-.784-.024l-1.886%2C1.6-.6-2.4a.585.585%2C0%2C0%2C0-1.153.158l.079%2C2.475-2.251-1.034a.586.586%2C0%2C0%2C0-.6%2C1l1.984%2C1.483-2.213%2C1.115a.585.585%2C0%2C0%2C0%2C.344%2C1.1c.021%2C0%2C.044-.008.067-.012l2.4-.627-.508%2C2.425a.583.583%2C0%2C0%2C0%2C.393.675.559.559%2C0%2C0%2C0%2C.261.023.578.578%2C0%2C0%2C0%2C.456-.341l1-2.265%2C1.579%2C1.91a.588.588%2C0%2C0%2C0%2C.531.206.6.6%2C0%2C0%2C0%2C.244-.092.587.587%2C0%2C0%2C0%2C.2-.759l-1.144-2.2%2C2.476-.042.071-.008a.587.587%2C0%2C0%2C0%2C.032-1.156%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M135.065%2C36.8a1.931%2C1.931%2C0%2C0%2C0-1.559.167l-.877.505-.412-.922a1.936%2C1.936%2C0%2C0%2C0-1.173-1.048%2C1.882%2C1.882%2C0%2C0%2C0-.744-.085%2C1.924%2C1.924%2C0%2C0%2C0-1.708%2C1.425l-.264.979-.943-.361-.094-.032a1.929%2C1.929%2C0%2C0%2C0-2.262%2C2.8l.507.873-.922.414a1.93%2C1.93%2C0%2C0%2C0%2C.195%2C3.6c.031.009.064.02.094.027l.979.261-.358.946a1.924%2C1.924%2C0%2C0%2C0%2C.552%2C2.156%2C1.924%2C1.924%2C0%2C0%2C0%2C2.216.2l.876-.505.413.922a1.93%2C1.93%2C0%2C0%2C0%2C3.625-.294l.262-.977.945.361.094.032a1.928%2C1.928%2C0%2C0%2C0%2C2.26-2.8l-.5-.874.92-.414a1.93%2C1.93%2C0%2C0%2C0-.194-3.6c-.033-.009-.064-.02-.095-.028l-.977-.26.358-.947a1.924%2C1.924%2C0%2C0%2C0-.554-2.155%2C1.867%2C1.867%2C0%2C0%2C0-.655-.367%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.768%2C115.086c1.046-.246%2C2.021-.449%2C2.959-.659l3.5-.515c4.024-.58%2C3.447%2C1.438%2C5.894.435a19.932%2C19.932%2C0%2C0%2C1%2C2.531-.851c1.653%2C2.993%2C6.363%2C4.71%2C11.568%2C3.933%2C6.135-.9%2C13.856-5.354%2C13.268-9.369S202.2%2C102%2C196.075%2C102.9c-5.047.742-8.972%2C3.578-9.875%2C6.8a21.4%2C21.4%2C0%2C0%2C1-2.78-.084c-2.624-.258-1.506%2C1.527-5.528%2C2.109l-3.414.511c-.922.052-1.887.129-2.923.2-12.79.843-16.093-.443-19.711-.2-5.834.393-4.814%2C10.07%2C1.089%2C8.714%2C3.548-.816%2C6.328-2.99%2C18.835-5.862m11.115-4.418a.421.421%2C0%2C0%2C1-.035-.1.322.322%2C0%2C0%2C1%2C.606-.19%2C5.257%2C5.257%2C0%2C0%2C1%2C.508%2C1.626%2C5.106%2C5.106%2C0%2C0%2C1-.04%2C1.666.321.321%2C0%2C0%2C1-.631-.117%2C4.342%2C4.342%2C0%2C0%2C0%2C.034-1.462%2C4.5%2C4.5%2C0%2C0%2C0-.442-1.424M151.668%2C120.1a3.242%2C3.242%2C0%2C0%2C1-.937-1.952%2C1.823%2C1.823%2C0%2C0%2C1%2C.569-1.326%2C1.852%2C1.852%2C0%2C0%2C1-1.056-1.674%2C3.469%2C3.469%2C0%2C0%2C1%2C.34-1.521l-.009-.008a.361.361%2C0%2C0%2C1%2C.455-.152.341.341%2C0%2C0%2C1%2C.168.451s-.071.161-.157.393a3.163%2C3.163%2C0%2C0%2C0-.114.826c.021.536.17.992%2C1.046%2C1.232a.341.341%2C0%2C0%2C1%2C.254.327l0%2C.026c0%2C.009.013.021%2C0%2C.041a.311.311%2C0%2C0%2C1-.15.291%2C1.208%2C1.208%2C0%2C0%2C0-.666%2C1.079%2C2.667%2C2.667%2C0%2C0%2C0%2C.734%2C1.491.333.333%2C0%2C0%2C1-.016.48.318.318%2C0%2C0%2C1-.468%2C0%22%20fill%3D%22%23be1823%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M44.908%2C129.819c2.826-2.384%2C4.3-4.835%2C3.946-8.12h.007a.03.03%2C0%2C0%2C0-.007-.021h.013l-.008-.007%2C0-.006h-.01l-.009-.007c.006%2C0%2C.005%2C0%2C.005%2C0l0%2C0v0c-.006%2C0-.006-.011-.006-.021l0%2C.012s-.006-.016-.011-.016l-.009.007c-2.031-2.6-5.419-3.242-8.487-3.073a42.84%2C42.84%2C0%2C0%2C0-13.67%2C3.609l.011.026c-.612.546-1.326%2C3.669-.364%2C6.563l-1.279.206a3.844%2C3.844%2C0%2C0%2C0-3.582-.12l-14.6%2C5.99a3.66%2C3.66%2C0%2C0%2C0-1.806%2C4.57H5.034c0%2C.007.007.013.007.019l.006.011%2C0%2C0h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C.008h0l0%2C.008s0%2C0%2C0%2C.013h0s0%2C0%2C.012.01l0%2C0a3.722%2C3.722%2C0%2C0%2C0%2C4.771%2C1.9l14.638-5.885a3.724%2C3.724%2C0%2C0%2C0%2C2.2-2.46l1.061-.748c1.327%2C2.745%2C4.013%2C4.484%2C4.832%2C4.449l.011.022a45.916%2C45.916%2C0%2C0%2C0%2C12.32-6.937M8.961%2C141.077a5.6%2C5.6%2C0%2C0%2C1-2.126-5.422.257.257%2C0%2C0%2C1%2C.3-.207.253.253%2C0%2C0%2C1%2C.2.295%2C5.1%2C5.1%2C0%2C0%2C0%2C1.934%2C4.929.254.254%2C0%2C0%2C1-.308.405m15.812-6.738a.254.254%2C0%2C1%2C1-.307.405%2C5.6%2C5.6%2C0%2C0%2C1-2.126-5.424.255.255%2C0%2C1%2C1%2C.5.09%2C5.1%2C5.1%2C0%2C0%2C0%2C1.931%2C4.929m1.312-1.235a.253.253%2C0%2C0%2C1-.358-.027%2C5.51%2C5.51%2C0%2C0%2C1-.939-1.529l0-.009a5.527%2C5.527%2C0%2C0%2C1-.415-1.967.253.253%2C0%2C1%2C1%2C.506-.011%2C5.064%2C5.064%2C0%2C0%2C0%2C1.235%2C3.185.255.255%2C0%2C0%2C1-.027.358%22%20fill%3D%22%236b912e%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
section.full_width__footer .region-footer {
  flex-grow: 1;
  flex-shrink: 1;
}
section.full_width__footer .region-footer .block {
  max-width: 41.25rem;
}
section.full_width__footer .section_wrap * {
  color: #999999;
}
section.full_width__footer .section_wrap p,
section.full_width__footer .section_wrap a {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
@media only screen and (max-width: 48rem) {
  section.full_width__footer .section_wrap p,
section.full_width__footer .section_wrap a {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__footer .section_wrap p,
section.full_width__footer .section_wrap a {
    font-size: 0.875rem;
  }
}
section.full_width__footer .section_wrap p {
  margin-bottom: 1.4em;
}
section.full_width__footer .section_wrap a {
  border: 0;
}
section.full_width__footer .section_wrap a:hover, section.full_width__footer .section_wrap a:focus {
  text-decoration: underline;
}
section.full_width__footer h2 {
  -webkit-font-smoothing: antialiased;
  color: #999999;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-top: 0;
  margin-bottom: 0.225em;
}
@media only screen and (max-width: 48rem) {
  section.full_width__footer h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__footer h2 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__footer h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__footer h2 {
    font-size: 1.3125rem;
  }
}
section.full_width__footer .block-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 48rem) {
  section.full_width__footer .block-menu ul {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__footer .block-menu ul {
    font-size: 0.875rem;
  }
}
section.full_width__footer .block-menu ul li {
  display: inline-block;
}
section.full_width__footer .block-menu ul li::after {
  content: "|";
  display: inline-block;
  margin-left: 0.3em;
  margin-right: 0.3em;
}
section.full_width__footer .block-menu ul li:last-child::after {
  display: none;
}

@media only screen and (max-width: 66rem) {
  section.full_width__footer footer {
    flex-wrap: wrap;
  }
  section.full_width__footer .region-footer {
    width: 50%;
    margin-right: 0;
  }
  section.full_width__footer .siteby_wrap {
    margin-top: 1em;
    width: 100%;
  }
}
@media only screen and (min-width: 30.0625rem) and (max-width: 66rem) {
  .siteby_wrap {
    padding-left: 9.65rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  section.full_width__footer {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  section.full_width__footer footer > * {
    margin-right: 2rem;
  }
  section.full_width__footer .siteby_wrap {
    padding-left: 8.75rem;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__footer .region-footer {
    width: 100%;
    margin-top: 1em;
  }
  section.full_width__footer .siteby_wrap {
    padding-left: 0;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__footer {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  section.full_width__footer .of_logo {
    width: 5rem;
    height: 5rem;
  }
}
/*  Listing item
*********************************** */
.listing_item {
  display: block;
}

.list_block {
  display: block;
}

.list_link {
  display: block;
}

.listing_box_image {
  position: relative;
  line-height: 0;
}
.listing_box_image img.generated-image {
  display: block;
  width: 100%;
  height: auto;
}

.list_title {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 48rem) {
  .list_title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .list_title {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .list_title {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .list_title {
    font-size: 1.3125rem;
  }
}

.teaser_text {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #000000;
}
@media only screen and (max-width: 48rem) {
  .teaser_text {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .teaser_text {
    font-size: 1.25rem;
  }
}

.read_more {
  display: inline-block;
  color: #aa8f00;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  padding-top: 0.575em;
  padding-bottom: 0.575em;
  padding-left: 1.65em;
  padding-right: 1.65em;
  border: 0.0625rem solid #aa8f00;
  border-radius: 2em;
}
.read_more:hover, .read_more:focus {
  color: white;
  background-color: #aa8f00;
  border-color: #aa8f00;
}
@media only screen and (max-width: 30rem) {
  .read_more {
    font-size: 0.9375rem;
  }
}
.read_more.read_more_download {
  position: relative;
  border-color: transparent;
  padding-left: 3em;
}
.read_more.read_more_download::before {
  content: " ";
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  box-sizing: border-box;
  width: 2.39875em;
  height: 2.39875em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2227.327%22%20viewBox%3D%220%200%2017%2027.327%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.851%2C15.27a.506.506%2C0%2C0%2C0-.718%2C0l-7.12%2C7.119V.508A.508.508%2C0%2C1%2C0%2C8%2C.508V22.389L.878%2C15.27a.508.508%2C0%2C1%2C0-.719.718l7.987%2C7.987a.509.509%2C0%2C0%2C0%2C.718%2C0l7.987-7.987A.506.506%2C0%2C0%2C0%2C16.851%2C15.27Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.458%2C27.327H.508a.508.508%2C0%2C0%2C1%2C0-1.016h15.95a.508.508%2C0%2C0%2C1%2C0%2C1.016Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 44%;
  border-radius: 50%;
  border: 0.0625rem solid #aa8f00;
}
.read_more.read_more_download:hover, .read_more.read_more_download:focus {
  background-color: transparent;
}
.read_more.read_more_download:hover::before, .read_more.read_more_download:focus::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2227.327%22%20viewBox%3D%220%200%2017%2027.327%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.851%2C15.27a.506.506%2C0%2C0%2C0-.718%2C0l-7.12%2C7.119V.508A.508.508%2C0%2C1%2C0%2C8%2C.508V22.389L.878%2C15.27a.508.508%2C0%2C1%2C0-.719.718l7.987%2C7.987a.509.509%2C0%2C0%2C0%2C.718%2C0l7.987-7.987A.506.506%2C0%2C0%2C0%2C16.851%2C15.27Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.458%2C27.327H.508a.508.508%2C0%2C0%2C1%2C0-1.016h15.95a.508.508%2C0%2C0%2C1%2C0%2C1.016Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-color: #aa8f00;
}

.listing_tag {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

/*	Hover effect
		anything bigger than mobile
*********************************** */
/*  Strands
*********************************** */
.strands_wrapper {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
}

.strand_wrap {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  width: 100%;
}
.strand_wrap a {
  display: block;
  position: relative;
  height: 100%;
  flex-grow: 1;
}
.strand_wrap .strand_image {
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.strand_wrap .strand_image .inner {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.strand_wrap .strand_image .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15em;
  font-style: normal;
  font-size: 2.625rem;
  margin-top: 1em;
  margin-bottom: 0.3em;
  margin: 0;
}
@media only screen and (max-width: 79.5rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 2.4375rem;
  }
}
@media only screen and (max-width: 48rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 39rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 21rem) {
  .strand_wrap .strand_image .overlay {
    font-size: 1.71875rem;
  }
}
.strand_wrap .strand_image .overlay div {
  backface-visibility: hidden;
}
.strand_wrap .strand_image .overlay .icon {
  position: relative;
  width: 100%;
  min-width: 6.25rem;
  height: 5.3125rem;
  margin-bottom: 0.45em;
}
.strand_wrap .strand_image .overlay .icon::before {
  content: " ";
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: 50% 100%;
}
.strand_wrap .strand_text {
  text-align: left;
  box-sizing: border-box;
  padding-top: 1.25rem;
  padding-bottom: 2.6rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: white;
}
.strand_wrap .call_to_action {
  display: inline-block;
  color: white;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  padding-top: 0.575em;
  padding-bottom: 0.575em;
  padding-left: 1.65em;
  padding-right: 1.65em;
  border: 0.0625rem solid white;
  border-radius: 2em;
}
.strand_wrap .call_to_action:hover, .strand_wrap .call_to_action:focus {
  color: #000000;
  background-color: white;
  border-color: white;
}
@media only screen and (max-width: 30rem) {
  .strand_wrap .call_to_action {
    font-size: 0.9375rem;
  }
}
body.not_touch_device .strand_wrap .strand_image .overlay .icon::before {
  -ms-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  transition: transform 0.1s;
}
body.not_touch_device .strand_wrap a:hover .strand_image .overlay .icon::before,
body.not_touch_device .strand_wrap a:focus .strand_image .overlay .icon::before {
  -ms-transform: scale(1.05) rotate(-5deg);
  -o-transform: scale(1.05) rotate(-5deg);
  -webkit-transform: scale(1.05) rotate(-5deg);
  transform: scale(1.05) rotate(-5deg);
}
body.not_touch_device .strand_wrap a:hover .call_to_action,
body.not_touch_device .strand_wrap a:focus .call_to_action {
  color: #000000;
  background-color: white;
}
@media only screen and (max-width: 75rem) {
  .strand_wrap .strand_image .overlay .icon {
    min-width: 0;
    width: 5.5rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.3em;
  }
  .strand_wrap .strand_image .overlay .icon::before {
    background-size: contain;
  }
}
@media only screen and (max-width: 48rem) {
  .strand_wrap .strand_image .overlay .icon {
    width: 5rem;
    height: 3.5rem;
    margin-bottom: 0.25em;
  }
}
.strand_wrap.strand_askit a {
  background-color: #faa61a;
}
.strand_wrap.strand_askit .overlay .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2271%22%20height%3D%2266.712%22%20viewBox%3D%220%200%2071%2066.712%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M70.092%2C27.117%2C56.706%2C22.55l5.123-12.4a1.343%2C1.343%2C0%2C0%2C0-.219-1.436%2C1.3%2C1.3%2C0%2C0%2C0-1.309-.4L45.616%2C12.75%2C40.6.8A1.267%2C1.267%2C0%2C0%2C0%2C38.42.488L29.626%2C11.993%2C16.483%2C6.2a1.215%2C1.215%2C0%2C0%2C0-1.266.135%2C1.41%2C1.41%2C0%2C0%2C0-.528%2C1.21L15.954%2C20.45.99%2C23.7a1.341%2C1.341%2C0%2C0%2C0-.963%2C1.024A1.368%2C1.368%2C0%2C0%2C0%2C.5%2C26.08l10.362%2C8.378-9.6%2C10.535a1.387%2C1.387%2C0%2C0%2C0-.248%2C1.455%2C1.363%2C1.363%2C0%2C0%2C0%2C1.2.824l14.918.106-.1%2C12.9a1.3%2C1.3%2C0%2C0%2C0%2C.685%2C1.2%2C1.241%2C1.241%2C0%2C0%2C0%2C1.326-.04l11.65-7.926c5.891%2C14.229%2C27.545%2C13.182%2C27.545%2C13.182s-12.861-8.33-9.725-17.732c.025-.055%2C13.772%2C1.236%2C13.772%2C1.236a1.292%2C1.292%2C0%2C0%2C0%2C1.2-.612%2C1.365%2C1.365%2C0%2C0%2C0%2C.023-1.378L57.3%2C36.942l13.049-7.4a1.352%2C1.352%2C0%2C0%2C0-.259-2.429M41.193%2C45.8a2.693%2C2.693%2C0%2C0%2C1-.916%2C1.567%2C3.294%2C3.294%2C0%2C0%2C1-5.133-1.676%2C4.125%2C4.125%2C0%2C0%2C1%2C.5-3.34%2C3.244%2C3.244%2C0%2C0%2C1%2C.782-1.174%2C2.931%2C2.931%2C0%2C0%2C1%2C1.131-.359c1.661-.391%2C3.309.019%2C3.934%2C1.893.42%2C1.207.041%2C1.969-.3%2C3.089M37.165%2C25.445a6.171%2C6.171%2C0%2C0%2C1%2C.11.964%2C36.109%2C36.109%2C0%2C0%2C1%2C1.11%2C5.16%2C15.251%2C15.251%2C0%2C0%2C1%2C.364%2C2.046c-.019.373.129.8.117%2C1.179a5.174%2C5.174%2C0%2C0%2C1-.479%2C1.455c-.21.624-.148%2C1.334-.82%2C1.7-1.064.658-3.12-.475-3.633-1.453-.786-1.482-.678-3.692-.882-5.252-.356-2.949-1.738-6.159-2.311-8.944-.258-1.347-1.413-3.37.084-4.286a3.548%2C3.548%2C0%2C0%2C1%2C4.184.542c.57.755.5%2C2.227.793%2C3.1.4%2C1.3.928%2C2.546%2C1.363%2C3.794%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
.strand_wrap.strand_askit .strand_text {
  color: #000000;
}
.strand_wrap.strand_growit a {
  background-color: #67923d;
}
.strand_wrap.strand_growit .overlay .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2297.001%22%20height%3D%2259.28%22%20viewBox%3D%220%200%2097.001%2059.28%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M91.782%2C20.189c-.367-3.869-2.361-5.419-4.962-5.317-.046-.025-.089%2C0-.169%2C0a9.09%2C9.09%2C0%2C0%2C0-5.144%2C2.771.24.24%2C0%2C0%2C0-.078.1l-1.394-5.778A14.132%2C14.132%2C0%2C0%2C1%2C86.087%2C9.7a2.343%2C2.343%2C0%2C0%2C0%2C.4-.045%2C9.433%2C9.433%2C0%2C0%2C1%2C7.258%2C2.7%2C11.278%2C11.278%2C0%2C0%2C1%2C3.23%2C7.514%2C19.981%2C19.981%2C0%2C0%2C1-2.6%2C10.487c-4.557%2C8.74-5.455%2C10.791-6.853%2C17.4L85.674%2C36.669a89.164%2C89.164%2C0%2C0%2C1%2C4.1-8.744%2C14.792%2C14.792%2C0%2C0%2C0%2C2.011-7.736%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M77.948%2C9.881c1.636%2C2.367%2C8.473%2C41.473%2C8.473%2C41.473s-7.813%2C6.836-21.366%2C7.772a56.874%2C56.874%2C0%2C0%2C1-24.019-3.2L12.1%2C16.877%2C1.8%2C18.365s.034-.056.068-.122a8.105%2C8.105%2C0%2C0%2C0%2C3.264-1.515A35.166%2C35.166%2C0%2C0%2C0%2C10.9%2C11.3a37.345%2C37.345%2C0%2C0%2C0%2C4.016-5.5c.947-1.756%2C1.632-3.19%2C1.554-4.382a1.4%2C1.4%2C0%2C0%2C0%2C.119-.079l-.841%2C12.31L42.028%2C38.184l1.488-26.725a53.833%2C53.833%2C0%2C0%2C0%2C12.493%2C2.526A59.138%2C59.138%2C0%2C0%2C0%2C68.3%2C13.507l.058.063c4.85-.756%2C8.194-1.793%2C8.131-2.765C76.4%2C9.658%2C71.373%2C9.051%2C64.755%2C9.252l2.551%2C3.073a56.3%2C56.3%2C0%2C0%2C1-11.188.365%2C52.154%2C52.154%2C0%2C0%2C1-12.079-2.426L58.623%2C1.236l5.354%2C6.737S76.414%2C7.7%2C77.948%2C9.881%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M.321%2C17.086c1.217%2C1.051%2C5.47-1.867%2C9.523-6.54S16.191%2C1.261%2C14.994.214C13.772-.836%2C9.522%2C2.088%2C5.463%2C6.749c-4.04%2C4.662-6.351%2C9.3-5.142%2C10.337%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
.strand_wrap.strand_cookit a {
  background-color: #be1e2d;
}
.strand_wrap.strand_cookit .overlay .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2294.001%22%20height%3D%2284.244%22%20viewBox%3D%220%200%2094.001%2084.244%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M51.736%2C29.147a26.907%2C26.907%2C0%2C0%2C0-10.431-1.735%2C56.508%2C56.508%2C0%2C0%2C0-16.713%2C2.829A53.52%2C53.52%2C0%2C0%2C0%2C7.13%2C39.283C2.793%2C42.854.022%2C46.762%2C0%2C50.705a7.221%2C7.221%2C0%2C0%2C0%2C.35%2C2.228c.818%2C2.551%2C2.952%2C4.4%2C5.77%2C5.561a27.37%2C27.37%2C0%2C0%2C0%2C10.41%2C1.729%2C56.308%2C56.308%2C0%2C0%2C0%2C16.719-2.838A53.709%2C53.709%2C0%2C0%2C0%2C50.712%2C48.35c4.332-3.591%2C7.107-7.493%2C7.123-11.425A6.9%2C6.9%2C0%2C0%2C0%2C57.5%2C34.7c-.824-2.558-2.966-4.409-5.759-5.551M21.1%2C39.263A1.722%2C1.722%2C0%2C0%2C1%2C21.012%2C39a1.827%2C1.827%2C0%2C0%2C1%2C.033-.651%2C6.346%2C6.346%2C0%2C0%2C1%2C.274-.659c.772-1.372%2C2.88-2.716%2C5.4-3.323%2C2.836-.674%2C5.431-.2%2C6.295%2C1.005a1.7%2C1.7%2C0%2C0%2C1%2C.261.607.349.349%2C0%2C0%2C1%2C.037.111%2C1.647%2C1.647%2C0%2C0%2C1%2C.01.315c-.124%2C1.675-2.636%2C3.543-5.718%2C4.28-2.925.694-5.7.19-6.416-1.187a.845.845%2C0%2C0%2C1-.087-.235m7.893%2C6.318c-3.132.746-6.651.4-7.429-1.065-.09-.181-.47-3.487-.5-3.67l.006-.008a.928.928%2C0%2C0%2C0%2C.083.252c.776%2C1.47%2C3.728%2C2.018%2C6.858%2C1.264%2C3.305-.788%2C5.972-2.8%2C6.109-4.574a1.144%2C1.144%2C0%2C0%2C0-.011-.344c.239.831%2C1.577%2C3.26%2C1.566%2C3.378-.13%2C1.772-3.382%2C3.984-6.686%2C4.767%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M71.319%2C26.775a5.9%2C5.9%2C0%2C0%2C0%2C2.01-1.1L91.958%2C10.156A5.76%2C5.76%2C0%2C1%2C0%2C84.5%2C1.372L65.867%2C16.9a5.76%2C5.76%2C0%2C0%2C0-1.808%2C2.8l.433.441.046-.041.517-.135a5.486%2C5.486%2C0%2C0%2C1%2C4.724%2C1.07A4.724%2C4.724%2C0%2C0%2C1%2C71.163%2C25.9L71%2C26.4l-.031.035%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M61.912%2C33.632l-.692-1.216A16.428%2C16.428%2C0%2C0%2C0%2C59.663%2C30.1a3.013%2C3.013%2C0%2C0%2C0-1.244-.944L56.688%2C28.6%2C58%2C27.339l6.1-5.591.185-.181.259-.078a4.921%2C4.921%2C0%2C0%2C1%2C1.148-.105%2C4.15%2C4.15%2C0%2C0%2C1%2C2.638.957%2C3.593%2C3.593%2C0%2C0%2C1%2C1.04%2C3.728l-.076.257-.2.191-6.169%2C6.131Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M34.687%2C60.526c-12.7%2C3.941-24.819%2C3.508-31.4-.485%2C0%2C0%2C11.579%2C20.977%2C16.873%2C22.826%2C5.076%2C1.744%2C11.447%2C2.223%2C21.584-.918C54.362%2C78.021%2C60.754%2C72.6%2C62.281%2C67.255c1.448-5.1-2.947-25.889-2.947-25.889-1.736%2C7.75-10.46%2C14.742-24.647%2C19.16%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
.strand_wrap.strand_filmit a {
  background-color: #1c3f94;
}
.strand_wrap.strand_filmit .overlay .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2278%22%20height%3D%2275.67%22%20viewBox%3D%220%200%2078%2075.67%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M22.752%2C31.513a21.482%2C21.482%2C0%2C0%2C0%2C2.759-10.045c.318-7.238-2.342-12.881-5.835-14.978A5.4%2C5.4%2C0%2C0%2C0%2C17.183%2C5.7a30.206%2C30.206%2C0%2C0%2C0-5.735.043A6.438%2C6.438%2C0%2C0%2C1%2C13.3%2C6.5c3.528%2C2.164%2C5.913%2C7.125%2C6.093%2C13.361.012.585.009%2C1.175-.02%2C1.78A21.271%2C21.271%2C0%2C0%2C1%2C16.625%2C31.6a10.51%2C10.51%2C0%2C0%2C1-5.536%2C4.945%2C29.04%2C29.04%2C0%2C0%2C0%2C4.748-.1%2C9.709%2C9.709%2C0%2C0%2C0%2C6.915-4.934m-7.307-.225a20.678%2C20.678%2C0%2C0%2C0%2C2.669-9.661c.026-.593.036-1.167.012-1.732-.164-6.089-2.515-10.842-5.772-12.829a5.5%2C5.5%2C0%2C0%2C0-2.638-.821c-.1%2C0-.216%2C0-.3%2C0a5.327%2C5.327%2C0%2C0%2C0-.67.058c-2.381.363-4.484%2C2.219-6.053%2C4.848A20.76%2C20.76%2C0%2C0%2C0%2C.018%2C20.837c-.019.586-.024%2C1.17-.01%2C1.737.163%2C6.1%2C2.52%2C10.837%2C5.774%2C12.835l0%2C0a5.757%2C5.757%2C0%2C0%2C0%2C2.615.8%2C3.277%2C3.277%2C0%2C0%2C0%2C.341%2C0%2C6.146%2C6.146%2C0%2C0%2C0%2C.671-.073c2.382-.359%2C4.48-2.237%2C6.033-4.856M6.712%2C34.441l0%2C.012-.272-.16c-2.69-1.627-4.98-5.954-5.13-11.7L1.3%2C22.545c-.013-.541%2C0-1.094.018-1.641a19.507%2C19.507%2C0%2C0%2C1%2C2.488-9.086A9.73%2C9.73%2C0%2C0%2C1%2C7.363%2C8.133a4.563%2C4.563%2C0%2C0%2C1%2C2.043-.588.122.122%2C0%2C0%2C1%2C.033%2C0c.086%2C0%2C.163-.006.225%2C0l0%2C0a11.222%2C11.222%2C0%2C0%2C0-3.918%2C4.088%2C20.928%2C20.928%2C0%2C0%2C0-2.665%2C9.7c-.03.583-.031%2C1.16-.019%2C1.726.142%2C5.1%2C1.82%2C9.253%2C4.277%2C11.644a4.771%2C4.771%2C0%2C0%2C1-.63-.254m2.852.355L9.5%2C34.767C6.8%2C33.142%2C4.519%2C28.82%2C4.357%2C23.078c0-.029%2C0-.048%2C0-.061-.012-.54-.009-1.084.021-1.644A19.492%2C19.492%2C0%2C0%2C1%2C6.866%2C12.3a9.689%2C9.689%2C0%2C0%2C1%2C3.55-3.692%2C5.193%2C5.193%2C0%2C0%2C1%2C1.2-.462.1.1%2C0%2C0%2C1%2C.057.036c2.7%2C1.591%2C5%2C5.931%2C5.151%2C11.682a.444.444%2C0%2C0%2C0%2C.008.061c.005.54.007%2C1.086-.018%2C1.647a19.227%2C19.227%2C0%2C0%2C1-2.5%2C9.057C12.978%2C32.9%2C11.271%2C34.4%2C9.564%2C34.8M70.406%2C23.2c-1.03-.351-6.589-1.855-12.154-3.327-6.221-1.651-12.519-3.4-12.519-3.4l-1.974%2C1.245s7.782%2C2.136%2C14.827%2C4.046c5.09%2C1.384%2C9.834%2C2.707%2C11.058%2C3.193%2C2.913%2C1.155%2C5.975%2C3.754%2C6.053%2C6.187s-4.17%2C16.105-5.043%2C17.407c-.074.1-.075.152-.027.149a8.64%2C8.64%2C0%2C0%2C0%2C2.3-1.861c1.1-1.326%2C5.263-13.751%2C5.064-16.451-.215-2.693-4.591-6.147-7.587-7.188m-4.165%2C2.6c-.8-.248-22.789-6.4-22.789-6.4l0%2C.011-.018%2C0-1.711%2C7.327-2.688-.756%2C0%2C.008-.01%2C0-.555-.151a10.379%2C10.379%2C0%2C0%2C0%2C.687-1.553c-.139.092%2C1.481.449%2C1.481.449a16.841%2C16.841%2C0%2C0%2C0%2C.472-2.119c.373-1.387.636-2.7.954-4.093.418-1.81%2C1.385-2.279%2C2.891-3.232a1.323%2C1.323%2C0%2C0%2C1%2C.714-.22%2C1.241%2C1.241%2C0%2C0%2C1%2C.424.048c.06.019%2C6.361%2C1.772%2C12.493%2C3.4q3.28.863%2C5.685%2C1.517a10.125%2C10.125%2C0%2C0%2C0-3.068-6.169%2C7.913%2C7.913%2C0%2C0%2C0-4.325-6.927C51.559%2C4.057%2C27.451-.667%2C23.753.079l-3.623%2C4.1a8.4%2C8.4%2C0%2C0%2C1%2C2.063.89c4.59%2C2.732%2C7.493%2C9.331%2C7.169%2C16.858a23.463%2C23.463%2C0%2C0%2C1-3%2C10.692c-2.285%2C3.849-5.689%2C6.361-9.512%2C6.342.007.057%2C0%2C.124.008.187-.009%2C5.869-.033%2C11.751-.059%2C17.616%2C0%2C2.7-.011%2C5.375-.022%2C8.068a6.37%2C6.37%2C0%2C0%2C0%2C.385%2C3.187c4.659%2C8.085%2C16.6%2C8.239%2C24.708%2C7.2%2C1.676-.223%2C5.146-.576%2C5.971-2.454.712-1.633%2C3.492-20.157%2C5.206-27.619-1.546-.513-3.071-1.032-4.5-1.505-4.209-1.4-7.49-2.5-7.49-2.5a1.425%2C1.425%2C0%2C0%2C1-.968-1.268l-.1-4.34-1.948-.861-.176-1.2-.1-.629L41.34%2C34.3l.163%2C5.512S44.784%2C40.9%2C48.99%2C42.3c1.387.459%2C2.88.967%2C4.388%2C1.472l.005-.007c6.223%2C2.095%2C12.715%2C4.321%2C13.559%2C4.531a3.881%2C3.881%2C0%2C0%2C0%2C1.046.116%2C2.328%2C2.328%2C0%2C0%2C0%2C.5-.062l.418-.674c1.088-1.3%2C4.861-14.1%2C4.694-16.212-.192-2.593-3.677-4.545-7.355-5.665m-42.029%2C31.1a.9.9%2C0%2C0%2C1-.437.777.929.929%2C0%2C0%2C1-.482.156.856.856%2C0%2C0%2C1-.392-.081l-2.778-1.164a.974.974%2C0%2C0%2C1-.577-.893l.1-3.655a.934.934%2C0%2C0%2C1%2C.447-.787.876.876%2C0%2C0%2C1%2C.471-.14.985.985%2C0%2C0%2C1%2C.424.086l2.77%2C1.285a.944.944%2C0%2C0%2C1%2C.538.887Zm.038-8.563a.94.94%2C0%2C0%2C1-.433.772.985.985%2C0%2C0%2C1-.494.149%2C1.06%2C1.06%2C0%2C0%2C1-.384-.069L20.167%2C48.01a.909.909%2C0%2C0%2C1-.577-.9l.093-3.658a.967.967%2C0%2C0%2C1%2C.454-.784.92.92%2C0%2C0%2C1%2C.477-.138%2C1.013%2C1.013%2C0%2C0%2C1%2C.426.082l2.752%2C1.3a.937.937%2C0%2C0%2C1%2C.546.881ZM27.288%2C6.116a.677.677%2C0%2C0%2C1%2C.161-1.345c6.967.8%2C21.044%2C4.519%2C30.063%2C7.378a.673.673%2C0%2C1%2C1-.4%2C1.286c-8.959-2.83-23.07-6.545-29.824-7.319%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
@media only screen and (min-width: 66.0625rem) {
  .strand_wrap {
    width: 23.3066278223%;
  }
  .strand_wrap .strand_image .inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
  }
  .strand_wrap .strand_image .inner img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: auto;
    max-width: none;
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 66rem) {
  .strand_wrap {
    width: 48.8710852149%;
  }
}
@media only screen and (min-width: 48.0625rem) and (max-width: 66rem) {
  .strand_wrap {
    padding-bottom: 2.2578295703%;
  }
}
@media only screen and (max-width: 48rem) {
  .strand_wrap {
    padding-bottom: 3.9985376776%;
  }
}
@media only screen and (min-width: 34.5625rem) and (max-width: 48rem) {
  .strand_wrap {
    width: 48.0007311612%;
  }
}
@media only screen and (max-width: 34.5rem) {
  .strand_wrap {
    width: 100%;
    padding-bottom: 6%;
  }
  .strand_wrap .strand_image,
.strand_wrap .strand_text {
    width: 100%;
  }
}

.listing_item__resource .list_inner {
  background-color: white;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}
.listing_item__resource h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-top: 0.85em;
  margin-bottom: 0.15em;
}
@media only screen and (max-width: 48rem) {
  .listing_item__resource h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .listing_item__resource h2 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .listing_item__resource h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .listing_item__resource h2 {
    font-size: 1.3125rem;
  }
}
.listing_item__resource .listing_tag {
  display: inline-block;
  color: white;
  background-color: #aa8f00;
  padding-top: 0.7em;
  padding-bottom: 0.6em;
  padding-left: 1.25rem;
  padding-right: 2rem;
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: -1.25rem;
}
.listing_item__resource .listing_tag.askit {
  background-color: #faa61a;
}
.listing_item__resource .listing_tag.growit {
  background-color: #67923d;
}
.listing_item__resource .listing_tag.cookit {
  background-color: #be1e2d;
}
.listing_item__resource .listing_tag.filmit {
  background-color: #1c3f94;
}
body.not_touch_device .listing_item__resource a.list_link:hover .read_more, body.not_touch_device .listing_item__resource a.list_link:focus .read_more {
  color: white;
  background-color: #aa8f00;
}
body.not_touch_device .listing_item__resource a.list_link:hover .read_more.read_more_download, body.not_touch_device .listing_item__resource a.list_link:focus .read_more.read_more_download {
  background-color: transparent;
  color: #aa8f00;
}
body.not_touch_device .listing_item__resource a.list_link:hover .read_more.read_more_download::before, body.not_touch_device .listing_item__resource a.list_link:focus .read_more.read_more_download::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2227.327%22%20viewBox%3D%220%200%2017%2027.327%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.851%2C15.27a.506.506%2C0%2C0%2C0-.718%2C0l-7.12%2C7.119V.508A.508.508%2C0%2C1%2C0%2C8%2C.508V22.389L.878%2C15.27a.508.508%2C0%2C1%2C0-.719.718l7.987%2C7.987a.509.509%2C0%2C0%2C0%2C.718%2C0l7.987-7.987A.506.506%2C0%2C0%2C0%2C16.851%2C15.27Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.458%2C27.327H.508a.508.508%2C0%2C0%2C1%2C0-1.016h15.95a.508.508%2C0%2C0%2C1%2C0%2C1.016Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-color: #aa8f00;
}

.listing_item__timeline_nav {
  font-size: 1.4375rem;
  position: relative;
  padding-left: 1.5em;
  padding-bottom: 0.5em;
}
.listing_item__timeline_nav::before, .listing_item__timeline_nav::after {
  content: " ";
  display: block;
  position: absolute;
}
.listing_item__timeline_nav::before {
  width: 0.5652173913em;
  height: 0.5652173913em;
  background-color: #aa8f00;
  border-radius: 50%;
  top: 0.28em;
  left: 0;
}
.listing_item__timeline_nav::after {
  top: 0;
  left: 0.26em;
  height: 100%;
  width: 0;
  border-right: 0.0625rem solid #aa8f00;
}
.listing_item__timeline_nav h2 {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  position: relative;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
}
.listing_item__timeline_nav h2 .title-date {
  flex-shrink: 0;
  font-weight: 700;
  color: white;
  margin-right: 0.5em;
}
.listing_item__timeline_nav h2 .title-text {
  color: #aa8f00;
}
body.not_touch_device .listing_item__timeline_nav .list_link:hover h2 .title-text, body.not_touch_device .listing_item__timeline_nav .list_link:focus h2 .title-text {
  color: white;
}
@media only screen and (max-width: 61.5rem) {
  .listing_item__timeline_nav {
    padding-left: 1.25em;
  }
  .listing_item__timeline_nav,
.listing_item__timeline_nav h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  .listing_item__timeline_nav h2 {
    flex-wrap: wrap;
  }
  .listing_item__timeline_nav h2 .title-date {
    width: 100%;
    margin-right: 0;
  }
}

.column:first-child .views-row:first-child .listing_item__timeline_nav::after {
  top: 0.434em;
  height: calc(100% - 0.434em);
}
@media only screen and (min-width: 43.5625rem) {
  .views-row:first-child .listing_item__timeline_nav::after {
    top: 0.434em;
    height: calc(100% - 0.434em);
  }
}

.column:last-child .views-row:last-child .listing_item__timeline_nav {
  padding-bottom: 0;
}
.column:last-child .views-row:last-child .listing_item__timeline_nav::after {
  height: 0.434em;
}
@media only screen and (min-width: 43.5625rem) {
  .views-row:last-child .listing_item__timeline_nav {
    padding-bottom: 0;
  }
  .views-row:last-child .listing_item__timeline_nav::after {
    height: 0.434em;
  }
}

.listing_item__highlight .timeline_section_bg {
  display: none;
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1em;
  font-style: normal;
  font-size: 6.25rem;
  letter-spacing: -0.01em;
  font-size: 8.75rem;
  text-align: center;
  color: #262a34;
  opacity: 0.1;
}
@media only screen and (max-width: 48rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 5.625rem;
  }
}
@media only screen and (max-width: 43.5rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 5.3125rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 30rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 4.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 4.125rem;
  }
}
@media only screen and (max-width: 21rem) {
  .listing_item__highlight .timeline_section_bg {
    font-size: 3.875rem;
  }
}
.listing_item__highlight .listing_box_image {
  width: 100%;
}
.listing_item__highlight .listing_box_text {
  width: 85%;
  font-size: 1.625rem;
  padding-left: 1.8rem;
  border-left: 0.0625rem solid #aa8f00;
  margin-top: 1.3em;
}
@media only screen and (max-width: 48rem) {
  .listing_item__highlight .listing_box_text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .listing_item__highlight .listing_box_text {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .listing_item__highlight .listing_box_text {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .listing_item__highlight .listing_box_text {
    font-size: 1.3125rem;
  }
}
.listing_item__highlight .listing_box_text > *:last-child {
  margin-bottom: 0;
}
.listing_item__highlight h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-top: 0;
  margin-bottom: 0.35em;
}
@media only screen and (max-width: 48rem) {
  .listing_item__highlight h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .listing_item__highlight h2 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .listing_item__highlight h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .listing_item__highlight h2 {
    font-size: 1.3125rem;
  }
}
body.not_touch_device .listing_item__highlight a.list_link:hover .listing_box_image img, body.not_touch_device .listing_item__highlight a.list_link:focus .listing_box_image img {
  opacity: 0.7;
}
@media only screen and (max-width: 57rem) {
  .listing_item__highlight .listing_box_text {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 48rem) {
  .listing_item__highlight .listing_box_text {
    margin-top: 0.75em;
  }
}

/*  Pagination
*********************************** */
nav.pager {
  margin-top: 1rem;
}

.pager__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pager__items li {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 48rem) {
  .pager__items li {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .pager__items li {
    font-size: 0.875rem;
  }
}
.pager__items li.pager__item {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.pager__items li.pager__item a {
  text-align: center;
  color: #aa8f00;
  display: block;
  border-radius: 2em;
  box-sizing: border-box;
  padding-top: 0.438em;
  padding-bottom: 0.438em;
  padding-left: 0.519em;
  padding-right: 0.519em;
  min-width: 2.3125em;
  border: 0.0625rem solid #aa8f00;
}
.pager__items li.pager__item a:hover, .pager__items li.pager__item a:focus {
  background-color: #aa8f00;
  color: white;
}
.pager__items li.pager__item.is-active a {
  background-color: #aa8f00;
  color: white;
}
.pager__items li.pager__item--previous a, .pager__items li.pager__item--next a, .pager__items li.pager__item--first a, .pager__items li.pager__item--last a {
  border: 0;
}
.pager__items li.pager__item--previous a:hover, .pager__items li.pager__item--previous a:focus, .pager__items li.pager__item--next a:hover, .pager__items li.pager__item--next a:focus, .pager__items li.pager__item--first a:hover, .pager__items li.pager__item--first a:focus, .pager__items li.pager__item--last a:hover, .pager__items li.pager__item--last a:focus {
  color: #aa8f00;
  background-color: transparent;
  opacity: 0.7;
}
.pager__items li.pager__item--previous, .pager__items li.pager__item--next {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 1.5625rem;
  height: 1.0625rem;
  background-size: contain;
}
.pager__items li.pager__item--previous {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.123%22%20height%3D%2216.99%22%20viewBox%3D%220%200%2024.123%2016.99%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M8.854.149a.508.508%2C0%2C0%2C1%2C0%2C.718l-7.12%2C7.12H23.615a.508.508%2C0%2C0%2C1%2C0%2C1.016H1.734l7.12%2C7.119a.508.508%2C0%2C0%2C1-.719.719L.149%2C8.854a.507.507%2C0%2C0%2C1%2C0-.718L8.135.149A.508.508%2C0%2C0%2C1%2C8.854.149Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  margin-right: 1rem;
}
.pager__items li.pager__item--next {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.123%22%20height%3D%2216.99%22%20viewBox%3D%220%200%2024.123%2016.99%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M15.27.149a.506.506%2C0%2C0%2C0%2C0%2C.718l7.119%2C7.12H.508A.508.508%2C0%2C1%2C0%2C.508%2C9H22.389L15.27%2C16.122a.508.508%2C0%2C0%2C0%2C.718.719l7.987-7.987a.509.509%2C0%2C0%2C0%2C0-.718L15.988.149A.506.506%2C0%2C0%2C0%2C15.27.149Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  margin-left: 1rem;
}
@media only screen and (max-width: 34.5rem) {
  .pager__items li {
    display: none;
  }
  .pager__items li.is-active, .pager__items li.pager__item--previous, .pager__items li.pager__item--next, .pager__items li.pager__item--first, .pager__items li.pager__item--last {
    display: block;
  }
}

/* 	Forms
*********************************** */
form .form-item {
  margin-bottom: 1.5em;
}
form label {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  margin-top: 0;
}
@media only screen and (max-width: 39rem) {
  form label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  form label {
    font-size: 1.1875rem;
  }
}
form input[type=text],
form input[type=email],
form textarea {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  box-sizing: border-box;
  padding-top: 0.45em;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 100%;
  border: 0.0625rem solid #aa8f00;
  -webkit-appearance: none;
  border-radius: 0;
}
@media only screen and (max-width: 48rem) {
  form input[type=text],
form input[type=email],
form textarea {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  form input[type=text],
form input[type=email],
form textarea {
    font-size: 1.25rem;
  }
}
form textarea {
  resize: vertical;
}
form .form-actions {
  margin-top: 2rem;
}
form .form-actions input {
  margin-right: 1em;
}
form .form-actions input:last-child {
  margin-right: 0;
}
form fieldset {
  border: 0;
}

input[type=submit],
input.form-submit {
  display: inline-block;
  color: #aa8f00;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  padding-top: 0.575em;
  padding-bottom: 0.575em;
  padding-left: 1.65em;
  padding-right: 1.65em;
  border: 0.0625rem solid #aa8f00;
  border-radius: 2em;
}
input[type=submit]:hover, input[type=submit]:focus,
input.form-submit:hover,
input.form-submit:focus {
  color: white;
  background-color: #aa8f00;
  border-color: #aa8f00;
}
@media only screen and (max-width: 30rem) {
  input[type=submit],
input.form-submit {
    font-size: 0.9375rem;
  }
}

/*  Social links
*********************************** */
section.full_width__banner {
  position: relative;
  z-index: 5;
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;
}
section.full_width__banner .section_wrap {
  position: relative;
  max-height: 53.75rem;
}
section.full_width__banner .video_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner_front_01_60q.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
section.full_width__banner .video_wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.full_width__banner .video_wrap::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.2;
}
section.full_width__banner.animate_init::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 1;
  will-change: opacity;
  transition: opacity 1.6s;
}
section.full_width__banner.in_viewport::before {
  opacity: 0;
}
@media only screen and (min-width: 79.5625rem) {
  section.full_width__banner .section_wrap {
    height: 80vh;
  }
}
@media only screen and (max-width: 79.5rem) {
  section.full_width__banner .section_wrap {
    min-height: 50vw;
  }
}
.page-standard.top_banner_timeline section.full_width__banner {
  background-image: url("../images/banner_timeline_head_60q.jpg");
  background-repeat: no-repeat;
  margin-bottom: -7.3125rem;
}
.page-standard.top_banner_timeline section.full_width__banner .section_wrap {
  min-height: 25rem;
}
.page-standard.top_banner_front section.full_width__banner {
  background-image: url("../images/banner_front_01_60q.jpg");
  background-repeat: no-repeat;
  background-position: 100% 0%;
}
.page-standard.top_banner_front section.full_width__banner #home_banner_text {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.275em;
  font-style: normal;
  font-size: 3.125rem;
  margin: 0;
  color: white;
  max-width: 38rem;
}
@media only screen and (max-width: 79.5rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    font-size: 1.875rem;
  }
}
.page-standard.top_banner_front section.full_width__banner #home_banner_link {
  display: inline-block;
  color: white;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  padding-top: 0.575em;
  padding-bottom: 0.575em;
  padding-left: 1.65em;
  padding-right: 1.65em;
  border: 0.0625rem solid white;
  border-radius: 2em;
  position: absolute;
  bottom: 3.125rem;
  right: 0;
}
.page-standard.top_banner_front section.full_width__banner #home_banner_link:hover, .page-standard.top_banner_front section.full_width__banner #home_banner_link:focus {
  color: white;
  background-color: #aa8f00;
  border-color: #aa8f00;
}
@media only screen and (max-width: 30rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_link {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 79.5625rem) {
  .page-standard.top_banner_front section.full_width__banner .section_wrap {
    min-height: 40rem;
  }
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 79.5rem) {
  .page-standard.top_banner_front section.full_width__banner #home_banner_text {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

section.full_width__pre_content {
  font-size: 3.125rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 79.5rem) {
  section.full_width__pre_content {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  section.full_width__pre_content {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  section.full_width__pre_content {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__pre_content {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__pre_content {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__pre_content {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__pre_content {
    font-size: 1.875rem;
  }
}
section.full_width__pre_content .section_wrap {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__pre_content .section_wrap {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__pre_content .section_wrap {
    font-size: 1.25rem;
  }
}

/* Width holder main outer
*********************************** */
section.full_width__main_outer {
  position: relative;
  z-index: 11;
}

/* Width holder main
*********************************** */
section.full_width__main {
  font-size: 2.25rem;
  padding-top: 0;
  padding-bottom: 1.75em;
}
@media only screen and (max-width: 79.5rem) {
  section.full_width__main {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  section.full_width__main {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  section.full_width__main {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__main {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__main {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__main {
    font-size: 1.5rem;
  }
}
section.full_width__main .block > article.entity--type-node > .content > *:first-child {
  margin-top: 1rem;
}
section.full_width__main .section_wrap {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__main .section_wrap {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__main .section_wrap {
    font-size: 1.25rem;
  }
}
body.alias--open-futures-resources section.full_width__main, body.alias--open-futures-resources-filter section.full_width__main, body.path--search section.full_width__main {
  padding-top: 0.1em;
  padding-bottom: 3.5em;
  background-color: #f6f3e8;
}
@media only screen and (max-width: 30rem) {
  body.alias--open-futures-resources section.full_width__main, body.alias--open-futures-resources-filter section.full_width__main, body.path--search section.full_width__main {
    padding-bottom: 1em;
  }
}

section.full_width__post_content {
  font-size: 3.125rem;
  padding-top: 1.35em;
  padding-bottom: 1em;
  background-color: #f6f3e8;
}
@media only screen and (max-width: 79.5rem) {
  section.full_width__post_content {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  section.full_width__post_content {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  section.full_width__post_content {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__post_content {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__post_content {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__post_content {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__post_content {
    font-size: 1.875rem;
  }
}
section.full_width__post_content .section_wrap {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__post_content .section_wrap {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__post_content .section_wrap {
    font-size: 1.25rem;
  }
}

section.full_width__pre_footer {
  font-size: 3.125rem;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 0.0625rem solid #aa8f00;
}
@media only screen and (max-width: 79.5rem) {
  section.full_width__pre_footer {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  section.full_width__pre_footer {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  section.full_width__pre_footer {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__pre_footer {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  section.full_width__pre_footer {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  section.full_width__pre_footer {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  section.full_width__pre_footer {
    font-size: 1.875rem;
  }
}
section.full_width__pre_footer .section_wrap {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
}
@media only screen and (max-width: 48rem) {
  section.full_width__pre_footer .section_wrap {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  section.full_width__pre_footer .section_wrap {
    font-size: 1.25rem;
  }
}

/* Resource filters
*********************************** */
#block-exposedformresources-resultspage-1 {
  font-size: 2.25rem;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 79.5rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-exposedformresources-resultspage-1 {
    font-size: 1.5rem;
  }
}
#block-exposedformresources-resultspage-1 > h2 {
  margin-bottom: 0.9em;
}
#block-exposedformresources-resultspage-1 form {
  background-color: white;
}
#block-exposedformresources-resultspage-1 .form--inline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  font-size: 1.375rem;
  padding-top: 1.4em;
  padding-bottom: 2.5em;
  width: 100%;
  background-color: white;
  box-shadow: 0 0.625rem 0.625rem 0.125rem rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 39rem) {
  #block-exposedformresources-resultspage-1 .form--inline {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-exposedformresources-resultspage-1 .form--inline {
    font-size: 1.1875rem;
  }
}
#block-exposedformresources-resultspage-1 .form--inline fieldset {
  min-width: 0 !important;
  float: none;
  box-sizing: border-box;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0;
}
#block-exposedformresources-resultspage-1 .form--inline legend {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  margin-top: 0;
  margin-bottom: 1em;
  cursor: pointer;
}
@media only screen and (max-width: 39rem) {
  #block-exposedformresources-resultspage-1 .form--inline legend {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-exposedformresources-resultspage-1 .form--inline legend {
    font-size: 1.1875rem;
  }
}
#block-exposedformresources-resultspage-1 .form--inline .form-item {
  margin-bottom: 0.55em;
}
#block-exposedformresources-resultspage-1 .form--inline .form-item label {
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.25em;
  font-style: normal;
  line-height: 1.15em;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 48rem) {
  #block-exposedformresources-resultspage-1 .form--inline .form-item label {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-exposedformresources-resultspage-1 .form--inline .form-item label {
    font-size: 1.25rem;
  }
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox input.form-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox label {
  position: relative;
  z-index: 1;
  padding-left: 1.75rem;
  cursor: pointer;
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox label:hover {
  color: #aa8f00;
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox label::before {
  content: " ";
  display: block;
  box-sizing: border-box;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: transparent;
  border: 0.0625rem solid #aa8f00;
  position: absolute;
  top: 0.4375rem;
  left: 0;
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox input.form-checkbox:checked + label {
  color: #aa8f00;
}
#block-exposedformresources-resultspage-1 .form--inline .form-type-checkbox input.form-checkbox:checked + label::before {
  background-color: #aa8f00;
}
#block-exposedformresources-resultspage-1 .form--inline .form-actions {
  width: 100%;
  text-align: center;
}
#block-exposedformresources-resultspage-1 .form--inline #edit-reset {
  border: 0;
}
#block-exposedformresources-resultspage-1 .form--inline #edit-reset:hover, #block-exposedformresources-resultspage-1 .form--inline #edit-reset:focus {
  color: #aa8f00;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
}
@media only screen and (min-width: 57.0625rem) {
  #block-exposedformresources-resultspage-1 .form--inline fieldset {
    width: 23.3066278223%;
    margin-left: 0;
    margin-right: 2.2578295703%;
  }
  #block-exposedformresources-resultspage-1 .form--inline fieldset:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 57rem) {
  #block-exposedformresources-resultspage-1 .form--inline fieldset {
    width: 100%;
  }
  #block-exposedformresources-resultspage-1 .form--inline fieldset .fieldgroup {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
  }
  #block-exposedformresources-resultspage-1 .form--inline fieldset .form-item {
    margin-right: 2em;
  }
}
#block-exposedformresources-resultspage-1 .js_form_wrap {
  background-color: white;
  overflow: visible;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn,
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  #block-exposedformresources-resultspage-1 .filters_toggle_btn,
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-exposedformresources-resultspage-1 .filters_toggle_btn,
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-exposedformresources-resultspage-1 .filters_toggle_btn,
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-exposedformresources-resultspage-1 .filters_toggle_btn,
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
    font-size: 1.3125rem;
  }
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn span {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  padding-right: 0.7em;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-bottom: 0.125rem solid #aa8f00;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn span::after {
  content: " ";
  display: block;
  width: 3rem;
  height: 3rem;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2239.941%22%20height%3D%2225.035%22%20viewBox%3D%220%200%2039.941%2025.035%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22roof%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M37.942%2C0A2%2C2%2C0%2C0%2C1%2C39.46%2C3.3L21.425%2C24.337a2%2C2%2C0%2C0%2C1-1.519.7h0a2%2C2%2C0%2C0%2C1-1.519-.7L.481%2C3.43A2%2C2%2C0%2C0%2C1%2C3.519.828L19.907%2C19.962%2C36.423.7A2%2C2%2C0%2C0%2C1%2C37.942%2C0Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  will-change: transform;
  transition: transform 0.25s;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn h2 {
  margin-right: 1em;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn:hover, #block-exposedformresources-resultspage-1 .filters_toggle_btn:focus {
  outline: 0;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn:hover span, #block-exposedformresources-resultspage-1 .filters_toggle_btn:focus span {
  background-color: #fffadd;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn.filters_open span {
  border-bottom-width: 0.0625rem;
}
#block-exposedformresources-resultspage-1 .filters_toggle_btn.filters_open span::after {
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 34.5rem) {
  #block-exposedformresources-resultspage-1 .filters_toggle_btn span {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
  }
}

nav.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav.breadcrumb ol li {
  display: inline-block;
}
nav.breadcrumb ol li,
nav.breadcrumb ol li a {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
nav.breadcrumb ol li::after {
  content: ">";
  color: #aa8f00;
  display: inline-block;
  margin: 0;
}
nav.breadcrumb ol li:last-child::after {
  display: none;
}
nav.breadcrumb ol li a {
  color: #aa8f00;
}
nav.breadcrumb ol li a:hover, nav.breadcrumb ol li a:focus {
  text-decoration: underline;
}

#block-ourstrands {
  font-size: 2.25rem;
  margin-top: 2.65em;
  margin-bottom: 3.2em;
}
@media only screen and (max-width: 79.5rem) {
  #block-ourstrands {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-ourstrands {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-ourstrands {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-ourstrands {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-ourstrands {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-ourstrands {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-ourstrands {
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 30rem) {
  #block-ourstrands {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* All 'Content' pages
*********************************** */
.block > article.entity--type-node > .content > .field--name-body,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
.contact-message-form,
body.alias--search-node-help #block-newopenfutures-content {
  width: 82.957028405%;
  max-width: none;
  box-sizing: border-box;
  padding-left: 6.2636562272%;
  border-left: 0.0625rem solid transparent;
  margin-left: 17.042971595%;
  margin-right: initial;
}
.block > article.entity--type-node > .content > .field--name-body > *,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > *,
.contact-message-form > *,
body.alias--search-node-help #block-newopenfutures-content > * {
  max-width: 69.6%;
}
.block > article.entity--type-node > .content > .field--name-body > img,
.block > article.entity--type-node > .content > .field--name-body > figure,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > img,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > figure,
.contact-message-form > img,
.contact-message-form > figure,
body.alias--search-node-help #block-newopenfutures-content > img,
body.alias--search-node-help #block-newopenfutures-content > figure {
  max-width: 100%;
}
@media only screen and (max-width: 79.5rem) {
  .block > article.entity--type-node > .content > .field--name-body,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
.contact-message-form,
body.alias--search-node-help #block-newopenfutures-content {
    width: 91.4785142025%;
    padding-left: 8.5214857975%;
    margin-left: 8.5214857975%;
  }
  .block > article.entity--type-node > .content > .field--name-body > *,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > *,
.contact-message-form > *,
body.alias--search-node-help #block-newopenfutures-content > * {
    max-width: 79.4%;
  }
}
@media only screen and (max-width: 66rem) {
  .block > article.entity--type-node > .content > .field--name-body,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
.contact-message-form,
body.alias--search-node-help #block-newopenfutures-content {
    margin-left: 0;
    width: 100%;
  }
  .block > article.entity--type-node > .content > .field--name-body > *,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > *,
.contact-message-form > *,
body.alias--search-node-help #block-newopenfutures-content > * {
    max-width: 90.6%;
  }
}
@media only screen and (max-width: 48rem) {
  .block > article.entity--type-node > .content > .field--name-body,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
.contact-message-form,
body.alias--search-node-help #block-newopenfutures-content {
    padding-left: 4.6680071288%;
  }
  .block > article.entity--type-node > .content > .field--name-body > *,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > *,
.contact-message-form > *,
body.alias--search-node-help #block-newopenfutures-content > * {
    max-width: 95.1%;
  }
}
@media only screen and (max-width: 30rem) {
  .block > article.entity--type-node > .content > .field--name-body,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
.contact-message-form,
body.alias--search-node-help #block-newopenfutures-content {
    padding-left: 0;
    border-left: 0;
  }
  .block > article.entity--type-node > .content > .field--name-body > *,
.view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content > *,
.contact-message-form > *,
body.alias--search-node-help #block-newopenfutures-content > * {
    max-width: none;
  }
}
body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
  font-size: 6.25rem;
  padding-top: 1em;
  border-left-color: #aa8f00;
}
@media only screen and (max-width: 48rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 5.625rem;
  }
}
@media only screen and (max-width: 43.5rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 5.3125rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 30rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 4.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 4.125rem;
  }
}
@media only screen and (max-width: 21rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body,
body.nodetype--timeline .view-id-list_from_where.view-display-id-block_1 .node--type-timeline-section > .content,
body.nodetype--timeline .contact-message-form,
body.nodetype--timeline body.alias--search-node-help #block-newopenfutures-content {
    font-size: 3.875rem;
  }
}

#tags,
.field__items.field--name-field-download {
  margin-left: 23.3066278223%;
  margin-right: 23.3066278223%;
}
@media only screen and (max-width: 79.5rem) {
  #tags,
.field__items.field--name-field-download {
    margin-left: 17.042971595%;
    margin-right: 17.042971595%;
  }
}
@media only screen and (max-width: 66rem) {
  #tags,
.field__items.field--name-field-download {
    margin-left: 8.5214857975%;
    margin-right: 8.5214857975%;
  }
}
@media only screen and (max-width: 48rem) {
  #tags,
.field__items.field--name-field-download {
    margin-left: 4.6680071288%;
    margin-right: 4.6680071288%;
  }
}
@media only screen and (max-width: 30rem) {
  #tags,
.field__items.field--name-field-download {
    margin-left: initial;
    margin-right: initial;
  }
}

.block > article.entity--type-node > .content > .field--name-body {
  margin-top: 2em;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-top: 0;
}

.content .field--name-body > *:first-child {
  margin-top: 0;
}

.content .field--name-body > *:last-child {
  margin-bottom: 0;
}

.content_banner {
  font-size: 2.25rem;
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.3em;
  margin-bottom: 1.8em;
}
@media only screen and (max-width: 79.5rem) {
  .content_banner {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .content_banner {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  .content_banner {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .content_banner {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .content_banner {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  .content_banner {
    font-size: 1.5rem;
  }
}
.content_banner img {
  display: block;
  width: 100%;
  height: auto;
}
.content_banner .content_banner_inner .banner_title {
  display: inline-block;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: white;
  background-color: #aa8f00;
  padding-top: 0.5em;
  padding-bottom: 0.45em;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0;
}
@media only screen and (max-width: 48rem) {
  .content_banner .content_banner_inner .banner_title {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .content_banner .content_banner_inner .banner_title {
    font-size: 0.875rem;
  }
}
.content_banner.animate_init .field--name-field-banner::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 1;
  will-change: opacity;
  transition: opacity 1.6s;
}
.content_banner.animate_init .content_banner_inner {
  opacity: 0;
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.content_banner.in_viewport .field--name-field-banner::after {
  opacity: 0;
}
.content_banner.in_viewport .content_banner_inner {
  opacity: 1;
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
@media only screen and (min-width: 66.0625rem) {
  .content_banner {
    width: 82.957028405%;
  }
}
@media only screen and (min-width: 30.0625rem) {
  .content_banner .content_banner_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}

#block-views-block-related-block-1 > h2 {
  margin-top: 0;
  margin-bottom: 1.75em;
}

#tags {
  text-align: center;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 48rem) {
  #tags {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #tags {
    font-size: 0.875rem;
  }
}
#tags .field {
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
#tags .field a {
  color: #aa8f00;
  border-bottom: 0.0625rem solid #aa8f00;
}

.field--name-field-download {
  margin-top: 1.5rem;
}
.field--name-field-download a {
  position: relative;
  display: inline-block;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.325em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding-top: 0.7em;
  padding-left: 3.1em;
  min-height: 2.625em;
}
@media only screen and (max-width: 48rem) {
  .field--name-field-download a {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .field--name-field-download a {
    font-size: 0.875rem;
  }
}
.field--name-field-download a::before {
  content: " ";
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  box-sizing: border-box;
  width: 2.625em;
  height: 2.625em;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2227.327%22%20viewBox%3D%220%200%2017%2027.327%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.851%2C15.27a.506.506%2C0%2C0%2C0-.718%2C0l-7.12%2C7.119V.508A.508.508%2C0%2C1%2C0%2C8%2C.508V22.389L.878%2C15.27a.508.508%2C0%2C1%2C0-.719.718l7.987%2C7.987a.509.509%2C0%2C0%2C0%2C.718%2C0l7.987-7.987A.506.506%2C0%2C0%2C0%2C16.851%2C15.27Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.458%2C27.327H.508a.508.508%2C0%2C0%2C1%2C0-1.016h15.95a.508.508%2C0%2C0%2C1%2C0%2C1.016Z%22%20fill%3D%22%23b19539%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-size: 1em auto;
  border: 0.0625rem solid #aa8f00;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.field--name-field-download a:hover::before, .field--name-field-download a:focus::before {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2227.327%22%20viewBox%3D%220%200%2017%2027.327%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.851%2C15.27a.506.506%2C0%2C0%2C0-.718%2C0l-7.12%2C7.119V.508A.508.508%2C0%2C1%2C0%2C8%2C.508V22.389L.878%2C15.27a.508.508%2C0%2C1%2C0-.719.718l7.987%2C7.987a.509.509%2C0%2C0%2C0%2C.718%2C0l7.987-7.987A.506.506%2C0%2C0%2C0%2C16.851%2C15.27Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M16.458%2C27.327H.508a.508.508%2C0%2C0%2C1%2C0-1.016h15.95a.508.508%2C0%2C0%2C1%2C0%2C1.016Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-color: #aa8f00;
}

/*  Sectional page
*********************************** */
/* Timeline
*********************************** */
body.nodetype--timeline #block-newopenfutures-breadcrumbs {
  display: none;
}
body.nodetype--timeline section.full_width__pre_content {
  position: relative;
  z-index: 2;
}
body.nodetype--timeline section.full_width__main {
  position: relative;
  z-index: 1;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap {
  position: relative;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap::before {
  content: " ";
  display: block;
  width: 0px;
  height: 200%;
  position: absolute;
  top: 0;
  left: 17.042971595%;
  border-left: 1px solid #aa8f00;
  z-index: -1;
  opacity: 0;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.animate_init::before {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.animate_init .region-pre-content {
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  will-change: transform;
  transition-property: transform;
  transition-duration: 0s;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.animate_init .region-pre-content .block {
  opacity: 0;
  will-change: opacity;
  transition-property: opacity;
  transition-duration: 0s;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.in_viewport::before {
  opacity: 1;
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.in_viewport .region-pre-content {
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.nodetype--timeline section.full_width__pre_content .section_wrap.in_viewport .region-pre-content .block {
  opacity: 1;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 79.5rem) {
  body.nodetype--timeline section.full_width__pre_content .section_wrap::before {
    left: 8.5214857975%;
  }
}
@media only screen and (max-width: 66rem) {
  body.nodetype--timeline section.full_width__pre_content .section_wrap::before {
    left: 0;
  }
}
@media only screen and (max-width: 30rem) {
  body.nodetype--timeline section.full_width__pre_content .section_wrap::before {
    display: none;
  }
}
body.nodetype--timeline .region-pre-content {
  font-size: 3.125rem;
  width: 82.957028405%;
  box-sizing: border-box;
  padding-top: 1.325em;
  padding-bottom: 1.2em;
  padding-left: 6.2636562272%;
  padding-right: 8.5214857975%;
  margin-left: 17.042971595%;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 79.5rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 2.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 39rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 30rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 21rem) {
  body.nodetype--timeline .region-pre-content {
    font-size: 1.875rem;
  }
}
body.nodetype--timeline .region-pre-content, body.nodetype--timeline .region-pre-content::before {
  background-color: #262a34;
}
body.nodetype--timeline .region-pre-content::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
body.nodetype--timeline .region-pre-content > * {
  position: relative;
}
body.nodetype--timeline .region-pre-content h1 {
  color: white;
  text-align: left;
  max-width: none;
  margin-top: 0;
  margin-left: initial;
  margin-right: initial;
}
@media only screen and (max-width: 79.5rem) {
  body.nodetype--timeline .region-pre-content {
    width: 91.4785142025%;
    margin-left: 8.5214857975%;
  }
}
@media only screen and (max-width: 66rem) {
  body.nodetype--timeline .region-pre-content {
    width: 100%;
    margin-left: 0;
    padding-right: 6.2636562272%;
  }
}
@media only screen and (max-width: 48rem) {
  body.nodetype--timeline .region-pre-content {
    padding-right: 4.6680071288%;
    padding-left: 4.6680071288%;
  }
}
@media only screen and (max-width: 30rem) {
  body.nodetype--timeline .region-pre-content {
    padding-top: 0.75em;
    padding-left: 0;
    padding-right: 0;
  }
  body.nodetype--timeline .region-pre-content::before {
    left: -6rem;
  }
}
body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body {
  margin-top: 0;
  padding-top: 4rem;
}
@media only screen and (max-width: 30rem) {
  body.nodetype--timeline .block > article.entity--type-node > .content > .field--name-body {
    padding-top: 2.5rem;
  }
}
body.nodetype--timeline section.full_width__pre_content {
  padding-bottom: 0;
}
body.nodetype--timeline section.full_width__main {
  padding-top: 0;
}

#block-views-block-list-from-where-block-3 .view-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
#block-views-block-list-from-where-block-3 .view-content .column {
  width: 46%;
  margin-right: 5%;
}
#block-views-block-list-from-where-block-3 .view-content .column:nth-child(2n+2) {
  margin-right: 0;
}
#block-views-block-list-from-where-block-3 .view-content .views-row {
  width: 100%;
}
@media only screen and (max-width: 43.5rem) {
  #block-views-block-list-from-where-block-3 .view-content .column {
    width: 100%;
    margin-right: 0;
  }
}

#timeinefloat_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #262a34;
  padding-top: 0.75rem;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: transform 0.25s;
  will-change: transform;
}
body.adminimal-admin-toolbar #timeinefloat_nav {
  top: 5rem;
}
#timeinefloat_nav.closed {
  display: block;
}
#timeinefloat_nav.open {
  display: block;
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
#timeinefloat_nav.hidden {
  display: none;
}
#timeinefloat_nav .view-content {
  justify-content: center;
}
#timeinefloat_nav .views-row {
  margin: 0;
}
#timeinefloat_nav .listing_item__timeline_nav {
  padding: 0;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 0.75rem;
}
#timeinefloat_nav .listing_item__timeline_nav::before, #timeinefloat_nav .listing_item__timeline_nav::after {
  display: none;
}
#timeinefloat_nav .listing_item__timeline_nav h2 .title-date {
  color: white;
}
#timeinefloat_nav .listing_item__timeline_nav.current h2 .title-date {
  text-decoration: underline;
}
#timeinefloat_nav .listing_item__timeline_nav.current h2 .title-text {
  color: white;
}
@media only screen and (max-width: 79.5rem) {
  #timeinefloat_nav .listing_item__timeline_nav h2 .title-text {
    display: none !important;
  }
  #timeinefloat_nav .listing_item__timeline_nav h2 .title-date {
    margin-right: 0;
    color: #aa8f00;
  }
  #timeinefloat_nav .listing_item__timeline_nav.current h2 .title-date {
    color: white;
  }
  body.not_touch_device #timeinefloat_nav .listing_item__timeline_nav .list_link:hover h2 .title-date, body.not_touch_device #timeinefloat_nav .listing_item__timeline_nav .list_link:focus h2 .title-date {
    color: white;
  }
}
@media only screen and (max-width: 48rem) {
  #timeinefloat_nav {
    top: initial;
    bottom: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  #timeinefloat_nav .listing_item__timeline_nav {
    margin-left: 0.75em;
    margin-right: 0.75em;
  }
}
@media only screen and (max-width: 34.5rem) {
  #timeinefloat_nav .listing_item__timeline_nav {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
@media only screen and (max-width: 21rem) {
  #timeinefloat_nav .view-content {
    justify-content: space-between;
  }
}

.view-id-list_from_where.view-display-id-block_1 .view-content,
.view-id-list_from_where.view-display-id-block_1 .view-content .views-row,
.view-id-list_from_where.view-display-id-block_1 .view-content article {
  width: 100%;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body img.align-right,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body figure.align-right {
  margin-right: 0;
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body img.align-right,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body figure.align-right {
    margin-right: 0;
  }
}
@media only screen and (max-width: 66rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body img.align-right,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body figure.align-right {
    margin-right: 0;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body .pull_quote_right {
  margin-right: 0;
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section .content .field--name-body .pull_quote_right {
    margin-right: 0;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
  -webkit-font-smoothing: antialiased;
  color: #bdbdbf;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1em;
  font-style: normal;
  font-size: 6.25rem;
  letter-spacing: -0.01em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 5.625rem;
  }
}
@media only screen and (max-width: 43.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 5.3125rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 30rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 4.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 4.125rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    font-size: 3.875rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 a {
  color: #bdbdbf;
}
@media only screen and (min-width: 34.5625rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header {
    float: right;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    margin-left: 0.5em;
  }
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header {
    width: 100%;
    text-align: right;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    margin-bottom: 0.15em;
  }
}
@media only screen and (max-width: 34.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header {
    text-align: left;
    float: left;
    box-sizing: border-box;
    padding-left: 4.6680071288%;
  }
}
@media only screen and (max-width: 30rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header {
    padding-left: 0;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-section > header h2 {
    margin-top: 0.6em;
    margin-bottom: 0.1em;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
  font-size: 1.625rem;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
    font-size: 1.3125rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra img {
  display: block;
}
@media only screen and (max-width: 30rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text, .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide {
  width: 111.8%;
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text, .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide {
    width: 112.9%;
  }
}
@media only screen and (max-width: 66rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text, .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide {
    width: 100%;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide {
  border-top: 0.25rem solid #aa8f00;
  background-color: #f6f3e8;
  padding-bottom: 2.5em;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide header {
  padding-top: 1.7em;
  padding-left: 1.1em;
  padding-right: 1.1em;
  padding-bottom: 0;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 {
  -webkit-font-smoothing: antialiased;
  color: #000000;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-top: 0;
  margin-bottom: 1em;
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 {
    font-size: 1.3125rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide h2 a {
  color: #000000;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
  box-sizing: border-box;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image {
  width: 42.7%;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
  font-size: 1.625rem;
  padding-left: 1.1em;
  padding-right: 1.1em;
  width: 100%;
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body {
    font-size: 1.3125rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body p {
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.45em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #262a34;
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body p {
    font-size: 1.0625rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image + .field--name-body {
  width: 53.5%;
  padding-left: 0;
}
@media only screen and (max-width: 52.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image {
    width: 38.3%;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image + .field--name-body {
    width: 57.5%;
  }
}
@media only screen and (max-width: 43.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .content {
    flex-wrap: wrap;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide header,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image + .field--name-body {
    padding-top: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .field--name-body,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_wide .listing_box_image + .field--name-body {
    width: 100%;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  background-color: #aa8f00;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text header {
  width: 46.5%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text header div {
  position: relative;
  width: 100%;
  height: 100%;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
  font-size: 2.25rem;
  flex-grow: 1;
  flex-shrink: 1;
  padding-left: 4.25%;
  padding-right: 4.25%;
  padding-bottom: 1.8em;
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    font-size: 1.5rem;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 a,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text p,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text p a {
  color: white;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: mrs-eaves-xl-serif-narrow, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.075em;
  font-style: normal;
  font-size: 2.25rem;
  margin-top: 1.3em;
  margin-bottom: 0.5em;
  font-weight: 400;
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 43.5625rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text header img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: auto;
    max-width: none;
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 52.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text header {
    width: 38.3%;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    width: 57.5%;
  }
}
@media only screen and (max-width: 43.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text {
    flex-wrap: wrap;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text header,
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    width: 100%;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text .content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-extra.timeline_extra_title_with_text h2 {
    margin-top: 0.75em;
  }
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image {
  position: relative;
  width: 187%;
  margin-top: 5rem;
  margin-left: -43.5%;
  margin-right: -43.5%;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  z-index: 2;
  display: none;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image header h2 {
  background-color: #67923d;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .content_banner {
  width: 100%;
  margin: 0;
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .field--name-field-banner {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 43.75rem;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .field--name-field-banner img {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 102rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .field--name-field-banner {
    height: 0;
    padding-bottom: 46%;
  }
}
@media only screen and (max-width: 79.5rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image {
    width: 152.2%;
    margin-left: -26.1%;
    margin-right: -26.1%;
  }
}
@media only screen and (max-width: 66rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image {
    width: 120.6%;
    margin-left: -10.3%;
    margin-right: -10.3%;
  }
}
@media only screen and (max-width: 48rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image {
    width: 110.4%;
    margin-left: -5.2%;
    margin-right: -5.2%;
  }
}
@media only screen and (max-width: 30rem) {
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image {
    width: 109.8%;
    margin-top: 3rem;
    margin-left: -4.9%;
    margin-right: -4.9%;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .field--name-field-banner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    height: 14.0625rem;
  }
  .view-id-list_from_where.view-display-id-block_1 article.node--type-timeline-image .field--name-field-banner img {
    height: 100%;
    width: auto;
    max-width: none;
  }
}
.view-id-list_from_where.view-display-id-block_1 article#node_174 header,
.view-id-list_from_where.view-display-id-block_1 article#node_174 .field--name-field-sub-title {
  display: none;
}
.view-id-list_from_where.view-display-id-block_1 article#node_174 article.node--type-timeline-image {
  margin-top: 0 !important;
}

/*  Front page
*********************************** */
#block-hometoptext {
  font-size: 2.625rem;
  padding-top: 0.7em;
  padding-bottom: 0.9em;
  text-align: center;
}
@media only screen and (max-width: 79.5rem) {
  #block-hometoptext {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-hometoptext {
    font-size: 2.4375rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-hometoptext {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-hometoptext {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-hometoptext {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-hometoptext {
    font-size: 1.71875rem;
  }
}
#block-hometoptext a {
  display: block;
}
#block-hometoptext h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15em;
  font-style: normal;
  font-size: 2.625rem;
  margin-top: 1em;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 79.5rem) {
  #block-hometoptext h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-hometoptext h2 {
    font-size: 2.4375rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-hometoptext h2 {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-hometoptext h2 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-hometoptext h2 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-hometoptext h2 {
    font-size: 1.71875rem;
  }
}
#block-hometoptext .summary {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
  margin-bottom: 0.9em;
}
@media only screen and (max-width: 79.5rem) {
  #block-hometoptext .summary {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-hometoptext .summary {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-hometoptext .summary {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-hometoptext .summary {
    font-size: 1.1875rem;
  }
}

#block-views-block-home-timeline-links-block-1 {
  width: 100%;
  position: relative;
}
#block-views-block-home-timeline-links-block-1 > div {
  position: relative;
  z-index: 2;
}
#block-views-block-home-timeline-links-block-1::before, #block-views-block-home-timeline-links-block-1::after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  height: 0;
  background-size: contain;
}
#block-views-block-home-timeline-links-block-1::before {
  background-image: url("../images/home_timeline_graphic_1@2x.png");
  background-repeat: no-repeat;
  width: 13.256%;
  padding-bottom: 24.11%;
  top: -17.25%;
  left: -3.6%;
}
#block-views-block-home-timeline-links-block-1::after {
  background-image: url("../images/home_timeline_graphic_2@2x.png");
  background-repeat: no-repeat;
  width: 10.78%;
  padding-bottom: 19.25%;
  top: -5%;
  right: -0.5%;
}
@media only screen and (max-width: 34.5rem) {
  #block-views-block-home-timeline-links-block-1::before {
    top: -11%;
  }
  #block-views-block-home-timeline-links-block-1::after {
    top: -7%;
  }
}
#block-views-block-home-timeline-links-block-1 .views-row:nth-child(n+3) {
  display: none;
}
#block-views-block-home-timeline-links-block-1 .views-row {
  box-sizing: border-box;
  width: 48.8710852149%;
  padding-left: 6.2636562272%;
  padding-right: 6.2636562272%;
}
#block-views-block-home-timeline-links-block-1 .views-row .list_link {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  mix-blend-mode: multiply;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
#block-views-block-home-timeline-links-block-1 .views-row .listing_box_text {
  box-sizing: border-box;
}
#block-views-block-home-timeline-links-block-1 .views-row .timeline_section_bg {
  display: none;
  position: absolute;
  top: 0.6em;
  left: 50%;
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
#block-views-block-home-timeline-links-block-1 .views-row:nth-child(odd) .timeline_section_bg {
  display: block;
}
#block-views-block-home-timeline-links-block-1 .views-row:nth-child(odd) .listing_box_image {
  order: 1;
}
#block-views-block-home-timeline-links-block-1 .views-row:nth-child(odd) .listing_box_text {
  order: 2;
}
@media only screen and (min-width: 34.5625rem) {
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(odd) .listing_box_image {
    order: 1;
  }
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(odd) .listing_box_text {
    order: 2;
  }
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(even) .listing_box_image {
    order: 2;
  }
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(even) .listing_box_text {
    order: 1;
    margin-top: 0;
    margin-bottom: 1.3em;
  }
}
@media only screen and (min-width: 66.0625rem) {
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(even) .listing_box_image {
    width: 76.5%;
  }
}
@media only screen and (max-width: 75rem) {
  #block-views-block-home-timeline-links-block-1 .views-row {
    padding-left: 0;
  }
}
@media only screen and (max-width: 57rem) {
  #block-views-block-home-timeline-links-block-1 .views-row .listing_box_text {
    width: 95%;
  }
}
@media only screen and (max-width: 48rem) {
  #block-views-block-home-timeline-links-block-1 .views-row {
    width: 48.0007311612%;
    padding-right: 4.6680071288%;
  }
  #block-views-block-home-timeline-links-block-1 .views-row:nth-child(even) .listing_box_text {
    margin-bottom: 0.75em;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-views-block-home-timeline-links-block-1 .views-row {
    position: relative;
    padding-right: 0;
    width: 100%;
    margin-bottom: 10%;
  }
  #block-views-block-home-timeline-links-block-1 .views-row:last-child, #block-views-block-home-timeline-links-block-1 .views-row:nth-child(2) {
    margin-bottom: 0;
  }
  #block-views-block-home-timeline-links-block-1 .views-row .timeline_section_bg {
    display: none !important;
  }
}
#block-views-block-home-timeline-links-block-1 .view-content {
  position: relative;
  justify-content: space-between;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged .carousel_groups {
  width: 100%;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged .carousel_groups .carousel_group {
  display: block;
  position: relative;
  width: 100%;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged .carousel_groups .carousel_group .carousel_group_inner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups {
  position: relative;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row .timeline_section_bg,
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row .listing_box_image,
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row .listing_box_text {
  opacity: 0;
  transition-property: all;
  transition-duration: 0.7s;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row:nth-child(odd) .listing_box_image {
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition-delay: 0s;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row:nth-child(odd) .listing_box_text {
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-delay: 0.25s;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row:nth-child(even) .listing_box_image {
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition-delay: 0.5s;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group .views-row:nth-child(even) .listing_box_text {
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-delay: 0.75;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .timeline_section_bg {
  opacity: 0.1;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .listing_box_image,
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .listing_box_text {
  opacity: 1;
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .views-row:nth-child(odd) .listing_box_image {
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .views-row:nth-child(odd) .listing_box_text {
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .views-row:nth-child(even) .listing_box_image {
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.active .views-row:nth-child(even) .listing_box_text {
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
#block-views-block-home-timeline-links-block-1 .view-content.js_engaged.create_carousel .carousel_groups .carousel_group.hidden {
  display: none;
}
#block-views-block-home-timeline-links-block-1 .car_navigation_wrap {
  margin-top: 2.5rem;
}
#block-views-block-home-timeline-links-block-1 .jump_nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: center;
  width: 100%;
}
#block-views-block-home-timeline-links-block-1 .jump_nav .control_item {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  box-sizing: border-box;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #aa8f00;
  cursor: pointer;
  margin-right: 0.8125rem;
}
#block-views-block-home-timeline-links-block-1 .jump_nav .control_item:last-child {
  margin-right: 0;
}
#block-views-block-home-timeline-links-block-1 .jump_nav .control_item.active, #block-views-block-home-timeline-links-block-1 .jump_nav .control_item:hover, #block-views-block-home-timeline-links-block-1 .jump_nav .control_item:focus {
  background-color: #aa8f00;
}

#block-homestrands {
  font-size: 2.625rem;
  padding-top: 1.1em;
  padding-bottom: 1em;
  text-align: center;
  color: #aa8f00;
}
@media only screen and (max-width: 79.5rem) {
  #block-homestrands {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-homestrands {
    font-size: 2.4375rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-homestrands {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-homestrands {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-homestrands {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-homestrands {
    font-size: 1.71875rem;
  }
}
#block-homestrands > h2,
#block-homestrands .strands_body {
  margin-left: 14.7851420248%;
  margin-right: 14.7851420248%;
}
@media only screen and (max-width: 66rem) {
  #block-homestrands > h2,
#block-homestrands .strands_body {
    margin-left: 6.2636562272%;
    margin-right: 6.2636562272%;
  }
}
@media only screen and (max-width: 48rem) {
  #block-homestrands > h2,
#block-homestrands .strands_body {
    margin-left: 4.6680071288%;
    margin-right: 4.6680071288%;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-homestrands > h2,
#block-homestrands .strands_body {
    margin-left: initial;
    margin-right: initial;
  }
}
#block-homestrands > h2 {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15em;
  font-style: normal;
  font-size: 2.625rem;
  margin-top: 1em;
  margin-bottom: 0.3em;
  margin-top: 0;
}
@media only screen and (max-width: 79.5rem) {
  #block-homestrands > h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-homestrands > h2 {
    font-size: 2.4375rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-homestrands > h2 {
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-homestrands > h2 {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-homestrands > h2 {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-homestrands > h2 {
    font-size: 1.71875rem;
  }
}
#block-homestrands .strands_body {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
  margin-bottom: 3em;
}
@media only screen and (max-width: 79.5rem) {
  #block-homestrands .strands_body {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-homestrands .strands_body {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-homestrands .strands_body {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-homestrands .strands_body {
    font-size: 1.1875rem;
  }
}
#block-homestrands .strands_wrapper {
  margin-bottom: 1em;
}
@media only screen and (max-width: 25.5rem) {
  #block-homestrands {
    padding-top: 0.25em;
  }
}

#block-homebottomtext {
  font-size: 2.25rem;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
@media only screen and (max-width: 79.5rem) {
  #block-homebottomtext {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-homebottomtext {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 48rem) {
  #block-homebottomtext {
    font-size: 1.8125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-homebottomtext {
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  #block-homebottomtext {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 21rem) {
  #block-homebottomtext {
    font-size: 1.5rem;
  }
}
#block-homebottomtext a {
  display: block;
}
#block-homebottomtext .of_circle_image {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 13.4375rem;
  margin-left: auto;
  margin-right: auto;
}
#block-homebottomtext .of_circle_image::after {
  content: " ";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22214%22%20height%3D%22216.106%22%20viewBox%3D%220%200%20214%20216.106%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.874%2C123.678a37.8%2C37.8%2C0%2C0%2C0-5.084-14.2c-2.491-4.341-5.58-8.849-9.926-11.517-6.106-3.747-6.955.113-11.473%2C3.3-2.682%2C1.891-6.216%2C2.135-9.355%2C1.533-3.381-.645-5.715-3.137-8.912-3.978-1.91-.5-3.772-.147-6.24%2C2.276-3.578%2C3.528-9.211%2C10.264-11.783%2C17.136-2.76%2C7.366-1.142%2C12.964%2C1.964%2C9.729s4.056-7.341%2C7.374-10.362c1.526-1.391%2C2.645.219%2C2.677%2C1.616a27.136%2C27.136%2C0%2C0%2C1-.917%2C5.246%2C76.37%2C76.37%2C0%2C0%2C0-.98%2C12.186A140.6%2C140.6%2C0%2C0%2C0%2C88.732%2C161.2c.29%2C1.829.364%2C4.891%2C1.634%2C6.4%2C2.113%2C2.518%2C7.256%2C5.515%2C10.571-7.618.586-2.321%2C2.01-6.383%2C4.958-6.252%2C2.533.112%2C4.582%2C2.228%2C5.585%2C4.363%2C1.741%2C3.716%2C1.571%2C8.3%2C4.145%2C11.688%2C1.418%2C1.864%2C4.027%2C3.7%2C6.247%2C2.041%2C1.779-1.327%2C2.932-4.149%2C3.666-6.162%2C5.066-13.914-2.145-37.134-.608-42.716%2C1.41-5.129%2C3.344-3.3%2C3.916-.537%2C2.357%2C11.392%2C7.066%2C14.386%2C8.369%2C14.416s4.133-.743%2C2.659-13.151%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M126.537%2C78.434l-13.651-8%2C12.634-9.52a1.936%2C1.936%2C0%2C0%2C0-1.855-3.355l-14.773%2C5.686.439-15.819a1.945%2C1.945%2C0%2C0%2C0-1.617-1.961%2C1.924%2C1.924%2C0%2C0%2C0-2.163%2C1.327l-4.767%2C15.089L88.69%2C51.674a1.937%2C1.937%2C0%2C0%2C0-2.856%2C2.563l8.829%2C13.131L79.146%2C70.462a1.936%2C1.936%2C0%2C0%2C0%2C.216%2C3.83l15.772%2C1.283L87.882%2C89.641a1.935%2C1.935%2C0%2C0%2C0%2C3.129%2C2.213l10.838-11.529%2C6.478%2C14.438a1.924%2C1.924%2C0%2C0%2C0%2C1.445%2C1.12%2C1.888%2C1.888%2C0%2C0%2C0%2C.855-.051%2C1.936%2C1.936%2C0%2C0%2C0%2C1.38-2.128l-2.256-15.672%2C15.324%2C3.947a1.936%2C1.936%2C0%2C0%2C0%2C1.462-3.545%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M54.465%2C188.446a10.808%2C10.808%2C0%2C0%2C0-3.441-3.942c-2.944-2.14-6.046-2.592-7.893-1.71a2.67%2C2.67%2C0%2C0%2C0-1.022.825%2C15.205%2C15.205%2C0%2C0%2C0-1.575%2C2.414%2C3.192%2C3.192%2C0%2C0%2C1%2C.832-.569c1.885-.878%2C4.624-.5%2C7.287%2C1.153.247.161.5.323.739.5a10.7%2C10.7%2C0%2C0%2C1%2C3.411%2C3.917%2C5.283%2C5.283%2C0%2C0%2C1%2C.535%2C3.693%2C14.238%2C14.238%2C0%2C0%2C0%2C1.274-2.017%2C4.879%2C4.879%2C0%2C0%2C0-.147-4.268m-2.122%2C3a10.37%2C10.37%2C0%2C0%2C0-3.306-3.8c-.241-.173-.479-.338-.722-.483-2.595-1.623-5.239-1.955-6.975-1.143a2.756%2C2.756%2C0%2C0%2C0-1.076.879c-.03.039-.057.091-.081.126a2.251%2C2.251%2C0%2C0%2C0-.161.3%2C4.611%2C4.611%2C0%2C0%2C0%2C.35%2C3.881%2C10.4%2C10.4%2C0%2C0%2C0%2C3.314%2C3.805c.24.17.482.334.724.487%2C2.6%2C1.623%2C5.24%2C1.952%2C6.978%2C1.142h0a2.935%2C2.935%2C0%2C0%2C0%2C1.062-.873c.034-.05.068-.1.095-.14.059-.1.108-.2.155-.3a4.59%2C4.59%2C0%2C0%2C0-.36-3.875m-1.1%2C4.532%2C0%2C0-.142.069c-1.429.675-3.877.434-6.323-1.1l-.025-.011c-.229-.144-.458-.3-.681-.462a9.813%2C9.813%2C0%2C0%2C1-3.116-3.565A4.883%2C4.883%2C0%2C0%2C1%2C40.4%2C188.4a2.3%2C2.3%2C0%2C0%2C1%2C.323-1.018l.006-.015c.023-.035.043-.068.062-.093v0a5.646%2C5.646%2C0%2C0%2C0%2C.625%2C2.776%2C10.517%2C10.517%2C0%2C0%2C0%2C3.323%2C3.808c.237.175.478.335.718.487a8.48%2C8.48%2C0%2C0%2C0%2C6.065%2C1.438%2C2.547%2C2.547%2C0%2C0%2C1-.282.194m.94-1.095-.03.02c-1.429.678-3.874.433-6.323-1.092a.2.2%2C0%2C0%2C1-.025-.017c-.229-.144-.456-.3-.682-.466a9.779%2C9.779%2C0%2C0%2C1-3.112-3.558%2C4.875%2C4.875%2C0%2C0%2C1-.562-2.513%2C2.579%2C2.579%2C0%2C0%2C1%2C.142-.631.037.037%2C0%2C0%2C1%2C.03-.013c1.418-.694%2C3.87-.448%2C6.323%2C1.082a.158.158%2C0%2C0%2C1%2C.027.016c.228.147.457.3.686.464a9.656%2C9.656%2C0%2C0%2C1%2C3.1%2C3.556%2C4.163%2C4.163%2C0%2C0%2C1%2C.426%2C3.152m12.024-28.7c-.432.333-2.6%2C2.243-4.765%2C4.168-2.418%2C2.147-4.9%2C4.3-4.9%2C4.3l-.026%2C1.169s3.055-2.666%2C5.809-5.085c1.992-1.75%2C3.863-3.369%2C4.406-3.746%2C1.292-.9%2C3.231-1.462%2C4.273-.819s5.587%2C6.215%2C5.89%2C6.941c.023.06.043.075.055.052a4.353%2C4.353%2C0%2C0%2C0-.14-1.479c-.25-.829-4.3-6.019-5.485-6.685s-3.85.217-5.118%2C1.183m-.066%2C2.466c-.325.265-9%2C7.77-9%2C7.77h0l0%2C.006%2C2.593%2C2.749-1.063.917h0l0%2C0-.219.189a5.224%2C5.224%2C0%2C0%2C0-.458-.719c0%2C.084.6-.494.6-.494a8.6%2C8.6%2C0%2C0%2C0-.757-.789c-.478-.538-.954-1.014-1.45-1.533-.643-.679-.571-1.213-.552-2.108a.66.66%2C0%2C0%2C1%2C.106-.361.719.719%2C0%2C0%2C1%2C.138-.167c.026-.017%2C2.507-2.169%2C4.89-4.288.847-.755%2C1.583-1.412%2C2.211-1.961a5.088%2C5.088%2C0%2C0%2C0-3.434-.424%2C3.975%2C3.975%2C0%2C0%2C0-4.1-.111c-2.68%2C1.436-11.35%2C10.222-12.063%2C11.976l.712%2C2.657a4.155%2C4.155%2C0%2C0%2C1%2C.946-.617c2.418-1.167%2C5.986-.549%2C9.05%2C1.674a11.794%2C11.794%2C0%2C0%2C1%2C3.645%2C4.224%2C5.749%2C5.749%2C0%2C0%2C1%2C.018%2C5.745c.026.012.05.035.08.05q3.684%2C2.448%2C7.362%2C4.913c1.13.744%2C2.248%2C1.5%2C3.373%2C2.247a3.2%2C3.2%2C0%2C0%2C0%2C1.441.724c4.681.291%2C8.058-4.667%2C9.875-8.352.372-.765%2C1.186-2.313.628-3.181-.485-.752-7.472-7.057-10.124-9.846-.644.5-1.284%2C1-1.877%2C1.468-1.753%2C1.372-3.126%2C2.443-3.126%2C2.443a.716.716%2C0%2C0%2C1-.8.055l-1.846-1.163-.9.577-.551-.259-.292-.132%2C1.6-1.1%2C2.354%2C1.462s1.367-1.074%2C3.121-2.443c.578-.457%2C1.2-.939%2C1.834-1.432v0c2.6-2.025%2C5.338-4.127%2C5.661-4.421a1.951%2C1.951%2C0%2C0%2C0%2C.339-.407%2C1.079%2C1.079%2C0%2C0%2C0%2C.11-.226l-.165-.362a33.378%2C33.378%2C0%2C0%2C0-5.487-6.464c-1.141-.639-2.925.277-4.415%2C1.509M65.5%2C194.88a.448.448%2C0%2C0%2C1%2C.2.4.454.454%2C0%2C0%2C1-.068.245.408.408%2C0%2C0%2C1-.141.142l-1.259.84a.494.494%2C0%2C0%2C1-.534%2C0l-1.5-1.057a.478.478%2C0%2C0%2C1-.2-.407.441.441%2C0%2C0%2C1%2C.071-.235.524.524%2C0%2C0%2C1%2C.155-.156l1.306-.8a.474.474%2C0%2C0%2C1%2C.52.02Zm-3.576-2.392a.473.473%2C0%2C0%2C1%2C.2.394.488.488%2C0%2C0%2C1-.076.248.5.5%2C0%2C0%2C1-.135.142l-1.26.837a.456.456%2C0%2C0%2C1-.536-.009l-1.506-1.052a.493.493%2C0%2C0%2C1-.2-.408.479.479%2C0%2C0%2C1%2C.076-.238.543.543%2C0%2C0%2C1%2C.153-.157l1.306-.791a.461.461%2C0%2C0%2C1%2C.52.015ZM45.086%2C179.5a.367.367%2C0%2C0%2C1-.108.088.344.344%2C0%2C0%2C1-.411-.53A106.077%2C106.077%2C0%2C0%2C1%2C56%2C168.515a.331.331%2C0%2C0%2C1%2C.475.043.335.335%2C0%2C0%2C1-.047.481A106.95%2C106.95%2C0%2C0%2C0%2C45.086%2C179.5%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M202.263%2C57.45A13.549%2C13.549%2C0%2C0%2C0%2C198%2C53.311c-2.833-1.7-6.858-.376-8.551%2C2.421a3.7%2C3.7%2C0%2C0%2C0-.191%2C3.2%2C1.594%2C1.594%2C0%2C0%2C0-2.152%2C1.85%2C8.859%2C8.859%2C0%2C0%2C0-2.337-.235%2C10.863%2C10.863%2C0%2C0%2C0-5.222%2C1.368%2C11.887%2C11.887%2C0%2C0%2C0-3.872%2C3.878%2C4.188%2C4.188%2C0%2C0%2C0-.572%2C3.169%2C7.213%2C7.213%2C0%2C0%2C0-.353%2C2.51c.153%2C3.791%2C1.5%2C4.477%2C1.639%2C5.467s-.726%2C3.54-.819%2C4.142c-.083.5.951.706%2C1.265.815a2.338%2C2.338%2C0%2C0%2C1%2C.792.349c.288.286.226.8.6%2C1.013a2.5%2C2.5%2C0%2C0%2C0%2C2.1-.235c.174-.076.1.619-.116%2C1.033s-.455.53-.575.84c-.424%2C1.08.7.509.8%2C1.374s.366%2C1.7%2C1.4%2C1.782c2.915.247%2C3.931-3.277%2C5.075-2.577%2C1.754%2C1.073%2C3.162%2C3.307%2C2.734%2C5.3-.252%2C1.149-2.6%2C3.737-1.034%2C4.873%2C1.333.972%2C6.148-3.175%2C7.213-4.062%2C1.01-.842%2C4.9-4.3%2C4.891-5.663%2C0-1.064-3.788-3.992-4.484-4.866a14.356%2C14.356%2C0%2C0%2C1-1.417-2.081%2C15.333%2C15.333%2C0%2C0%2C0%2C1.5-7.039%2C13.123%2C13.123%2C0%2C0%2C0-4.057-8.07%2C1.569%2C1.569%2C0%2C0%2C0%2C.458-.4%2C1.606%2C1.606%2C0%2C0%2C0-.144-2.084%2C1.02%2C1.02%2C0%2C0%2C1%2C.748-.458%2C3.06%2C3.06%2C0%2C0%2C1%2C3.837%2C2.66c.56%2C2.568-.644%2C3.075-.053%2C5.932s4.333%2C3.2%2C5.406%2C2.3A4.165%2C4.165%2C0%2C0%2C0%2C204.2%2C69.2c0%2C.86-1.787.895-2.22.512-.977-.835.154-3.171.606-4.04a7.966%2C7.966%2C0%2C0%2C0-.323-8.219%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M26.794%2C87.9a8.922%2C8.922%2C0%2C0%2C1-.52-1.61%2C2.805%2C2.805%2C0%2C0%2C1%2C.161-2.151%2C9.5%2C9.5%2C0%2C0%2C0%2C.747-4.4A7.959%2C7.959%2C0%2C0%2C0%2C26.3%2C76.56a1.075%2C1.075%2C0%2C0%2C0%2C.841-.263c2.721-2.343-.749-4-2.8-4.8a51.783%2C51.783%2C0%2C0%2C0-5.529-1.8%2C11.675%2C11.675%2C0%2C0%2C0-6.414-.211%2C13.444%2C13.444%2C0%2C0%2C0-5.872%2C4.07%2C15.553%2C15.553%2C0%2C0%2C0-2.8%2C6.4c-.782%2C3.317%2C1.237%2C7.816%2C1.978%2C8.977.4.607.708.731.921.712a16.249%2C16.249%2C0%2C0%2C1-1.292%2C2.322%2C35.1%2C35.1%2C0%2C0%2C1-2.312%2C3.138c-.343.414-1.576%2C1.386-1.677%2C1.9-.276%2C1.44%2C3.053%2C4.126%2C4.172%2C5.264%2C1.479%2C1.5%2C3.962%2C3.968%2C6.1%2C4.427%2C2.949.633%2C2.243-2.081%2C1.8-3.963a5.024%2C5.024%2C0%2C0%2C1%2C.217-3.616c.49-1.019.951-2.109%2C2.006-2.451a3.561%2C3.561%2C0%2C0%2C1%2C2.494.642%2C5.308%2C5.308%2C0%2C0%2C0%2C2.715.645%2C1.815%2C1.815%2C0%2C0%2C0%2C1.321-.648c.434-.567.194-1.8.59-1.916a.721.721%2C0%2C0%2C0%2C.514-.876c-.173-.419-.511-.6-.818-1.026a1.249%2C1.249%2C0%2C0%2C1-.241-1.312c.119-.263.5.114.713.19a1.744%2C1.744%2C0%2C0%2C0%2C1.122.2%2C1.131%2C1.131%2C0%2C0%2C0%2C.789-.665c.1-.276.172-1.261.628-1.181.707.123%2C1.67.229%2C1.891-.687a6.374%2C6.374%2C0%2C0%2C0-.576-2.127%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.959%2C94.951c1.319-1.7%2C1.1-3.091.01-4.036-.01-.027-.036-.033-.071-.064a5.045%2C5.045%2C0%2C0%2C0-3.132-.829.127.127%2C0%2C0%2C0-.07.01l1.629-2.868a7.826%2C7.826%2C0%2C0%2C1%2C3.311%2C1.379%2C1.343%2C1.343%2C0%2C0%2C0%2C.179.13%2C5.242%2C5.242%2C0%2C0%2C1%2C1.914%2C3.847%2C6.259%2C6.259%2C0%2C0%2C1-1.544%2C4.266%2C11.07%2C11.07%2C0%2C0%2C1-5.032%2C3.258c-5.163%2C1.809-6.3%2C2.3-9.378%2C4.442l3.457-5.184a49.78%2C49.78%2C0%2C0%2C1%2C4.977-1.984%2C8.215%2C8.215%2C0%2C0%2C0%2C3.75-2.367%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M136.118%2C58.983c.093.887%2C2.923%2C1.32%2C6.335.968s6.094-1.35%2C6.006-2.228-2.925-1.318-6.338-.972-6.1%2C1.354-6%2C2.232%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.272%2C85.528c-.237%2C1.579-12.311%2C20-12.311%2C20a21.314%2C21.314%2C0%2C0%2C1-11.6-4.964%2C31.531%2C31.531%2C0%2C0%2C1-8.507-10.411l3.109-26.784-4.736-3.31s.035-.01.074-.024a4.472%2C4.472%2C0%2C0%2C0%2C1.894.625%2C19.4%2C19.4%2C0%2C0%2C0%2C4.4%2C0%2C20.848%2C20.848%2C0%2C0%2C0%2C3.713-.7%2C5.136%2C5.136%2C0%2C0%2C0%2C2.291-1.183c.035.007.078.013.078.013l-5.012%2C4.663%2C1.328%2C19.9L155.737%2C73.1a29.785%2C29.785%2C0%2C0%2C0%2C4.1%2C5.763%2C32.976%2C32.976%2C0%2C0%2C0%2C5.157%2C4.473v.048c2.25%2C1.534%2C4%2C2.383%2C4.34%2C1.967.4-.5-1.406-2.654-4.16-5.083l-.133%2C2.211a31.115%2C31.115%2C0%2C0%2C1-4.667-4.1%2C28.908%2C28.908%2C0%2C0%2C1-3.969-5.566l9.329%2C1.88-.39%2C4.76s5.138%2C4.609%2C4.931%2C6.074%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M141.7%2C12.148a6.522%2C6.522%2C0%2C0%2C0%2C4.833-.655%2C6.479%2C6.479%2C0%2C0%2C0%2C3.375-3.531l.014-.006-.008%2C0V7.948l-.007.006a6.533%2C6.533%2C0%2C0%2C0-4.836.647%2C6.546%2C6.546%2C0%2C0%2C0-3.38%2C3.533l-.009.009.006%2C0%2C0%2C0Z%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M139.379%2C9.816a.558.558%2C0%2C0%2C0-.549-.3.548.548%2C0%2C0%2C0-.205.062.556.556%2C0%2C0%2C0-.3.544.523.523%2C0%2C0%2C0%2C.055.194c0%2C.016.06.111.145.333a7.438%2C7.438%2C0%2C0%2C1%2C.437%2C1.864%2C6.932%2C6.932%2C0%2C0%2C1-.129%2C2.212%2C4.457%2C4.457%2C0%2C0%2C0%2C.555.138%2C3.1%2C3.1%2C0%2C0%2C0%2C.542.07%2C8.213%2C8.213%2C0%2C0%2C0%2C.139-2.549%2C7.819%2C7.819%2C0%2C0%2C0-.694-2.568%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M140.659%2C14.939a1.806%2C1.806%2C0%2C0%2C0%2C.663-.174l0%2C0a.371.371%2C0%2C0%2C1%2C.5.162.567.567%2C0%2C0%2C1%2C.043.13.361.361%2C0%2C0%2C1-.2.363%2C2.7%2C2.7%2C0%2C0%2C1-.935.256%2C4.871%2C4.871%2C0%2C0%2C1-1.485-.082%2C3.568%2C3.568%2C0%2C0%2C1-2.281-1.195.353.353%2C0%2C0%2C1%2C.1-.512.369.369%2C0%2C0%2C1%2C.512.1%2C1.676%2C1.676%2C0%2C0%2C0%2C.671.506%2C6.084%2C6.084%2C0%2C0%2C0%2C.112-1.791%2C11.718%2C11.718%2C0%2C0%2C0-4.552.033%2C7.151%2C7.151%2C0%2C0%2C0-5.476%2C6.043c-.912%2C5.5-.214%2C9.208%2C3.051%2C10.336.848.294%2C2.068.117%2C3%2C.425%2C1.048.341%2C1.8%2C1.234%2C2.851%2C1.6%2C3.273%2C1.128%2C5.885-.693%2C8.794-6.243%2C1.209-2.3%2C1.727-5.034.385-7.409a8.629%2C8.629%2C0%2C0%2C0-3.332-3.144%2C13.674%2C13.674%2C0%2C0%2C0-2.365-1.045%2C8.836%2C8.836%2C0%2C0%2C1-.157%2C1.649.722.722%2C0%2C0%2C1%2C.1%2C0%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M112.948%2C179.844c-11.968-.022-21.666%2C6.547-21.679%2C14.66-.02%2C6.64%2C6.45%2C12.247%2C15.355%2C14.084%2C1.993%2C2.694-.484%2C7.518-.484%2C7.518a19.341%2C19.341%2C0%2C0%2C0%2C8.647-6.939c11.074-.626%2C19.782-6.913%2C19.795-14.607.006-8.108-9.675-14.694-21.634-14.716m.577%2C23.978c1.069%2C1.174-1.076%2C2.683-2.01%2C3.076a1.23%2C1.23%2C0%2C0%2C1-.86.249c-.443.006-.491-.126-.7-.476-.489-.68-.844-1.089-.556-2a2.1%2C2.1%2C0%2C0%2C1%2C2.031-1.367%2C3.682%2C3.682%2C0%2C0%2C1%2C2.093.523m6.327-18.574a8.091%2C8.091%2C0%2C0%2C1%2C.736%2C1.356%2C3.894%2C3.894%2C0%2C0%2C1%2C.735%2C1.592%2C6.9%2C6.9%2C0%2C0%2C1-.644%2C2.921%2C5.278%2C5.278%2C0%2C0%2C1-.608%2C1.484c-.226.285-.537.465-.806.746a3.641%2C3.641%2C0%2C0%2C1-1.312%2C1c-.52.195-1.143.088-1.663.28a4.2%2C4.2%2C0%2C0%2C0-.712.483c-.362.174-.723.192-1.036.326a11.968%2C11.968%2C0%2C0%2C0-1.265.946c-1.243.943-.289%2C2.058-.309%2C3.249-.02.638-.808.743-1.266.661a4.548%2C4.548%2C0%2C0%2C1-.747-.121c-.929-.323-1.1-2.113-1.155-2.946a7.863%2C7.863%2C0%2C0%2C1%2C.112-.87c.029-.305-.156-.569.071-.853.27-.317.736-.4%2C1.071-.665.258-.228.406-.549.685-.742a8.728%2C8.728%2C0%2C0%2C1%2C1.965-1.059c.125-.027.268.053.361.017.351-.134.7-.476%2C1.151-.64a6.766%2C6.766%2C0%2C0%2C0%2C1.792-.495c.913-.67%2C2.084-2.469%2C1.679-3.606a4.9%2C4.9%2C0%2C0%2C0-1.915-2.433%2C4.115%2C4.115%2C0%2C0%2C0-2.3-.114c-.939.235-1.38%2C1.508-2.374%2C1.417a1.968%2C1.968%2C0%2C0%2C1-.664-.267.794.794%2C0%2C0%2C1-.575-.651c-.37-1.422%2C1.249-2.739%2C2.554-2.989.41-.052.894-.047%2C1.294-.062a6.57%2C6.57%2C0%2C0%2C1%2C1.276.262%2C6.253%2C6.253%2C0%2C0%2C1%2C3.867%2C1.778%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M74.57%2C144.591l-.84%2C1.565%2C1.662.656a3.356%2C3.356%2C0%2C0%2C1-1.137%2C6.477l-1.784.043.279%2C1.767a3.358%2C3.358%2C0%2C0%2C1-6.18%2C2.26l-.93-1.519-1.391%2C1.118a3.359%2C3.359%2C0%2C0%2C1-5.052-4.224l.852-1.557-1.665-.645a3.37%2C3.37%2C0%2C0%2C1-2.088-3.7%2C3.336%2C3.336%2C0%2C0%2C1%2C3.221-2.784l1.781-.055-.279-1.749a3.358%2C3.358%2C0%2C0%2C1%2C6.179-2.275l.934%2C1.514%2C1.389-1.1a3.355%2C3.355%2C0%2C0%2C1%2C5.049%2C4.213%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M143.162%2C132.449a.4.4%2C0%2C0%2C0%2C.217.47l4.911%2C2.314-3.823%2C3.856a.4.4%2C0%2C0%2C0%2C.458.635l4.87-2.393.623%2C5.39a.41.41%2C0%2C0%2C0%2C.384.358.4.4%2C0%2C0%2C0%2C.409-.314l1.161-5.31%2C4.609%2C2.879a.4.4%2C0%2C0%2C0%2C.514-.073.4.4%2C0%2C0%2C0%2C.009-.517l-3.422-4.219%2C5.124-1.813a.391.391%2C0%2C0%2C0%2C.256-.447.4.4%2C0%2C0%2C0-.4-.329l-5.431.045%2C1.778-5.129a.41.41%2C0%2C0%2C0-.187-.489.406.406%2C0%2C0%2C0-.51.113l-3.345%2C4.274-2.9-4.591a.4.4%2C0%2C0%2C0-.734.309l1.255%2C5.283-5.4-.59a.4.4%2C0%2C0%2C0-.43.288%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14.143%2C117.97l2.615-2.386a.382.382%2C0%2C0%2C0%2C.1-.4.367.367%2C0%2C0%2C0-.328-.245L13%2C114.667l.713-3.47a.366.366%2C0%2C0%2C0-.153-.378.371.371%2C0%2C0%2C0-.411-.014l-3.016%2C1.863-1.462-3.226a.369.369%2C0%2C0%2C0-.346-.217.363.363%2C0%2C0%2C0-.338.229L6.64%2C112.733l-3.08-1.75a.374.374%2C0%2C0%2C0-.41.03.36.36%2C0%2C0%2C0-.136.384l.837%2C3.441-3.519.4a.376.376%2C0%2C0%2C0-.317.264.38.38%2C0%2C0%2C0%2C.117.4l2.7%2C2.287L.221%2C120.573a.377.377%2C0%2C0%2C0-.1.4.389.389%2C0%2C0%2C0%2C.326.25l3.53.265-.709%2C3.467a.374.374%2C0%2C0%2C0%2C.563.4l3.012-1.856%2C1.468%2C3.217a.37.37%2C0%2C0%2C0%2C.684-.011l1.343-3.276%2C3.081%2C1.749a.377.377%2C0%2C0%2C0%2C.551-.416l-.843-3.444%2C3.52-.393a.373.373%2C0%2C0%2C0%2C.317-.264.367.367%2C0%2C0%2C0-.117-.393Z%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M175.032%2C150.308l-.971%2C3.453-3.185-1.9a.43.43%2C0%2C0%2C0-.171-.059.453.453%2C0%2C0%2C0-.413.155.408.408%2C0%2C0%2C0-.095.2.425.425%2C0%2C0%2C0%2C.142.375l2.618%2C2.562-3.262%2C1.68a.432.432%2C0%2C0%2C0-.232.317.366.366%2C0%2C0%2C0%2C.041.241.437.437%2C0%2C0%2C0%2C.336.251.354.354%2C0%2C0%2C0%2C.2-.019l3.584-.872-.082%2C3.581a.449.449%2C0%2C0%2C0%2C.877.132l.97-3.447%2C3.182%2C1.893a.532.532%2C0%2C0%2C0%2C.172.066.463.463%2C0%2C0%2C0%2C.415-.159.451.451%2C0%2C0%2C0%2C.091-.205.459.459%2C0%2C0%2C0-.115-.355l-2.641-2.575%2C3.266-1.688a.444.444%2C0%2C0%2C0%2C.232-.309.5.5%2C0%2C0%2C0-.029-.223.467.467%2C0%2C0%2C0-.356-.273.487.487%2C0%2C0%2C0-.172.007l-3.606.881.082-3.58a.435.435%2C0%2C0%2C0-.389-.437.425.425%2C0%2C0%2C0-.488.308%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.12%2C80.3l-.8%2C4.7-4.477-2.062a.471.471%2C0%2C0%2C0-.231-.052.589.589%2C0%2C0%2C0-.523.256.489.489%2C0%2C0%2C0-.1.287.542.542%2C0%2C0%2C0%2C.24.47l3.822%2C3.015L68.98%2C89.594a.566.566%2C0%2C0%2C0-.262.449.489.489%2C0%2C0%2C0%2C.088.309.563.563%2C0%2C0%2C0%2C.482.284.459.459%2C0%2C0%2C0%2C.263-.046l4.609-1.656.394%2C4.741a.6.6%2C0%2C0%2C0%2C1.179.053l.8-4.695%2C4.476%2C2.052a.556.556%2C0%2C0%2C0%2C.232.063.609.609%2C0%2C0%2C0%2C.523-.27.515.515%2C0%2C0%2C0%2C.093-.285.59.59%2C0%2C0%2C0-.2-.452L77.8%2C87.111l4.079-2.692a.6.6%2C0%2C0%2C0%2C.26-.441.607.607%2C0%2C0%2C0-.068-.286.632.632%2C0%2C0%2C0-.505-.315.662.662%2C0%2C0%2C0-.227.038L76.7%2C85.092l-.4-4.751a.573.573%2C0%2C0%2C0-.571-.518.562.562%2C0%2C0%2C0-.606.475%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M192.766%2C148.739a.424.424%2C0%2C0%2C0-.386.287l-1.783%2C5.017-5.146-1.383a.443.443%2C0%2C0%2C0-.455.159.425.425%2C0%2C0%2C0-.016.479l2.809%2C4.525L183.5%2C160.98a.424.424%2C0%2C0%2C0-.158.455.429.429%2C0%2C0%2C0%2C.361.319l5.291.619-.2%2C5.322a.429.429%2C0%2C0%2C0%2C.255.408.424.424%2C0%2C0%2C0%2C.47-.09l3.785-3.748%2C4.041%2C3.48a.417.417%2C0%2C0%2C0%2C.472.056.43.43%2C0%2C0%2C0%2C.224-.425l-.57-5.3%2C5.237-.983a.444.444%2C0%2C0%2C0%2C.341-.338.433.433%2C0%2C0%2C0-.191-.443l-4.5-2.856%2C2.493-4.709a.428.428%2C0%2C0%2C0-.058-.477.419.419%2C0%2C0%2C0-.459-.127l-5.037%2C1.735L193.175%2C149a.435.435%2C0%2C0%2C0-.409-.256%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M208.523%2C89.115a.223.223%2C0%2C0%2C0-.2.152l-.95%2C2.669L204.63%2C91.2a.226.226%2C0%2C0%2C0-.25.341l1.5%2C2.406-2.281%2C1.682a.227.227%2C0%2C0%2C0%2C.108.409l2.815.331-.106%2C2.833a.219.219%2C0%2C0%2C0%2C.135.214.216.216%2C0%2C0%2C0%2C.248-.045l2.018-2%2C2.147%2C1.854a.226.226%2C0%2C0%2C0%2C.372-.2l-.3-2.821%2C2.785-.523a.229.229%2C0%2C0%2C0%2C.182-.182.223.223%2C0%2C0%2C0-.1-.232l-2.4-1.521%2C1.329-2.507A.229.229%2C0%2C0%2C0%2C212.8%2C91a.22.22%2C0%2C0%2C0-.244-.067l-2.68.922-1.133-2.6a.229.229%2C0%2C0%2C0-.217-.137%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M40.613%2C165.006a13.46%2C13.46%2C0%2C0%2C0-.17-2.614c-.091-1.11-.192-2.217-.282-3.326a6.858%2C6.858%2C0%2C0%2C1%2C.294-2.6%2C20.988%2C20.988%2C0%2C0%2C1%2C2.779-5.015l2.07-2.9c.622-.737%2C1.262-1.515%2C1.967-2.342%2C8.623-10.192%2C12.093-11.834%2C14.532-14.722%2C3.932-4.649-4.825-10.285-8.008-4.932-1.913%2C3.212-2.139%2C6.743-8.882%2C18.057-.561.956-1.1%2C1.826-1.606%2C2.673%2C0%2C0-2.113%2C2.953-2.128%2C2.975-1.817%2C2.538-4.681%2C3.93-5.724%2C7.013-.111.339-.637%2C2.779-.654%2C2.781s-.024%2C0-.038.01a21.6%2C21.6%2C0%2C0%2C0-4.918-.681c-.307-.013-.61-.007-.9%2C0a17.732%2C17.732%2C0%2C0%2C0-7.013%2C1.363c-1.8.833-3.134%2C2.034-3.231%2C3.678a.988.988%2C0%2C0%2C0%2C0%2C.167%2C12.353%2C12.353%2C0%2C0%2C0%2C.232%2C1.467c2.4%2C11.356%2C15.867%2C14.346%2C21.233.665a10.82%2C10.82%2C0%2C0%2C0%2C.391-1.356%2C3.429%2C3.429%2C0%2C0%2C0%2C.064-.357m-1.336.036c-.015.769-.8%2C1.7-2.392%2C2.434a16.31%2C16.31%2C0%2C0%2C1-6.434%2C1.241c-.282%2C0-.568%2C0-.854%2C0a17.572%2C17.572%2C0%2C0%2C1-6.888-1.46c-1.749-.827-2.6-1.879-2.582-2.686v-.015l0-.041c0-.775.776-1.714%2C2.395-2.459a16.3%2C16.3%2C0%2C0%2C1%2C6.432-1.238c.282-.01.563%2C0%2C.848%2C0a17.475%2C17.475%2C0%2C0%2C1%2C6.9%2C1.459c1.742.827%2C2.6%2C1.879%2C2.579%2C2.683%2C0%2C.014%2C0%2C.041%2C0%2C.085%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M179.356%2C124.805a4.49%2C4.49%2C0%2C0%2C0-1.168-1.888%2C29.676%2C29.676%2C0%2C0%2C0-3.691-2.589c-1.547-1.043-2.884-1.412-4.077-.77a8.309%2C8.309%2C0%2C0%2C0-3.875%2C6.7c.059%2C1.359%2C1.058%2C2.305%2C2.745%2C3.106a30.142%2C30.142%2C0%2C0%2C0%2C4.115%2C1.841%2C4.574%2C4.574%2C0%2C0%2C0%2C2.178.05%2C11.778%2C11.778%2C0%2C0%2C0%2C3.773-6.455%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M199.641%2C138.974a1.774%2C1.774%2C0%2C0%2C0%2C.031-1.041s-19.38-12.517-19.411-12.625a11.751%2C11.751%2C0%2C0%2C1-3.772%2C6.457c.028%2C0%2C.677.315%2C1.772.86a1.627%2C1.627%2C0%2C0%2C0%2C.71.767.154.154%2C0%2C0%2C0%2C.05.029l4.419%2C2.36a1.932%2C1.932%2C0%2C0%2C0%2C1.383.153c7.467%2C3.781%2C12.463%2C6.106%2C12.463%2C6.106a2.145%2C2.145%2C0%2C0%2C0%2C.913-.581%2C5.24%2C5.24%2C0%2C0%2C0%2C.922-1.249%2C5.108%2C5.108%2C0%2C0%2C0%2C.52-1.236m-14.3-4.317a.318.318%2C0%2C0%2C0-.038.064.956.956%2C0%2C0%2C1-1.2.291l-4.444-2.372-.095.146.085-.149a.65.65%2C0%2C0%2C1-.273-.916c.013-.021.019-.035.025-.044a.949.949%2C0%2C0%2C1%2C1.215-.311l4.435%2C2.363.02.011a.655.655%2C0%2C0%2C1%2C.27.917%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M185.073%2C133.74l-.019-.011-4.434-2.363a.951.951%2C0%2C0%2C0-1.217.311.2.2%2C0%2C0%2C1-.026.044.654.654%2C0%2C0%2C0%2C.275.916l-.086.149.1-.146%2C4.444%2C2.372a.958.958%2C0%2C0%2C0%2C1.2-.291.365.365%2C0%2C0%2C1%2C.035-.064.653.653%2C0%2C0%2C0-.27-.917%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M211.911%2C147.464a2.073%2C2.073%2C0%2C0%2C1-2.019.051%2C1.739%2C1.739%2C0%2C0%2C1-.922-1.193%2C5.767%2C5.767%2C0%2C0%2C0-.423-1.743%2C1.709%2C1.709%2C0%2C0%2C0-.718-.723%2C4.147%2C4.147%2C0%2C0%2C0-1.492-.285%2C2.423%2C2.423%2C0%2C0%2C1-.8-.252%2C1.957%2C1.957%2C0%2C0%2C1-.2-.117%2C6.355%2C6.355%2C0%2C0%2C0-.852-.689c-.026-.009-.054-.021-.079-.028%2C0%2C.033-.009.063-.013.1a2.643%2C2.643%2C0%2C0%2C1-.549%2C1.079l-.008.036h0a.03.03%2C0%2C0%2C1%2C.014.006c.11.043.35.338.743.623.1.063.2.123.309.181a3.659%2C3.659%2C0%2C0%2C0%2C1.256.394%2C3.818%2C3.818%2C0%2C0%2C1%2C1.036.147c.053.023.089.046.156.166a5.578%2C5.578%2C0%2C0%2C1%2C.288%2C1.375%2C3.11%2C3.11%2C0%2C0%2C0%2C1.61%2C2.115l.009%2C0a3.455%2C3.455%2C0%2C0%2C0%2C3.358-.1Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M200.387%2C139.392a4.863%2C4.863%2C0%2C0%2C1-.515%2C1.24%2C5.122%2C5.122%2C0%2C0%2C1-.927%2C1.246l3.264%2C1.816a1.371%2C1.371%2C0%2C0%2C0%2C.761-.41c.047-.048.1-.114.152-.173a2.544%2C2.544%2C0%2C0%2C0%2C.281-.412%2C2.408%2C2.408%2C0%2C0%2C0%2C.267-.668c.007-.036.012-.072.016-.107a1.217%2C1.217%2C0%2C0%2C0-.074-.748Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M125.308%2C14.048l-6.934-2.366%2C2.654-6.425a.692.692%2C0%2C0%2C0-.114-.742.673.673%2C0%2C0%2C0-.678-.207l-7.608%2C2.3L110.03.416A.656.656%2C0%2C0%2C0%2C108.9.254l-4.556%2C5.959-6.81-3a.634.634%2C0%2C0%2C0-.655.071.735.735%2C0%2C0%2C0-.273.627l.655%2C6.685L89.51%2C12.279a.692.692%2C0%2C0%2C0-.5.531.71.71%2C0%2C0%2C0%2C.244.7l5.368%2C4.341-4.973%2C5.457a.719.719%2C0%2C0%2C0-.129.753.705.705%2C0%2C0%2C0%2C.62.427l7.729.054-.051%2C6.686a.667.667%2C0%2C0%2C0%2C.353.62.647.647%2C0%2C0%2C0%2C.687-.02l6.035-4.105c3.053%2C7.369%2C14.272%2C6.828%2C14.272%2C6.828s-6.664-4.315-5.039-9.187c.014-.029%2C7.135.642%2C7.135.642a.674.674%2C0%2C0%2C0%2C.62-.317.7.7%2C0%2C0%2C0%2C.012-.714l-3.213-5.838%2C6.761-3.831a.7.7%2C0%2C0%2C0-.135-1.259m-14.971%2C9.679a1.39%2C1.39%2C0%2C0%2C1-.475.812%2C1.706%2C1.706%2C0%2C0%2C1-2.659-.871%2C2.136%2C2.136%2C0%2C0%2C1%2C.261-1.729%2C1.7%2C1.7%2C0%2C0%2C1%2C.405-.607%2C1.991%2C1.991%2C0%2C0%2C1%2C2.624.794%2C2.24%2C2.24%2C0%2C0%2C1-.156%2C1.6M108.25%2C13.182a3.073%2C3.073%2C0%2C0%2C1%2C.056.5%2C18.524%2C18.524%2C0%2C0%2C1%2C.576%2C2.673%2C7.884%2C7.884%2C0%2C0%2C1%2C.19%2C1.06c-.011.192.065.415.059.611a2.674%2C2.674%2C0%2C0%2C1-.247.752c-.108.325-.078.692-.425.882-.552.339-1.617-.248-1.882-.754a8.312%2C8.312%2C0%2C0%2C1-.457-2.721c-.185-1.527-.9-3.191-1.2-4.634-.135-.7-.734-1.745.042-2.22a1.838%2C1.838%2C0%2C0%2C1%2C2.167.281c.3.391.258%2C1.154.411%2C1.6.207.677.481%2C1.318.706%2C1.966%22%20fill%3D%22%23f6a500%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2229.167%20104.311%2024.575%20106.481%2046.022%20111.25%2051.068%20108.653%2029.167%20104.311%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpolygon%20points%3D%2223.919%20107.225%2023.883%20108.127%2046.09%20113.066%2051.317%20111.381%2051.705%20109.233%2046.202%20112.188%2023.919%20107.225%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M64.24%2C70.781a1.159%2C1.159%2C0%2C0%2C0-.6-1.021l-2.166-.346v.025a1.223%2C1.223%2C0%2C0%2C1%2C.974%2C1.4c-.031.828-2.345%2C26.845-2.419%2C27.756a1.785%2C1.785%2C0%2C0%2C1-1.165%2C1.607l.026.041c1.346.039%2C1.638-.09%2C2.035-.314a1.657%2C1.657%2C0%2C0%2C0%2C.778-1.106c.084-.325%2C2.635-27.209%2C2.539-28.042%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M41.479%2C102.592l-.022.579s6.829%2C1.22%2C7.46%2C1.311a8.1%2C8.1%2C0%2C0%2C0%2C2.7-.241%2C17.216%2C17.216%2C0%2C0%2C0%2C4-.977%2C1.522%2C1.522%2C0%2C0%2C0%2C.6-1.238c.024-.561.033-1.685.033-1.685l-.593-.063s-.012%2C1.049-.031%2C1.525-.075.953-.506%2C1.109-4.242.9-4.971.96a7.071%2C7.071%2C0%2C0%2C1-2.136-.121c-.978-.14-6.531-1.159-6.531-1.159%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M49.3%2C99.439c-.015.241-.041.606-.078.9a1.445%2C1.445%2C0%2C0%2C1-1.234%2C1.251c-.522.131-3.922.4-6.012.555%2C1.914.328%2C4.882.838%2C5.525.93.661.094%2C1.024.14%2C1.315.15a5.446%2C5.446%2C0%2C0%2C0%2C.775-.031c.742-.061%2C4.523-.8%2C4.908-.944.271-.1.337-.393.361-.9.006-.327.01-.834.009-1.116Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M60.621%2C69.832c-.057%2C0-.117%2C0-.184%2C0-.326.009-1.943.02-4.18.034-5.822.045-17.88.127-18.8.291-.317.156-.455.441-.522%2C1.063-.03.3-.514%2C5.726-1.03%2C11.463-.562%2C6.293-1.143%2C12.8-1.18%2C13.123-.056.5-.022.618.448.717.9.2%2C20.126%2C3.267%2C22.967%2C3.379.114%2C0%2C.176%2C0%2C.2%2C0a1.352%2C1.352%2C0%2C0%2C0%2C.9-1.253c.013-.157.1-1.095.223-2.528.6-6.71%2C2.174-24.538%2C2.2-25.21.029-.706-.308-1.048-1.054-1.077M56.938%2C90.991%2C37.813%2C88.9l1.53-16.1%2C19.312.119Z%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M88.251%2C206.665l-2.346.19%2C1.178%2C2.045a.641.641%2C0%2C0%2C1%2C.087.418.708.708%2C0%2C0%2C1-.211.4.671.671%2C0%2C0%2C1-.536.166.748.748%2C0%2C0%2C1-.3-.115l-1.919-1.363-.414%2C2.326a.651.651%2C0%2C0%2C1-.621.54c-.038%2C0-.078%2C0-.12%2C0a.657.657%2C0%2C0%2C1-.548-.488l-.605-2.275-1.8%2C1.5a.661.661%2C0%2C0%2C1-.517.159.7.7%2C0%2C0%2C1-.317-.135.656.656%2C0%2C0%2C1-.248-.616.648.648%2C0%2C0%2C1%2C.053-.191l1.007-2.134-2.352.006c-.03-.006-.061-.006-.088-.01a.653.653%2C0%2C0%2C1-.556-.514.566.566%2C0%2C0%2C1-.013-.231.656.656%2C0%2C0%2C1%2C.372-.517l2.142-.986-1.8-1.511a.678.678%2C0%2C0%2C1-.231-.6.634.634%2C0%2C0%2C1%2C.076-.217.645.645%2C0%2C0%2C1%2C.675-.35.207.207%2C0%2C0%2C1%2C.085.02l2.27.619-.408-2.318a.563.563%2C0%2C0%2C1%2C0-.208.664.664%2C0%2C0%2C1%2C1.2-.289l1.348%2C1.936%2C1.174-2.037a.647.647%2C0%2C0%2C1%2C.658-.329.525.525%2C0%2C0%2C1%2C.114.025.663.663%2C0%2C0%2C1%2C.459.694l-.212%2C2.344%2C2.21-.8a.66.66%2C0%2C0%2C1%2C.317-.037.651.651%2C0%2C0%2C1%2C.473.305.692.692%2C0%2C0%2C1%2C.1.445.675.675%2C0%2C0%2C1-.19.383l-1.669%2C1.65%2C2.205.81a.664.664%2C0%2C0%2C1-.173%2C1.286m-3.716-6.442-.287-.164Zm-6.817%2C6.221h0v0Z%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M17.929%2C145.6a.616.616%2C0%2C0%2C0-.047.347l.524%2C2.714-1.94%2C1.961a.541.541%2C0%2C0%2C0-.106.144.577.577%2C0%2C0%2C0-.026.434.554.554%2C0%2C0%2C0%2C.456.364l2.741.344%2C1.265%2C2.449a.56.56%2C0%2C0%2C0%2C1%2C0%2C.036.036%2C0%2C0%2C1%2C0-.015l1.173-2.495%2C2.721-.448a.54.54%2C0%2C0%2C0%2C.411-.311.311.311%2C0%2C0%2C0%2C.035-.077.57.57%2C0%2C0%2C0-.154-.572l-2.008-1.883.411-2.73a.574.574%2C0%2C0%2C0-.229-.542.563.563%2C0%2C0%2C0-.59-.027l-2.42%2C1.33-2.463-1.239a.575.575%2C0%2C0%2C0-.589.059.564.564%2C0%2C0%2C0-.164.2%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M91.589%2C37.093l-.1.234.1-.238-3.657-1.5%2C3.657-1.5a.477.477%2C0%2C0%2C0%2C.291-.446.49.49%2C0%2C0%2C0-.016-.135.5.5%2C0%2C0%2C0-.458-.341.581.581%2C0%2C0%2C0-.123.02l-3.833.931%2C2.078-3.368a.481.481%2C0%2C0%2C0-.123-.63.474.474%2C0%2C0%2C0-.647.081l-2.556%2C3-.3-3.943a.473.473%2C0%2C0%2C0-.943%2C0l-.3%2C3.939L82.092%2C30.2a.458.458%2C0%2C0%2C0-.361-.169.451.451%2C0%2C0%2C0-.284.094.47.47%2C0%2C0%2C0-.2.377.476.476%2C0%2C0%2C0%2C.073.255L83.4%2C34.116l-3.842-.931a.37.37%2C0%2C0%2C0-.111-.02.482.482%2C0%2C0%2C0-.452.332.467.467%2C0%2C0%2C0-.026.144.488.488%2C0%2C0%2C0%2C.3.446l3.655%2C1.5-3.655%2C1.5a.479.479%2C0%2C0%2C0-.294.443.388.388%2C0%2C0%2C0%2C.03.156.458.458%2C0%2C0%2C0%2C.446.317.5.5%2C0%2C0%2C0%2C.105-.012l3.849-.931-2.075%2C3.365a.51.51%2C0%2C0%2C0-.073.25.473.473%2C0%2C0%2C0%2C.2.382.458.458%2C0%2C0%2C0%2C.279.09.5.5%2C0%2C0%2C0%2C.358-.161l2.564-3.02.3%2C3.944a.473.473%2C0%2C0%2C0%2C.943%2C0l.3-3.944%2C2.559%2C3.013a.472.472%2C0%2C0%2C0%2C.835-.3.516.516%2C0%2C0%2C0-.068-.25L87.45%2C37.062l3.848.931a.488.488%2C0%2C0%2C0%2C.566-.308.544.544%2C0%2C0%2C0%2C.016-.15.468.468%2C0%2C0%2C0-.291-.442%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M213.136%2C129.078l-.212.506.208-.509-3.188-1.312%2C3.188-1.312a.782.782%2C0%2C0%2C0%2C.484-.724.986.986%2C0%2C0%2C0-.026-.221l-.012-.03a.791.791%2C0%2C0%2C0-.745-.533.651.651%2C0%2C0%2C0-.209.031l-3.328.8%2C1.808-2.939a.783.783%2C0%2C0%2C0%2C.121-.408.779.779%2C0%2C0%2C0-.782-.784.788.788%2C0%2C0%2C0-.605.283l-2.23%2C2.621-.261-3.437a.784.784%2C0%2C0%2C0-1.563.005l-.26%2C3.432-2.235-2.628a.8.8%2C0%2C0%2C0-.6-.276.789.789%2C0%2C0%2C0-.781.785.761.761%2C0%2C0%2C0%2C.126.417l1.8%2C2.929-3.353-.811a.585.585%2C0%2C0%2C0-.188-.025.778.778%2C0%2C0%2C0-.742.548.584.584%2C0%2C0%2C0-.036.239.772.772%2C0%2C0%2C0%2C.483.721l3.188%2C1.312L200%2C129.075a.776.776%2C0%2C0%2C0-.483.725.7.7%2C0%2C0%2C0%2C.041.265.778.778%2C0%2C0%2C0%2C.737.517.745.745%2C0%2C0%2C0%2C.174-.018l3.367-.813-1.812%2C2.936a.75.75%2C0%2C0%2C0-.117.41.793.793%2C0%2C0%2C0%2C.781.784.8.8%2C0%2C0%2C0%2C.591-.267l2.245-2.64.266%2C3.441a.781.781%2C0%2C0%2C0%2C1.557%2C0l.261-3.44%2C2.236%2C2.633a.8.8%2C0%2C0%2C0%2C.6.273.777.777%2C0%2C0%2C0%2C.782-.781.79.79%2C0%2C0%2C0-.121-.414l-1.808-2.935%2C3.357.81a.8.8%2C0%2C0%2C0%2C.183.021.788.788%2C0%2C0%2C0%2C.742-.526.913.913%2C0%2C0%2C0%2C.038-.25.786.786%2C0%2C0%2C0-.48-.728%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M152.1%2C200.505l-4.32%2C1.14%2C2%2C4a.66.66%2C0%2C0%2C1-.2.84.677.677%2C0%2C0%2C1-.866-.074l-3.142-3.172-2.454%2C3.733a.668.668%2C0%2C0%2C1-1.2-.543l1.169-4.311-4.458-.259a.666.666%2C0%2C0%2C1-.129-1.309l4.32-1.14-2.007-4a.673.673%2C0%2C0%2C1%2C.211-.841.682.682%2C0%2C0%2C1%2C.863.07l3.146%2C3.178%2C2.455-3.733a.668.668%2C0%2C0%2C1%2C.833-.241.658.658%2C0%2C0%2C1%2C.369.776l-1.176%2C4.318%2C4.459.263a.664.664%2C0%2C0%2C1%2C.134%2C1.306%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M80.891%2C177.709l2.854%2C2.883-3.568%2C1.938a.411.411%2C0%2C0%2C0-.148.125.48.48%2C0%2C0%2C0-.071.474.422.422%2C0%2C0%2C0%2C.15.208.46.46%2C0%2C0%2C0%2C.44.08l3.907-1.017-.108%2C4.045a.5.5%2C0%2C0%2C0%2C.182.4.417.417%2C0%2C0%2C0%2C.26.1.459.459%2C0%2C0%2C0%2C.428-.176.418.418%2C0%2C0%2C0%2C.092-.194l1.065-3.892%2C3.458%2C2.12a.486.486%2C0%2C0%2C0%2C.6-.757l-2.853-2.881%2C3.563-1.934a.415.415%2C0%2C0%2C0%2C.153-.128.5.5%2C0%2C0%2C0%2C.068-.482.466.466%2C0%2C0%2C0-.152-.2.512.512%2C0%2C0%2C0-.408-.1l-3.935%2C1.037.106-4.057a.51.51%2C0%2C0%2C0-.184-.4.481.481%2C0%2C0%2C0-.23-.092.493.493%2C0%2C0%2C0-.454.173.45.45%2C0%2C0%2C0-.083.165l-1.077%2C3.918-3.455-2.113a.485.485%2C0%2C0%2C0-.6.754%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M161.03%2C155.472c-.012-.17-.021-.376-.018-.64a5.676%2C5.676%2C0%2C0%2C1%2C.766-2.91%2C4.584%2C4.584%2C0%2C0%2C1%2C3.564-2.039c5.16-.681%2C8.449-4.35%2C8.506-8.3l0-.009a7.149%2C7.149%2C0%2C0%2C0-.551-2.859%2C6.486%2C6.486%2C0%2C0%2C0-6.107-4.2%2C7.521%2C7.521%2C0%2C0%2C0-3.3.707l.715%2C1.45a5.765%2C5.765%2C0%2C0%2C1%2C2.565-.541%2C4.849%2C4.849%2C0%2C0%2C1%2C4.641%2C3.2%2C5.687%2C5.687%2C0%2C0%2C1%2C.43%2C2.23c-.045%2C3.044-2.593%2C6.115-7.11%2C6.728a6.2%2C6.2%2C0%2C0%2C0-4.715%2C2.778%2C7.306%2C7.306%2C0%2C0%2C0-1.013%2C3.746c0%2C.257%2C0%2C.487.016.675l-2.569%2C2.159-7.5-7.358c-1.076-2.889-3.534-5.875-7.03-5.965a4.583%2C4.583%2C0%2C0%2C0-.469.014%2C7.125%2C7.125%2C0%2C0%2C0-6.328%2C5.98c-.01.13-.015.262-.015.4-.015%2C3.165%2C2.357%2C5.463%2C4.933%2C7.6l.037-.049%2C6.181%2C8.078-2.562%2C2.236-.057-.082a1.328%2C1.328%2C0%2C0%2C1-.689.232%2C8.564%2C8.564%2C0%2C0%2C1-3.538-1.036%2C5.723%2C5.723%2C0%2C0%2C0-2.853-.528A6.1%2C6.1%2C0%2C0%2C0%2C131.6%2C173.7a5.782%2C5.782%2C0%2C0%2C0%2C1.626%2C3.553%2C11.457%2C11.457%2C0%2C0%2C0%2C3.825%2C2.432%2C16.066%2C16.066%2C0%2C0%2C1%2C3.576%2C1.911c2.434%2C1.959%2C3.441%2C4.85%2C3.7%2C8%2C.029.376.046.755.059%2C1.139l1.632-.044c-.01-.41-.031-.819-.066-1.227-.27-3.393-1.4-6.809-4.3-9.144a17.538%2C17.538%2C0%2C0%2C0-3.926-2.133%2C10%2C10%2C0%2C0%2C1-3.313-2.062%2C4.144%2C4.144%2C0%2C0%2C1-1.183-2.556%2C4.612%2C4.612%2C0%2C0%2C1%2C1.015-3.2%2C3.938%2C3.938%2C0%2C0%2C1%2C4.9-1.2%2C9.629%2C9.629%2C0%2C0%2C0%2C4.342%2C1.177%2C2.981%2C2.981%2C0%2C0%2C0%2C.841-.187l14.193%2C25.625A41.271%2C41.271%2C0%2C0%2C0%2C173.767%2C188c6.595-5.281%2C8.9-12.345%2C9.358-13.173Zm-19.909%2C1.314c-2.379-1.989-4.068-3.942-4-6.049a2.924%2C2.924%2C0%2C0%2C1%2C.011-.293%2C5.582%2C5.582%2C0%2C0%2C1%2C4.838-4.506c.1-.006.209-.013.327-.01%2C2.41-.009%2C4.55%2C2.316%2C5.5%2C4.789Zm31.166%2C18.564-.7.411-.81-1.408.695-.418Zm-1.221-2.113-.705.407-.81-1.415.7-.416Zm-1.216-2.128-.709.413-.813-1.418.706-.405Zm-16.378%2C5.583-.027.032-.026-.023.011-.018c-.017-.024-.043-.02-.065-.039a.413.413%2C0%2C0%2C1-.073-.392.485.485%2C0%2C0%2C1%2C.124-.182l12.555-10.72a.424.424%2C0%2C0%2C1%2C.575.044c.021.031.006.06.023.073h.021l.813%2C1.413-.707.4-.567-.989-12.183%2C10.4a.383.383%2C0%2C0%2C1-.474%2C0m1.881%2C1.575-1.266-1.036.511-.637%2C1.266%2C1.032Zm1.9%2C1.537-1.269-1.035.516-.634%2C1.268%2C1.023Zm1.9%2C1.532-1.266-1.034.523-.622%2C1.268%2C1.021Zm1.9%2C1.538-1.26-1.03.514-.623%2C1.266%2C1.021Zm1.913%2C1.543-1.27-1.029.51-.644%2C1.271%2C1.04Zm1.064.182-.121-.809%2C1.608-.232.123.8Zm2.414-.355-.125-.812%2C1.625-.236.119.807Zm1.369-16.667.813%2C1.417-.708.4-.812-1.406Zm1.051%2C16.3-.123-.805%2C1.62-.237.12.8Zm2.2-1.3-.787-.235.49-1.558.781.24Zm.713-2.328-.774-.24.482-1.568.78.252Zm.729-2.346-.781-.236.34-1.084-.079-.13.71-.413.165.284.03.332Z%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.914%2C58.267c-.014-.006-.029-.018-.046-.027-3.425-1.934-7.028-4.353-10.919-3.817a12.127%2C12.127%2C0%2C0%2C0-3.323%2C1.142%2C10.742%2C10.742%2C0%2C0%2C0-.937-6.517%2C10.012%2C10.012%2C0%2C0%2C0-5.167-5.45l-.018-.007%2C0%2C.015c-.769%2C1.908-.59%2C4.724.648%2C7.5a10.814%2C10.814%2C0%2C0%2C0%2C4.318%2C5.038c-.313.159-.622.317-.925.457-1.575.74-2.791%2C1.11-4.155.7a4.128%2C4.128%2C0%2C0%2C1-1-.482c-2.207-1.321-4.706-5.187-8.405-7.576a11.093%2C11.093%2C0%2C0%2C0-3.106-1.391%2C10.112%2C10.112%2C0%2C0%2C0-3.434-.3%2C21.7%2C21.7%2C0%2C0%2C0%2C.846-9.939c-.89-4.494-3.159-8.1-5.768-9.772l-.018-.019c.008%2C0%2C0%2C0%2C0%2C.006s-.007-.009-.013%2C0v.023C36.706%2C30.4%2C36.021%2C34.6%2C36.9%2C39.11a17.939%2C17.939%2C0%2C0%2C0%2C3.089%2C7.17c.56.717.977%2C1.23%2C1.359%2C1.644-.148.036-.3.065-.442.109-4.91%2C1.482-8.277.5-10.74-1.036a13.849%2C13.849%2C0%2C0%2C1-4.632-5.022.74.74%2C0%2C0%2C1-.047-.1A1.453%2C1.453%2C0%2C0%2C0%2C22.853%2C43.1a16.456%2C16.456%2C0%2C0%2C0%2C5.762%2C6.353%2C14.026%2C14.026%2C0%2C0%2C0%2C5.4%2C2.029%2C17.382%2C17.382%2C0%2C0%2C0-5.353%2C3.825c-2.953%2C3.076-4.509%2C6.733-4.4%2C9.64%2C0%2C0-.015.008%2C0%2C.013l0%2C.019.023-.029c2.9.016%2C6.5-1.688%2C9.46-4.782a14.941%2C14.941%2C0%2C0%2C0%2C4.383-8.6%2C19.535%2C19.535%2C0%2C0%2C0%2C3.632-.757%2C7.51%2C7.51%2C0%2C0%2C1%2C6.675.892c2.894%2C1.782%2C5.165%2C5.261%2C8.023%2C7.31a12.22%2C12.22%2C0%2C0%2C0-6.755-.223c-3.2.748-5.74%2C2.457-6.9%2C4.38%2C0%2C0-.012%2C0-.006%2C0l-.011.019.027-.013c1.863%2C1.231%2C4.913%2C1.646%2C8.124.891a10.981%2C10.981%2C0%2C0%2C0%2C6.851-4.285%2C5.8%2C5.8%2C0%2C0%2C0%2C.769.3%2C8.4%2C8.4%2C0%2C0%2C0%2C6.241-.863%2C18.647%2C18.647%2C0%2C0%2C1%2C4.612-1.932c2.16-.433%2C5.584%2C1.416%2C9%2C3.462a1.452%2C1.452%2C0%2C0%2C0%2C1.5-2.483m-43.729-5.62c-1.717%2C1.122-3.043%2C3.257-5.04%2C6.148A28.055%2C28.055%2C0%2C0%2C1%2C26.5%2C63.853a.364.364%2C0%2C1%2C1-.46-.564%2C26.755%2C26.755%2C0%2C0%2C0%2C4.508-4.912c1.991-2.859%2C3.322-5.066%2C5.242-6.335a.359.359%2C0%2C0%2C1%2C.393-.005.414.414%2C0%2C0%2C1%2C.109.108.362.362%2C0%2C0%2C1-.106.5m5.933-6.267a.4.4%2C0%2C0%2C1-.079.015.386.386%2C0%2C0%2C1-.405-.264A58.3%2C58.3%2C0%2C0%2C1%2C39%2C34.084a25.724%2C25.724%2C0%2C0%2C1-.152-3.3.388.388%2C0%2C0%2C1%2C.4-.368.383.383%2C0%2C0%2C1%2C.365.4%2C26.17%2C26.17%2C0%2C0%2C0%2C.152%2C3.19%2C57.467%2C57.467%2C0%2C0%2C0%2C2.592%2C11.883.385.385%2C0%2C0%2C1-.247.487M56.062%2C60.326c-.006%2C0-2.815%2C1.005-5.184%2C1.738a46.793%2C46.793%2C0%2C0%2C1-5.505%2C1.221.361.361%2C0%2C1%2C1-.114-.712%2C47.548%2C47.548%2C0%2C0%2C0%2C5.407-1.2c2.346-.727%2C5.146-1.728%2C5.154-1.728a.356.356%2C0%2C0%2C1%2C.314.029.4.4%2C0%2C0%2C1%2C.148.186.365.365%2C0%2C0%2C1-.22.468m8.519-5.274a.364.364%2C0%2C0%2C1-.447-.252s-.332-1.192-.951-2.933l-2.1-4.571c-.7-1.171-1.274-1.917-1.272-1.922a.361.361%2C0%2C0%2C1%2C.067-.509.372.372%2C0%2C0%2C1%2C.414-.019.347.347%2C0%2C0%2C1%2C.092.087%2C24.016%2C24.016%2C0%2C0%2C1%2C3.035%2C5.472c.919%2C2.416%2C1.412%2C4.194%2C1.414%2C4.2a.359.359%2C0%2C0%2C1-.254.444%22%20fill%3D%22%236a912d%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.989%2C42.8a3.822%2C3.822%2C0%2C1%2C1-2.044-5%2C3.826%2C3.826%2C0%2C0%2C1%2C2.044%2C5%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Crect%20x%3D%22152.265%22%20y%3D%2248.711%22%20width%3D%2216.42%22%20height%3D%223.528%22%20transform%3D%22translate%2851.843%20178.924%29%20rotate%28-67.238%29%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M167.342%2C49.563a1.007%2C1.007%2C0%2C0%2C1%2C.6-1.283c.144-.047.214-.073.232-.078A7.223%2C7.223%2C0%2C0%2C0%2C172.2%2C39a1%2C1%2C0%2C0%2C1%2C1.876-.7%2C9.229%2C9.229%2C0%2C0%2C1-5.134%2C11.75c-.165.065-.268.091-.311.108v0a1.007%2C1.007%2C0%2C0%2C1-1.284-.6%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M169.163%2C54a1%2C1%2C0%2C0%2C1%2C.57-1.3c.159-.059.24-.081.25-.088A11.986%2C11.986%2C0%2C0%2C0%2C176.616%2C37.2a1%2C1%2C0%2C0%2C1%2C1.87-.722%2C14%2C14%2C0%2C0%2C1-7.741%2C17.99c-.17.071-.27.095-.288.1v0A1%2C1%2C0%2C0%2C1%2C169.163%2C54%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M170.942%2C58.348a1%2C1%2C0%2C0%2C1%2C.563-1.3c.166-.06.25-.082.257-.088a16.69%2C16.69%2C0%2C0%2C0%2C9.2-21.534%2C1%2C1%2C0%2C1%2C1%2C1.862-.73%2C18.689%2C18.689%2C0%2C0%2C1-10.3%2C24.114c-.173.07-.269.094-.284.1a1%2C1%2C0%2C0%2C1-1.3-.566%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M155.1%2C44.443a9.217%2C9.217%2C0%2C0%2C1%2C5.137-11.749c.165-.064.27-.091.308-.111h0a1%2C1%2C0%2C0%2C1%2C.684%2C1.881c-.14.052-.217.073-.234.079a7.222%2C7.222%2C0%2C0%2C0-4.022%2C9.2%2C1%2C1%2C0%2C0%2C1-1.325%2C1.273%2C1.039%2C1.039%2C0%2C0%2C1-.551-.574%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M150.689%2C46.265a13.993%2C13.993%2C0%2C0%2C1%2C7.739-17.989c.172-.071.27-.093.285-.1a1%2C1%2C0%2C1%2C1%2C.728%2C1.864c-.16.06-.241.082-.253.086a12%2C12%2C0%2C0%2C0-6.635%2C15.422.994.994%2C0%2C0%2C1-.574%2C1.292%2C1%2C1%2C0%2C0%2C1-1.29-.572%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M146.343%2C48.049a18.694%2C18.694%2C0%2C0%2C1%2C10.309-24.118c.168-.068.267-.093.281-.1a1%2C1%2C0%2C0%2C1%2C.732%2C1.864c-.164.063-.244.084-.255.091a16.686%2C16.686%2C0%2C0%2C0-9.2%2C21.534%2C1%2C1%2C0%2C0%2C1-1.317%2C1.289%2C1.035%2C1.035%2C0%2C0%2C1-.549-.558%22%20fill%3D%22%23243487%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M62.656%2C29.015c-5.823%2C1.808-11.378%2C1.608-14.4-.223%2C0%2C0%2C5.308%2C9.618%2C7.736%2C10.465%2C2.327.8%2C5.246%2C1.02%2C9.894-.421%2C5.786-1.8%2C8.717-4.286%2C9.415-6.736.664-2.339-1.35-11.868-1.35-11.868-.794%2C3.552-4.794%2C6.758-11.3%2C8.783%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M75.138%2C16.686l-.317-.556a7.505%2C7.505%2C0%2C0%2C0-.715-1.062%2C1.361%2C1.361%2C0%2C0%2C0-.57-.432l-.793-.258.6-.575%2C2.8-2.565.086-.082.118-.036a2.237%2C2.237%2C0%2C0%2C1%2C.527-.049%2C1.9%2C1.9%2C0%2C0%2C1%2C1.208.439%2C1.648%2C1.648%2C0%2C0%2C1%2C.477%2C1.711l-.034.116-.092.087L75.6%2C16.236Z%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M79.451%2C13.542a2.636%2C2.636%2C0%2C0%2C0%2C.92-.5l8.541-7.114A2.641%2C2.641%2C0%2C1%2C0%2C85.5%2C1.9L76.951%2C9.014a2.646%2C2.646%2C0%2C0%2C0-.83%2C1.283l.2.2.021-.019.238-.061a2.294%2C2.294%2C0%2C0%2C1%2C.654-.067%2C2.348%2C2.348%2C0%2C0%2C1%2C1.512.559%2C2.164%2C2.164%2C0%2C0%2C1%2C.634%2C2.232l-.074.228-.014.015%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M70.473%2C14.631a12.322%2C12.322%2C0%2C0%2C0-4.782-.8%2C25.856%2C25.856%2C0%2C0%2C0-7.663%2C1.3%2C24.508%2C24.508%2C0%2C0%2C0-8%2C4.143c-1.989%2C1.638-3.26%2C3.43-3.27%2C5.238a3.223%2C3.223%2C0%2C0%2C0%2C.162%2C1.02%2C4.3%2C4.3%2C0%2C0%2C0%2C2.645%2C2.55%2C12.57%2C12.57%2C0%2C0%2C0%2C4.77.792A25.83%2C25.83%2C0%2C0%2C0%2C62%2C27.574%2C24.608%2C24.608%2C0%2C0%2C0%2C70%2C23.434C71.989%2C21.788%2C73.262%2C20%2C73.269%2C18.2a3.188%2C3.188%2C0%2C0%2C0-.156-1.021%2C4.3%2C4.3%2C0%2C0%2C0-2.64-2.543M56.428%2C19.267a.761.761%2C0%2C0%2C1-.039-.121.838.838%2C0%2C0%2C1%2C.015-.3%2C2.671%2C2.671%2C0%2C0%2C1%2C.124-.3A4%2C4%2C0%2C0%2C1%2C59%2C17.023c1.3-.308%2C2.488-.093%2C2.884.461a.775.775%2C0%2C0%2C1%2C.12.279.217.217%2C0%2C0%2C1%2C.017.048.707.707%2C0%2C0%2C1%2C0%2C.146c-.057.767-1.208%2C1.626-2.621%2C1.962-1.342.319-2.613.088-2.94-.544a.311.311%2C0%2C0%2C1-.04-.108m3.617%2C2.9c-1.436.341-3.05.185-3.4-.49-.041-.082-.217-1.6-.229-1.68l0%2C0a.358.358%2C0%2C0%2C0%2C.038.116c.355.674%2C1.708.926%2C3.143.577%2C1.515-.359%2C2.737-1.28%2C2.8-2.094a.528.528%2C0%2C0%2C0-.006-.158c.111.379.723%2C1.494.719%2C1.547-.061.815-1.552%2C1.828-3.066%2C2.187%22%20fill%3D%22%23bd1622%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M67.654%2C117.834l-2.276-1.066.006%2C2.518a.687.687%2C0%2C0%2C1-.144.434.717.717%2C0%2C0%2C1-.407.261.738.738%2C0%2C0%2C1-.587-.126.79.79%2C0%2C0%2C1-.212-.269L62.98%2C117.3l-1.62%2C1.936a.7.7%2C0%2C0%2C1-.863.173%2C1.05%2C1.05%2C0%2C0%2C1-.112-.065.7.7%2C0%2C0%2C1-.246-.743l.648-2.431-2.471.436a.705.705%2C0%2C0%2C1-.563-.128.733.733%2C0%2C0%2C1-.221-.293.736.736%2C0%2C0%2C1%2C.245-.853l2.069-1.442-2.184-1.242c-.024-.021-.053-.036-.076-.056a.706.706%2C0%2C0%2C1-.247-.775.638.638%2C0%2C0%2C1%2C.115-.217.69.69%2C0%2C0%2C1%2C.619-.281l2.507.22-.869-2.354a.735.735%2C0%2C0%2C1%2C.105-.681.619.619%2C0%2C0%2C1%2C.185-.16.69.69%2C0%2C0%2C1%2C.811.034.213.213%2C0%2C0%2C1%2C.069.063l1.777%2C1.779.849-2.363a.671.671%2C0%2C0%2C1%2C.105-.2.7.7%2C0%2C0%2C1%2C.652-.271.718.718%2C0%2C0%2C1%2C.346.138.71.71%2C0%2C0%2C1%2C.273.5l.218%2C2.51%2C2.175-1.268a.7.7%2C0%2C0%2C1%2C.782.049.961.961%2C0%2C0%2C1%2C.094.085.712.712%2C0%2C0%2C1%2C.056.889l-1.443%2C2.058%2C2.476.427a.656.656%2C0%2C0%2C1%2C.315.137.7.7%2C0%2C0%2C1%2C.275.529.727.727%2C0%2C0%2C1-.146.464.68.68%2C0%2C0%2C1-.376.252l-2.425.646%2C1.61%2C1.922a.7.7%2C0%2C0%2C1%2C.022.892.714.714%2C0%2C0%2C1-.862.207%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M19.453%2C55.159l-3.2.194L15.8%2C52.174a.351.351%2C0%2C0%2C0-.635-.153l-1.846%2C2.625-2.762-1.633a.347.347%2C0%2C0%2C0-.393.024.353.353%2C0%2C0%2C0-.123.378l.9%2C3.08-3%2C1.142a.347.347%2C0%2C0%2C0-.226.322.352.352%2C0%2C0%2C0%2C.22.332l2.969%2C1.216L9.929%2C62.56a.353.353%2C0%2C0%2C0%2C.507.414l2.8-1.562%2C1.78%2C2.669a.358.358%2C0%2C0%2C0%2C.369.149.353.353%2C0%2C0%2C0%2C.273-.288l.523-3.164%2C3.2.275a.351.351%2C0%2C0%2C0%2C.291-.586l-2.146-2.386%2C2.205-2.329a.349.349%2C0%2C0%2C0%2C.062-.392.344.344%2C0%2C0%2C0-.336-.2%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M173.845%2C28.092l-2.43-.476%2C1.509-1.962a.586.586%2C0%2C0%2C0-.061-.78.585.585%2C0%2C0%2C0-.784-.024l-1.886%2C1.6-.6-2.4a.585.585%2C0%2C0%2C0-1.153.158l.079%2C2.475-2.251-1.034a.586.586%2C0%2C0%2C0-.6%2C1l1.984%2C1.483-2.213%2C1.115a.585.585%2C0%2C0%2C0%2C.344%2C1.1c.021%2C0%2C.044-.008.067-.012l2.4-.627-.508%2C2.425a.583.583%2C0%2C0%2C0%2C.393.675.559.559%2C0%2C0%2C0%2C.261.023.578.578%2C0%2C0%2C0%2C.456-.341l1-2.265%2C1.579%2C1.91a.588.588%2C0%2C0%2C0%2C.531.206.6.6%2C0%2C0%2C0%2C.244-.092.587.587%2C0%2C0%2C0%2C.2-.759l-1.144-2.2%2C2.476-.042.071-.008a.587.587%2C0%2C0%2C0%2C.032-1.156%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M135.065%2C36.8a1.931%2C1.931%2C0%2C0%2C0-1.559.167l-.877.505-.412-.922a1.936%2C1.936%2C0%2C0%2C0-1.173-1.048%2C1.882%2C1.882%2C0%2C0%2C0-.744-.085%2C1.924%2C1.924%2C0%2C0%2C0-1.708%2C1.425l-.264.979-.943-.361-.094-.032a1.929%2C1.929%2C0%2C0%2C0-2.262%2C2.8l.507.873-.922.414a1.93%2C1.93%2C0%2C0%2C0%2C.195%2C3.6c.031.009.064.02.094.027l.979.261-.358.946a1.924%2C1.924%2C0%2C0%2C0%2C.552%2C2.156%2C1.924%2C1.924%2C0%2C0%2C0%2C2.216.2l.876-.505.413.922a1.93%2C1.93%2C0%2C0%2C0%2C3.625-.294l.262-.977.945.361.094.032a1.928%2C1.928%2C0%2C0%2C0%2C2.26-2.8l-.5-.874.92-.414a1.93%2C1.93%2C0%2C0%2C0-.194-3.6c-.033-.009-.064-.02-.095-.028l-.977-.26.358-.947a1.924%2C1.924%2C0%2C0%2C0-.554-2.155%2C1.867%2C1.867%2C0%2C0%2C0-.655-.367%22%20fill%3D%22%23b69c38%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M171.768%2C115.086c1.046-.246%2C2.021-.449%2C2.959-.659l3.5-.515c4.024-.58%2C3.447%2C1.438%2C5.894.435a19.932%2C19.932%2C0%2C0%2C1%2C2.531-.851c1.653%2C2.993%2C6.363%2C4.71%2C11.568%2C3.933%2C6.135-.9%2C13.856-5.354%2C13.268-9.369S202.2%2C102%2C196.075%2C102.9c-5.047.742-8.972%2C3.578-9.875%2C6.8a21.4%2C21.4%2C0%2C0%2C1-2.78-.084c-2.624-.258-1.506%2C1.527-5.528%2C2.109l-3.414.511c-.922.052-1.887.129-2.923.2-12.79.843-16.093-.443-19.711-.2-5.834.393-4.814%2C10.07%2C1.089%2C8.714%2C3.548-.816%2C6.328-2.99%2C18.835-5.862m11.115-4.418a.421.421%2C0%2C0%2C1-.035-.1.322.322%2C0%2C0%2C1%2C.606-.19%2C5.257%2C5.257%2C0%2C0%2C1%2C.508%2C1.626%2C5.106%2C5.106%2C0%2C0%2C1-.04%2C1.666.321.321%2C0%2C0%2C1-.631-.117%2C4.342%2C4.342%2C0%2C0%2C0%2C.034-1.462%2C4.5%2C4.5%2C0%2C0%2C0-.442-1.424M151.668%2C120.1a3.242%2C3.242%2C0%2C0%2C1-.937-1.952%2C1.823%2C1.823%2C0%2C0%2C1%2C.569-1.326%2C1.852%2C1.852%2C0%2C0%2C1-1.056-1.674%2C3.469%2C3.469%2C0%2C0%2C1%2C.34-1.521l-.009-.008a.361.361%2C0%2C0%2C1%2C.455-.152.341.341%2C0%2C0%2C1%2C.168.451s-.071.161-.157.393a3.163%2C3.163%2C0%2C0%2C0-.114.826c.021.536.17.992%2C1.046%2C1.232a.341.341%2C0%2C0%2C1%2C.254.327l0%2C.026c0%2C.009.013.021%2C0%2C.041a.311.311%2C0%2C0%2C1-.15.291%2C1.208%2C1.208%2C0%2C0%2C0-.666%2C1.079%2C2.667%2C2.667%2C0%2C0%2C0%2C.734%2C1.491.333.333%2C0%2C0%2C1-.016.48.318.318%2C0%2C0%2C1-.468%2C0%22%20fill%3D%22%23be1823%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M44.908%2C129.819c2.826-2.384%2C4.3-4.835%2C3.946-8.12h.007a.03.03%2C0%2C0%2C0-.007-.021h.013l-.008-.007%2C0-.006h-.01l-.009-.007c.006%2C0%2C.005%2C0%2C.005%2C0l0%2C0v0c-.006%2C0-.006-.011-.006-.021l0%2C.012s-.006-.016-.011-.016l-.009.007c-2.031-2.6-5.419-3.242-8.487-3.073a42.84%2C42.84%2C0%2C0%2C0-13.67%2C3.609l.011.026c-.612.546-1.326%2C3.669-.364%2C6.563l-1.279.206a3.844%2C3.844%2C0%2C0%2C0-3.582-.12l-14.6%2C5.99a3.66%2C3.66%2C0%2C0%2C0-1.806%2C4.57H5.034c0%2C.007.007.013.007.019l.006.011%2C0%2C0h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C.008h0l0%2C.008s0%2C0%2C0%2C.013h0s0%2C0%2C.012.01l0%2C0a3.722%2C3.722%2C0%2C0%2C0%2C4.771%2C1.9l14.638-5.885a3.724%2C3.724%2C0%2C0%2C0%2C2.2-2.46l1.061-.748c1.327%2C2.745%2C4.013%2C4.484%2C4.832%2C4.449l.011.022a45.916%2C45.916%2C0%2C0%2C0%2C12.32-6.937M8.961%2C141.077a5.6%2C5.6%2C0%2C0%2C1-2.126-5.422.257.257%2C0%2C0%2C1%2C.3-.207.253.253%2C0%2C0%2C1%2C.2.295%2C5.1%2C5.1%2C0%2C0%2C0%2C1.934%2C4.929.254.254%2C0%2C0%2C1-.308.405m15.812-6.738a.254.254%2C0%2C1%2C1-.307.405%2C5.6%2C5.6%2C0%2C0%2C1-2.126-5.424.255.255%2C0%2C1%2C1%2C.5.09%2C5.1%2C5.1%2C0%2C0%2C0%2C1.931%2C4.929m1.312-1.235a.253.253%2C0%2C0%2C1-.358-.027%2C5.51%2C5.51%2C0%2C0%2C1-.939-1.529l0-.009a5.527%2C5.527%2C0%2C0%2C1-.415-1.967.253.253%2C0%2C1%2C1%2C.506-.011%2C5.064%2C5.064%2C0%2C0%2C0%2C1.235%2C3.185.255.255%2C0%2C0%2C1-.027.358%22%20fill%3D%22%236b912e%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
#block-homebottomtext h2,
#block-homebottomtext .summary {
  color: #aa8f00;
}
#block-homebottomtext h2 {
  display: block;
  width: 100%;
}
#block-homebottomtext .summary {
  -webkit-font-smoothing: antialiased;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.35em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.4em;
}
@media only screen and (max-width: 79.5rem) {
  #block-homebottomtext .summary {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 61.5rem) {
  #block-homebottomtext .summary {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 39rem) {
  #block-homebottomtext .summary {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-homebottomtext .summary {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 43.5625rem) {
  #block-homebottomtext .summary {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }
}
@media only screen and (min-width: 48.0625rem) {
  #block-homebottomtext .text_banner {
    padding-left: 6.2636562272%;
    padding-right: 6.2636562272%;
  }
}
@media only screen and (min-width: 25.5625rem) and (max-width: 48rem) {
  #block-homebottomtext .text_banner {
    padding-left: 4.6680071288%;
    padding-right: 4.6680071288%;
  }
}
@media only screen and (max-width: 34.5rem) {
  #block-homebottomtext .of_circle_image {
    width: 10rem;
  }
}

/* 	Search page
*********************************** */
body.path--search .search-form .container-inline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 1rem;
}
body.path--search .search-form .container-inline .form-item {
  display: block;
  flex-grow: 1;
  margin-right: 1rem;
  margin-bottom: 0;
}
body.path--search .search-form .container-inline .form-item label {
  display: block;
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 39rem) {
  body.path--search .search-form .container-inline .form-item label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  body.path--search .search-form .container-inline .form-item label {
    font-size: 1.1875rem;
  }
}
body.path--search .search-form .container-inline .form-item input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: white;
  border: 0;
  padding-left: 1em;
  padding-right: 0.7em;
  margin-bottom: 0 !important;
  -webkit-appearance: none;
}
body.path--search .search-form .container-inline #edit-submit {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2em;
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25em;
  font-style: normal;
  font-size: 1.375rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23b1953a%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1.2em auto;
  padding: 0;
  border: 0;
  margin: 0 !important;
}
@media only screen and (max-width: 39rem) {
  body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.1875rem;
  }
}
body.path--search .search-form .container-inline #edit-submit:hover, body.path--search .search-form .container-inline #edit-submit:focus {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2224.998%22%20viewBox%3D%220%200%2025%2024.998%22%3E%0A%20%20%3Ctitle%3Eof%3C%2Ftitle%3E%0A%20%20%3Cpath%20d%3D%22M0%2C9.927a9.922%2C9.922%2C0%2C0%2C1%2C19.735-1.47%2C9.671%2C9.671%2C0%2C0%2C1-1.507%2C6.882.4.4%2C0%2C0%2C0%2C.067.609q3.049%2C3.026%2C6.081%2C6.07a1.7%2C1.7%2C0%2C0%2C1%2C.577%2C1.671%2C1.667%2C1.667%2C0%2C0%2C1-2.671.944%2C3.624%2C3.624%2C0%2C0%2C1-.348-.32q-3-3-5.994-6a.4.4%2C0%2C0%2C0-.608-.073A9.909%2C9.909%2C0%2C0%2C1%2C1.273%2C14.8%2C9.7%2C9.7%2C0%2C0%2C1%2C0%2C9.927m2.357-.011A7.554%2C7.554%2C0%2C1%2C0%2C9.931%2C2.375%2C7.532%2C7.532%2C0%2C0%2C0%2C2.357%2C9.916%22%20fill%3D%22%23262a34%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
  -webkit-font-smoothing: antialiased;
  color: #aa8f00;
  font-family: poppins, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3em;
  font-style: normal;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
@media only screen and (max-width: 48rem) {
  body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 39rem) {
  body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 25.5rem) {
  body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 21rem) {
  body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 34.5rem) {
  body.path--search .search-form .container-inline .form-item input,
body.path--search .search-form .container-inline #edit-submit {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
  }
  body.path--search .search-form .container-inline .form-item input {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

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