/**
 * @section Normalize.css
 * Normalize.css base with custom code.
 * Additional normalize styles incorporated throughout components.
 * @link http://necolas.github.io/normalize.css/
 */
/**
 * Remove the tap delay in webkit
 * @link https://medium.com/@adactio/delay-a9df9edceef3#.7dmbl3xow
 */
a,
.link-block-styled,
button,
input,
select,
textarea,
label,
summary {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/**
 * Add box sizing to everything
 * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * 1. Force scrollbar display to prevent jumping on pages.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

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

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

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

/**
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

/**
 * Prevent img and video elements from spilling outside of the page on smaller screens.
 */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Prevent iframe, object, and embed elements from spilling outside of the page on smaller screens.
 * height: auto causes iframes to smush, so it's omitted here.
 */
iframe,
object,
embed {
  max-width: 100%;
}

/**
 * Hide the template element in IE, Safari, and Firefox < 22.
 */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Prevents IE from making scaled images look like crap
 */
img {
  border-style: none;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

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

/**
 * Address inconsistent margin.
 */
figure {
  margin: 0;
}

/**
 * @workaround Remove focus from <main> element when using tabindex="-1" hack for skipnav link
 * @link https://code.google.com/p/chromium/issues/detail?id=37721
 */
[tabindex="-1"]:focus {
  outline: none;
}

/**
 * @section Grid
 * Structure and layout
 */
/**
 * Base grid styles: single column
 */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 75em;
  width: 88%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/**
 * Alignment
 */
/* Float content to the top */
.row-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* Float content in the middle */
.row-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Push content to the bottom */
.row-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* Move content to the start of the row */
.row-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* Float content in the center of the row */
.row-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Move content to the end of the row */
.row-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* Add even spacing around each item */
.row-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* Add even spacing between items */
.row-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Reverse content order */
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid-fourth,
.grid-third,
.grid-half,
.grid-two-thirds,
.grid-three-fourths,
.grid-full,
.grid-auto {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-left: 1.4%;
  padding-right: 1.4%;
}

/**
 * Add columns to grid on bigger screens
 */
@media (min-width: 20em) {
  .row.row-start-xsmall {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .row-wrap.row-start-xsmall {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .row-start-xsmall .grid-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .row-start-xsmall .grid-fourth {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .row-start-xsmall .grid-third {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .row-start-xsmall .grid-half {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .row-start-xsmall .grid-two-thirds {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .row-start-xsmall .grid-three-fourths {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .row-start-xsmall .grid-full {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .row-start-xsmall .grid-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .row-start-xsmall .grid-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 30em) {
  .row.row-start-small {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .row-wrap.row-start-small {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .row-start-small .grid-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .row-start-small .grid-fourth {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .row-start-small .grid-third {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .row-start-small .grid-half {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .row-start-small .grid-two-thirds {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .row-start-small .grid-three-fourths {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .row-start-small .grid-full {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .row-start-small .grid-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .row-start-small .grid-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 40em) {
  .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .row-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .grid-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .grid-fourth {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .grid-third {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .grid-half {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .grid-two-thirds {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .grid-three-fourths {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .grid-full {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .offset-fourth {
    margin-left: 25%;
  }

  .offset-third {
    margin-left: 33.33333%;
  }

  .offset-half {
    margin-left: 50%;
  }

  .offset-two-thirds {
    margin-left: 66.66667%;
  }

  .offset-three-fourths {
    margin-left: 75%;
  }

  .offset-full {
    margin-left: 100%;
  }

  .grid-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .grid-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/**
 * @section Typography
 * Sets font styles for entire site
 */
body {
  background: #ffffff;
  color: #434343;
  font-family: Lato, "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
}

@media (min-width: 40em) {
  body {
    line-height: 1.5625;
  }
}

p {
  margin: 0 0 1em;
}

/**
 * Hyperlink styling
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a,
.link-block-styled {
  color: #2f6d2f;
  font-weight: 800;
  text-decoration: underline;
  -webkit-text-decoration-skip: objects;
  text-decoration-skip: objects;
  /* 2 */
  word-wrap: break-word;
  /**
	 * Improve readability when focused and also mouse hovered in all browsers.
	 */
}

a:active,
.link-block-styled:active,
a:hover,
.link-block-styled:hover,
.link-block:hover .link-block-styled {
  outline: 0;
}

a:active,
.link-block-styled:active,
a:focus,
.link-block-styled:focus,
a:hover,
.link-block-styled:hover,
.link-block:hover .link-block-styled {
  color: #005580;
  text-decoration: underline;
}

a.noline,
.noline.link-block-styled,
a:hover.noline,
.link-block-styled:hover.noline,
.link-block:hover .noline.link-block-styled {
  text-decoration: none;
}

/**
 * Creates block-level links
 */
a.link-block,
.link-block.link-block-styled {
  color: #434343;
  display: block;
  text-decoration: none;
}

/**
 * List styling
 */
ul,
ol {
  margin: 0 0 1em 2em;
  padding: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

dl,
dd {
  margin: 0;
  padding: 0;
}

dd {
  margin-bottom: 1em;
}

dt {
  font-weight: bold;
}

/**
 * @bugfix Prevent webkit from removing list semantics
 * 1. Add a non-breaking space
 * 2. Make sure it doesn't mess up the DOM flow
 */
.list-unstyled,
.list-inline {
  list-style: none;
}

.list-unstyled > li:before,
.list-inline > li:before {
  content: "\200B";
  /* 1 */
  position: absolute;
  /* 2 */
}

/**
 * Removes list styling.
 * For semantic reasons, should only be used on unordered lists.
 */
.list-unstyled {
  margin-left: 0;
}

/**
 * Display lists on a single line.
 */
.list-inline {
  margin-left: -0.5em;
  margin-right: -0.5em;
  padding: 0;
}

.list-inline > li {
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/**
 * Heading styling for h1 through h6 elements.
 * Heading class lets you use one heading type for semantics, but style it as another heading type.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 1em;
  padding: 1em 0 0;
  word-wrap: break-word;
}

h1,
.h1 {
  font-size: 1.5em;
  padding-top: 0.5em;
}

@media (min-width: 40em) {
  h1,
  .h1 {
    font-size: 1.75em;
  }
}

h2,
.h2 {
  font-size: 1.3125em;
}

h3,
.h3 {
  font-size: 1.1875em;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-size: 1em;
}

h4,
.h4 {
  text-transform: uppercase;
}

/**
 * Lines, Quotes and Emphasis
 */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 0 solid transparent;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  margin: 2em auto;
  overflow: visible;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

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

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

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

/**
 * Blockquotes
 */
blockquote {
  font-size: 1.1875em;
  font-style: italic;
  margin: 0 0 1em;
  padding-left: 0.8421052632em;
  padding-right: 0.8421052632em;
}

blockquote cite {
  color: #676767;
  font-size: 0.8421052632em;
  padding-top: 1em;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

/**
 * @section Code
 * Styling for code and preformatted text.
 */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 0.875em;
}

code {
  background-color: #dedede;
  color: #dd1144;
  padding: 0.25em;
  word-wrap: break-word;
}

pre {
  background-color: #dbdbdb;
  display: block;
  line-height: 1.5;
  margin-bottom: 1em;
  overflow: auto;
  padding: 0.8125em;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  white-space: pre-wrap;
  word-break: break-all;
}

pre code {
  background-color: transparent;
  border: 0;
  color: inherit;
  font-size: 1em;
  padding: 0;
}

/**
 * @section Buttons
 * Styling for CSS buttons.
 */
/**
 * Primary buttons
 */
.btn {
  background-color: #2f6d2f;
  border: 1px solid #2f6d2f;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9375em;
  font-weight: normal;
  line-height: 1.2;
  margin-right: 0.3125em;
  margin-bottom: 0.3125em;
  padding: 0.5em 0.6875em;
  text-decoration: none;
  white-space: normal;
}

.btn:hover,
.btn:active,
.btn.active {
  background-color: #183818;
  border-color: #183818;
  color: #ffffff;
  text-decoration: none;
}

/**
 * Secondary buttons
 */
.btn-secondary {
  background-color: #676767;
  border-color: #676767;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #414141;
  border-color: #414141;
}

/**
 * Active state
 */
.btn:active,
.btn.active {
  -webkit-box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15),
    0 1px 0.15625em rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15),
    0 1px 0.15625em rgba(0, 0, 0, 0.05);
  outline: 0;
}

/**
 * Disabled state
 */
.btn[disabled] {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/**
 * Button size
 */
.btn-large {
  font-size: 1em;
  line-height: normal;
  padding: 0.6875em 0.9375em;
}

/**
 * Block-level buttons
 */
.btn-block,
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  display: block;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
}

/**
 * General styles
 */
.btn,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  /**
	 * @workaround Override default button styling
	 * @affected Webkit/Firefox
	 */
  -webkit-appearance: none;
}

/**
 * Remove right margin on last element and inputs
 */
.btn:last-child,
input.btn {
  margin-right: 0;
}

/**
 * @section Forms
 * Styling for form elements.
 */
form,
fieldset {
  margin-bottom: 1em;
}

fieldset {
  border: 0;
  padding: 0;
}

legend,
label {
  display: block;
  font-weight: normal;
  margin: 0 0 0.3125em;
  padding: 0;
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: #717171;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  padding: 0.3125em;
}

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

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

input,
textarea,
select {
  border: 1px solid #9f9f9f;
  display: block;
  line-height: 1.5;
  margin-bottom: 1.1875em;
  width: 100%;
}

@media (min-width: 40em) {
  input,
  textarea,
  select {
    line-height: 1.5625;
  }
}

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

form button,
form .button {
  margin-bottom: 1.1875em;
}

textarea {
  height: 12em;
  overflow: auto;
}

[type="image"],
[type="checkbox"],
[type="radio"] {
  cursor: pointer;
  display: inline-block;
  height: auto;
  margin-bottom: 0.3125em;
  padding: 0;
  width: auto;
}

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

input:focus,
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 0.5em rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 0.5em rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9;
}

[type="file"]:focus,
[type="checkbox"]:focus,
select:focus {
  outline: thin dotted;
  outline: 0.3125em auto -webkit-focus-ring-color;
  outline-offset: -0.125em;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Inline inputs
 */
.input-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

/**
 * Condensed inputs
 */
.input-condensed {
  padding: 1px 0.3125em;
  font-size: 0.9375em;
}

/**
 * Search
 */
/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

/**
 * Create rounded search bar
 */
.input-search {
  width: 85%;
  padding-left: 0.9375em;
  padding-right: 2.5em;
  border-radius: 1.3125em;
  -webkit-transition: width 300ms ease-in;
  transition: width 300ms ease-in;
}

@media (min-width: 40em) {
  .input-search {
    width: 65%;
  }
}

/**
 * Special styling for search icon as button
 */
.btn-search {
  display: inline;
  color: #676767;
  border: none;
  background: none;
  margin-left: -2.5em;
  margin-bottom: 0;
}

.btn-search .icon {
  fill: #676767;
}

.btn-search:hover {
  color: #414141;
}

.btn-search:hover .icon {
  fill: #414141;
}

/**
 * @section Tables
 * Styling for tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1em;
  max-width: 100%;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 0.5em;
}

th {
  border-bottom: 0.125em solid #cccccc;
  font-weight: bold;
  vertical-align: bottom;
}

td {
  border-top: 1px solid #cccccc;
  vertical-align: top;
}

/**
 * Adds zebra striping
 */
.table-striped tbody tr:nth-child(odd) {
  background-color: #dedede;
}

/**
 * Reduces padding on condensed tables
 */
.table-condensed th,
.table-condensed td {
  padding: 0.25em;
}

/**
 * @section Overrides
 * Nudge and tweak alignment, spacing, and visibility.
 */
/**
 * Text sizes
 */
.text-small {
  font-size: 0.9375em;
}

.text-large {
  font-size: 1.1875em;
  line-height: 1.4;
}

@media (min-width: 40em) {
  .text-large {
    font-size: 1.3125em;
  }
}

/**
 * Text colors
 */
.text-muted {
  color: #676767;
}

/**
 * Text alignment
 */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (min-width: 40em) {
  .text-right-medium {
    text-align: right;
  }
}

/**
 * Floats
 */
.float-left {
  float: left;
}

.float-center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
}

/**
 * Margins
 */
.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.margin-top {
  margin-top: 1em;
}

.margin-bottom {
  margin-bottom: 1em;
}

.margin-bottom-small {
  margin-bottom: 0.5em;
}

.margin-bottom-large {
  margin-bottom: 2em;
}

/**
 * Padding
 */
.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.padding-top {
  padding-top: 1em;
}

.padding-top-small {
  padding-top: 0.5em;
}

.padding-top-large {
  padding-top: 2em;
}

.padding-bottom {
  padding-bottom: 1em;
}

.padding-bottom-small {
  padding-bottom: 0.5em;
}

.padding-bottom-large {
  padding-bottom: 2em;
}

/**
 * Visibility
 */
/*
 * Hide only visually, but have it available for screen readers:
 * @link https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  /* 1 */
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard
 * @link https://www.drupal.org/node/897638
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/**
 * @workaround
 * @affected IE 8/9/10
 * @link http://juicystudio.com/article/screen-readers-display-none.php
 */
[hidden],
template {
  display: none;
  visibility: hidden;
}

/**
 * Contain floats
 * The space content is one way to avoid an Opera bug when the `contenteditable` attribute is included anywhere else in the document.
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 */
.clearfix:before,
.container:before,
.clearfix:after,
.container:after {
  display: table;
  content: " ";
}

.clearfix:after,
.container:after {
  clear: both;
}

/**
 * @section Print
 * Styling for printed content. Adapted from HTML5BP.
 * @link http://html5boilerplate.com
 */
@media print {
  /**
	 * Universal selector.
	 * Reset all content to transparent background, black color, and remove box and text shadows.
	 */
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /**
	 * Specifies page margin
	 */
  @page {
    margin: 0.5cm;
  }

  /**
	 * Underline all links
	 */
  a,
  .link-block-styled,
  a:visited,
  .link-block-styled:visited {
    text-decoration: underline;
  }

  /**
	 * Show URL after links
	 */
  a[href]:after,
  .link-block-styled[href]:after {
    content: " (" attr(href) ")";
  }

  /**
	 * Don't show URL for internal links
	 */
  a[href^="#"]:after,
  .link-block-styled[href^="#"]:after {
    content: "";
  }

  /**
	 * Specifies the minimum number of lines to print at the top and bottom of a page.
	 */
  p,
  h1,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /**
	 * Avoid inserting a page break after headers
	 */
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  /**
	 * Change border color on blockquotes and preformatted text.
	 * Avoid page breaks inside the content
	 */
  pre,
  blockquote {
    border-color: #999;
    page-break-inside: avoid;
  }

  /**
	 * Displayed as a table header row group
	 */
  thead {
    display: table-header-group;
  }

  /**
	 * Avoid inserting a page break inside table rows and images
	 */
  tr,
  img {
    page-break-inside: avoid;
  }
}

/* custom css */
body {
  color: #434343;
}

#topbar {
  background-color: #676767;
  color: #ffffff;
}

#topbar p {
  padding: 0.8125em 0 0.1875em;
}

.title a,
.title .link-block-styled {
  font-size: 1.375em;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 40em) {
  .title {
    text-align: center;
  }
}

.title a:hover,
.title .link-block-styled:hover,
.title .link-block:hover .link-block-styled,
.link-block:hover .title .link-block-styled {
  color: #f4f4f4;
}

.tagline {
  padding-top: 0.375em;
  float: right;
  font-size: 1em;
  font-style: italic;
  text-align: right;
}

@media (max-width: 40em) {
  .tagline {
    display: none;
  }
}

/* footer */
footer {
  background-color: #f4f4f4;
  border-top: 1px solid #cccccc;
  margin-top: 3em;
  padding: 2em 0;
}

footer p {
  font-size: 0.85em;
}

.follow {
  background-color: #f4f4f4;
  border: 1px solid #cccccc;
  padding: 0 1em;
  margin: 0 0 1em 0;
  font-size: 0.875em;
}

.follow:hover {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.follow-light {
  background-color: #fcfcfc;
  border: 1px solid #cccccc;
  padding: 0 1em;
  margin: 0 0 1em 0;
  font-size: 0.875em;
}

.follow-light:hover {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.follow-light > .specialBox {
  border-top: 0.25em #449d44 solid;
  padding: 0.315em 1em 1em;
}

.specialBox:hover {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.storymap {
  background-color: #ffffff;
}

.sideBox3 {
  margin-bottom: 2em;
  border-top: 0.1875em #449d44 solid;
  border-bottom: 0.0625em #cccccc dotted;
  padding: 1.5em 1.5em 0;
  font-size: 0.875em;
  background-color: #fcfcfc;
}

@media (min-width: 40em) {
  .sideBox3 {
    margin-bottom: 1em;
    border-left: 0.1875em #449d44 solid;
    border-top: none;
    border-bottom: none;
  }
}

.specialBox h5,
.sideBox3 h5 {
  margin-left: 0;
}

.last-column h2 {
  border-bottom: none;
}

.border {
  background: #fefefe;
  border-top: 1px #ededed solid;
  padding: 0.75em;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5em;
}

img.bordered {
  border: 1px #333333 solid;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figure {
  margin: 0.5em;
}

figcaption {
  font-size: 0.8em;
  color: #676767;
  line-height: 1.25em;
  text-align: left;
  padding-left: 1em;
}

.fifty {
  padding: 7px;
  -webkit-box-shadow: 0 1px 1px 1px #dedede;
  box-shadow: 0 1px 1px 1px #dedede;
  max-width: 60%;
  margin: 5px;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #676767;
  margin: 0 0 0.5em 0;
  font-weight: bold;
}

.green {
  color: #2f6d2f;
}

.green-bar {
  border-bottom: 0.125em solid #449d44;
}

h5,
.h5,
h6,
.h6 {
  text-transform: uppercase;
}

ul {
  list-style: outside;
  margin-left: 1.1em;
}

ul a,
ul .link-block-styled,
ul a:hover,
ul .link-block-styled:hover,
ul .link-block:hover .link-block-styled,
.link-block:hover ul .link-block-styled {
  text-decoration: none;
}

ul li.indent {
  margin-left: 1em;
}

.btn {
  background-color: #2f6d2f;
  border: 0.0725em solid #2f6d2f;
  border-radius: 4px;
}

.btn:hover {
  background-color: #46a246;
  border: 0.0725em solid #46a246;
}

/* breadcrumbs */
#breadcrumbs {
  font-size: 0.875em;
  margin-bottom: 0;
  text-align: right;
}

#breadcrumbs a,
#breadcrumbs .link-block-styled,
#breadcrumbs a:hover,
#breadcrumbs .link-block-styled:hover,
#breadcrumbs .link-block:hover .link-block-styled,
.link-block:hover #breadcrumbs .link-block-styled {
  text-decoration: none;
}

.text-tiny {
  font-size: 0.75em;
}

.text-small {
  font-size: 0.8125em;
}

.people {
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.table-25,
.table-50 {
  width: 33%;
}

@media (min-width: 40em) {
  .table-25 {
    width: 25%;
  }

  .table-50 {
    width: 50%;
  }
}

@media screen and (max-width: 30em) {
  .table-scroller {
    overflow-x: auto;
    width: 25em;
  }
}

th,
td {
  vertical-align: top;
}

.rule {
  padding-bottom: 1em;
  border-bottom: 1px solid #cccccc;
  min-width: 200px;
}

h5 {
  margin-left: 0.75em;
}

.specialBox h5,
.sideBox h5 {
  margin-left: 0;
}

.intro {
  font-family: Georgia, serif;
  color: #676767;
  font-size: 1.1875em;
  line-height: 1.4;
}

@media (min-width: 70em) {
  /* line 15, /Users/cferdinandi/Sites/kraken/src/sass/components/_overrides.scss */
  .text-large {
    font-size: 1.3125em;
  }
}

.gray {
  background-color: #cccccc;
}

h2,
.h2 {
  font-size: 1.5em;
  border-bottom: 0.0625em solid #cccccc;
  padding-bottom: 0.5em;
}

.headline {
  position: relative;
}

.headline:after {
  content: "";
  width: 12em;
  height: 0.25em;
  background-color: #449d44;
  position: absolute;
  bottom: -0.0625em;
}

.headline2 {
  position: relative;
}

.headline2:after {
  content: "";
  width: 4em;
  height: 0.25em;
  background-color: #cccccc;
  position: absolute;
  bottom: -0.0625em;
}

.headline2 h3,
.headline2 h4 {
  border-bottom: 0.0625em solid #cccccc;
  padding-bottom: 0.5em;
  padding-top: 1em;
}

.videos {
  font-weight: bold;
  margin-bottom: 0;
  padding-top: 0.5em;
}

.tag {
  margin-bottom: 0;
}

.events {
  padding: 0 0.75em;
}

.event {
  margin-bottom: 2em;
  border: 0.0625em solid #cccccc;
}

@media (min-width: 40em) {
  .event {
    border: none;
  }
}

.eventTime {
  text-align: center;
  padding: 1em 2em 1em 0;
  background-color: #f4f4f4;
}

@media (min-width: 40em) {
  .eventTime {
    text-align: right;
    background-color: #ffffff;
  }
}

.bigNo {
  font-size: 24px;
  color: #676767;
  margin-bottom: 0;
}

.biggerNo {
  font-size: 36px;
  color: #449d44;
  margin-top: -0.125em;
  margin-bottom: -0.125em;
  padding-bottom: 0;
}

.graybg {
  background-color: #ffffff;
}

@media (min-width: 40em) {
  .graybg {
    background-color: #f4f4f4;
  }
}

.bg-gray {
  background-color: #f4f4f4;
}

.pagemenu {
  padding-top: 1em;
  font-size: 0.9375em;
  text-align: center;
}

.pagemenu a,
.pagemenu .link-block-styled {
  padding-right: 1em;
  padding-left: 1em;
  text-decoration: none;
  display: inline-block;
}

.go-up {
  font-size: 0.825em;
  text-align: right;
}

.project_pix {
  display: block;
  margin: 0 auto;
  padding: 0.5em;
}

@media (min-width: 55em) {
  .project_pix {
    float: right;
  }
}

.staff {
  float: left;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

@media (min-width: 40em) {
  .staff {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.text-right-medium {
  text-align: left;
}

@media (min-width: 40em) {
  .text-right-medium {
    text-align: right;
  }
}

h3 a.collapse-toggle,
h3 .collapse-toggle.link-block-styled {
  display: block;
}

h3 .collapse-toggle:hover,
h3 .collapse-toggle.link-block-styled:hover,
h3 .link-block:hover .collapse-toggle.link-block-styled,
.link-block:hover h3 .collapse-toggle.link-block-styled {
  color: #449d44;
}

.feature {
  padding: 0;
}

.feature-text {
  background-color: #f4f4f4;
  border: 1px solid #cccccc;
  border-radius: 0.0725em;
  padding: 0.9375em;
}

.fill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.fill img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}

.last-column {
  border-left: none;
  border-bottom: 1px dotted #cccccc;
  margin-bottom: 2em;
}

@media (min-width: 40em) {
  .last-column {
    border-bottom: none;
    border-left: 1px dotted #cccccc;
    margin-bottom: 0;
    padding: 0 1em 1em 1em;
  }
}

.row-padding {
  padding-bottom: 0;
}

@media (min-width: 40em) {
  .row-padding {
    padding-bottom: 1em;
  }
}

.table-striped tbody tr:nth-child(odd) {
  background-color: #f4f4f4;
}

.special-notice {
  border: 2px #449d44 solid;
  padding: 1em;
  color: #2f6d2f;
  margin-bottom: 1em;
}

/*
*	Navigation Menu
*/
@font-face {
  font-family: "icons";
  src: url("../font/icons.eot?24804043");
  src: url("../font/icons.eot?24804043#iefix") format("embedded-opentype"),
    url("../font/icons.woff?24804043") format("woff"),
    url("../font/icons.ttf?24804043") format("truetype"),
    url("../font/icons.svg?24804043#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

#menutoggle {
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
  color: #434343;
  height: 3em;
  font: 1.1275em/2.8125em;
  text-align: left;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
}

#menutoggle span {
  display: none;
}

#menutoggle:after {
  display: inline-block;
  margin-right: 0;
  width: 1.125em;
  height: 2.8125em;
  line-height: 3em;
  content: "\e826";
  color: inherit;
  font-family: "icons";
  text-align: center;
  font-size: 1.3125em;
  /* vertical-align: 0%; */
}

#menutoggle.is-active:after {
  content: "\e844";
}

#menutoggle:hover,
#menutoggle:active,
#menutoggle.is-active {
  color: #2f6d2f;
}

#menutoggle {
  display: block;
}

#nav {
  clear: both;
  margin: 0;
  width: 100%;
  height: 0;
  overflow: visible;
  position: relative;
  z-index: 1000;
}

#nav ul {
  float: none;
  display: block;
  margin: 0;
  width: auto;
  opacity: 0;
  max-height: 0;
  background: #ffffff;
  overflow: hidden;
  border: 0;
  position: relative;
}

#nav #menutoggle.is-active + ul {
  max-height: 1000px;
  opacity: 1;
}

#nav li {
  display: block;
  margin: 0;
  padding: 0;
  height: auto;
  overflow: hidden;
  border: 0;
  border-top: 1px dotted #cccccc;
}

#nav li:first-child {
  border-top: 0;
}

#nav ul {
  border-bottom: 2px solid #cccccc;
}

#nav li.onmobile {
  display: block;
}

#nav a,
#nav .link-block-styled,
#nav span.submenu {
  float: none;
  display: block;
  margin: 0;
  padding: 0.5625em 1.25em;
  height: auto;
  color: #434343;
  line-height: 1.6em;
  text-align: left;
  font-size: 1em;
  font-weight: normal;
  border: 0;
  cursor: pointer;
}

#nav span.submenu:after {
  float: right;
  margin-left: 0.625em;
  width: 1em;
  height: inherit;
  content: "\e817";
  font-weight: bold;
  color: #434343;
  font-family: "icons";
  text-align: center;
  font-size: 105%;
  vertical-align: top;
}

#nav span.submenu.is-active {
  border-bottom: 1px dotted #cccccc;
}

#nav span.submenu.is-active:after {
  content: "\e816";
  color: #449d44;
}

#nav ul.submenu {
  margin: 0;
  padding: 0;
  width: 100%;
  max-height: 0;
  background: none;
  opacity: 1;
  position: relative;
  top: 0;
  /* transition: max-height 0.15s linear 0s; */
}

#nav span.submenu.is-active + ul.submenu {
  max-height: 360px;
  overflow-y: auto;
}

#nav ul.submenu a,
#nav ul.submenu .link-block-styled {
  padding-left: 2.5em;
  background: none;
}

#nav a:hover,
#nav .link-block-styled:hover,
#nav .link-block:hover .link-block-styled,
.link-block:hover #nav .link-block-styled,
#nav a.is-active,
#nav .is-active.link-block-styled,
#nav li:hover span.submenu,
#nav ul.submenu a:hover,
#nav ul.submenu .link-block-styled:hover,
#nav ul.submenu .link-block:hover .link-block-styled,
.link-block:hover #nav ul.submenu .link-block-styled,
#nav ul.submenu a.is-active,
#nav ul.submenu .is-active.link-block-styled {
  color: #2f6d2f;
}

#nav ul.submenu li {
  border-left: 4px solid #ffffff;
}

#nav ul.submenu li:hover {
  border-left: 4px solid #449d44;
}

@media (min-width: 36em) {
  /* Small devices (landscape phones, 576px and up) */
  /*@media (min-width: 48em) { /* Medium devices (tablets, 768px and up) */
  #menutoggle {
    padding: 0 0.5em;
  }

  #menutoggle span {
    display: inline-block;
  }

  #menutoggle:before {
    margin-right: 0.625em;
  }
}

