@charset "UTF-8";
/**~
 *  master-web.scss
 *
 *  The master stylesheet for the web site. This file will likely be
 *  rather large as it contains all layout and style settings for
 *  every element. This should be used for development purposes.
 *  Smaller and lighter stylesheets should be developed with selected
 *  elements for productions.
 *
~**/
/**
 *  Table of Contents
 *
 *  TOOLS
 *      Add-ons
 *          Compass
 *      Mixins
 *          Global
 *              Breakpoints
 *          Web
 *              Flexbox
 *              Layout - sizes
 *      Variables
 *          Global
 *              Globals
 *              Colors
 *              Spacing
 *          Web
 *              Fonts
 *              Breakpoints
 *  CORE
 *      RESET
 *      DEFAULT
 *  BASE
 *      Main
 *      Links
 *      Media
 *      Spacing
 *      Text
 *  STRUCTURE
 *      Layout
 *          Grid
 *          Positions
 *          Page
 *          Header
 *      Navigation main
 *  OBJECTS
 *      Buttons

 *      Images
 *          Image containers
 *          Logos
 *      Lists
 *          Global
 *          Web
 *      Media
 *      Navigation
 *          Breadcrumbs
 *      Panels
 *      Text
 *          Quotes
 *      MOLECULES
 *          Tiles
 *          Hero
 *      ORGANISMS
 *          Cards
 *      Themes
**/
/********************************************************************    TOOLS
\********************************************************************/
/** Mixins **/
/*  Break Points
    Provide either a variable size or specific width to set a 
    max/min break point.
    Usage: @include bp-min(width);
*/
/**~
 *  _layout-sizes.scss
 *
 *  Mixin helper for building layout size classes.
 *
~**/
/** Variables **/
/**~
 *  _globals.scss
 *
 *  Global variables
~**/
/**~
 *  _colors.scss
 *
 *  Color variables to use throughout the stylesheets
 *
**/
/** Base colors **/
/** Accent colors **/
/** Secondary colors **/
/** Tints **/
/*** LEGACY ***/
/**~
 *  _spacing.scss
 *
 *  Global variables for spacing of elements (line-height, margin and padding)
 *
~**/
/**~
 *  _font.scss
 *
 *  Font variables
 *
~**/
@import url("//fast.fonts.net/cssapi/37aa2b38-69b1-444c-a18a-9fd2ba4ac1ce.css");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
/**~
 *  _breakpoints.scss
 *
 *  Web specific breakpoint variables
 *
~**/
/********************************************************************    CORE
\********************************************************************/
/** RESET **/
/**~
 *  _reset.scss
~**/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/** DEAFULT **/
/**~
 *  scss/web/core/_default.scss
~**/
small {
  font-size: 0.75em;
}

sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/** PRINT **/
@media print {
  #lynn-nav-header,
  .lynn-panel--footer {
    display: none !important;
  }
  .lynn-logo.lynn-image-replace span {
    display: none !important;
  }
  .lynn-page-header .lynn-logo {
    height: auto;
    text-indent: 0 !important;
    width: auto;
  }
  .print-hidden {
    display: none !important;
  }
}

/********************************************************************    BASE
\********************************************************************/
/*--------------------*	Main
\*--------------------*/
.lynn-body {
  background-color: white;
  background-image: none;
  background-repeat: no-repeat;
  color: #63666a;
  font: 100%/1.25 "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.lynn-body {
  -webkit-font-smooting: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* Fix for `lynn-content-asset--full` */
html,
body {
  overflow-x: hidden;
}

a {
  color: #003da5;
  text-decoration: none;
}

a:active, a:focus, a:hover {
  color: #4d77c0;
}

a, button {
  cursor: pointer;
}

/** Media **/
/**~
 *  _images.scss
 *
~**/
/** Responsive images **/
video, object, .lynn-media__figure img, .lynn-card__figure img {
  display: block;
  width: 100%;
}

figure {
  margin-bottom: 1rem;
}

iframe {
  margin-bottom: 1rem;
}

/* Flexible media*/
video, object {
  height: auto;
}

/** Spacing **/
/**~
 *  _spacing.scss
~**/
.lynn-m-bottom--none {
  margin-bottom: 0rem;
}

.lynn-m-bottom--eighth {
  margin-bottom: 0.125rem;
}

.lynn-m-bottom--quarter {
  margin-bottom: 0.25rem;
}

.lynn-m-bottom--half {
  margin-bottom: 0.5rem;
}

.lynn-m-bottom--three-fourths {
  margin-bottom: 0.75rem;
}

.lynn-m-bottom--seven-eighths {
  margin-bottom: 0.875rem;
}

.lynn-m-bottom--one {
  margin-bottom: 1rem;
}

.lynn-m-bottom--one-and-quarter {
  margin-bottom: 1.25rem;
}

.lynn-m-bottom--one-and-half {
  margin-bottom: 1.5rem;
}

.lynn-m-bottom--double {
  margin-bottom: 2rem;
}

.lynn-m-bottom--triple {
  margin-bottom: 3rem;
}

.lynn-m-bottom--quadruple {
  margin-bottom: 4rem;
}

.lynn-m-left--none {
  margin-left: 0rem;
}

.lynn-m-left--eighth {
  margin-left: 0.125rem;
}

.lynn-m-left--quarter {
  margin-left: 0.25rem;
}

.lynn-m-left--half {
  margin-left: 0.5rem;
}

.lynn-m-left--three-fourths {
  margin-left: 0.75rem;
}

.lynn-m-left--seven-eighths {
  margin-left: 0.875rem;
}

.lynn-m-left--one {
  margin-left: 1rem;
}

.lynn-m-left--one-and-quarter {
  margin-left: 1.25rem;
}

.lynn-m-left--one-and-half {
  margin-left: 1.5rem;
}

.lynn-m-left--double {
  margin-left: 2rem;
}

.lynn-m-left--triple {
  margin-left: 3rem;
}

.lynn-m-left--quadruple {
  margin-left: 4rem;
}

.lynn-m-right--none {
  margin-right: 0rem;
}

.lynn-m-right--eighth {
  margin-right: 0.125rem;
}

.lynn-m-right--quarter {
  margin-right: 0.25rem;
}

.lynn-m-right--half {
  margin-right: 0.5rem;
}

.lynn-m-right--three-fourths {
  margin-right: 0.75rem;
}

.lynn-m-right--seven-eighths {
  margin-right: 0.875rem;
}

.lynn-m-right--one {
  margin-right: 1rem;
}

.lynn-m-right--one-and-quarter {
  margin-right: 1.25rem;
}

.lynn-m-right--one-and-half {
  margin-right: 1.5rem;
}

.lynn-m-right--double {
  margin-right: 2rem;
}

.lynn-m-right--triple {
  margin-right: 3rem;
}

.lynn-m-right--quadruple {
  margin-right: 4rem;
}

.lynn-m-top--none {
  margin-top: 0rem;
}

.lynn-m-top--eighth {
  margin-top: 0.125rem;
}

.lynn-m-top--quarter {
  margin-top: 0.25rem;
}

.lynn-m-top--half {
  margin-top: 0.5rem;
}

.lynn-m-top--three-fourths {
  margin-top: 0.75rem;
}

.lynn-m-top--seven-eighths {
  margin-top: 0.875rem;
}

.lynn-m-top--one {
  margin-top: 1rem;
}

.lynn-m-top--one-and-quarter {
  margin-top: 1.25rem;
}

.lynn-m-top--one-and-half {
  margin-top: 1.5rem;
}

.lynn-m-top--double {
  margin-top: 2rem;
}

.lynn-m-top--triple {
  margin-top: 3rem;
}

.lynn-m-top--quadruple {
  margin-top: 4rem;
}

.lynn-m-horizontal--none {
  margin-left: 0rem;
  margin-right: 0rem;
}

.lynn-m-horizontal--eighth {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.lynn-m-horizontal--quarter {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.lynn-m-horizontal--half {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.lynn-m-horizontal--three-fourths {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.lynn-m-horizontal--seven-eighths {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.lynn-m-horizontal--one {
  margin-left: 1rem;
  margin-right: 1rem;
}

.lynn-m-horizontal--one-and-quarter {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.lynn-m-horizontal--one-and-half {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.lynn-m-horizontal--double {
  margin-left: 2rem;
  margin-right: 2rem;
}

.lynn-m-horizontal--triple {
  margin-left: 3rem;
  margin-right: 3rem;
}

.lynn-m-horizontal--quadruple {
  margin-left: 4rem;
  margin-right: 4rem;
}

.lynn-m-vertical--none {
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.lynn-m-vertical--eighth {
  margin-bottom: 0.125rem;
  margin-top: 0.125rem;
}

.lynn-m-vertical--quarter {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.lynn-m-vertical--half {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.lynn-m-vertical--three-fourths {
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.lynn-m-vertical--seven-eighths {
  margin-bottom: 0.875rem;
  margin-top: 0.875rem;
}

.lynn-m-vertical--one {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.lynn-m-vertical--one-and-quarter {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

.lynn-m-vertical--one-and-half {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.lynn-m-vertical--double {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.lynn-m-vertical--triple {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.lynn-m-vertical--quadruple {
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.lynn-m-around--none {
  margin: 0rem;
}

.lynn-m-around--eighth {
  margin: 0.125rem;
}

.lynn-m-around--quarter {
  margin: 0.25rem;
}

.lynn-m-around--half {
  margin: 0.5rem;
}

.lynn-m-around--three-fourths {
  margin: 0.75rem;
}

.lynn-m-around--seven-eighths {
  margin: 0.875rem;
}

.lynn-m-around--one {
  margin: 1rem;
}

.lynn-m-around--one-and-quarter {
  margin: 1.25rem;
}

.lynn-m-around--one-and-half {
  margin: 1.5rem;
}

.lynn-m-around--double {
  margin: 2rem;
}

.lynn-m-around--triple {
  margin: 3rem;
}

.lynn-m-around--quadruple {
  margin: 4rem;
}

.lynn-p-bottom--none {
  padding-bottom: 0rem;
}

.lynn-p-bottom--eighth {
  padding-bottom: 0.125rem;
}

.lynn-p-bottom--quarter {
  padding-bottom: 0.25rem;
}

.lynn-p-bottom--half {
  padding-bottom: 0.5rem;
}

.lynn-p-bottom--three-fourths {
  padding-bottom: 0.75rem;
}

.lynn-p-bottom--seven-eighths {
  padding-bottom: 0.875rem;
}

.lynn-p-bottom--one {
  padding-bottom: 1rem;
}

.lynn-p-bottom--one-and-quarter {
  padding-bottom: 1.25rem;
}

.lynn-p-bottom--one-and-half {
  padding-bottom: 1.5rem;
}

.lynn-p-bottom--double {
  padding-bottom: 2rem;
}

.lynn-p-bottom--triple {
  padding-bottom: 3rem;
}

.lynn-p-bottom--quadruple {
  padding-bottom: 4rem;
}

.lynn-p-left--none {
  padding-left: 0rem;
}

.lynn-p-left--eighth {
  padding-left: 0.125rem;
}

.lynn-p-left--quarter {
  padding-left: 0.25rem;
}

.lynn-p-left--half {
  padding-left: 0.5rem;
}

.lynn-p-left--three-fourths {
  padding-left: 0.75rem;
}

.lynn-p-left--seven-eighths {
  padding-left: 0.875rem;
}

.lynn-p-left--one {
  padding-left: 1rem;
}

.lynn-p-left--one-and-quarter {
  padding-left: 1.25rem;
}

.lynn-p-left--one-and-half {
  padding-left: 1.5rem;
}

.lynn-p-left--double {
  padding-left: 2rem;
}

.lynn-p-left--triple {
  padding-left: 3rem;
}

.lynn-p-left--quadruple {
  padding-left: 4rem;
}

.lynn-p-right--none {
  padding-right: 0rem;
}

.lynn-p-right--eighth {
  padding-right: 0.125rem;
}

.lynn-p-right--quarter {
  padding-right: 0.25rem;
}

.lynn-p-right--half {
  padding-right: 0.5rem;
}

.lynn-p-right--three-fourths {
  padding-right: 0.75rem;
}

.lynn-p-right--seven-eighths {
  padding-right: 0.875rem;
}

.lynn-p-right--one {
  padding-right: 1rem;
}

.lynn-p-right--one-and-quarter {
  padding-right: 1.25rem;
}

.lynn-p-right--one-and-half {
  padding-right: 1.5rem;
}

.lynn-p-right--double {
  padding-right: 2rem;
}

.lynn-p-right--triple {
  padding-right: 3rem;
}

.lynn-p-right--quadruple {
  padding-right: 4rem;
}

.lynn-p-top--none {
  padding-top: 0rem;
}

.lynn-p-top--eighth {
  padding-top: 0.125rem;
}

.lynn-p-top--quarter {
  padding-top: 0.25rem;
}

.lynn-p-top--half {
  padding-top: 0.5rem;
}

.lynn-p-top--three-fourths {
  padding-top: 0.75rem;
}

.lynn-p-top--seven-eighths {
  padding-top: 0.875rem;
}

.lynn-p-top--one {
  padding-top: 1rem;
}

.lynn-p-top--one-and-quarter {
  padding-top: 1.25rem;
}

.lynn-p-top--one-and-half {
  padding-top: 1.5rem;
}

.lynn-p-top--double {
  padding-top: 2rem;
}

.lynn-p-top--triple {
  padding-top: 3rem;
}

.lynn-p-top--quadruple {
  padding-top: 4rem;
}

.lynn-p-horizontal--none {
  padding-left: 0rem;
  padding-right: 0rem;
}

.lynn-p-horizontal--eighth {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.lynn-p-horizontal--quarter {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.lynn-p-horizontal--half {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.lynn-p-horizontal--three-fourths {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.lynn-p-horizontal--seven-eighths {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.lynn-p-horizontal--one {
  padding-left: 1rem;
  padding-right: 1rem;
}

.lynn-p-horizontal--one-and-quarter {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.lynn-p-horizontal--one-and-half {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lynn-p-horizontal--double {
  padding-left: 2rem;
  padding-right: 2rem;
}

.lynn-p-horizontal--triple {
  padding-left: 3rem;
  padding-right: 3rem;
}

.lynn-p-horizontal--quadruple {
  padding-left: 4rem;
  padding-right: 4rem;
}

.lynn-p-vertical--none {
  padding-bottom: 0rem;
  padding-top: 0rem;
}

.lynn-p-vertical--eighth {
  padding-bottom: 0.125rem;
  padding-top: 0.125rem;
}

.lynn-p-vertical--quarter {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}

.lynn-p-vertical--half {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.lynn-p-vertical--three-fourths {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.lynn-p-vertical--seven-eighths {
  padding-bottom: 0.875rem;
  padding-top: 0.875rem;
}

.lynn-p-vertical--one {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.lynn-p-vertical--one-and-quarter {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.lynn-p-vertical--one-and-half {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.lynn-p-vertical--double {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.lynn-p-vertical--triple {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.lynn-p-vertical--quadruple {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.lynn-p-around--none {
  padding: 0rem;
}

.lynn-p-around--eighth {
  padding: 0.125rem;
}

.lynn-p-around--quarter {
  padding: 0.25rem;
}

.lynn-p-around--half {
  padding: 0.5rem;
}

.lynn-p-around--three-fourths {
  padding: 0.75rem;
}

.lynn-p-around--seven-eighths {
  padding: 0.875rem;
}

.lynn-p-around--one {
  padding: 1rem;
}

.lynn-p-around--one-and-quarter {
  padding: 1.25rem;
}

.lynn-p-around--one-and-half {
  padding: 1.5rem;
}

.lynn-p-around--double {
  padding: 2rem;
}

.lynn-p-around--triple {
  padding: 3rem;
}

.lynn-p-around--quadruple {
  padding: 4rem;
}

/** Text **/
/**~
 *  _text.scss
~**/
.lynn-text-align--center {
  text-align: center;
}

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

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

@media screen and (min-width: 30em) {
  .lynn-text-align-s--center {
    text-align: center;
  }
  .lynn-text-align-s--left {
    text-align: left;
  }
  .lynn-text-align-s--right {
    text-align: right;
  }
}

@media screen and (max-width: 30em) {
  .lynn-text-align-s-max--center {
    text-align: center;
  }
  .lynn-text-align-s-max--left {
    text-align: left;
  }
  .lynn-text-align-s-max--right {
    text-align: right;
  }
}

@media screen and (min-width: 35em) {
  .lynn-text-align-m--center {
    text-align: center;
  }
  .lynn-text-align-m--left {
    text-align: left;
  }
  .lynn-text-align-m--right {
    text-align: right;
  }
}

@media screen and (max-width: 35em) {
  .lynn-text-align-m-max--center {
    text-align: center;
  }
  .lynn-text-align-m-max--left {
    text-align: left;
  }
  .lynn-text-align-m-max--right {
    text-align: right;
  }
}

@media screen and (min-width: 48em) {
  .lynn-text-align-l--center {
    text-align: center;
  }
  .lynn-text-align-l--left {
    text-align: left;
  }
  .lynn-text-align-l--right {
    text-align: right;
  }
}

@media screen and (max-width: 48em) {
  .lynn-text-align-l-max--center {
    text-align: center;
  }
  .lynn-text-align-l-max--left {
    text-align: left;
  }
  .lynn-text-align-l-max--right {
    text-align: right;
  }
}

@media screen and (min-width: 64em) {
  .lynn-text-align-xl--center {
    text-align: center;
  }
  .lynn-text-align-xl--left {
    text-align: left;
  }
  .lynn-text-align-xl--right {
    text-align: right;
  }
}

@media screen and (max-width: 64em) {
  .lynn-text-align-xl-max--center {
    text-align: center;
  }
  .lynn-text-align-xl-max--left {
    text-align: left;
  }
  .lynn-text-align-xl-max--right {
    text-align: right;
  }
}

@media screen and (min-width: 80em) {
  .lynn-text-align-xxl--center {
    text-align: center;
  }
  .lynn-text-align-xxl--left {
    text-align: left;
  }
  .lynn-text-align-xxl--right {
    text-align: right;
  }
}

@media screen and (max-width: 80em) {
  .lynn-text-align-xxl-max--center {
    text-align: center;
  }
  .lynn-text-align-xxl-max--left {
    text-align: left;
  }
  .lynn-text-align-xxl-max--right {
    text-align: right;
  }
}

@media screen and (min-width: 160em) {
  .lynn-text-align-jumbo--center {
    text-align: center;
  }
  .lynn-text-align-jumbo--left {
    text-align: left;
  }
  .lynn-text-align-jumbo--right {
    text-align: right;
  }
}

@media screen and (max-width: 160em) {
  .lynn-text-align-jumbo-max--center {
    text-align: center;
  }
  .lynn-text-align-jumbo-max--left {
    text-align: left;
  }
  .lynn-text-align-jumbo-max--right {
    text-align: right;
  }
}

.lynn-text-size--base {
  font-size: 1rem;
}

.lynn-text-size--three-fourths {
  font-size: 0.75em;
}

.lynn-text-size--seven-eighths {
  font-size: 0.875em;
}

.lynn-text-size--one-and-quarter {
  font-size: 1.25em;
}

.lynn-text-size--one-and-half {
  font-size: 1.5em;
}

.lynn-text-size--double {
  font-size: 2em;
}

.lynn-text-size--triple {
  font-size: 3em;
}

.lynn-rte p {
  margin: 1em 0;
}

.lynn-rte h1,
.lynn-rte h2,
.lynn-rte h3,
.lynn-rte h4,
.lynn-rte h5,
.lynn-rte h6 {
  margin-bottom: 1em;
}

.lynn-rte ul,
.lynn-rte ol {
  margin: 1em 0 1em 1em;
  padding-left: 1em;
}

.lynn-rte ul li,
.lynn-rte ol li {
  margin: .2em 0;
}

.lynn-rte ul {
  list-style: disc;
}

.lynn-rte ol {
  list-style: decimal;
}

.lynn-rte b,
.lynn-rte strong {
  font-weight: bold;
}

.lynn-rte i,
.lynn-rte em {
  font-style: italic;
}

.lynn-rte table {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.lynn-rte table tr {
  border-bottom: 1px solid #d0d1d2;
}

.lynn-rte table th,
.lynn-rte table td {
  padding: 0.5rem;
}

.lynn-rte table th {
  text-align: left;
  font-weight: bold;
}

.lynn-rte--table-right th,
.lynn-rte--table-right td {
  text-align: right;
}

.lynn-rte--table-right th:nth-child(1),
.lynn-rte--table-right td:nth-child(1) {
  text-align: left;
}

.lynn-rte .lynn-text-size--double {
  margin-bottom: 1em;
}

.lynn-content .lynn-content__primary-heading, .lynn-content .lynn-content__secondary-heading, .lynn-content .lynn-content__tertiary-heading, .lynn-content .lynn-content__title-heading {
  margin-top: 1em;
  font-weight: 300;
  line-height: 1.2;
}

.lynn-content__primary-heading {
  margin-bottom: 1em;
  font-size: 3em;
}

.lynn-content__secondary-heading {
  margin-bottom: .5em;
  font-size: 2em;
}

.lynn-content__tertiary-heading {
  margin-bottom: .5em;
  font-size: 1.5em;
}

.lynn-content__title-heading {
  font-size: 3em;
}

.lynn-content__text-strong {
  font-weight: 700;
  line-height: 1.6;
}

.lynn-content__text-emphasis {
  font-style: italic;
}

.lynn-content__text-nowrap {
  white-space: nowrap;
}

.lynn-content__text-blue {
  color: #003da5;
}

.lynn-content__blockquote {
  padding: 5px 0 5px 20px;
  border-left: 7px solid #d0d1d2;
  line-height: 1.6;
}

.lynn-content__quote-text {
  font-size: 2em;
  font-weight: 300;
  line-height: 1.2;
}

.lynn-content__caption, .lynn-content__attribution {
  margin: .5em 0;
  line-height: 1.6;
}

.lynn-content__img {
  margin: .5em 0 1em;
  display: block;
  max-width: 100%;
}

.lynn-content__img--center {
  margin: .5em auto 1em;
}

.lynn-content__embed {
  margin: .5em 0 1em;
}

.lynn-content .lynn-button {
  margin: 1em 0;
  line-height: 1.6;
}

.lynn-content .lynn-rte {
  margin-bottom: 2em;
  line-height: 1.6;
}

.lynn-content figcaption {
  font-size: 0.875em;
}

.lynn-content--primary, .lynn-content--secondary {
  line-height: 1.6;
}

.lynn-content--primary *:first-child, .lynn-content--secondary *:first-child {
  margin-top: 0;
}

.lynn-content--intro {
  font-size: 1.5em;
  margin: 1rem 0 4rem;
}

.lynn-content__table {
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.lynn-content__table tr {
  border-bottom: 1px solid #d0d1d2;
}

.lynn-content__table th,
.lynn-content__table td {
  padding: 0.5rem;
}

.lynn-content__table th {
  text-align: left;
  font-weight: bold;
}

@media screen and (max-width: 30em) {
  .lynn-content__table--directory {
    font-size: 0.75em;
  }
}

.lynn-content__table--space th,
.lynn-content__table--space td {
  padding: 2rem 0.5rem;
}

.lynn-content__table--top th,
.lynn-content__table--top td {
  vertical-align: top;
}

@media screen and (max-width: 30em) {
  .lynn-content__drop--s {
    display: none;
  }
}

@media screen and (min-width: 30em) {
  .lynn-content-asset--left {
    float: left;
    clear: left;
    margin: 0 1em 1em 0;
    width: 30%;
  }
  .lynn-content-asset--left img {
    max-width: 100%;
  }
}

@media screen and (min-width: 30em) {
  .lynn-content-asset--right {
    float: right;
    clear: right;
    margin: 0 0 1em 1em;
    width: 30%;
  }
  .lynn-content-asset--right img {
    max-width: 100%;
  }
}

@media screen and (min-width: 30em) {
  .lynn-content-asset--center {
    clear: both;
    margin: 1em auto;
  }
}

.lynn-content-asset--full {
  clear: both;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

.lynn-content-asset--full .lynn-content__img {
  margin: 0 auto;
  width: 100%;
}

.lynn-content-asset--full .lynn-content__caption {
  margin-left: auto;
  margin-right: auto;
  width: 64rem;
}

.lynn-table-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.lynn-table-wrapper--fixed {
  margin-left: 200px;
}

.lynn-table-wrapper--fixed tr {
  border-bottom: 0 !important;
}

.lynn-table-scrollable {
  overflow: auto;
  overflow-y: hidden;
}

.lynn-table-column--fixed {
  position: fixed;
  margin-left: -200px;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

/*****************************************************************************    STRUCTURE
\*****************************************************************************/
/**~
 *  _layout-grid.scss
 ~**/
.lynn-grid {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.lynn-grid--frame {
  min-height: 100vh;
  min-width: 100vw;
  overflow: hidden;
}

.lynn-grid--reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.lynn-grid--vertical {
  -ms-flex-direction: column;
  flex-direction: column;
}

.lynn-grid--vertical-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.lynn-grid--align-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.lynn-grid--align-space {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.lynn-grid--align-spread {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.lynn-grid--align-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.lynn-gi--padded {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.lynn-l-wrap {
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lynn-l-nowrap {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (min-width: 30em) {
  .lynn-l-nowrap--s {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 35em) {
  .lynn-l-nowrap--m {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 48em) {
  .lynn-l-nowrap--l {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 64em) {
  .lynn-l-nowrap--xl {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 80em) {
  .lynn-l-nowrap--xxl {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 160em) {
  .lynn-l-nowrap--jumbo {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/**~
 *  _layout-grid.scss
~**/
.lynn-l-pos-absolute {
  position: absolute;
}

.lynn-l-pos-fixed {
  position: fixed;
}

@media screen and (min-width: 30em) {
  .lynn-l-pos-fixed-s {
    position: fixed;
  }
}

@media screen and (min-width: 35em) {
  .lynn-l-pos-fixed-m {
    position: fixed;
  }
}

@media screen and (min-width: 48em) {
  .lynn-l-pos-fixed-l {
    position: fixed;
  }
}

@media screen and (min-width: 64em) {
  .lynn-l-pos-fixed-xl {
    position: fixed;
  }
}

@media screen and (min-width: 80em) {
  .lynn-l-pos-fixed-xxl {
    position: fixed;
  }
}

@media screen and (min-width: 160em) {
  .lynn-l-pos-fixed-jumbo {
    position: fixed;
  }
}

.lynn-l-pos-relative {
  position: relative;
}

.lynn-l-pos-static {
  position: static;
}

/**~
 *  _page-layout.scss
~**/
.lynn-l-size--1-of-1 {
  width: 100%;
}

.lynn-l-size--1-of-2 {
  width: 50%;
}

.lynn-l-size--2-of-2 {
  width: 100%;
}

.lynn-l-size--1-of-3 {
  width: 33.33333%;
}

.lynn-l-size--2-of-3 {
  width: 66.66667%;
}

.lynn-l-size--3-of-3 {
  width: 100%;
}

.lynn-l-size--1-of-4 {
  width: 25%;
}

.lynn-l-size--2-of-4 {
  width: 50%;
}

.lynn-l-size--3-of-4 {
  width: 75%;
}

.lynn-l-size--4-of-4 {
  width: 100%;
}

.lynn-l-size--1-of-5 {
  width: 20%;
}

.lynn-l-size--2-of-5 {
  width: 40%;
}

.lynn-l-size--3-of-5 {
  width: 60%;
}

.lynn-l-size--4-of-5 {
  width: 80%;
}

.lynn-l-size--5-of-5 {
  width: 100%;
}

.lynn-l-size--1-of-6 {
  width: 16.66667%;
}

.lynn-l-size--2-of-6 {
  width: 33.33333%;
}

.lynn-l-size--3-of-6 {
  width: 50%;
}

.lynn-l-size--4-of-6 {
  width: 66.66667%;
}

.lynn-l-size--5-of-6 {
  width: 83.33333%;
}

.lynn-l-size--6-of-6 {
  width: 100%;
}

.lynn-l-size--1-of-8 {
  width: 12.5%;
}

.lynn-l-size--2-of-8 {
  width: 25%;
}

.lynn-l-size--3-of-8 {
  width: 37.5%;
}

.lynn-l-size--4-of-8 {
  width: 50%;
}

.lynn-l-size--5-of-8 {
  width: 62.5%;
}

.lynn-l-size--6-of-8 {
  width: 75%;
}

.lynn-l-size--7-of-8 {
  width: 87.5%;
}

.lynn-l-size--8-of-8 {
  width: 100%;
}

.lynn-l-size--1-of-12 {
  width: 8.33333%;
}

.lynn-l-size--2-of-12 {
  width: 16.66667%;
}

.lynn-l-size--3-of-12 {
  width: 25%;
}

.lynn-l-size--4-of-12 {
  width: 33.33333%;
}

.lynn-l-size--5-of-12 {
  width: 41.66667%;
}

.lynn-l-size--6-of-12 {
  width: 50%;
}

.lynn-l-size--7-of-12 {
  width: 58.33333%;
}

.lynn-l-size--8-of-12 {
  width: 66.66667%;
}

.lynn-l-size--9-of-12 {
  width: 75%;
}

.lynn-l-size--10-of-12 {
  width: 83.33333%;
}

.lynn-l-size--11-of-12 {
  width: 91.66667%;
}

.lynn-l-size--12-of-12 {
  width: 100%;
}

@media screen and (max-width: 30em) {
  .lynn-l-size-s-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-s-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-s-max--2-of-2 {
    width: 100%;
  }
}

@media screen and (min-width: 30em) {
  .lynn-l-size-s--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-s--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-s--2-of-2 {
    width: 100%;
  }
}

@media screen and (max-width: 35em) {
  .lynn-l-size-m-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-m-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-m-max--2-of-2 {
    width: 100%;
  }
}

@media screen and (min-width: 35em) {
  .lynn-l-size-m--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-m--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-m--2-of-2 {
    width: 100%;
  }
}

@media screen and (max-width: 48em) {
  .lynn-l-size-l-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-l-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-l-max--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-l-max--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-l-max--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-l-max--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-l-max--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-l-max--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-l-max--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-l-max--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-l-max--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-l-max--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-l-max--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-l-max--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-l-max--5-of-5 {
    width: 100%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-l-size-l--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-l--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-l--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-l--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-l--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-l--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-l--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-l--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-l--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-l--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-l--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-l--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-l--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-l--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-l--5-of-5 {
    width: 100%;
  }
}

@media screen and (max-width: 64em) {
  .lynn-l-size-xl-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-xl-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-xl-max--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-xl-max--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-xl-max--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-xl-max--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-xl-max--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-xl-max--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-xl-max--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-xl-max--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-xl-max--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-xl-max--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-xl-max--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-xl-max--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-xl-max--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-xl-max--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-xl-max--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-xl-max--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-xl-max--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-xl-max--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-xl-max--6-of-6 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .lynn-l-size-xl--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-xl--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-xl--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-xl--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-xl--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-xl--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-xl--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-xl--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-xl--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-xl--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-xl--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-xl--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-xl--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-xl--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-xl--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-xl--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-xl--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-xl--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-xl--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-xl--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-xl--6-of-6 {
    width: 100%;
  }
}

@media screen and (max-width: 80em) {
  .lynn-l-size-xxl-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-xxl-max--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-xxl-max--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-xxl-max--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-xxl-max--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-xxl-max--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-xxl-max--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-xxl-max--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-xxl-max--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-xxl-max--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-xxl-max--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-xxl-max--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-xxl-max--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-xxl-max--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-xxl-max--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-xxl-max--6-of-6 {
    width: 100%;
  }
  .lynn-l-size-xxl-max--1-of-8 {
    width: 12.5%;
  }
  .lynn-l-size-xxl-max--2-of-8 {
    width: 25%;
  }
  .lynn-l-size-xxl-max--3-of-8 {
    width: 37.5%;
  }
  .lynn-l-size-xxl-max--4-of-8 {
    width: 50%;
  }
  .lynn-l-size-xxl-max--5-of-8 {
    width: 62.5%;
  }
  .lynn-l-size-xxl-max--6-of-8 {
    width: 75%;
  }
  .lynn-l-size-xxl-max--7-of-8 {
    width: 87.5%;
  }
  .lynn-l-size-xxl-max--8-of-8 {
    width: 100%;
  }
}

@media screen and (min-width: 80em) {
  .lynn-l-size-xxl--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-xxl--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-xxl--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-xxl--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-xxl--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-xxl--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-xxl--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-xxl--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-xxl--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-xxl--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-xxl--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-xxl--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-xxl--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-xxl--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-xxl--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-xxl--6-of-6 {
    width: 100%;
  }
  .lynn-l-size-xxl--1-of-8 {
    width: 12.5%;
  }
  .lynn-l-size-xxl--2-of-8 {
    width: 25%;
  }
  .lynn-l-size-xxl--3-of-8 {
    width: 37.5%;
  }
  .lynn-l-size-xxl--4-of-8 {
    width: 50%;
  }
  .lynn-l-size-xxl--5-of-8 {
    width: 62.5%;
  }
  .lynn-l-size-xxl--6-of-8 {
    width: 75%;
  }
  .lynn-l-size-xxl--7-of-8 {
    width: 87.5%;
  }
  .lynn-l-size-xxl--8-of-8 {
    width: 100%;
  }
}

@media screen and (max-width: 160em) {
  .lynn-l-size-jumbo-max--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-jumbo-max--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo-max--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo-max--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-jumbo-max--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-jumbo-max--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-jumbo-max--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-jumbo-max--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-jumbo-max--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-jumbo-max--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-jumbo-max--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-jumbo-max--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo-max--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-jumbo-max--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo-max--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-jumbo-max--6-of-6 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-8 {
    width: 12.5%;
  }
  .lynn-l-size-jumbo-max--2-of-8 {
    width: 25%;
  }
  .lynn-l-size-jumbo-max--3-of-8 {
    width: 37.5%;
  }
  .lynn-l-size-jumbo-max--4-of-8 {
    width: 50%;
  }
  .lynn-l-size-jumbo-max--5-of-8 {
    width: 62.5%;
  }
  .lynn-l-size-jumbo-max--6-of-8 {
    width: 75%;
  }
  .lynn-l-size-jumbo-max--7-of-8 {
    width: 87.5%;
  }
  .lynn-l-size-jumbo-max--8-of-8 {
    width: 100%;
  }
  .lynn-l-size-jumbo-max--1-of-12 {
    width: 8.33333%;
  }
  .lynn-l-size-jumbo-max--2-of-12 {
    width: 16.66667%;
  }
  .lynn-l-size-jumbo-max--3-of-12 {
    width: 25%;
  }
  .lynn-l-size-jumbo-max--4-of-12 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo-max--5-of-12 {
    width: 41.66667%;
  }
  .lynn-l-size-jumbo-max--6-of-12 {
    width: 50%;
  }
  .lynn-l-size-jumbo-max--7-of-12 {
    width: 58.33333%;
  }
  .lynn-l-size-jumbo-max--8-of-12 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo-max--9-of-12 {
    width: 75%;
  }
  .lynn-l-size-jumbo-max--10-of-12 {
    width: 83.33333%;
  }
  .lynn-l-size-jumbo-max--11-of-12 {
    width: 91.66667%;
  }
  .lynn-l-size-jumbo-max--12-of-12 {
    width: 100%;
  }
}

@media screen and (min-width: 160em) {
  .lynn-l-size-jumbo--1-of-1 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-2 {
    width: 50%;
  }
  .lynn-l-size-jumbo--2-of-2 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-3 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo--2-of-3 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo--3-of-3 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-4 {
    width: 25%;
  }
  .lynn-l-size-jumbo--2-of-4 {
    width: 50%;
  }
  .lynn-l-size-jumbo--3-of-4 {
    width: 75%;
  }
  .lynn-l-size-jumbo--4-of-4 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-5 {
    width: 20%;
  }
  .lynn-l-size-jumbo--2-of-5 {
    width: 40%;
  }
  .lynn-l-size-jumbo--3-of-5 {
    width: 60%;
  }
  .lynn-l-size-jumbo--4-of-5 {
    width: 80%;
  }
  .lynn-l-size-jumbo--5-of-5 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-6 {
    width: 16.66667%;
  }
  .lynn-l-size-jumbo--2-of-6 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo--3-of-6 {
    width: 50%;
  }
  .lynn-l-size-jumbo--4-of-6 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo--5-of-6 {
    width: 83.33333%;
  }
  .lynn-l-size-jumbo--6-of-6 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-8 {
    width: 12.5%;
  }
  .lynn-l-size-jumbo--2-of-8 {
    width: 25%;
  }
  .lynn-l-size-jumbo--3-of-8 {
    width: 37.5%;
  }
  .lynn-l-size-jumbo--4-of-8 {
    width: 50%;
  }
  .lynn-l-size-jumbo--5-of-8 {
    width: 62.5%;
  }
  .lynn-l-size-jumbo--6-of-8 {
    width: 75%;
  }
  .lynn-l-size-jumbo--7-of-8 {
    width: 87.5%;
  }
  .lynn-l-size-jumbo--8-of-8 {
    width: 100%;
  }
  .lynn-l-size-jumbo--1-of-12 {
    width: 8.33333%;
  }
  .lynn-l-size-jumbo--2-of-12 {
    width: 16.66667%;
  }
  .lynn-l-size-jumbo--3-of-12 {
    width: 25%;
  }
  .lynn-l-size-jumbo--4-of-12 {
    width: 33.33333%;
  }
  .lynn-l-size-jumbo--5-of-12 {
    width: 41.66667%;
  }
  .lynn-l-size-jumbo--6-of-12 {
    width: 50%;
  }
  .lynn-l-size-jumbo--7-of-12 {
    width: 58.33333%;
  }
  .lynn-l-size-jumbo--8-of-12 {
    width: 66.66667%;
  }
  .lynn-l-size-jumbo--9-of-12 {
    width: 75%;
  }
  .lynn-l-size-jumbo--10-of-12 {
    width: 83.33333%;
  }
  .lynn-l-size-jumbo--11-of-12 {
    width: 91.66667%;
  }
  .lynn-l-size-jumbo--12-of-12 {
    width: 100%;
  }
}

.lynn-l-container--xxs {
  max-width: 15rem;
}

.lynn-l-container--xs {
  max-width: 20rem;
}

.lynn-l-container--s {
  max-width: 30rem;
}

.lynn-l-container--m {
  max-width: 35rem;
}

.lynn-l-container--l {
  max-width: 48rem;
}

.lynn-l-container--xl {
  max-width: 64rem;
}

.lynn-l-container--xxl {
  max-width: 80rem;
}

.lynn-l-container--jumbo {
  max-width: 160rem;
}

.lynn-l-container--fluid {
  width: 100%;
}

.lynn-l-container--center {
  margin-left: auto;
  margin-right: auto;
}

.lynn-l-container--left {
  margin-right: auto;
}

.lynn-l-container--right {
  margin-left: auto;
}

.lynn-column-wrap--two {
  -moz-columns: 2 200px;
  columns: 2 200px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

/**~
 *  _page-header.scss
~**/
.lynn-page-header {
  background-color: white;
  z-index: 777;
  top: 0;
}

.lynn-page-header .lynn-logo {
  display: block;
  text-indent: -9999em;
}

@media screen and (max-width: 30em) {
  .lynn-page-header .lynn-logo {
    margin: auto;
  }
}

/**~
 *  _nav-global.scss
~**/
#lynn-nav-header {
  display: block;
  margin: auto;
}

@media screen and (max-width: 30em) {
  #lynn-nav-header {
    padding: 1.5rem 0;
    text-align: center;
  }
}

@media screen and (min-width: 30em) {
  #lynn-nav-header {
    padding: 0.5rem 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

/*****************************************************************************    OBJECTS
\*****************************************************************************/
/** Accordions **/
.lynn-panel-menu [data-simple-accordion="trigger"] {
  cursor: pointer;
  float: right;
}

.lynn-panel-menu [data-simple-accordion="trigger"]:after {
  content: "\f0fe";
  display: inline-block;
  margin-left: 8px;
  font-family: "FontAwesome";
  transition: all .2s ease-in-out;
}

.lynn-panel-menu [data-simple-accordion="trigger"].active:after {
  content: "\f146";
}

[data-simple-accordion="content"] {
  display: none;
}

/** Buttons **/
/**~
 *  _buttons.scss
~**/
/** Base button **/
.lynn-button {
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  color: #003da5;
  cursor: pointer;
  display: inline-block;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  position: relative;
  text-decoration: none;
  white-space: normal;
  /* Elements */
}

.lynn-button__icon {
  padding: 0 0.5rem;
}

.lynn-button--full {
  width: 100%;
}

/** Button colors **/
.lynn-button--pill, .lynn-button--outline:hover, .lynn-button--pill-solid, .lynn-button--pill-solid:active, .lynn-button--pill-solid:hover {
  background-color: #003da5;
  border-color: #003da5;
  color: white;
}

.lynn-button--pill-gray, .lynn-button--pill-white:hover {
  background-color: #929497;
  border-color: #929497;
  color: white;
}

.lynn-button--pill-white {
  background-color: white;
  border-color: white;
  color: #003da5;
}

.lynn-button--pill:hover, .lynn-button--outline, .lynn-button--outline-gray:hover {
  background-color: transparent;
  border-color: #003da5;
  color: #003da5;
}

.lynn-button--pill-gray:hover, .lynn-button--outline-gray, .lynn-button--outline-white:hover {
  background-color: transparent;
  border-color: #929497;
  color: #929497;
}

.lynn-button--outline-white {
  background-color: transparent;
  border-color: white;
  color: white;
}

/** Pill button **/
.lynn-button--pill, .lynn-button--pill-gray, .lynn-button--pill-white, .lynn-button--outline, .lynn-button--outline-gray, .lynn-button--outline-white, .lynn-button--pill-solid {
  border-radius: 3em;
  border-style: solid;
  border-width: 2px;
  font-weight: 700;
  padding: 0.5rem 2rem;
  text-align: center;
}

[class*="button--pill"][disabled] {
  background-color: #c1c2c3;
  border-color: #c1c2c3;
  color: white;
  cursor: default;
}

[class*="button--outline"][disabled] {
  background-color: transparent;
  border-color: #c1c2c3;
  color: #c1c2c3;
  cursor: default;
}

button {
  font-size: 1em;
}

/** Global nav button **/
.lynn-button--nav {
  border: none;
  font-size: 1em;
  font-weight: 700;
  margin: 0 1rem;
  padding: 0;
}

@media screen and (max-width: 48em) {
  .lynn-button--nav {
    margin: 0;
  }
}

.lynn-button--nav:hover {
  color: #4d77c0;
}

@media screen and (max-width: 48em) {
  .lynn-button--nav .lynn-button__icon {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 48em) {
  .lynn-button--nav .lynn-button__text {
    display: none;
  }
}

/** Button group **/
.lynn-button-group > li {
  display: inline-block;
}

/** Embeds **/
/**~
 *  _embeds.scss
 *
~**/
.embed {
  position: relative;
  padding: 0;
  height: 0;
  overflow: hidden;
}

.embed__item,
.embed iframe,
.embed object,
.embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed--16by9 {
  padding-bottom: 56.25%;
}

.embed--4by3 {
  padding-bottom: 75%;
}

.lynn-frame-wrapper {
  position: relative;
  padding-bottom: 80%;
  padding-top: 35px;
  margin: 0-1rem;
  height: 0;
  overflow: hidden;
  min-height: 500px;
}

.lynn-frame-wrapper .frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/** Facts **/
/**~
 *  _facts.scss
~**/
.lynn-facts img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
}

.lynn-facts strong {
  font-weight: bold;
}

.lynn-facts .lynn-gi {
  padding: 10px;
}

.lynn-facts .lynn-gi .lynn-gi {
  padding: 0;
}

@media screen and (min-width: 64em) {
  .lynn-facts--pull-left {
    margin-left: -25%;
  }
}

.lynn-facts p {
  margin: 1em 0;
}

.lynn-facts--center-content {
  -ms-flex-align: center;
  align-items: center;
}

.lynn-facts--align-content-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.lynn-facts--align-content-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.lynn-facts--align-content-center {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.lynn-facts__separator-title {
  position: relative;
  margin-top: 2em;
  margin-bottom: 1rem;
  padding: 10px 20px;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  background: #c1c2c3;
}

.lynn-facts__separator-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #c1c2c3;
}

.lynn-facts__x-large-heading {
  color: #003da5;
  font-size: 3rem;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .lynn-facts__x-large-heading {
    font-size: 5rem;
  }
}

.lynn-facts__large-heading {
  color: #63666a;
  font-size: 2rem;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .lynn-facts__large-heading {
    font-size: 3rem;
  }
}

.lynn-facts__large-heading--block {
  display: block;
}

.lynn-facts__heading {
  color: #63666a;
  font-size: 2rem;
  line-height: 1;
}

.lynn-facts__heading--block {
  display: block;
}

.lynn-facts__callout {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #e0e0e1;
}

.lynn-facts__callout-title {
  color: #003da5;
  line-height: 1;
}

.lynn-facts__callout--blue {
  color: white;
  background-color: #8bd3e6;
}

.lynn-facts__callout--blue [class$="heading"] {
  color: #003da5;
}

.lynn-facts__callout--green {
  color: white;
  background-color: #b3d57d;
}

.lynn-facts__callout--green [class$="heading"] {
  color: #003da5;
}

.lynn-facts__callout--orange {
  color: white;
  background-color: #fdaa63;
}

.lynn-facts__callout--orange [class$="heading"] {
  color: #003da5;
}

.lynn-facts__callout-heading {
  font-size: 2rem;
  line-height: 1;
  color: #00afd7;
}

.lynn-facts__callout--large {
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
}

.lynn-facts__callout--center {
  -ms-flex-pack: center;
  justify-content: center;
}

/** FAQ **/
/**~
 *  _faq.scss
 *
~**/
.lynn-faq-container {
  margin-bottom: 1rem;
}

.lynn-faq__item--question {
  position: relative;
  padding: 1rem 1.5rem;
  font-size: 1em;
  background-color: #e0e0e1;
  color: #003da5;
  cursor: pointer;
}

.lynn-faq__item--question::after {
  content: "\f0fe";
  display: block;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  transition: all .2s ease-in-out;
}

.lynn-faq__item--question.active::after {
  content: "\f146";
}

.lynn-faq__item--answer {
  padding: 0.5rem 1.5rem;
  border: 1px solid #e0e0e1;
}

.lynn-faq__item--answer .lynn-rte {
  margin-bottom: 0;
}

/** Filters **/
/**~
 *  _filters.scss
 *
~**/
.lynn-filter--radio {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 2px solid #828588;
}

.lynn-filter--radio input[type="radio"] {
  position: absolute;
  padding: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.lynn-filter--radio label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 20px 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  background-color: white;
  border: 2px solid #828588;
}

@media screen and (min-width: 35em) {
  .lynn-filter--radio label {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-filter--radio label {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
}

.lynn-filter--radio label:hover {
  cursor: pointer;
  background: #d0d1d2;
}

.lynn-filter--radio label.lynn-all {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.lynn-filter--radio input[type="radio"]:checked + label {
  color: white;
  background: #63666a;
}

@media screen and (min-width: 35em) {
  .lynn-filter--radio-flat.lynn-all,
  .lynn-filter--radio-flat label {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-filter--radio-flat label {
    -ms-flex: 1;
    flex: 1;
  }
  .lynn-filter--radio-flat.lynn-all {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

@media screen and (min-width: 35em) {
  .lynn-filter--radio-quarter.lynn-all,
  .lynn-filter--radio-quarter label {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-filter--radio-quarter.lynn-all {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.lynn-filter--button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 2px solid #828588;
}

.lynn-filter--button__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 20px 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #828588;
  background-color: white;
  border: 2px solid #828588;
}

@media screen and (min-width: 35em) {
  .lynn-filter--button__item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-filter--button__item {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
}

.lynn-filter--button__item:hover {
  color: #828588;
  background: #d0d1d2;
}

.lynn-filter--button__item.active {
  color: white;
  background: #63666a;
}

.lynn-filter--button__item.lynn-all {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

@media screen and (min-width: 35em) {
  .lynn-filter--button-flat.lynn-all {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-filter--button-flat .lynn-filter--button__item {
    -ms-flex: 1;
    flex: 1;
  }
  .lynn-filter--button-flat .lynn-filter--button__item.lynn-all {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.lynn-filter-sidebar__group {
  padding: 1rem 0;
  border-bottom: 1px solid #d0d1d2;
}

.lynn-filter-sidebar__title {
  margin-bottom: .5em;
  font-weight: bold;
}

.lynn-filter-sidebar__input {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/** Forms **/
/**~
 *  _forms.scss
~**/
.lynn-form input[type="color"],
.lynn-form input[type="date"],
.lynn-form input[type="datetime"],
.lynn-form input[type="datetime-local"],
.lynn-form input[type="email"],
.lynn-form input[type="month"],
.lynn-form input[type="number"],
.lynn-form input[type="password"],
.lynn-form input[type="search"],
.lynn-form input[type="tel"],
.lynn-form input[type="text"],
.lynn-form input[type="time"],
.lynn-form input[type="url"],
.lynn-form input[type="week"],
.lynn-form textarea {
  border: 2px solid #b1b3b5;
  padding: 15px 20px;
  font-size: 1em;
}

.lynn-form input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lynn-form--vertical label {
  display: block;
  margin-bottom: 10px;
}

.lynn-form--vertical input[type="color"],
.lynn-form--vertical input[type="date"],
.lynn-form--vertical input[type="datetime"],
.lynn-form--vertical input[type="datetime-local"],
.lynn-form--vertical input[type="email"],
.lynn-form--vertical input[type="month"],
.lynn-form--vertical input[type="number"],
.lynn-form--vertical input[type="password"],
.lynn-form--vertical input[type="search"],
.lynn-form--vertical input[type="tel"],
.lynn-form--vertical input[type="text"],
.lynn-form--vertical input[type="time"],
.lynn-form--vertical input[type="url"],
.lynn-form--vertical input[type="week"],
.lynn-form--vertical textarea,
.lynn-form--vertical select,
.lynn-form--vertical .lynn-select {
  display: block;
  margin-bottom: 30px;
}

.lynn-form--vertical input[type="file"] {
  margin-bottom: 30px;
  font-size: 1em;
}

.lynn-form--full input[type="color"],
.lynn-form--full input[type="date"],
.lynn-form--full input[type="datetime"],
.lynn-form--full input[type="datetime-local"],
.lynn-form--full input[type="email"],
.lynn-form--full input[type="month"],
.lynn-form--full input[type="number"],
.lynn-form--full input[type="password"],
.lynn-form--full input[type="search"],
.lynn-form--full input[type="tel"],
.lynn-form--full input[type="text"],
.lynn-form--full input[type="time"],
.lynn-form--full input[type="url"],
.lynn-form--full input[type="week"],
.lynn-form--full textarea,
.lynn-form--full select,
.lynn-form--full .lynn-select {
  width: 100%;
}

.lynn-form--space label {
  margin: 0 1rem;
  font-size: 1.5em;
}

.lynn-form--space input[type="color"],
.lynn-form--space input[type="date"],
.lynn-form--space input[type="datetime"],
.lynn-form--space input[type="datetime-local"],
.lynn-form--space input[type="email"],
.lynn-form--space input[type="month"],
.lynn-form--space input[type="number"],
.lynn-form--space input[type="password"],
.lynn-form--space input[type="search"],
.lynn-form--space input[type="tel"],
.lynn-form--space input[type="text"],
.lynn-form--space input[type="time"],
.lynn-form--space input[type="url"],
.lynn-form--space input[type="week"],
.lynn-form--space textarea,
.lynn-form--space select,
.lynn-form--space .lynn-select {
  margin-bottom: 0.75rem;
}

.lynn-form--auto .submit input[type="submit"] {
  border-radius: 3em;
  border-style: solid;
  border-width: 2px;
  font-weight: 700;
  padding: 0.5rem 2rem;
  text-align: center;
  background: transparent;
  background-color: transparent;
  border-color: #003da5;
  color: #003da5;
  cursor: pointer;
  display: inline-block;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  position: relative;
  text-decoration: none;
  white-space: normal;
}

.lynn-form--auto .submit input[type="submit"]:hover {
  background-color: #003da5;
  border-color: #003da5;
  color: white;
}

.lynn-form button {
  font-size: 1em;
}

.lynn-input-checkbox,
.lynn-input-radio {
  padding-left: 1rem;
}

.lynn-input-checkbox input[type="checkbox"],
.lynn-input-checkbox input[type="radio"],
.lynn-input-radio input[type="checkbox"],
.lynn-input-radio input[type="radio"] {
  float: left;
  margin: 5px 0 0 -1rem;
}

.lynn-error-container {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: white;
  border: 2px solid #e87722;
}

.lynn-error__title {
  font-size: 1.5em;
  margin-bottom: 1em;
  color: #e87722;
}

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

.lynn-error--field > ul.errors {
  display: none;
}

.errors input[type="color"],
.errors input[type="date"],
.errors input[type="datetime"],
.errors input[type="datetime-local"],
.errors input[type="email"],
.errors input[type="month"],
.errors input[type="number"],
.errors input[type="password"],
.errors input[type="search"],
.errors input[type="tel"],
.errors input[type="text"],
.errors input[type="time"],
.errors input[type="url"],
.errors input[type="week"],
.errors textarea {
  border-color: #e87722;
}

#lynn-character-count {
  display: block;
  margin-top: -20px;
  margin-bottom: 30px;
}

.lynn-character-count--error {
  font-weight: bold;
  color: #8f0000;
}

.lynn-character-count--warn {
  font-weight: bold;
  color: #e87722;
}

.lynn-character-count--good {
  font-weight: bold;
  color: #78be20;
}

.lynn-input-file {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.lynn-input-file + label {
  border-radius: 3em;
  border-style: solid;
  border-width: 2px;
  border-color: #003da5;
  display: inline-block;
  font-weight: 700;
  padding: 0.5rem 2rem;
  text-align: center;
  cursor: pointer;
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  position: relative;
  text-decoration: none;
  white-space: normal;
  background-color: transparent;
  color: #003da5;
}

.lynn-input-file:focus + label,
.lynn-input-file + label:hover {
  background-color: #003da5;
  border-color: #003da5;
  color: white;
}

.lynn-input-file:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.lynn-input-file + label * {
  pointer-events: none;
}

.lynn-select {
  position: relative;
  display: inline-block;
}

.lynn-select:after {
  content: "\f078";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  padding: 15px 15px;
  height: 100%;
  font-family: FontAwesome;
  color: white;
  background-color: #003da5;
}

.lynn-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  margin: 0;
  padding: 15px 60px 15px 20px;
  width: 100%;
  font-size: 1em;
  line-height: 1.3;
  color: #555;
  cursor: pointer;
  outline: 0;
  background-color: white;
  border: 2px solid #b1b3b5;
  border-radius: 0;
}

.lynn-select select:focus {
  border-color: #003da5;
}

.lynn-select select::-ms-expand {
  display: none;
}

.lynn-select.is-disabled {
  opacity: .5;
}

.lynn-select.is-disabled:after {
  background-color: #a1a3a6;
}

.lynn-alpha-select input[type="radio"] {
  position: absolute;
  padding: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.lynn-alpha-select label {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  padding: 2px 5px;
  margin-bottom: 5px;
  width: 1.5em;
  background-color: #e0e0e1;
  border: 1px solid #d0d1d2;
  border-radius: 2px;
}

.lynn-alpha-select label:hover, .lynn-alpha-select label.active {
  background-color: #c6c6c8;
  border-color: #b6b8b9;
  cursor: pointer;
}

.lynn-alpha-select input[type="radio"]:checked + label {
  background-color: #003da5;
  border-color: #003da5;
  color: white;
}

.lynn-custom--checkbox {
  overflow: hidden;
}

.lynn-custom--checkbox input[type="checkbox"] {
  position: absolute !important;
  padding: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.lynn-custom--checkbox label {
  float: left;
  padding: .5em 0;
  margin-top: 5px;
  font-weight: bold;
}

.lynn-custom--checkbox label:before {
  content: "";
  display: block;
  float: left;
  position: relative;
  top: -5px;
  margin-right: 10px;
  height: 31px;
  width: 31px;
  background-image: url("/images/checkbox-inactive.svg");
  background-size: 31px 31px;
}

.lynn-custom--checkbox input[type="checkbox"]:checked + label:before {
  background-image: url("/images/checkbox-active.svg");
}

.form-vertical .lynn-custom--checkbox label {
  margin-bottom: 0;
}

.lynn-custom--checkbox--inline label {
  display: inline-block !important;
  width: auto !important;
}

.lynn-custom--checkbox__trigger::after {
  content: "\f078";
  display: inline-block;
  position: relative;
  top: 12px;
  margin-left: 1rem;
  font-family: "FontAwesome";
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.lynn-custom--checkbox__trigger.active::after {
  content: "\f077";
}

.lynn-custom--checkbox-nested {
  margin-left: 40px;
}

.lynn-custom--radio {
  overflow: hidden;
}

.lynn-custom--radio input[type="radio"] {
  position: absolute !important;
  padding: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.lynn-custom--radio label {
  float: left;
  padding: .5em 0;
  margin-top: 5px;
  font-weight: bold;
}

.lynn-custom--radio label:before {
  content: "";
  display: block;
  float: left;
  position: relative;
  top: -5px;
  margin-right: 10px;
  height: 31px;
  width: 31px;
  background-image: url("/images/radio-inactive.svg");
  background-size: 31px 31px;
}

.lynn-custom--radio input[type="radio"]:checked + label:before {
  background-image: url("/images/radio-active.svg");
}

.form-vertical .lynn-custom--radio label {
  margin-bottom: 0;
}

.lynn-custom--radio--inline label {
  display: inline-block !important;
  width: auto !important;
}

.lynn-custom--radio__trigger::after {
  content: "\f078";
  display: inline-block;
  position: relative;
  top: 12px;
  margin-left: 1rem;
  font-family: "FontAwesome";
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.lynn-custom--radio__trigger.active::after {
  content: "\f077";
}

.lynn-custom--radio-nested {
  margin-left: 40px;
}

/** Global CTA **/
.lynn-global-cta {
  padding: 30px 0 20px;
  background: #003da5;
  z-index: 10;
}

.lynn-global-cta__item {
  border-radius: 3em;
  border-style: solid;
  border-width: 2px;
  display: block;
  color: white;
  font-weight: 700;
  padding: 0.5rem 2rem;
  text-align: center;
  width: 75%;
  margin: 0 auto 10px;
}

.lynn-global-cta__item:hover, .lynn-global-cta__item:focus {
  background: white;
  border-color: white;
  color: #003da5;
}

@media screen and (min-width: 48em) {
  .lynn-global-cta {
    position: fixed;
    top: 170px;
    right: 0;
    padding: 0;
    background: transparent;
  }
  .lynn-global-cta--no-hero {
    top: 120px;
  }
  .lynn-global-cta li {
    overflow: hidden;
  }
  .lynn-global-cta__item {
    text-align: left;
    border-radius: 0;
    border: 0;
    color: white;
    padding: 1.25rem;
    width: 170px;
    display: block;
    background: rgba(0, 61, 165, 0.9);
    margin-bottom: 10px;
    float: right;
    font-size: 1.25em;
    transition: width .2s ease-in-out;
  }
  .lynn-global-cta__item:hover {
    width: 180px;
    background: #003da5;
    color: white;
  }
}

/** History **/
/**~
 *  _history.scss
~**/
.lynn-history-group {
  padding-bottom: 4em;
}

.lynn-history-group:nth-child(odd) {
  background-color: #eff0f0;
}

.lynn-history__item {
  padding-bottom: 4em;
}

.lynn-history__item-date {
  margin-bottom: 10px;
}

@media screen and (min-width: 48em) {
  .lynn-history__item {
    padding-bottom: 0;
  }
  .lynn-history__item-date {
    float: left;
    margin-bottom: 0;
    padding-right: 1.5em;
    width: 15%;
    text-align: center;
    border-right: 8px solid #c1c2c3;
  }
  .lynn-history__item-content {
    float: left;
    width: 85%;
    padding-bottom: 4em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-left: 1px solid #c1c2c3;
  }
}

/** Images **/
/**~
 *  _images.scss
 *
~**/
/** Image replacement **/
.lynn-image-replace {
  background-size: contain;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.lynn-image-replace span {
  background: transparent no-repeat left top;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Image wrapper */
.image-wrapper > img {
  display: block;
}

.image-wrapper--responsive > img {
  display: block;
  max-width: 100%;
}

/* Spotlight */
.spotlight {
  display: block;
}

/**~
 *  _images-logos.scss
~**/
/** Lynn **/
.lynn-logo {
  height: 55px;
  width: 130px;
  /* Transparent */
  /* Non-transparent */
}

.lynn-logo span {
  background-image: url("#");
}

.lynn-logo.lynn-image-replace span {
  background: url("/images/logos/lynn-logo.png");
  background-image: url("/images/logos/lynn-logotype-rgb.svg"), none;
  background-size: contain;
  display: block;
  display: block;
  text-indent: -9999px;
  width: 130px;
  height: 55px;
  background-size: 130px 55px;
}

/** iLynn **/
.lynn-logo--ilynn {
  height: 54px;
  width: 212px;
  /* Transparent */
  /* Non-transparent */
}

.lynn-logo--ilynn span {
  background-image: url("//www.lynn.edu/ilynn/ilynn-logo-hinted-212x50.png");
}

.lynn-logo--ilynn.lynn-image-replace span {
  background-image: url("#");
}

/** Lists **/
/**~
 *  _lists.scss - Global
~**/
/** Default **/
ol, ul {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/** Ordered list **/
.lynn-list--ordered {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: decimal;
  margin-left: 1.5rem;
}

/** Unordered list **/
.lynn-list--disc {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 1.5rem;
}

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1rem;
}

dt {
  font-weight: 600;
}

dd {
  margin-left: 0;
}

/**~
*  _lists.scss - Web
~**/
/** Horizontal **/
.lynn-list--horizontal > .lynn-list__item {
  display: inline-block;
  vertical-align: middle;
}

/** Dividers **/
.lynn-has-dividers--left > .lynn-list__item:before {
  content: "|";
  margin: 0 0.5rem;
}

.lynn-has-dividers--left > .lynn-list__item:first-child:before {
  content: "";
  margin: 0;
}

.lynn-has-dividers--right > .lynn-list__item:after {
  content: "|";
  margin: 0 0.5rem;
}

.lynn-has-dividers--right > .lynn-list__item:last-child:after {
  content: "";
  margin: 0;
}

.lynn-flex-list {
  display: -ms-flexbox;
  display: flex;
}

.lynn-flex-list__headings {
  -ms-flex: 2;
  flex: 2;
}

.lynn-flex-list__content {
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}

.lynn-flex-list li {
  padding: 10px;
  border-bottom: 1px solid #d0d1d2;
}

/** Maps **/
/**~
 *  _maps.scss
 *
~**/
.lynn-map-list {
  height: 1000px;
  overflow-y: scroll;
}

.lynn-map-key-container {
  margin-bottom: 2rem;
}

.lynn-map-key__label {
  font-size: 1.25em;
  margin: 0.5em 0;
}

.lynn-map-key__label::before {
  content: "\f111";
  display: inline-block;
  margin-right: 1rem;
  font-family: FontAwesome;
}

.lynn-map-key__label--academics::before {
  color: #e57538;
}

.lynn-map-key__label--athletics::before {
  color: #00accb;
}

.lynn-map-key__label--multi-use::before {
  color: #62b14b;
}

.lynn-map-key__label--residence-halls::before {
  color: #eea172;
}

.lynn-map-key__label--food-services::before {
  color: #95d2db;
}

.lynn-map-place {
  margin-bottom: 1rem;
}

.lynn-map-place__title {
  font-weight: bold;
}

.lynn-map-place__title--academics {
  color: #e57538;
}

.lynn-map-place__title--academics:hover {
  color: #cf5a1b;
}

.lynn-map-place__title--athletics {
  color: #00accb;
}

.lynn-map-place__title--athletics:hover {
  color: #008198;
}

.lynn-map-place__title--multi-use {
  color: #62b14b;
}

.lynn-map-place__title--multi-use:hover {
  color: #4e8d3c;
}

.lynn-map-place__title--residence-halls {
  color: #eea172;
}

.lynn-map-place__title--residence-halls:hover {
  color: #e98344;
}

.lynn-map-place__title--food-services {
  color: #95d2db;
}

.lynn-map-place__title--food-services:hover {
  color: #6fc2ce;
}

.lynn-map-place__title:hover {
  cursor: pointer;
}

.smartmap-mapcanvas {
  height: 0;
  padding-bottom: 56.25%;
}

/** Media **/
/**~
 *  _media.scss
 *
 *  Media objects place text and figures next to each other
 ~**/
.lynn-media {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 35em) {
  .lynn-media {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}

@media screen and (min-width: 35em) {
  .lynn-media {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
}

.lynn-media__caption {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

/** Reverse **/
@media screen and (min-width: 35em) {
  .lynn-media--reverse {
    -ms-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
}

/** Billboard **/
.lynn-media--billboard {
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 35em) {
  .lynn-media--billboard .lynn-media__figure, .lynn-media--billboard .lynn-media__caption {
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
}

.lynn-media--billboard .lynn-tile {
  margin: auto;
  width: 70%;
}

@media screen and (max-width: 35em) {
  .lynn-media--billboard .lynn-tile {
    padding: 4rem 0;
  }
}

@media screen and (min-width: 64em) {
  .lynn-media--billboard .lynn-tile__title {
    font-size: 2em;
    line-height: 1.25;
  }
}

@media screen and (min-width: 64em) {
  .lynn-media--billboard .lynn-tile__detail {
    font-size: 1.25em;
    line-height: 1.5;
  }
}

@media screen and (min-width: 35em) {
  .lynn-media--billboard-alternate:nth-child(even) {
    -ms-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
}

.lynn-media--billboard-padded .lynn-media__figure > img {
  padding: 1rem;
}

@media screen and (min-width: 48em) {
  .lynn-media--billboard-padded .lynn-media__figure {
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
  }
  .lynn-media--billboard-padded .lynn-media__figure > img {
    padding: 1.5rem;
  }
}

@media screen and (min-width: 48em) {
  .lynn-media--billboard-padded .lynn-media__caption {
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-media--billboard-asset .lynn-media__figure {
    -ms-flex: 1;
    flex: 1;
  }
  .lynn-media--billboard-asset .lynn-media__figure > img {
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    padding: 1.5rem;
  }
}

/** Testimonial **/
.lynn-media--testimonial {
  display: block;
}

@media screen and (max-width: 35em) {
  .lynn-media--testimonial {
    overflow: hidden;
  }
}

@media screen and (min-width: 35em) {
  .lynn-media--testimonial {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 35em) {
  .lynn-media--testimonial .lynn-media__caption {
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
}

@media screen and (min-width: 35em) {
  .lynn-media--testimonial .lynn-media__figure {
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
    max-width: 400px;
  }
}

.lynn-media--testimonial .lynn-quote {
  font-size: 1.5rem;
}

/** Map **/
.lynn-media--map {
  -ms-flex-align: center;
  align-items: center;
  display: block;
}

@media screen and (max-width: 48em) {
  .lynn-media--map {
    overflow: hidden;
  }
}

@media screen and (min-width: 48em) {
  .lynn-media--map {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

.lynn-media--map .lynn-media__caption {
  padding: 2rem 1rem;
}

@media screen and (min-width: 35em) {
  .lynn-media--map .lynn-media__caption {
    padding: 2rem;
  }
}

@media screen and (min-width: 48em) {
  .lynn-media--map .lynn-media__caption {
    padding: 4rem;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
  }
}

@media screen and (min-width: 48em) {
  .lynn-media--map .lynn-media__figure {
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
}

/** Modals **/
@keyframes vex-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes vex-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.vex, .vex *, .vex *:before, .vex *:after {
  box-sizing: border-box;
}

.vex {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1111;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.vex-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.vex-overlay {
  background: #000;
  filter: alpha(opacity=40);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

.vex-overlay {
  animation: vex-fadein 0.5s;
  -webkit-backface-visibility: hidden;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.vex.vex-closing .vex-overlay {
  animation: vex-fadeout 0.5s;
  -webkit-backface-visibility: hidden;
}

.vex-content {
  animation: vex-fadein 0.5s;
  -webkit-backface-visibility: hidden;
  background: #fff;
}

.vex.vex-closing .vex-content {
  animation: vex-fadeout 0.5s;
  -webkit-backface-visibility: hidden;
}

.vex-close:before {
  font-family: Arial, sans-serif;
  content: "\00D7";
}

.vex-dialog-form {
  margin: 0;
}

.vex-dialog-button {
  text-rendering: optimizeLegibility;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.vex-loading-spinner {
  animation: vex-rotation 0.7s linear infinite;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 1112;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2em;
  width: 2em;
  background: #fff;
}

body.vex-open {
  overflow: hidden;
}

@keyframes vex-pulse {
  0% {
    box-shadow: inset 0 0 0 300px transparent;
  }
  70% {
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
  }
  100% {
    box-shadow: inset 0 0 0 300px transparent;
  }
}

.vex.vex-theme-plain {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media screen and (max-width: 35em) {
  .vex.vex-theme-plain {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 30em) {
  .vex.vex-theme-plain {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.vex.vex-theme-plain .vex-content {
  background: #fff;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
  overflow: hidden;
}

.vex.vex-theme-plain .vex-content--large {
  width: 80%;
}

.vex.vex-theme-plain .vex-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.vex.vex-theme-plain .vex-close:before {
  position: absolute;
  content: "\f00d";
  font-family: FontAwesome;
  font-size: em(20px);
  text-align: center;
  top: 10px;
  right: 20px;
  color: #63666a;
}

@media screen and (max-width: 30em) {
  .vex.vex-theme-plain .vex-close:before {
    font-size: em(15px);
    top: 10px;
    right: 10px;
  }
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-message {
  margin-bottom: .5em;
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input {
  margin-bottom: 1em;
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"],
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"] {
  background: #f0f0f0;
  width: 100%;
  padding: .25em .67em;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  min-height: 2.5em;
  margin: 0 0 .25em;
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"]:focus,
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons {
  *zoom: 1;
}

.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons:after {
  content: "";
  display: table;
  clear: both;
}

.vex.vex-theme-plain .vex-dialog-button {
  border-radius: 0;
  border: 0;
  float: right;
  margin: 0 0 0 .5em;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
}

.vex.vex-theme-plain .vex-dialog-button.vex-last {
  margin-left: 0;
}

.vex.vex-theme-plain .vex-dialog-button:focus {
  animation: vex-pulse 1.1s infinite;
  -webkit-backface-visibility: hidden;
  outline: none;
}

@media (max-width: 568px) {
  .vex.vex-theme-plain .vex-dialog-button:focus {
    animation: none;
    -webkit-backface-visibility: hidden;
  }
}

.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-primary {
  background: #3288e6;
  color: #fff;
}

.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}

.vex-loading-spinner.vex-theme-plain {
  height: 2.5em;
  width: 2.5em;
}

.modal-container {
  display: none;
}

.modal-content {
  padding: 50px;
}

@media screen and (max-width: 30em) {
  .modal-content {
    padding: 30px;
  }
}

.modal-content--full {
  padding: 50px 0 0;
}

@media screen and (max-width: 30em) {
  .modal-content--full {
    padding: 30px 0 0;
  }
}

/** Navigation - Breadcrumbs **/
/**~
 *  _nav-breadcrumbs.scss
~**/
.lynn-breadcrumbs > .lynn-list__item {
  font-size: 0.75em;
  line-height: 3rem;
}

.lynn-breadcrumbs > .lynn-list__item::after {
  content: "/";
  margin: 0 0.5rem;
}

.lynn-breadcrumbs > .lynn-list__item:last-child:after {
  content: "";
  margin: 0;
}

.lynn-breadcrumbs > .lynn-list__item:last-child a {
  color: #00afd7;
}

.lynn-breadcrumbs > .lynn-list__item a {
  color: #63666a;
}

.lynn-breadcrumbs > .lynn-list__item a:hover {
  text-decoration: underline;
}

/** Navigation - Dropdown **/
.lynn-dropdown {
  margin-top: 10px;
  position: relative;
}

@media screen and (min-width: 48em) {
  .lynn-dropdown {
    width: 70%;
  }
}

.lynn-dropdown__item {
  display: block;
  background: white;
  padding: 20px;
  color: #737579;
  cursor: pointer;
  border: 1px solid #e0e0e1;
}

.lynn-dropdown__item::after {
  content: "\f078";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  color: #003da5;
}

.lynn-dropdown__menu {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  text-align: left;
  background-color: white;
  border-left: 1px solid #e0e0e1;
  border-right: 1px solid #e0e0e1;
}

.lynn-dropdown__menu > li > a {
  position: relative;
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e1;
}

.lynn-dropdown__menu > li > a::after {
  background: white;
  border: 1px solid #e0e0e1;
  border-width: 0 0 1px 1px;
  bottom: -6px;
  content: '';
  display: block;
  height: 10px;
  left: 25px;
  position: absolute;
  width: 10px;
  z-index: 1;
  transform: rotate(-45deg);
}

.lynn-dropdown__menu > li:last-child a::after {
  content: none;
}

.lynn-dropdown__menu > li > ul {
  padding: 10px 0;
  background: #c1c2c3;
}

.lynn-dropdown__menu > li > ul li a {
  display: block;
  padding: 10px 20px;
  padding-left: 25px;
}

.lynn-dropdown > a:after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  height: 8px;
  width: 14px;
  vertical-align: middle;
  background-image: url("/images/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 8px;
  transition: all .1s ease-in-out;
}

.lynn-dropdown > a.active {
  color: #e6e6e6;
}

.lynn-dropdown > a.active:after {
  transform: rotate(180deg);
}

.lynn-dropdown > a:hover:after, .lynn-dropdown > a:focus:after, .lynn-dropdown > a.active:after {
  opacity: .8;
}

/** Navigation - Sliding **/
/**~
 *  _nav-sliding.scss
 ~**/
.lynn-content-sliding-container {
  position: fixed;
  top: 0;
  right: -466px;
  bottom: 0;
  left: auto;
  width: 466px;
  height: 100%;
  padding: 60px 2rem 2rem;
  overflow-y: auto;
  text-align: left;
  background: white;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}

.lynn-content-sliding-container.is-visible {
  opacity: 0.4;
  visibility: visible;
}

@media screen and (max-width: 30em) {
  .lynn-content-sliding-container {
    width: 100%;
  }
}

.lynn-content-sliding-fade-screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 888;
}

.lynn-content-sliding-fade-screen.is-visible {
  opacity: 0.4;
  visibility: visible;
}

.lynn-content-sliding-close {
  position: absolute;
  right: 10px;
  top: 20px;
}

.lynn-panel-menu {
  border-bottom: 1px dotted #b0c3e3;
  margin-bottom: 25px;
  padding: 0;
}

.lynn-panel-menu li {
  border-bottom: 1px solid #e8edf7;
  list-style: outside none none;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.lynn-panel-menu li > a {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 12px 0;
}

.lynn-panel-menu li:last-child {
  border-bottom: 0;
}

.lynn-panel-menu--sub {
  margin: 0 0 0 20px;
}

.lynn-panel-menu--sub li > a {
  font-size: 1rem;
  padding: 15px 0;
}

.lynn-panel-menu--secondary {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dotted #b0c3e3;
}

.lynn-panel-menu--secondary:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.lynn-panel-menu--secondary > li {
  padding: 10px 0;
}

.lynn-body {
  position: relative;
}

.lynn-body.active {
  overflow: hidden;
}

/** News **/
/**~
 *  _news.scss
~**/
.lynn-news-link__container {
  margin-top: 4rem;
  display: -ms-flexbox;
  display: flex;
}

.lynn-news-link__item {
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 30px 25px;
  text-align: center;
  font-size: 1.25em;
  background-color: #f7f7f8;
}

.lynn-news-link__item:hover, .lynn-news-link__item:focus {
  background: #ebebec;
}

.lynn-news-link__item::after {
  position: absolute;
  top: 50%;
  margin-left: 8px;
  font-family: "FontAwesome";
  color: #a1a3a6;
  transform: translateY(-50%);
}

.lynn-news-link__item--prev {
  margin-right: 5px;
  padding-left: 45px;
}

.lynn-news-link__item--prev::after {
  left: 20px;
  content: "\f053";
}

.lynn-news-link__item--next {
  margin-left: 5px;
  padding-right: 45px;
}

.lynn-news-link__item--next::after {
  right: 20px;
  content: "\f054";
}

/** Notifications **/
/**~
 *  _notifications.scss
 ~**/
.lynn-notification--default {
  background-color: #e0e0e1;
}

.lynn-notification--info {
  background-color: #8bd3e6;
}

.lynn-notification--alert {
  background-color: #fdaa63;
}

/** Pagination **/
/**~
 *  _pagination.scss
 *
 *  Pagination styles
 *
~**/
.lynn-pagination {
  list-style: none;
  text-align: center;
}

.lynn-pagination__item {
  display: inline-block;
  padding: 10px 15px;
  margin-left: -1px;
  text-decoration: none;
  border: 1px solid #929497;
  color: #929497;
}

@media screen and (max-width: 30em) {
  .lynn-pagination__item {
    display: none;
  }
}

.lynn-pagination__item:hover, .lynn-pagination__item:focus {
  background-color: #ccd8ed;
}

.lynn-pagination__item--active {
  cursor: default;
  background-color: #003da5;
  color: white;
}

.lynn-pagination__item--active:hover, .lynn-pagination__item--active:focus {
  cursor: default;
  background-color: #003da5;
  color: white;
}

.lynn-pagination__item--disabled {
  cursor: default;
  color: #c1c2c3;
  background-color: #c1c2c3;
}

.lynn-pagination__item--disabled:hover, .lynn-pagination__item--disabled:focus {
  cursor: default;
  color: #c1c2c3;
  background-color: #c1c2c3;
}

.lynn-pagination__item-end {
  background-color: transparent;
  border-color: transparent;
}

@media screen and (max-width: 30em) {
  .lynn-pagination__item-end {
    display: inline-block;
  }
}

.lynn-pagination__item-end:hover, .lynn-pagination__item-end:focus {
  background-color: transparent;
  border-color: transparent;
}

.lynn-pagination__item-end:first-child {
  padding-left: 0;
}

.lynn-pagination__item-end:last-child {
  padding-right: 0;
}

/** Panels **/
/**~
*  _panels.scss
~**/
.lynn-panel__heading {
  margin-bottom: 4rem;
  text-align: center;
}

.lynn-panel__heading .lynn-tile__title {
  font-size: 3em;
}

.lynn-panel__heading .lynn-tile__detail {
  font-size: 1.5em;
  line-height: 2;
}

@media screen and (min-width: 35em) {
  .lynn-panel__content--rotate .lynn-media:nth-child(even) {
    -ms-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
}

.lynn-panel--footer a {
  color: #63666a;
}

.lynn-panel--footer a:hover {
  color: #003da5;
}

.lynn-panel--footer .lynn-footer__main .lynn-list--vertical .lynn-list__item {
  line-height: 2;
}

.lynn-panel--footer .lynn-footer__sub {
  font-size: 0.875rem;
}

.lynn-panel--photostream .lynn-tile__action {
  display: inline-block;
}

/**~
*  _panels-hero.scss
~**/
.lynn-panel--hero {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 30em) {
  .lynn-panel--hero {
    margin-top: 87px;
  }
}

.lynn-panel--hero .lynn-tile__title {
  font-size: 2em;
}

@media screen and (min-width: 48em) {
  .lynn-panel--hero .lynn-tile__title {
    font-size: 3em;
  }
}

.lynn-panel--hero .lynn-tile__title--home {
  font-size: 3em;
}

@media screen and (min-width: 35em) {
  .lynn-panel--hero .lynn-tile__title--home {
    font-size: 4em;
  }
}

@media screen and (min-width: 48em) {
  .lynn-panel--hero .lynn-tile__title--home {
    font-size: 6em;
  }
}

.lynn-panel--hero .lynn-tile__detail {
  font-size: 1.25em;
  margin: 0;
}

@media screen and (min-width: 48em) {
  .lynn-panel--hero .lynn-tile__detail {
    font-size: 1.5em;
  }
}

.lynn-hero__caption {
  margin: 1rem;
}

@media screen and (min-width: 64em) {
  .lynn-hero__caption {
    margin: 1rem 0;
  }
}

@media screen and (min-width: 30em) {
  .lynn-panel--hero-image .lynn-hero__caption {
    color: white;
  }
}

@media screen and (min-width: 30em) {
  .lynn-panel--hero-image .lynn-hero__caption .lynn-tile__detail,
  .lynn-panel--hero-image .lynn-hero__caption .lynn-tile__title {
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
}

@media screen and (max-width: 35em) {
  .lynn-hero__caption {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 30em) {
  .lynn-panel--hero-image .lynn-hero__caption {
    margin: 0 0 0 -40%;
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
  }
  .lynn-panel--hero-image .lynn-hero__caption--sm {
    left: 60%;
    width: 60%;
  }
}

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

@media screen and (min-width: 35em) {
  .lynn-hero__caption--left .lynn-tile {
    text-align: left;
  }
}

@media screen and (min-width: 48em) {
  .lynn-hero__caption--left .lynn-tile {
    width: 50%;
  }
}

@media screen and (min-width: 30em) {
  .video-play .lynn-hero__caption {
    display: none;
  }
}

.lynn-hero__figure {
  height: 0;
  padding-bottom: 55%;
  background-clip: border-box;
  background-color: transparent;
  background-origin: padding-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 30em) {
  .lynn-hero__figure::after {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.video-play .lynn-hero__figure::after {
  content: none;
}

.lynn-hero__figure.embed__item,
.lynn-hero__figure.embed iframe,
.lynn-hero__figure.embed object,
.lynn-hero__figure.embed embed {
  display: none;
}

.video-play .lynn-hero__figure.embed__item, .video-play
.lynn-hero__figure.embed iframe, .video-play
.lynn-hero__figure.embed object, .video-play
.lynn-hero__figure.embed embed {
  display: block;
}

@media screen and (min-width: 30em) {
  .lynn-hero__button {
    color: white;
  }
  .lynn-hero__button:hover, .lynn-hero__button:focus {
    color: #f2f2f2;
  }
}

.lynn-hero__button span {
  display: none;
}

.lynn-hero__intro {
  display: none;
}

@media screen and (min-width: 30em) {
  .lynn-hero__intro {
    display: block;
    width: 100%;
    height: auto;
    z-index: 0;
    object-fit: cover;
  }
}

#player {
  z-index: 1;
}

.lynn-parallax-wrapper {
  background: white;
}

/** NEW PROMO HERO **/
/**** BACKGROUND IMAGES ****/
/*
  .lynn-promo__figure.promo-{{ loop.index }}-background {
    background-image: url({{ image.url('hero240') }});
    background-position: {{ image.imageFocuspoint.background }};
  }
  @media (min-width: 240px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero480') }});
    }
  }
  @media (min-width: 480px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero960') }});
    }
  }
  @media (min-width: 960px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero1440') }});
    }
  }
  @media (min-width: 1440px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero1920') }});
    }
  }
  @media (min-width: 1920px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero2400') }});
    }
  }
  @media (min-width: 2400px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero2880') }});
    }
  }
  @media (min-width: 2880px) {
    .lynn-promo__figure.promo-{{ loop.index }}-background {
      background-image: url({{ image.url('hero3360') }});
    }
  }

  @media (min-width: 480px) {
    .lynn-promo__figure {
      overflow: hidden;
      padding-bottom: calc(55% - 87px);
      position: relative;
    }
    .lynn-promo__figure img {
      display: block;
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
    }
    .lynn-promo__intro {
      position: absolute;
      height: 100%;
      width: 100%;
    }
  }
  */
/**** END BACKGROUND IMAGES ****/
@media screen and (min-width: 30em) {
  .lynn-page-intro {
    margin-top: 87px;
  }
}

.lynn-promo--hero {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.lynn-promo--hero .lynn-tile__title {
  font-size: 2em;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .lynn-promo--hero .lynn-tile__title {
    font-size: 3em;
  }
}

.lynn-promo--hero .lynn-tile__detail {
  font-size: 1.25em;
  margin: 0;
}

@media screen and (min-width: 48em) {
  .lynn-promo--hero .lynn-tile__detail {
    font-size: 1.5em;
  }
}

.lynn-promo--hero-bgvideo .lynn-promo__bgvideo {
  display: none;
}

@media screen and (min-width: 35em) {
  .lynn-promo--hero-bgvideo .lynn-promo__bgvideo {
    display: block;
    height: auto;
    object-fit: cover;
    position: absolute;
    width: 100%;
  }
}

@media screen and (min-width: 35em) {
  .lynn-promo--hero-bgvideo .lynn-promo__figure img {
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.lynn-promo--hero-video .lynn-promo__figure.embed iframe,
.lynn-promo--hero-video .lynn-promo__figure.embed object,
.lynn-promo--hero-video .lynn-promo__figure.embed embed {
  display: none;
}

.lynn-promo--hero-video .video-play .lynn-promo__figure.embed iframe,
.lynn-promo--hero-video .video-play .lynn-promo__figure.embed object,
.lynn-promo--hero-video .video-play .lynn-promo__figure.embed embed {
  display: block;
  z-index: 1;
}

.lynn-promo--hero-video .lynn-promo__play[data-video] {
  visibility: hidden;
}

.lynn-promo--hero-video .lynn-button--video {
  color: white;
}

.lynn-promo__caption {
  color: white;
  left: 50%;
  margin: 0 0 0 -45%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  top: 50%;
  width: 90%;
}

@media screen and (min-width: 48em) {
  .lynn-promo__caption {
    margin-left: -35%;
    width: 70%;
  }
}

@media screen and (min-width: 64em) {
  .lynn-promo__caption {
    margin-left: -30%;
    width: 60%;
  }
}

.lynn-promo__caption .lynn-tile__pretitle,
.lynn-promo__caption .lynn-tile__posttitle {
  font-size: 1.25em;
}

@media screen and (min-width: 48em) {
  .lynn-promo__caption .lynn-tile__pretitle,
  .lynn-promo__caption .lynn-tile__posttitle {
    font-size: 1.5em;
  }
}

.lynn-promo__caption .lynn-tile__detail,
.lynn-promo__caption .lynn-tile__title,
.lynn-promo__caption .lynn-tile__pretitle,
.lynn-promo__caption .lynn-tile__posttitle {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.lynn-promo__figure {
  height: auto;
}

@media screen and (min-width: 35em) {
  .lynn-promo__figure {
    height: 0;
    padding-bottom: 50%;
    background-clip: border-box;
    background-color: transparent;
    background-origin: padding-box;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.lynn-promo__figure::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/** Tabs **/
.lynn-tabs__nav {
  max-width: 90%;
  margin: 0 auto 40px;
  border: 2px solid #828588;
}

@media screen and (min-width: 35em) {
  .lynn-tabs__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 48em) {
  .lynn-tabs__nav {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 35em) {
  .lynn-tabs__item {
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
  }
}

.lynn-tabs__item a {
  display: block;
  padding: 20px 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  background-color: white;
  border: 2px solid #828588;
  color: #828588;
}

.lynn-tabs__item a:hover {
  background: #d0d1d2;
}

.lynn-tabs__item.active a {
  color: white;
  background: #63666a;
}

/** Text **/
/**~
 *  _text-quotes.scss
 ~**/
.lynn-quote__detail {
  padding: 0 1rem 1rem;
  line-height: 1.25;
  font-weight: 300;
}

.lynn-quote__source {
  display: block;
  padding: 0 1rem;
  font-size: 0.75em;
  font-weight: 700;
}

.lynn-quote__action {
  padding: 0 1rem;
}

/** MOLECULES **/
/**~
 *  _tiles.scss
~**/
.lynn-tile__title {
  font-size: 1.5em;
  font-weight: 300;
}

.lynn-tile__detail {
  margin: 1rem 0 2rem;
}

@media screen and (min-width: 30em) {
  .lynn-tile__detail--lined {
    color: #b1b3b5;
    overflow: hidden;
  }
  .lynn-tile__detail--lined:before {
    right: .5em;
    margin-left: -50%;
  }
  .lynn-tile__detail--lined:after {
    left: .5em;
    margin-right: -50%;
  }
  .lynn-tile__detail--lined:before, .lynn-tile__detail--lined:after {
    content: "";
    display: inline-block;
    background-color: #b1b3b5;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
  }
}

.lynn-tile__action, .lynn-tile__subaction {
  margin: 1rem 0;
}

.lynn-tile__event-date {
  width: 32%;
  height: 4rem;
  margin: 0;
  vertical-align: middle;
  display: table-cell;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: #003da5;
  color: #fff;
}

.lynn-tile__event-time {
  font-weight: 300;
}

.lynn-tile__event-title {
  width: 68%;
  height: 4rem;
  margin: 0;
  padding-left: 10px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #003da5;
}

.lynn-tile--event {
  margin: 0;
  width: 100% !important;
}

.lynn-tile--event .lynn-tile__content {
  margin: auto;
  padding: 1.5rem;
}

.lynn-tile--event .lynn-tile__content .lynn-tile__detail,
.lynn-tile--event .lynn-tile__content .lynn-tile__action {
  text-align: left !important;
}

.lynn-tile--cta, .lynn-card--peekaboo .lynn-tile, .lynn-card--shade .lynn-tile, .lynn-card--shade-arrow .lynn-tile {
  margin: auto;
  text-align: center;
  width: 90%;
}

.lynn-tile--cta {
  margin-bottom: 4rem;
}

.lynn-tile--cta .lynn-tile__action .lynn-button--pill {
  display: block;
}

.lynn-tile--cta .lynn-tile__detail,
.lynn-tile--cta .lynn-tile__subaction {
  font-size: 1.25em;
}

.lynn-tile--news-event .lynn-meta {
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lynn-tile--news-event .lynn-datestamp {
  display: inline;
  font-weight: 700;
  vertical-align: middle;
}

.lynn-tile--news-event .lynn-list--horizontal {
  display: inline;
}

.lynn-tile--program .lynn-tile__action {
  margin: 0.5rem 0;
}

/** ORGANISMS **/
/**~
 *  _cards.scss
 ~**/
.lynn-card {
  margin: auto;
}

.lynn-card-content {
  position: relative;
}

.lynn-card__figure {
  margin-bottom: 2rem;
}

.lynn-card--peekaboo .lynn-card-content, .lynn-card--shade .lynn-card-content, .lynn-card--shade-arrow .lynn-card-content {
  overflow: hidden;
}

.lynn-card--peekaboo .lynn-card__figure, .lynn-card--shade .lynn-card__figure, .lynn-card--shade-arrow .lynn-card__figure {
  margin: 0;
}

.lynn-card--peekaboo .lynn-card__caption, .lynn-card--shade .lynn-card__caption, .lynn-card--shade-arrow .lynn-card__caption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.9);
  height: 100%;
  position: absolute;
  top: 100%;
  transition: all 0.7s ease 0s;
  width: 100%;
}

.lynn-card--peekaboo:hover .lynn-card__caption, .lynn-card--shade:hover .lynn-card__caption, .lynn-card--shade-arrow:hover .lynn-card__caption {
  height: 100%;
  margin: 0;
  top: 0;
}

.lynn-card--peekaboo .lynn-card__caption {
  height: 4rem;
  margin-top: -4rem;
  line-height: 1.25;
}

.lynn-card--peekaboo .lynn-card__caption--event {
  height: 4.75rem;
  margin-top: -4.75rem;
}

.lynn-card--peekaboo .lynn-card__caption--large {
  height: 7rem;
  margin-top: -7rem;
}

.lynn-card--peekaboo .lynn-card__caption--xlarge {
  height: 8rem;
  margin-top: -8rem;
}

.lynn-card--peekaboo .lynn-tile--event {
  margin: 0;
}

.lynn-card--peekaboo .lynn-tile--event .lynn-tile__detail {
  margin: 1rem 0.5rem;
}

.lynn-card--peekaboo .lynn-tile__action,
.lynn-card--peekaboo .lynn-tile__detail {
  display: none;
}

.lynn-card--peekaboo:hover .lynn-tile__action,
.lynn-card--peekaboo:hover .lynn-tile__detail {
  display: block;
}

.lynn-card--shade-arrow .lynn-card__caption:before {
  border-bottom: 0.25rem solid;
  color: rgba(99, 102, 106, 0.3);
  content: "\F077";
  display: inline;
  font-family: FontAwesome;
  font-size: 3rem;
  height: 1.5rem;
  line-height: 1;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: -1.5rem;
  width: 100%;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+1) .lynn-card__caption, .lynn-card--shade-arrow .lynn-card__caption--blue {
  background-color: rgba(0, 175, 215, 0.9);
  color: white;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+1) .lynn-card__caption:before, .lynn-card--shade-arrow .lynn-card__caption--blue:before {
  color: rgba(0, 175, 215, 0.9);
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+1) .lynn-card__caption .lynn-button, .lynn-card--shade-arrow .lynn-card__caption--blue .lynn-button {
  color: white;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+3) .lynn-card__caption, .lynn-card--shade-arrow .lynn-card__caption--green {
  background-color: rgba(120, 190, 32, 0.9);
  color: white;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+3) .lynn-card__caption:before, .lynn-card--shade-arrow .lynn-card__caption--green:before {
  color: rgba(120, 190, 32, 0.9);
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+3) .lynn-card__caption .lynn-button, .lynn-card--shade-arrow .lynn-card__caption--green .lynn-button {
  color: white;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+2) .lynn-card__caption, .lynn-card--shade-arrow .lynn-card__caption--orange {
  background-color: rgba(232, 119, 34, 0.9);
  color: white;
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+2) .lynn-card__caption:before, .lynn-card--shade-arrow .lynn-card__caption--orange:before {
  color: rgba(232, 119, 34, 0.9);
}

.lynn-panel--photostream .lynn-gi:nth-child(3n+2) .lynn-card__caption .lynn-button, .lynn-card--shade-arrow .lynn-card__caption--orange .lynn-button {
  color: white;
}

/** News and Events **/
.lynn-card--news.lynn-card--peekaboo .lynn-card__caption, .lynn-card--event.lynn-card--peekaboo .lynn-card__caption {
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}

@media screen and (min-width: 35em) {
  .lynn-card--news.lynn-card--peekaboo .lynn-card__caption, .lynn-card--event.lynn-card--peekaboo .lynn-card__caption {
    font-size: 0.875em;
  }
}

@media screen and (min-width: 64em) {
  .lynn-card--news.lynn-card--peekaboo .lynn-card__caption, .lynn-card--event.lynn-card--peekaboo .lynn-card__caption {
    font-size: 1em;
  }
}

.lynn-card--news.lynn-card--peekaboo .lynn-tile--news-event, .lynn-card--event.lynn-card--peekaboo .lynn-tile--news-event {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.lynn-card--news.lynn-card--peekaboo .lynn-meta, .lynn-card--event.lynn-card--peekaboo .lynn-meta {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  margin-bottom: 0;
  max-width: 100px;
}

.lynn-card--news.lynn-card--peekaboo .lynn-container, .lynn-card--event.lynn-card--peekaboo .lynn-container {
  -ms-flex: 2 1 0px;
  flex: 2 1 0;
  padding: 0.5rem;
  text-align: left;
}

.lynn-card--news.lynn-card--peekaboo .lynn-datestamp, .lynn-card--event.lynn-card--peekaboo .lynn-datestamp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.5rem 0.25rem;
}

.lynn-card--news.lynn-card--peekaboo .lynn-tile__title, .lynn-card--event.lynn-card--peekaboo .lynn-tile__title {
  font-size: 1em;
  font-weight: 700;
}

.lynn-card--news.lynn-card--peekaboo:hover .lynn-tile--news-event, .lynn-card--event.lynn-card--peekaboo:hover .lynn-tile--news-event {
  -ms-flex-align: start;
  align-items: flex-start;
}

.lynn-card--news.lynn-card--peekaboo:hover .lynn-container, .lynn-card--event.lynn-card--peekaboo:hover .lynn-container {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.lynn-card--event.lynn-card--peekaboo .lynn-datestamp {
  display: -ms-flexbox;
  display: flex;
  background-color: #003da5;
  color: white;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 4rem;
}

.lynn-card--event.lynn-card--peekaboo .lynn-time {
  font-weight: normal;
}

/** THEMES **/
/**~
 *  _themes.scss
 *
 *  Themes apply a combination of colors to elements
 *
 ~**/
.lynn-theme--gray-05 {
  background-color: #f7f7f8;
}

.lynn-theme--gray-10 {
  background-color: #eff0f0;
}

.lynn-theme--gray-20 {
  background-color: #e0e0e1;
}

.lynn-theme--gray-30 {
  background-color: #d0d1d2;
}

.lynn-theme--blue {
  background-color: #8bd3e6;
}

.lynn-theme--green {
  background-color: #b3d57d;
}

.lynn-theme--orange {
  background-color: #fdaa63;
}

/** THIRD PARTY **/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media screen and (min-width: 35em) {
  .lynn-carousel-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: white url("/images/ajax-loader.gif") center center no-repeat;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slick-prev,
.slick-next {
  height: 46px;
  width: 21px;
  opacity: .6;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: .8;
}

.slick-prev:before,
.slick-next:before {
  content: none;
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media screen and (min-width: 35em) {
  .slick-prev {
    left: 0;
    background-image: url("/images/slick-arrow-prev.svg");
  }
}

@media screen and (min-width: 35em) {
  .slick-next {
    right: 0;
    background-image: url("/images/slick-arrow-next.svg");
  }
}

.noselect {
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
}

.clndr-picker {
  position: absolute;
  z-index: 1;
}

.clndr {
  width: 100%;
  background-color: #fff;
}

.clndr .clndr-controls {
  position: relative;
  font-size: 13px;
  padding: 1rem 0;
  text-align: center;
  border: 1px solid #ebebeb;
  border-bottom: 0;
  width: 100%;
}

.clndr .clndr-controls .month {
  text-align: center;
  color: #9ea3a9;
  font-weight: 700;
  font-size: 1.5em;
}

.clndr .clndr-controls .clndr-control-button .clndr-next-button,
.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clndr .clndr-controls .clndr-control-button .clndr-next-button {
  position: absolute;
  right: 5%;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  top: 36%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.clndr .clndr-controls .clndr-control-button .clndr-next-button:before {
  content: "\f054";
}

.clndr .clndr-controls .clndr-control-button .clndr-next-button.inactive:hover {
  cursor: default;
}

.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
  position: absolute;
  left: 5%;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  top: 36%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.clndr .clndr-controls .clndr-control-button .clndr-previous-button:before {
  content: "\f053";
}

.clndr .clndr-controls .clndr-control-button .clndr-previous-button.inactive:hover {
  cursor: default;
}

.clndr .clndr-table tr .day.event {
  background: #EBEBEB;
  color: #000;
}

.clndr .clndr-table tr .dat.event:hover {
  background: #d5d5d5;
}

.lynn-calendar .clndr .clndr-table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}

.lynn-calendar .clndr .clndr-table .header-days {
  font-size: 16px;
  background: none;
  margin-bottom: 1em;
}

.lynn-calendar .clndr .clndr-table .header-days .header-day {
  vertical-align: middle;
  text-align: center;
  color: #333;
  font-weight: 700;
}

.lynn-calendar .clndr .clndr-table tr {
  height: 36px;
}

.lynn-calendar .clndr .clndr-table tr td {
  vertical-align: top;
  border: 1px solid #ebebeb;
}

.lynn-calendar .clndr .clndr-table tr .day {
  width: 100%;
  height: inherit;
  color: #9ea3a9;
  vertical-align: middle;
  cursor: pointer;
}

.lynn-calendar .clndr .clndr-table tr .selected {
  background-color: #003da5 !important;
  color: white !important;
}

.lynn-calendar .clndr .clndr-table tr .day.selected:hover {
  background-color: #003da5;
  color: white;
}

.lynn-calendar .clndr .clndr-table tr .day.today {
  /*background: #ebebeb;
      color: #000;*/
}

.lynn-calendar .clndr .clndr-table tr .day:hover {
  /*height: 36px;
      background-color: #ebebeb;*/
}

.lynn-calendar .clndr .clndr-table tr .day.today:hover {
  /*color: #000;*/
}

.lynn-calendar .clndr .clndr-table tr .day.today.event {
  background: #ebebeb;
  color: #000;
  border-radius: 0;
}

.lynn-calendar .clndr .clndr-table tr .day.event {
  background: #EBEBEB;
  color: #000;
}

.lynn-calendar .clndr .clndr-table tr .day.event:hover {
  background: #d5d5d5;
}

.lynn-calendar .clndr .clndr-table tr .day .day-contents:hover {
  /*color: #000;
      background-color: #ebebeb;*/
}

.lynn-calendar .clndr .clndr-table tr .day .day-contents {
  box-sizing: border-box;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
  font-weight: 300;
}

.lynn-calendar .clndr .clndr-table tr .adjacent-month,
.lynn-calendar .clndr .clndr-table tr .empty {
  width: 100%;
  height: inherit;
  color: #ccc;
}

.dat-c {
  color: #c5996c;
}

.day.event:hover {
  color: #000;
}

/*---- responsive-design -----*/
/*@media(max-width:1920px){
	.cal1 .clndr .clndr-table .header-days .header-day {
    height: 64px;
}
	.cal1 .clndr .clndr-table tr .day {
	height:64px;
}
}

@media(max-width:1600px){
	.cal1 .clndr .clndr-table .header-days .header-day {
    height: 60px;
}
	.cal1 .clndr .clndr-table tr .day {
	height:60px;
}
}

@media(max-width:1440px){
	.cal1 .clndr .clndr-table .header-days .header-day {
    height: 52px;
}
	.cal1 .clndr .clndr-table tr .day {
	height:52px;
}
}

@media(max-width:1366px){
	.cal1 .clndr .clndr-table .header-days .header-day {
    height: 52px;
}
	.cal1 .clndr .clndr-table tr .day {
	height:52px;
}
}

@media(max-width:667px){
	.clndr .clndr-controls .month {
	font-size:1.1em;
}
}

@media(max-width:640px){
	.cal1 .clndr .clndr-table .header-days .header-day {
    height: 47px;
}
	.cal1 .clndr .clndr-table tr .day {
    height: 47px;
}
	.cal1 .clndr .clndr-table tr .day:hover {
	height:47px;
}
}

@media (max-width: 600px){
	.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
	left:8%;
}
	.clndr .clndr-controls .clndr-control-button .clndr-next-button {
	right:8%;
}
}

@media (max-width: 414px){
	.clndr .clndr-controls .month {
	font-size:1.1em;
}
	.column_right_grid.calender {
	padding:1.7em;
}
	.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
	left:4%;
}
	.clndr .clndr-controls .clndr-control-button .clndr-next-button {
	right:4%;
}
}

@media (max-width: 384px){
	.clndr .clndr-controls {
	font-size: 1em;
	padding: 1.5em 0;
}
	.column_right_grid.calender {
	padding:1.5em;
}
	.clndr .clndr-controls .month {
    font-size: 1.1em;
}
	.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
	top:39%;
}
	.clndr .clndr-controls .clndr-control-button .clndr-next-button {
	top:39%;
}
}

@media (max-width: 375px){
	.clndr .clndr-controls {
	font-size:0.9em;
}
	.cal1 .clndr .clndr-table tr .day .day-contents {
	letter-spacing:1px;
}
}

@media (max-width: 320px){
	.column_right_grid.calender {
    padding: 12px;
}
	.clndr .clndr-controls {
	font-size: 14px;
	padding: 1em 0;
}
	.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
	top:34%;
}
	.clndr .clndr-controls .clndr-control-button .clndr-next-button {
	top:34%;
}
	.cal1 .clndr .clndr-table tr .day:hover {
	height: 45px;
}
	.cal1 .clndr .clndr-table tr .day {
    height: 45px;
}
	.cal1 .clndr .clndr-table tr .day .day-contents {
	letter-spacing:0px;
}
}*/
/*--//responsive-design---*/

/*# sourceMappingURL=master-web.css.map */