@media (min-width: 62em) {
  /* Large devices (desktops, 992px and up) */
  #menutoggle {
    display: none;
  }

  #menu {
    float: right;
  }

  #nav {
    height: 3em;
    background: #ffffff;
    position: relative;
    z-index: 99;
    border: 0;
  }

  #nav ul {
    display: block !important;
    float: left;
    width: 100%;
    height: auto;
    opacity: 1;
    margin: 0.25em 0;
    position: relative;
    z-index: 10;
    top: 0;
    overflow: visible;
    border: 0;
  }

  #nav li {
    float: left;
    margin: 0 0.3125em;
    padding: 0;
    height: 3em;
    width: auto;
    min-width: auto;
    position: relative;
    border: 0;
    overflow: visible;
  }

  #nav li:last-child {
    margin-right: 0.25em;
    border-right: 0;
  }

  #nav li.onmobile {
    display: none;
  }

  #nav a,
  #nav .link-block-styled,
  #nav span.submenu {
    float: right;
    margin: 0;
    padding: 0 0.875em;
    height: 2.3125em;
    border: 0;
    color: #434343;
    font-weight: normal;
    line-height: 2.4375em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
  }

  #nav span.submenu:after {
    display: none;
  }

  #nav a:hover,
  #nav .link-block-styled:hover,
  #nav .link-block:hover .link-block-styled,
  .link-block:hover #nav .link-block-styled,
  #nav a.is-active,
  #nav .is-active.link-block-styled,
  #nav li:hover span.submenu,
  #nav ul.submenu a:hover,
  #nav ul.submenu .link-block-styled:hover,
  #nav ul.submenu .link-block:hover .link-block-styled,
  .link-block:hover #nav ul.submenu .link-block-styled,
  #nav span.submenu.is-active {
    color: #449d44;
  }

  #nav li:hover {
    z-index: 11;
  }

  #nav ul.submenu {
    float: right;
    margin: 0;
    padding: 0;
    width: 325px;
    max-height: 0;
    position: absolute;
    opacity: 0;
    background: #ffffff;
    top: 95%;
    z-index: 10;
    overflow: hidden;
    overflow-y: auto;
  }

  #nav li:hover ul.submenu,
  #nav ul.submenu.is-active {
    padding: 0;
    right: 0;
    max-height: 360px;
    opacity: 1;
    border: 0.5px solid #cccccc;
  }

  #nav ul.submenu li {
    float: none;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    height: auto;
  }

  #nav ul.submenu a,
  #nav ul.submenu .link-block-styled {
    float: none;
    display: block;
    margin: 0;
    padding: 0.5em 0.875em 0.5em 1.75em;
    height: auto;
    text-transform: none;
    text-align: left;
    line-height: 1.5em;
    border-top: 1px dotted #cccccc;
  }

  #nav ul.submenu li:first-child a,
  #nav ul.submenu li:first-child .link-block-styled {
    border-top: 0;
  }

  #nav ul.submenu li {
    border-left: 4px solid #ffffff;
  }
}

/*!
 * Houdini v9.3.0: A simple collapse-and-expand script
 * (c) 2017 Chris Ferdinandi
 * MIT License
 * http://github.com/cferdinandi/houdini
 */
/**
 * Show/hide text
 */
/* line 4, /Users/cferdinandi/Sites/houdini/src/sass/components/_houdini.scss */
.js-houdini .active .collapse-text-show,
.collapse-text-hide {
  display: none;
  visibility: hidden;
}

/* line 10, /Users/cferdinandi/Sites/houdini/src/sass/components/_houdini.scss */
.js-houdini .active .collapse-text-hide {
  display: inline-block;
  visibility: visible;
}

/**
 * The content
 */
/* line 19, /Users/cferdinandi/Sites/houdini/src/sass/components/_houdini.scss */
.js-houdini .collapse {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 29, /Users/cferdinandi/Sites/houdini/src/sass/components/_houdini.scss */
.js-houdini .collapse.active {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* line 38, /Users/cferdinandi/Sites/houdini/src/sass/components/_houdini.scss */
.js-houdini .collapse:focus {
  outline: none;
}

span.collapse-text-show,
span.collapse-text-hide {
  font-size: 1.5em;
}

a.collapse-toggle,
.collapse-toggle.link-block-styled {
  text-decoration: none;
}

a.collapse-toggle:visited,
.collapse-toggle.link-block-styled:visited {
  color: #449d44;
}

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