@font-face {
  /* CREDIT: simonhearne.com/2021/layout-shifts-webfonts/#reduce-layout-shift-with-f-mods - Modified by GDCP - Glendale Designs */
  font-family: "fallback-font";
  src: local(Arial); 
  /*ascent-override: 190%;*/			/* Roboto Regular: 1900: overrides the size allocated for ascenders */
  /*descent-override: 50%;*/			/* Roboto Regular: -500: overrides the line height allocated for descenders */
  /*line-gap-override: 0;	*/			/* Roboto Regular: 0: overrides the gap between lines */
  /*advance-override: 237.7%;*/			/* Roboto Regular: 2377: sets an extra advance for each character, to help match line width and prevent word overflows */
 
 /* wow all that just messed everything up. The settings below actually worked best */
	
	ascent-override: 0;
    descent-override: 0;
    line-gap-override: normal;
    advance-override: 0;

}

html {
	box-sizing: border-box;
	line-height: 1.4;
	height: 100%;
	min-height: 100%;
	overflow-y: scroll;
	font-family: "Roboto", "fallback-font", Arial, sans-serif;
	font-size: 1em;
	font-weight: 400; /* 400 is Regular */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	color: #333333;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	touch-action: manipulation;
}

/* adjust fallback letter and word spacing: Roboto to Arial */
html.fallback {
	letter-spacing:0;
	word-spacing:0;
	/*font-weight: 300;*/
}

.u-font-primary, .t-font-roboto, .t-font-sans-serif, .u-font-sans-serif {
	font-family: "Roboto", "fallback-font", Arial, sans-serif;
}

.u-font-secondary, .t-font-dm-serif, .t-font-serif, .u-font-serif {
	font-family: "DM Serif Display", "Times New Roman", Times, serif;
}



*,
*::before,
*::after {
	box-sizing: inherit;
}

/**
 * Use a more readable tab size (opinionated).
*/
:root {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}


/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * Use a dotted underline in browsers that support it (e.g. Firefox, Chrome, etc...)
 * Fallback on a dotted bottom border in browsers that don't support it (e.g. IE11, Edge, etc...)
 * Source: https://github.com/necolas/normalize.css/pull/738#issuecomment-387549760
 */
abbr[title] {
	text-decoration: none;
	border-bottom: 1px dotted;
}

@supports ((-webkit-text-decoration: underline dotted) or (text-decoration: underline dotted)) {
	abbr[title] {
		-webkit-text-decoration: underline dotted;
		        text-decoration: underline dotted;
		border-bottom: 0;
	}
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: 700;
}

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
	font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE and Edge.
 */
button {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* ==========================================================================
   BASE / RESETS
   ========================================================================== */
/**
 * This contains some additional resets and baselines not facilitated by
 * 'normalize.css'. Editing is not recommended.
 */
/**
 * Implement a reduced-motion mode if the user has selected this system option.
 * Remove _all_ animations and transitions for people that prefer not to see them.
 * https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
 * https://css-tricks.com/introduction-reduced-motion-media-query/
 */
@media screen and (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-play-state: paused !important;
		        animation-play-state: paused !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* Vertical Rhythm
   =========================================== */
/**
 * Apply our base spacing unit as a `margin-bottom` to all block level elements
 * so that we get nice and consistent vertical rhythm very cheaply.
 * http://csswizardry.com/2012/06/single-direction-margin-declarations/
 */
address,
blockquote,
dl,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
menu,
ol,
p,
pre,
summary,
table,
ul {
	margin-top: 0;
	margin-bottom: 16px;
}

fieldset,
figure {
	margin-right: 0;
	margin-left: 0;
	padding: 0;
}

/**
 * We'll also indent list elements by the same amount of spacing. Also, we will
 * remove the left padding added by some user-agents.
 */
dd,
ol,
ul {
	margin-left: 16px;
	padding-left: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
	margin-bottom: 0;
}

/**
 * Pseudo Selection
 */
::-moz-selection {
	background: #eaeaea;
	text-shadow: none;
}

::selection {
	background: #eaeaea;
	text-shadow: none;
}

::-moz-selection:window-inactive {
	background: #eaeaea;
}

::selection:window-inactive {
	background: #eaeaea;
}

img::-moz-selection {
	background: rgba(0, 0, 0, 0);
}

img::selection {
	background: rgba(0, 0, 0, 0);
}

img::-moz-selection {
	background: rgba(0, 0, 0, 0);
}

/**
 * Identify Disabled/Not Allowed Elements
 */
*[disabled] {
	cursor: not-allowed;
}

/**
 * Breakpoints
 * These values will not show up in content, but can be queried by JavaScript
 * to know which breakpoint is active.
 */
body::before {
	display: none;
	content: "xsmall";
	visibility: hidden;
}

@media (min-width: 30em) {
	body::before {
		content: "xs";
	}
}

@media (min-width: 40em) {
	body::before {
		content: "small";
	}
}

@media (min-width: 48em) {
	body::before {
		content: "medium";
	}
}

@media (min-width: 60em) {
	body::before {
		content: "large";
	}
}

@media (min-width: 75em) {
	body::before {
		content: "xlarge";
	}
}

@media (min-width: 90em) {
	body::before {
		content: "wide";
	}
}

/* ==========================================================================
   ELEMENTS / FORMS
   ========================================================================== */
/**
 * Semantically, we'd like all forms to be built with FIELDSETs and LEGENDs, but
 * we currently don't want to visually see them.
 *
 * 1. Visually hide content, leaving it accessible to screen readers and ATs.
 *    http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
fieldset {
	margin-bottom: 0;
	border: none;
}

legend {
	/* [1] */
	width: 1px;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/**
 * Make sure our form elements don't use any UA-specific font styles: we want
 * them to use ours. This may need reverting as more design information becomes
 * available, and we start putting together more complete forms.
 */
input {
	font: inherit;
}

/* GDCP This royally messes up 3rd party stuff AND it looks bad GDCP */
/*
button,
input,
html,
select,
textarea {
	letter-spacing: 0.05em;
}
*/

/* ==========================================================================
   ELEMENTS / LINKS
   ========================================================================== */
/**
 * Our basic A elements only need very minimal styling. Anything more
 * opinionated (e.g. buttons, calls-to-action, etc.) will need a class defining
 * in the Components layer.
 */
a {
	color: #2186ca;
	text-decoration: none;
	cursor: pointer;
}

a:active,
a:focus,
.x-hover--allowed a:hover {
	-webkit-text-decoration: underline solid currentColor;
	        text-decoration: underline solid currentColor;
}

/* ==========================================================================
   ELEMENTS / MEDIA
   ========================================================================== */
/**
* 1. Fluid media for responsive purposes.
* 2. Setting 'vertical-align' removes the whitespace that appears under 'img'
*    elements when they are dropped into a page as-is. Safer alternative to
*    using 'display: block;'.
* 3. Progressive enhancement for better loading and CLS reduction:
*		https://web.dev/optimize-cls/
*		https://drafts.csswg.org/css-sizing-4/#ratios
*/
audio,
video {
	width: 100%;
}

audio:focus,
video:focus {
	outline: 1px dotted currentColor;
}

embed,
img,
object,
video {
	max-width: 100%;
	/* [1] */
	height: auto;
	/* [1] */
}

iframe {
	max-width: 100%;
	/* [1] */
}

embed,
object {
	height: 100%;
}

img {
	vertical-align: middle;
	/* [2] */
}




body {
	display: flex;
	min-height: 100%;
	flex-direction: column;
}

main {
	flex-grow: 1;
}

/* ==========================================================================
   ELEMENTS / TABLES
   ========================================================================== */
/**
 * Table styles are incredibly un-opinionated. Simply:
 *
 * 1. Force TABLEs to be full-width by default.
 * 2. Ensure their first and last cells in each row carry no indents.
 */
table {
	width: 100%;
	/* [1] */
}

th:first-child,
td:first-child {
	padding-left: 0;
	/* [2] */
}

th:last-child,
td:last-child {
	padding-right: 0;
	/* [2] */
}

/* ==========================================================================
   ELEMENTS / TYPOGRAPHY
   ========================================================================== */
/* Headings
   =========================================== */
/**
 * Force all headings to have the exact same *default* styling. This means we
 * are free to use the correct semantic element without having opinionated look-
 * and-feel attached to it. Provide all cosmetics for specific visual use cases
 * via heading classes (i.e. `.c-heading-*`).
 *
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/
 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 16px;
	font-weight: normal;
}

/* Other text-level elements
   =========================================== */
/**
 * As above, leave SMALL as a purely semantic choice, and omit any cosmetics.
 */
small {
	font: inherit;
}

/* ==========================================================================
   OBJECTS / LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system.
 *
 * The Layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width Utilities, for example:
 *
 *	<div class="o-layout">
 *		<div class="o-layout__item u-width-6">
 *		</div>
 *		<div class="o-layout__item u-width-6">
 *		</div>
 *	</div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 * 	<div class="o-layout">
 * 		<div class="o-layout__item u-width-12 u-width-4--m">
 * 		</div>
 * 		<div class="o-layout__item u-width-6 u-width-4--m">
 * 		</div>
 * 		<div class="o-layout__item u-width-6 u-width-4--m">
 * 		</div>
 * 	</div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our medium breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the medium breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of Modifiers
 * to the `.o-layout` Block. For example:
 *
 *	<div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *	<div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes.
   =========================================== */
.o-layout {
	display: flex;
	flex: 0 1 auto;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 0 0 -16px;
	padding: 0;
	list-style: none;
}

.o-layout__item {
	flex: 1 1 auto;
	max-width: 100%;
	padding-left: 16px;
}

.o-layout.o-layout__item {
	margin-left: 0;
}

/* Layout Display Direction.
 * The flex-direction property specifies the direction of the flexible items
 * inside the flex container. The default value of flex-direction is row
 * (left-to-right, top-to-bottom).
   =========================================== */
/**
 * To reverse the layout direction, use o-layout--row-reverse.
 */
.o-layout--row-reverse {
	flex-direction: row-reverse;
}

/**
 * Use o-layout--column to set the flex items vertically.
 */
.o-layout--column {
	align-items: flex-start;
	flex-direction: column;
}

.o-layout--column-center {
	align-items: center;
	flex-direction: column;
}

.o-layout--column > .o-layout__item[class*='u-width-12'],
.o-layout--column-reverse > .o-layout__item[class*='u-width-12'] {
	width: 100%;
}

/**
 * Same as column, but reversed.
 */
.o-layout--column-reverse {
	align-items: flex-start;
	flex-direction: column-reverse;
}
@media screen and (min-width: 30em) {
	.o-layout--row--xs {
		flex-direction: row;
	}
	.o-layout--row-reverse--xs {
		flex-direction: row-reverse;
	}
	.o-layout--column--xs {
		flex-direction: column;
	}
	.o-layout--column-reverse--xs {
		flex-direction: column-reverse;
	}
}
@media screen and (min-width: 40em) {
	.o-layout--row--s {
		flex-direction: row;
	}
	.o-layout--row-reverse--s {
		flex-direction: row-reverse;
	}
	.o-layout--column--s {
		flex-direction: column;
	}
	.o-layout--column-reverse--s {
		flex-direction: column-reverse;
	}
}
@media screen and (min-width: 48em) {
	.o-layout--row--m {
		flex-direction: row;
	}
	.o-layout--row-reverse--m {
		flex-direction: row-reverse;
	}
	.o-layout--column--m {
		flex-direction: column;
	}
	.o-layout--column-reverse--m {
		flex-direction: column-reverse;
	}
}

@media screen and (min-width: 60em) {
	.o-layout--row--l {
		flex-direction: row;
	}
	.o-layout--row-reverse--l {
		flex-direction: row-reverse;
	}
	.o-layout--column--l {
		flex-direction: column;
	}
	.o-layout--column-reverse--l {
		flex-direction: column-reverse;
	}
}

@media screen and (min-width: 75em) {
	.o-layout--row--xl {
		flex-direction: row;
	}
	.o-layout--row-reverse--xl {
		flex-direction: row-reverse;
	}
	.o-layout--column--xl {
		flex-direction: column;
	}
	.o-layout--column-reverse--xl {
		flex-direction: column-reverse;
	}
}

@media screen and (min-width: 90em) {
	.o-layout--row--w {
		flex-direction: row;
	}
	.o-layout--row-reverse--w {
		flex-direction: row-reverse;
	}
	.o-layout--column--w {
		flex-direction: column;
	}
	.o-layout--column-reverse--w {
		flex-direction: column-reverse;
	}
}

/* Gutter size modifiers.
   =========================================== */
/**
 * Smaller gutters between items.
 */
.o-layout--narrow {
	margin-left: -8px;
}

.o-layout--narrow > .o-layout__item {
	padding-left: 8px;
}

/**
 * Larger gutters between items.
 */
.o-layout--wide {
	margin-left: -32px;
}

.o-layout--wide > .o-layout__item {
	padding-left: 32px;
}

/**
 * No gutters between items.
 */
.o-layout--flush {
	margin-left: 0;
}

.o-layout--flush > .o-layout__item {
	padding-left: 0;
}

/**
 * Make full width of parent.
 */
.o-layout--full {
	margin-right: -16px;
}

/* Vertical gutter modifiers.
   =========================================== */
/**
 * Include vertical gutters on layout items.
 */
.o-layout--spaced > .o-layout__item {
	margin-bottom: 16px;
}

/**
	* If we've chosen to change the size of the horizontal gutters, let's change
	* the vertical gutters accordingly.
	*/
.o-layout--spaced.o-layout--narrow > .o-layout__item {
	margin-bottom: 8px;
}

.o-layout--spaced.o-layout--wide > .o-layout__item {
	margin-bottom: 32px;
}

/* Align-Items modifiers.
 * The align-items property controls how flex items are positioned
 * when the items do not use all available space along the container's cross-axis.
   =========================================== */
/**
 * Items are positioned at the start of the container's cross-axis.
 */
.o-layout--align-top {
	align-items: flex-start;
}

/**
 * Items are positioned along the center of the container's cross-axis.
 */
.o-layout--align-center {
	align-items: center;
}

/**
 * Items are positioned at the end of the container's cross-axis.
 */
.o-layout--align-bottom {
	align-items: flex-end;
}

/**
 * Items are positioned at along the container's cross-axis so that their baselines align.
 */
.o-layout--align-baseline {
	align-items: baseline;
}

/**
 * Default value. Items are stretched to fit the container's cross-axis.
 */
.o-layout--align-stretch {
	align-items: stretch;
}

/* Align-Content modifiers.
 * The align-content property controls how lines are positioned in multi-line containers.
   =========================================== */
/**
 * Default value. Lines are packed at the start of the container's cross-axis.
 */
.o-layout--align-content-start {
	align-content: flex-start;
}

/**
 * Lines are packed along the center of the container's cross-axis.
 */
.o-layout--align-content-center {
	align-content: center;
}

/**
 * Lines are packed at the end of the container's cross-axis.
 */
.o-layout--align-content-end {
	align-content: flex-end;
}

/**
 * Lines are distributed along the container's cross-axis with equal spacing around each line.
 */
.o-layout--align-content-around {
	align-content: space-around;
}

/**
 * Lines are distributed along the container's cross-axis with equal spacing between each line.
 */
.o-layout--align-content-between {
	align-content: space-between;
}

/* Align-Self modifiers.
 * The align-self property controls how individual flex items are positioned along the container's cross-axis.
   =========================================== */
/**
 * Default value. Items are aligned based on the flex container's `align-items` value.
 */
.o-layout--align-self-auto {
	align-self: auto;
}

/**
 * Items are aligned to the start of the flex container's cross-axis, despite the container's `align-items` value.
 */
.o-layout--align-self-start {
	align-self: flex-start;
}

/**
 * Items are aligned along the center of the flex container's cross-axis, despite the container's `align-items` value.
 */
.o-layout--align-self-center {
	align-self: center;
}

/**
 * Items are aligned to the end of the flex container's cross-axis, despite the container's `align-items` value.
 */
.o-layout--align-self-end {
	align-self: flex-end;
}

/**
 * Items are stretched to fill the flex container's cross-axis, despite the container's `align-items` value.
 */
.o-layout--align-self-stretch {
	align-self: stretch;
}

/* Justify-Content modifiers.
 * The justify-content property controls how flex items are positioned
 * when the items do not use all available space along the container's main-axis.
   =========================================== */
/**
 * Default value. Items are justified at the start of the container's main-axis.
 */
.o-layout--justify-start {
	justify-content: flex-start;
}

/**
 * Items are justified along the center of the container's main-axis.
 */
.o-layout--justify-center {
	justify-content: center;
}

/**
 * Items are justified at the end of the container's main-axis.
 */
.o-layout--justify-between {
	justify-content: space-between;
}
.o-layout--justify-end {
	justify-content: flex-end;
}
.o-layout--justify-evenly { 
	justify-content: space-evenly; 
}
.o-layout--justify-around {
	justify-content: space-around;
}


/* Growth control.
   =========================================== */
.o-layout--grow {
	flex-grow: 1;
}

.o-layout--no-grow {
	flex-grow: 0;
}

.o-layout--shrink {
	flex-shrink: 1;
}

.o-layout--no-shrink {
	flex-shrink: 0;
}

/* Wrapping modifiers.
   =========================================== */
.o-layout--no-wrap {
	flex-wrap: nowrap;
}

.o-layout--wrap {
	flex-wrap: wrap;
}

.o-layout--wrap-reverse {
	flex-wrap: wrap-reverse;
}

/* Flex ordering modifiers.
 * Set an item to be first or last in grid.
   =========================================== */
.o-layout__first {
	order: -1;
}

.o-layout__last {
	order: 1;
}

@media screen and (min-width: 30em) {
	.o-layout__first--xs {
		order: -1;
	}
	.o-layout__last--xs {
		order: 1;
	}
	.o-layout--justify-around--xs {
		justify-content: space-around;
	}
	.o-layout--justify-between--xs {
		justify-content: space-between;
	}
}
@media screen and (min-width: 40em) {
	.o-layout__first--s {
		order: -1;
	}
	.o-layout__last--s {
		order: 1;
	}
	.o-layout--justify-around--s {
		justify-content: space-around;
	}
	.o-layout--justify-between--s {
		justify-content: space-between;
	}
}

@media screen and (min-width: 48em) {
	.o-layout__first--m {
		order: -1;
	}
	.o-layout__last--m {
		order: 1;
	}
	.o-layout--justify-around--m {
		justify-content: space-around;
	}
	.o-layout--justify-between--m {
		justify-content: space-between;
	}
}

@media screen and (min-width: 60em) {
	.o-layout__first--l {
		order: -1;
	}
	.o-layout__last--l {
		order: 1;
	}
	.o-layout--justify-around--l {
		justify-content: space-around;
	}
	.o-layout--justify-between--l {
		justify-content: space-between;
	}
}
@media screen and (min-width: 75em) {
	.o-layout__first--xl {
		order: -1;
	}
	.o-layout__last--xl {
		order: 1;
	}
	.o-layout--justify-around--xl {
		justify-content: space-around;
	}
	.o-layout--justify-between--xl {
		justify-content: space-between;
	}
}
@media screen and (min-width: 90em) {
	.o-layout__first--w {
		order: -1;
	}
	.o-layout__last--w {
		order: 1;
	}
	.o-layout--justify-around--w {
		justify-content: space-around;
	}
	.o-layout--justify-between--w {
		justify-content: space-between;
	}
}

/* ==========================================================================
   OBJECTS / LISTS
   ========================================================================== */
/**
 * The o-list-bare object strips list-like appearance from lists by removing
 * their bullets, and any indentation.
 */
.o-list-bare {
	margin-left: 0;
	list-style: none;
}

/**
 * The o-list-block object displays any list of items into stacked blocks.
 */
.o-list-block {
	margin-left: 0;
	list-style: none;
}

.o-list-block__item {
	display: block;
}

/**
 * The o-list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
	margin-left: 0;
	list-style: none;
}

.o-list-inline__item {
	display: inline-block;
}

.o-list-inline__item:not(:last-child) {
	margin-right: 16px;
}

/* Spacing modifiers
	   =========================================== */
.o-list-inline--narrow > .o-list-inline__item {
	margin-right: 8px;
}

.o-list-inline--wide > .o-list-inline__item {
	margin-right: 32px;
}

/* ==========================================================================
   OBJECTS / TABLES
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML 'table's.
 */
.o-table {
	width: 100%;
}

/* Equal-width table cells.
	   ========================================================================== */
/**
	 * 'table-layout: fixed' forces all cells within a table to occupy the same
	 * width as each other. This also has performance benefits: because the browser
	 * does not need to (re)calculate cell dimensions based on content it discovers,
	 * the table can be rendered very quickly. Further reading:
	 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
	 */
.o-table--fixed {
	table-layout: fixed;
}

/* Padding variants.
	   ========================================================================== */
.o-table--narrow th,
.o-table--narrow td {
	padding: 8px;
}

.o-table--wide th,
.o-table--wide td {
	padding: 32px;
}

/* Borderless table
	 * Removes default border-bottom on TABLE rows.
	  =========================================== */
.o-table-borderless tr {
	border: none;
}

/* ==========================================================================
   OBJECTS / WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-site-wrapper {
	width: 100%;
	max-width: 100vw;
	margin-right: auto;
	margin-left: auto;
}

.o-wrapper {
	width: 100%;
	max-width: 80rem;
	margin-right: auto;
	margin-left: auto;
	padding-right: 16px;
	padding-left: 16px;
}

.o-wrapper--full {
	max-width: 100vw;
}

.o-wrapper--flush {
	padding-right: 0;
	padding-left: 0;
}

/* ==========================================================================
   COMPONENTS / BUTTONS
   ========================================================================== */
/**
 * 1.  Allows styling of box model properties.
 * 2.  Reset browser styles.
 * 3.  Subtract border-width from the padding so buttons don't grow if the
 *     border-width is modified.
 * 4.  Tidy alignment for when the button size needs to be modified.
 * 5.  Make buttons inherit font styles (necessary when styling `input`s as
 *     buttons).
 * 6.  Set default button font-size.
 * 7.  Set default button font-weight.
 * 8.  Set default button text-alignment.
 * 9.  Remove anchor text-decoration (necessary when styling `a`s as buttons).
 * 10. Base transparent border for modifiers to alter.
 * 11. Set default button border-radius.
 * 12. Set default button transition (color, background-color, border-color and box-shadow)
 * 13. Force all button-styled elements to appear click-able.
 */
.c-button {
	display: inline-block;
	/* [1] */
	margin: 0;
	/* [2] */
	padding: calc(0.5em - 1px) calc(1em - 1px);
	/* [3] */
	position: relative;
	vertical-align: middle;
	/* [4] */
	font-family: inherit;
	/* [5] */
	font-size: 1em;
	/* [6] */
	font-weight: 400;
	/* [7] */
	line-height: normal;
	text-align: center;
	/* [8] */
	text-decoration: none;
	/* [9] */
	background-color: #767676;
	border: 1px solid rgba(0, 0, 0, 0);
	/* [10] */
	border-radius: 0.12em;
	/* [11] */
	color: #fff;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	cursor: pointer;
	/* [13] */
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	/* [12] */
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.x-hover--allowed .c-button:hover,
.c-button:active,
.c-button:focus {
	text-decoration: none;
	/* [9] */
}

.x-hover--allowed .c-button:not([class*="u-bg-"]):hover {
	background-color: #ddd;
/*	color: #ff5f06;
	border-color: currentColor;*/
}

/**
 * Fix a Firefox bug whereby `input type="submit"` gains 2px extra padding.
 */
.c-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * Button Icon
 *
 * This enables an icon to be placed to the **left** of a button's text. The
 * icon's colour will be inherited from the component's `color` attribute unless
 * the icon has an explicit `fill` property set.
 *
 * Note: To avoid spacing issues, do *not* add an extra space character between
 *       your button text and image tag.
 *
 * 1. Offset icon from the text baseline to be centered within
      the component.
 * 2. Icons must always conform to a set width and height.
 * 3. Icon should inherit it's fill from the component's text colour.
 */
.c-button__icon {
	width: 16px;
	/* [2] */
	height: 16px;
	/* [2] */
	margin-right: 8px;
	position: relative;
	/* [1] */
	top: 4px;
	/* [1] */
	line-height: inherit;
	/* [1] */
	vertical-align: top;
	/* [1] */
	fill: currentColor;
	/* [3] */
}
.c-button__icon--right {
	margin-right: 0;
	margin-left: 8px;
}
.c-button--square {
	border-radius: 0 !important;
}
.c-button--hollow {
	background-color: rgba(0, 0, 0, 0);
	border-color: currentColor;
	color: #767676;
}

.c-button--hollow:not([class*="u-bg-"]):hover {
	background-color: #eaeaea;
}


.c-button--hollow-white {
	background-color: rgba(0, 0, 0, 0);
	border-color: #fff;
	color: #fff;
}
.x-hover--allowed .c-button--hollow:not([class*="u-color-"]):hover {
	background-color: #000;
}

/**
* For buttons you want to look like normal links.
*/
.c-button--clear {
	padding: 0;
	background-color: rgba(0, 0, 0, 0);
	vertical-align: baseline;
}

.x-hover--allowed .c-button--clear:hover,
.c-button--clear:active {
	border-bottom: 1px solid currentColor;
}

.x-hover--allowed .c-button--clear:not([class*="u-bg-"]):hover {
	background-color: rgba(0, 0, 0, 0);
}

/* Button state modifiers
   =========================================== */
/**
 * For buttons whose state is toggled.
 */
.c-button:disabled,
.c-button.is-disabled,
.x-hover--allowed .c-button.is-disabled:hover,
.c-button.is-disabled:active,
.c-button.is-disabled:focus {
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}

/**
* For buttons whose state is toggled when a related form or field contains
* an error or multiple errors.
*/
.c-button.is-error,
.x-hover--allowed .c-button.is-error:hover,
.c-button.is-error:active,
.c-button.is-error:focus,
.is-error .c-button,
.x-hover--allowed .is-error .c-button:hover,
.is-error .c-button:active,
.is-error .c-button:focus {
	background-color: #ee0020;
	border-color: #b30018;
	color: #fff;
	cursor: not-allowed;
}

/* Button sizing modifiers
   =========================================== */
.c-button--tiny {
	padding: calc(0.25em - 1px) calc(0.5em - 1px);
	/* [3] */
	font-size: 0.625em;
}

.c-button--small {
	padding: calc(0.333em - 1px) calc(0.667em - 1px);
	/* [3] */
	font-size: 0.75em;
}

.c-button--large {
	padding: calc(1em - 1px) calc(2em - 1px);
	/* [3] */
}

.c-button--huge {
	padding: calc(1.5em - 1px) calc(3em - 1px);
	/* [3] */
}
.c-button--huge2 {
	padding: calc(2em - 1px) calc(3em - 1px);
	/* [3] */
}

.c-button--flush {
	padding-right: 0;
	padding-left: 0;
}

/**
* For buttons that need to display full-width on small devices only.
*/
.c-button--full-small {
	display: block;
	width: 100%;
}

/**
* For buttons that need to display full-width.
*/
.c-button--full {
	display: block;
	width: 100%;
}

/* Button glossy modifiers
   =========================================== */
.c-button--glossy {
	box-shadow: 0 1px 4px -2px #767676;
	text-shadow: 0 -1px #767676;
}

.c-button--glossy::after {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
	border-radius: inherit;
	content: '';
}

/* ==========================================================================
   COMPONENTS / CONTROL GROUPS
   ========================================================================== */
/**
 * To group related buttons and/or inputs together, you can use the
 * `.c-control-group` wrapping element. This will bunch the related elements
 * together and remove the spacing between them.
 */
.c-control-group {
	display: flex;
}

.c-control-group .c-control-group__label {
	height: calc(2.5em - 2px);
	margin-bottom: 0;
	padding-right: 8px;
	line-height: calc(2.5em - 2px);
}

.c-control-group .c-control-group__button,
.c-control-group .c-control-group__field {
	border-radius: 0;
}

.c-control-group .c-control-group__field {
	height: auto;
	margin-bottom: 0;
}

.c-control-group .c-control-group__button:not(:first-child):not(:first-of-type),
.c-control-group .c-control-group__field:not(:first-child):not(:first-of-type) {
	border-left-width: 0;
}

.c-control-group .c-control-group__button:first-child,
.c-control-group .c-control-group__field:first-child {
	border-top-left-radius: 0.12em;
	border-bottom-left-radius: 0.12em;
}

.c-control-group .c-control-group__button:last-child,
.c-control-group .c-control-group__field:last-child {
	border-top-right-radius: 0.12em;
	border-bottom-right-radius: 0.12em;
}

/**
	 * Adding the `.c-control-group--rounded` modifier will make the first and
	 * last related elements rounded.
	 */
.c-control-group--rounded .c-control-group__button:first-child,
.c-control-group--rounded .c-control-group__field:first-child {
	border-top-left-radius: 10em;
	border-bottom-left-radius: 10em;
}

.c-control-group--rounded .c-control-group__field:first-child {
	padding-left: 16px;
}

.c-control-group--rounded .c-control-group__button:last-child,
.c-control-group--rounded .c-control-group__field:last-child {
	border-top-right-radius: 10em;
	border-bottom-right-radius: 10em;
}

/**
	 * Adding the `.c-control-group--rounded-right` modifier will make the last
	 * related element rounded.
	 */
.c-control-group--rounded-right .c-control-group__button:last-child,
.c-control-group--rounded-right .c-control-group__field:last-child {
	border-top-right-radius: 10em;
	border-bottom-right-radius: 10em;
}

/**
	 * Adding the `.c-control-group--rounded-left` modifier will make the first
	 * related element rounded.
	 */
.c-control-group--rounded-left .c-control-group__button:first-child,
.c-control-group--rounded-left .c-control-group__field:first-child {
	border-top-left-radius: 10em;
	border-bottom-left-radius: 10em;
}

/**
	 * Adding the `.c-control-group--stacked` modifier will turn the related
	 * elements into a vertical element.
	 */
.c-control-group--stacked {
	flex-wrap: wrap;
}

.c-control-group--stacked .c-control-group__button:not(:first-child):not(:first-of-type),
.c-control-group--stacked .c-control-group__field:not(:first-child):not(:first-of-type) {
	border-left-width: 1px;
}

.c-control-group--stacked .c-control-group__button,
.c-control-group--stacked .c-control-group__field {
	flex: 0 0 100%;
	max-width: 100%;
	margin-left: 0;
}

.c-control-group--stacked .c-control-group__button:not(:first-child):not(:first-of-type),
.c-control-group--stacked .c-control-group__field:not(:first-child):not(:first-of-type) {
	border-top: 0;
}

.c-control-group--stacked .c-control-group__button:not(:first-child):not(:last-child):not(:first-of-type):not(:last-of-type),
.c-control-group--stacked .c-control-group__field:not(:first-child):not(:last-child):not(:first-of-type):not(:last-of-type) {
	border-radius: 0;
}

.c-control-group--stacked .c-control-group__button:first-child,
.c-control-group--stacked .c-control-group__field:first-child {
	border-radius: 0.12em 0.12em 0 0;
}

.c-control-group--stacked .c-control-group__button:last-child,
.c-control-group--stacked .c-control-group__field:last-child {
	border-radius: 0 0 0.12em 0.12em;
}

/* ==========================================================================
   COMPONENTS / MINI-MODAL
   ========================================================================== */
.is-inert {
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.has-dialog {
	height: 100vh;
	overflow: hidden;
}

.c-dialog[aria-hidden="true"] {
	display: none;
}

.c-dialog[aria-hidden="false"] {
	display: block;
	position: relative;
	z-index: 500;
}

.c-dialog__overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.c-dialog__overlay,
.c-dialog__container {
	will-change: transform;
}

.c-dialog__container {
	width: 90vw;
	max-width: 40rem;
	min-width: 20rem;
	max-height: 90vh;
	padding: 2rem;
	background-color: #fff;
	border-radius: 0.25rem;
	overflow-y: auto;
}

.c-dialog__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-dialog__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
	color: #1156a9;
}

.c-dialog__close {
	background-color: transparent;
	border: 0 none;
	line-height: normal;
	color: red;
	cursor: pointer;
	font-size: 22px;
}

.c-dialog__close::before {
	content: "\2715";
}

.c-dialog__content {
	margin-top: 2rem;
}

.c-dialog__content > *:last-child {
	margin-bottom: 0;
}

/**************************\
  Animation Style
\**************************/
@-webkit-keyframes dialogFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes dialogFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes dialogFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes dialogFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes dialogSlideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes dialogSlideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@-webkit-keyframes dialogSlideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

@keyframes dialogSlideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

.c-dialog[aria-hidden="false"] .c-dialog__overlay {
	-webkit-animation: dialogFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
	        animation: dialogFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-dialog[aria-hidden="false"] .c-dialog__container {
	-webkit-animation: dialogSlideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
	        animation: dialogSlideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-dialog[aria-hidden="true"] .c-dialog__overlay {
	-webkit-animation: dialogFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
	        animation: dialogFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-dialog[aria-hidden="true"] .c-dialog__container {
	-webkit-animation: dialogSlideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
	        animation: dialogSlideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* ==========================================================================
   COMPONENTS / DIVIDER
   ========================================================================== */
/**
 * Divider component to provide more prominent horizontal rules between other
 * elements.
 *
 * The default Divider and it's `--top` modifier are intended for use on
 * horizontal rules.
 * e.g. `<hr class="c-divider">`
 *
 * 1. Set a transparent border on the relevant edge to prevent element collapse.
 * 2. Reduce the `margin-bottom` by the same width as the divider in order to
 *    keep on our baseline grid.
 */
.c-divider {
	position: relative;
	margin-bottom: 15px;
	/* 2 */
	border: solid transparent;
	border-width: 0 0 1px;
	/* 1 */
}

.c-divider::before,
.c-divider::after {
	display: block;
	position: absolute;
	width: 100%;
	content: "";
}

/**
	 * Divider gradient border.
	 */
.c-divider::before {
	bottom: 0;
	height: 1px;
	background: linear-gradient(to right, rgba(191, 191, 191, 0), silver, rgba(191, 191, 191, 0));
}

/**
	 * Divider shadow.
	 */
.c-divider::after {
	top: 100%;
	height: 8px;
	background: radial-gradient(at 50% 0, rgba(74, 74, 74, 0.15), transparent 40%);
}

/**
 * Top divider
 */
.c-divider--top {
	border-width: 1px 0 0;
}

.c-divider--top::before {
	bottom: 100%;
	background: linear-gradient(to right, rgba(191, 191, 191, 0), silver, rgba(191, 191, 191, 0));
}

.c-divider--top::after {
	top: calc(8px + 1px*-1px);
	background: radial-gradient(at 50% 100%, rgba(74, 74, 74, 0.15), transparent 40%);
}

/* ==========================================================================
   COMPONENTS / FORMS
   ========================================================================== */
/* Form list
  =========================================== */
/**
 * All form fields should be presented in a list so that
 *
 *   a) they are easier to navigate using a screen reader;
 *   b) if CSS fails to load for any reason, the user is still presented with a
 *      well-formatted list of fields.
 */
.c-form-list:not(.o-layout) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-form-list__item,
.c-form__item {
	display: block;
	margin-bottom: 0.5em;
	width: 100%;
}

.c-form-list .c-form-list__item:last-child,
.c-form-list .c-form__item:last-child {
	margin-bottom: 0;
}

@media (min-width: 48em) {
	.c-form-list__item,
	.c-form__item {
		/*max-width: 20em;*/
	}
	/* For any inputs that need to be displayed full-width */
	.c-form-list__item--full,
	.c-form__item--full {
		max-width: 100%;
	}
}

/* Form labels
  =========================================== */
/**
 * All LABEL elements must also carry a class of `.c-form-label`. By applying
 * these styles to a class and not to the LABEL element directly, we are free
 * to reuse the same look-and-feel on spoofed LABEL elements. E.g. when we have
 * a ‘meta label’ covering a number of sub labels:
 *
 *   Gender
 *   • Male  • Female  • Rather not say
 *
 */
.c-form-label {
	display: inline-block;
	margin-bottom: 0.25em;
}

/* Form text inputs
  =========================================== */
/**
 * All text-like form inputs require a class of `.c-form-input`: we do not use
 * selectors like `input[type="text"] {}`.
 *
 * 1. Fix for IE 10/11 removing vertical padding from inputs which was being
 *	  ignored.
 * 2. Padding added via line-height/height to re-center text for all browsers
 * 	  (38px to account for border).
 */
.c-form-input {
	display: inline-block;
	margin-bottom: 0.25em;
	padding: 0 0.5em;
	/* [1] */
	width: 100%;
	height: calc(2.5em - 2px);
	/* [2] */
	line-height: calc(2.5em - 2px);
	/* [2] */
	background-color: #fff;
	border: 1px solid #c0c0c0;
	border-radius: 0.125em;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

/**
	 * For use on large text inputs such as textareas
	 */
.c-form-input--long {
	height: 6em;
}

.c-form-input--file {
	padding: 0;
	line-height: calc(2em - 2px);
}

/* Form select inputs
  =========================================== */
.c-form-select-4preview,
.c-form-select {
	display: inline-block;
	position: relative;
	margin-bottom: 0.25em;
	width: 100%;
	font-size: 1em;
	line-height: 1.5;
	cursor: pointer;
}


/**
	* Gradient to hide the overflow of long labels
	*
	* 1. Stretch to full height on the right (taking into account border width)
	*/
.c-form-select-4preview::before,
.c-form-select::before {
	position: absolute;
	top: 0.12em;
	/* [1] */
	right: 0.12em;
	/* [1] */
	bottom: 0.12em;
	/* [1] */
	width: 2em;
	background: #fff;
	background: linear-gradient(to left, white 60%, rgba(255, 255, 255, 0));
	border-radius: 0 0.12em 0.12em 0;
	content: "";
	pointer-events: none;
}

/**
	* Custom drop-down indicator icon
	*/
.c-form-select::after {
	position: absolute;
	top: 50%;
	right: 0.5em;
	margin-bottom: 0.25em;
	width: 0.5em;
	height: 0.5em;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAkCAYAAAA5DDySAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPVJREFUeNrk2s0NgzAMhmFno47EKGzQETpSR2CEjkCjyEg0aiAhP7Y/IuUSuLyPhDg4RLycc5PfH78fBLy48/3TyYcrb1iEv53RISxCqpM4dkVGSMSHTakHKAhH8RvAExXhLD58AvziCw0hJz7+E8AgFMcjIVyOR0CojreM0CzeIkLzeEsI3eItIHSP14wwLF4jwvB4TQhi8RoQxOMlEdTESyCoix+JoDZ+BIL6+J4IZuJ7IJiLb4lgNr4Fgvn4GgSY+CsIcPGFCDP0bCIDAXowU4OANZ8sRMCcUGciYN9ROEGAv6BxhHCP+B3CvLubsEjFfwUYAKjtGJxFvDJsAAAAAElFTkSuQmCC") no-repeat center center;
	background-size: contain;
	content: "";
	pointer-events: none;
	transform: translateY(-50%);
}

.c-form-select__dropdown {
	width: 100%;
	height: calc(2.5em - 2px);
	padding: 0.5em 0.5em;
	font-size: inherit;
	background-color: #fff;
	border: 0.12em solid #c0c0c0;
	border-radius: 0.12em;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.c-form-select__dropdown::-ms-expand {
	display: none;
}

/* Form checkbox inputs
  =========================================== */
.c-form-checkbox {
	display: inline-block;
	margin-bottom: 0.25em;
	width: 100%;
	cursor: pointer;
	font-size: 1em;
}

/**
	 * For cases where checkboxes or radio buttons need to display inline.
	 */
.c-form-checkbox--inline {
	width: auto;
	margin-right: 2em;
}

/**
	 * Hide the default input visually to utilise keyboard functionality and allow
	 * for custom input styles.
	 */
.c-form-checkbox__input {
	width: 1px;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.c-form-checkbox__caption {
	display: flex;
	align-items: center;
	position: relative;
	margin-left: 2em;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.c-form-checkbox__caption::before {
	display: inline-block;
	position: relative;
	width: 1em;
	height: 1em;
	margin-right: 1em;
	margin-left: -2em;
	background-color: #fff;
	border: 0.12em solid #c0c0c0;
	content: "";
	transition: border-color 0.25s ease;
	flex-grow: 0;
	flex-shrink: 0;
}

.c-form-checkbox--radio .c-form-checkbox__caption::before {
	border-radius: 100%;
}

.c-form-checkbox__input:focus + .c-form-checkbox__caption {
	outline: auto #4d90fe;
}

.c-form-checkbox__input:checked + .c-form-checkbox__caption::before {
	box-shadow: inset 0 0 0.5em 0 rgba(0, 0, 0, 0.2);
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.c-form-checkbox__input:checked + .c-form-checkbox__caption::after {
	width: 1.12em;
	height: 1.12em;
	position: absolute;
	top: 50%;
	left: -2em;
	content: "";
	background-color: #000;
	border: 0.12em solid currentColor;
	box-shadow: inset 0 0 0 2px #fff;
	transform: translateY(-50%);
}

.c-form-checkbox--radio .c-form-checkbox__input:checked + .c-form-checkbox__caption::after {
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIyMHB4IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyMCAyMCIgd2lkdGg9IjIwcHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGUvPjxkZXNjLz48ZGVmcy8+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSI+PGcgZmlsbD0iIzAwMDAwMCIgaWQ9IkNvcmUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMzguMDAwMDAwLCAtMzM4LjAwMDAwMCkiPjxnIGlkPSJyYWRpby1idXR0b24tb24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMzOC4wMDAwMDAsIDMzOC4wMDAwMDApIj48cGF0aCBkPSJNMTAsNSBDNy4yLDUgNSw3LjIgNSwxMCBDNSwxMi44IDcuMiwxNSAxMCwxNSBDMTIuOCwxNSAxNSwxMi44IDE1LDEwIEMxNSw3LjIgMTIuOCw1IDEwLDUgTDEwLDUgWiBNMTAsMCBDNC41LDAgMCw0LjUgMCwxMCBDMCwxNS41IDQuNSwyMCAxMCwyMCBDMTUuNSwyMCAyMCwxNS41IDIwLDEwIEMyMCw0LjUgMTUuNSwwIDEwLDAgTDEwLDAgWiBNMTAsMTggQzUuNiwxOCAyLDE0LjQgMiwxMCBDMiw1LjYgNS42LDIgMTAsMiBDMTQuNCwyIDE4LDUuNiAxOCwxMCBDMTgsMTQuNCAxNC40LDE4IDEwLDE4IEwxMCwxOCBaIiBpZD0iU2hhcGUiLz48L2c+PC9nPjwvZz48L3N2Zz4=");
	border-radius: 100%;
}

.c-form-checkbox__input:disabled + .c-form-checkbox__caption {
	opacity: 0.5;
	cursor: not-allowed;
}

.c-form-checkbox__input:disabled + .c-form-checkbox__caption::before {
	background-color: #eaeaea;
	border-color: #eaeaea;
}

/* Disabled Form Elements
   =========================================== */
.c-form-input[disabled],
.c-form-select__dropdown[disabled],
.c-form-checkbox__input[disabled] {
	background-color: #eaeaea;
}

/* Form errors
  =========================================== */
/**
 * Errors are handled by adding the .has-error class to the field's parent –
 * usually the .c-form-list__item.
 *
 * The `invalid` class is included here to work with code output by Miva Merchant on some pages.
 */
.has-error,
.invalid {
	color: #ee0020;
}

/**
	 * Change form field styles
	 */
.has-error .c-form-input,
.invalid .c-form-input,
.c-form-input.has-error,
.has-error .c-form-select__dropdown,
.invalid .c-form-select__dropdown,
.c-form-select__dropdown.has-error {
	border-color: #ee0020;
}

.has-error .c-form-input:focus,
.invalid .c-form-input:focus,
.c-form-input.has-error:focus,
.has-error .c-form-select__dropdown:focus,
.invalid .c-form-select__dropdown:focus,
.c-form-select__dropdown.has-error:focus {
	border-color: #fff;
	box-shadow: inset 0 0 0.5em 0 rgba(238, 0, 32, 0.75);
}

/**
	 * Change checkbox/radio indicator border color
	 */
.has-error .c-form-checkbox__caption::before,
.invalid .c-form-checkbox__caption::before,
.c-form-checkbox__caption.has-error::before,
.c-form-checkbox__caption:invalid::before {
	border-color: #ee0020;
}

/* Input sizing modifiers
   =========================================== */
.c-form-input--large {
	height: calc(3.875em - 2px);
	/* [2] */
	line-height: calc(3.875em - 2px);
	/* [2] */
}

.c-form-input--huge {
	height: calc(4.5em - 2px);
	/* [2] */
	line-height: calc(4.5em - 2px);
	/* [2] */
}

.c-form-input--large.c-form-select__dropdown,
.c-form-input--huge.c-form-select__dropdown {
	line-height: inherit;
}

/* ==========================================================================
   COMPONENTS / KEYLINE
   ========================================================================== */
/**
 * Simple keyline component to provide horizontal rules between other elements.
 * e.g. `<hr class="c-keyline">`
 *
 * 1. Reduce the `margin-bottom` by the same width as the keyline in order to
 *    keep on our baseline grid.
 */
.c-keyline {
	margin-bottom: 15px;
	/* [1] */
	border: none;
	border-bottom: 1px solid #eaeaea;
}

/**
 * Heavier keylines.
 */
.c-keyline--thick {
	margin-bottom: 14px;
	/* [1] */
	border-bottom-width: 2px;
}

/**
 * Smaller gaps underneath keylines.
 */
.c-keyline--small {
	margin-bottom: 7px;
	/* [1] */
}

/**
	 * Adjust smaller gaps underneath thicker keylines.
	 */
.c-keyline--small.c-keyline--thick {
	margin-bottom: 6px;
	/* [1] */
}

/* ==========================================================================
   COMPONENTS / MENU
   ========================================================================== */
.c-menu__title {
	font-weight: 700;
}

.c-menu__list {
	margin-left: 0;
	line-height: 2;
	list-style: none;
}

.c-menu__link {
	display: block;
	color: currentColor;
}

@media (min-width: 48em) {
	.c-menu__link {
		display: inline-block;
	}
}

/* ==========================================================================
   COMPONENTS / NAVIGATION
   ========================================================================== */
.c-navigation {
	position: relative;
}

.c-navigation__trigger {
	display: none;
}

.c-navigation__trigger:checked ~ .c-navigation__row,
.c-navigation__trigger:checked ~ .c-navigation__row .c-navigation__row {
	display: block;
}

.c-navigation__label {
	display: block;
	min-height: 2em;
	margin: 0;
	padding: 1em;
	position: relative;
	font-style: normal;
	background-color: #767676;
	color: #fff;
}

.c-navigation__label::after,
.c-navigation__label::before {
	position: absolute;
	right: 1em;
	transition: 0.4s cubic-bezier(0.2, 0.6, 0.3, 1.1);
}

.c-navigation__label::after {
	content: "\2212";
	opacity: 0;
	transform: scale(0);
}

.c-navigation__label::before {
	content: "\2261";
	opacity: 1;
	transform: scale(2);
}

.c-navigation__trigger:checked ~ .c-navigation__label::after {
	opacity: 1;
	transform: scale(2);
}

.c-navigation__trigger:checked ~ .c-navigation__label::before {
	opacity: 0;
	transform: scale(0);
}

.c-navigation__row {
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-navigation__link {
	display: block;
	padding: 0.5em 1em;
	background-color: #fff;
	color: #000;
}

.x-hover--allowed .c-navigation__link:hover {
	text-decoration: none;
	box-shadow: 0 2px 0 -1px #000;
	transition: box-shadow ease-in 0.2s;
}

.c-navigation__row:nth-child(2) .c-navigation__link {
	padding-left: 2em;
}

.c-navigation__row:nth-child(2) .c-navigation__row:last-of-type .c-navigation__link {
	padding-left: 3em;
}

@media (min-width: 48em) {
	.c-navigation__label {
		display: none;
	}
	.c-navigation__row,
	.c-navigation__trigger:checked ~ .c-navigation__row,
	.c-navigation__trigger:checked ~ .c-navigation__row .c-navigation__row {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.c-navigation__list {
		position: relative;
		flex: 1 1 auto;
		text-align: center;
	}
	.c-navigation__list .c-navigation__row {
		display: none;
		min-width: 100%;
		position: absolute;
		white-space: nowrap;
		z-index: 100;
	}
	.c-navigation__row:nth-child(2) .c-navigation__list {
		text-align: left;
	}
	.c-navigation__row:nth-child(2) .c-navigation__row:last-of-type {
		top: 0;
		left: 100%;
		z-index: 200;
	}
	.c-navigation__row:nth-child(2) .c-navigation__link,
	.c-navigation__row:nth-child(2) .c-navigation__row:last-of-type .c-navigation__link {
		padding-left: 1em;
	}
	.x-hover--allowed .c-navigation__row:nth-child(2) .c-navigation__link:hover {
		background-color: #eaeaea;
		box-shadow: none;
		transition: background-color ease-in 0.2s;
	}
	.x-hover--allowed .c-navigation__list:hover > .c-navigation__row {
		display: table;
		box-shadow: 1px 1px 0.25em 0 #000;
	}
	.c-navigation__link {
		border-right: 0 solid #000;
		/* Change to 1px to add a right-border */
	}
	.c-navigation__list:last-of-type .c-navigation__link,
	.c-navigation__row:nth-child(2) .c-navigation__list .c-navigation__link {
		border-right: 0;
	}
}

/* ==========================================================================
   COMPONENTS / TABLES
   ========================================================================== */
/**
 * The simple table offers easy to read data with a horizontal divider between
 * rows at the expense of occupying more space.
 */
.c-table-simple {
	border-collapse: collapse;
}

.c-table-simple__row {
	border-bottom: 1px solid #767676;
}

.c-table-simple__cell {
	padding: 8px;
	text-align: left;
	vertical-align: top;
}

.c-table-simple__cell--standard {
	padding: 16px;
}

.c-table-simple__cell--wide {
	padding: 32px;
}

/**
 * The stripped table offers easy to read data with alternating background rows.
 */
.c-table-stripped {
	border-collapse: collapse;
}

.c-table-stripped__row:not(:nth-child(even)) {
	background-color: #eaeaea;
}

/**
 * This is a basic, responsive table set-up. It does require using a `data-label`
 * attribute if you would like to show the row titles.
 */
.c-table-responsive {
	width: 100%;
	border-collapse: collapse;
}

.c-table-responsive_thead {
	display: none;
}

.c-table-responsive__row {
	display: block;
	margin-bottom: 8px;
	border-bottom: 1px solid #767676;
}

.c-table-responsive__cell {
	display: block;
	padding-bottom: 8px;
}

.c-table-responsive__cell::before {
	display: block;
	font-weight: 700;
	text-align: left;
	content: attr(data-label);
}

.c-table-responsive__cell--flex {
	display: flex;
	justify-content: space-between;
}

@media screen and (min-width: 40em) {
	.c-table-responsive_thead {
		display: table-header-group;
	}
	.c-table-responsive__row {
		display: table-row;
		margin-bottom: 0;
	}
	.c-table-responsive__cell {
		display: table-cell;
		padding: 8px;
		text-align: left;
		vertical-align: top;
	}
	.c-table-responsive__cell--standard {
		padding: 16px;
	}
	.c-table-responsive__cell--wide {
		padding: 32px;
	}
	.c-table-responsive__cell::before {
		display: none;
		content: '';
	}
}

/* ==========================================================================
   COMPONENTS / TYPOGRAPHY
   ========================================================================== */
/**
 * In order to divorce our semantic decisions from our stylistic ones, we only
 * define opinionated typographical styles against classes, NOT against
 * typographic HTML elements.
 *
 * Further reading:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/
 */
/* Heading-level typography
  =========================================== */
.c-heading-alpha {
	font-size: 34px;
	line-height: 1.26;
}

.c-heading-bravo {
	font-size: 28px;
	line-height: 1.215;
}

.c-heading-charlie {
	font-size: 19px;
	line-height: 1.125;
}

.c-heading-delta {
	font-size: 19px;
	line-height: 1.125;
}

.c-heading--echo,
.c-heading-echo {
	font-size: 16px;
	line-height: 1.125;
}

.c-heading-foxtrot {
	font-size: 13px;
	line-height: 1.125;
}


.c-heading--subheading {
	font-size: 0.6em;
	font-weight: 400;
}

.c-heading--keyline {
	display: inline-block;
	margin-bottom: 1em;
	position: relative;
}

.c-heading--keyline::after {
	display: block;
	width: 25%;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0.5em);
	background-color: #c0c0c0;
	content: "";
}

/* Text-level typography
  =========================================== */
.c-text-body {
	font-size: 16px;
}

/* ==========================================================================
   UTILITIES / BORDERS
   ========================================================================== */
/**
 * Utility classes to adjust element borders.
 */
.u-border-none {
	border-width: 0;
}

.u-border-thick {
	border-width: 2px;
}

.u-border-rounded {
	border-radius: 10em;
}

.u-border-square {
	border-radius: 0;
}

/* ==========================================================================
   UTILITIES / CLEAR FIX
   ========================================================================== */
/**
 * Class-based implementation of the 'clearfix hack'.
 * http://cssmojo.com/the-very-latest-clearfix-reloaded/
 */
.u-clear-fix::after {
	display: table;
	clear: both;
	content: "";
}

/* ==========================================================================
   UTILITIES / COLORS
   ========================================================================== */
/**
 * Utility classes to adjust element colors inline.
 * Both .u-bg-*** and .u-color-*** work for each color class.
 */
.u-bg-red::before,
.u-bg-red {
	background-color: #ee0020;
}

.u-bg-yellow::before,
.u-bg-yellow {
	background-color: #febf29;
}

.u-bg-orange::before,
.u-bg-orange {
	background-color: #ff5f06;
}

.u-bg-gold::before,
.u-bg-gold {
	background-color: #cc9900;
}

.u-bg-blue::before,
.u-bg-blue {
	background-color: #1156a9;
}

.u-bg-lblue::before,
.u-bg-lblue {
	background-color: #2d80e5;
}

.u-bg-green::before,
.u-bg-green {
	background-color: #4d842f;
}

.u-bg-black::before,
.u-bg-black {
	background-color: #000;
}
.u-bg-gray::before,
.u-bg-gray {
	background-color: #999;
}
.u-bg-gray-50::before,
.u-bg-gray-50 {
	background-color: #222;
}

.u-bg-gray-40::before,
.u-bg-gray-40 {
	background-color: #666;
}

.u-bg-gray-30::before,
.u-bg-gray-30 {
	background-color: #767676;
}

.u-bg-gray-20::before,
.u-bg-gray-20 {
	background-color: #c0c0c0;
}
.u-bg-silver::before,
.u-bg-silver,
.u-bg-gray-10::before,
.u-bg-gray-10 {
	background-color: #eaeaea;
}

.u-bg-white::before,
.u-bg-white {
	background-color: #fff;
}

.u-bg-transparent {
	background-color: transparent;
}

.u-bg-primary::before,
.u-bg-primary {
	background-color: #3d70b2;
}

.u-bg-secondary::before,
.u-bg-secondary {
	background-color: #5aaafa;
}

.u-bg-tertiary::before,
.u-bg-tertiary {
	background-color: #008571;
}

.u-bg-highlight::before,
.u-bg-highlight {
	background-color: #febf29;
}

.u-bg-accent::before,
.u-bg-accent {
	background-color: #3cc;
}

.x-hover--allowed .c-button:hover.u-bg-red {
	background-color: #b30018;
}

.x-hover--allowed .c-button:hover.u-bg-yellow {
	background-color: #bbb217;
}
.x-hover--allowed .c-button:hover.u-bg-orange {
	background-color: #ff5f06;
}
.x-hover--allowed .c-button:hover.u-bg-gold {
	background-color: #70570b;
}
.x-hover--allowed .c-button:hover.u-bg-blue {
	background-color: #003366;
}
.x-hover--allowed .c-button:hover.u-bg-lblue {
	background-color: #1156a9;
}
.x-hover--allowed .c-button:hover.u-bg-green {
	background-color: #95d03a;
/*	transform: scale(1.02);
	transform-origin: center center;*/
}
.x-hover--allowed .c-button:hover.u-bg-black {
	background-color: #404040;
}
.x-hover--allowed .c-button:hover.u-bg-gray-50 {
	background-color: #595959;
}
.x-hover--allowed .c-button:hover.u-bg-gray-40 {
	background-color: #838383;
}
.x-hover--allowed .c-button:hover.u-bg-gray-30 {
	background-color: #595959;
}
.x-hover--allowed .c-button:hover.u-bg-gray-20 {
	background-color: #909090;
}
.x-hover--allowed .c-button:hover.u-bg-gray-10 {
	background-color: #b0b0b0;
}
.x-hover--allowed .c-button:hover.u-bg-white {
	background-color: #bfbfbf;
}
.x-hover--allowed .c-button:hover.u-bg-primary {
	background-color: #2e5486;
}
.x-hover--allowed .c-button:hover.u-bg-secondary {
	background-color: #4480bc;
}
.x-hover--allowed .c-button:hover.u-bg-tertiary {
	background-color: #006455;
}
.x-hover--allowed .c-button:hover.u-bg-highlight {
	background-color: #bbb217;
}
.x-hover--allowed .c-button:hover.u-bg-accent {
	background-color: #269999;
}

.u-border-red {
	border-color: #ee0020;
}
.u-border-yellow {
	border-color: #febf29;
}
.u-border-orange {
	border-color: #ff5f06;
}
.u-border-blue {
	border-color: #1156a9;
}
.u-border-lblue {
	border-color: #2d80e5;
}


.u-border-green {
	border-color: #4d842f;
}

.u-border-black {
	border-color: #000;
}

.u-border-gray-50 {
	border-color: #222;
}

.u-border-gray-40 {
	border-color: #595959;
}

.u-border-gray-30 {
	border-color: #767676;
}

.u-border-gray-20 {
	border-color: #c0c0c0;
}

.u-border-gray-10 {
	border-color: #eaeaea;
}

.u-border-white {
	border-color: #fff;
}

.u-border-transparent {
	border-color: transparent;
}

.u-border-primary {
	border-color: #3d70b2;
}

.u-border-secondary {
	border-color: #5aaafa;
}

.u-border-tertiary {
	border-color: #008571;
}

.u-border-highlight {
	border-color: #febf29;
}

.u-border-accent {
	border-color: #3cc;
}

.u-color-red {
	color: #ee0020;
}

.u-color-yellow {
	color: #febf29;
}
.u-color-orange {
	color: #ff5f06;
}
.u-color-gold {
	color: #cc9900;
}

.u-color-blue {
	color: #1156a9;
}

.u-color-lblue {
	color: #2d80e5;
}

.u-color-green {
	color: #4d842f;
}

.u-color-black {
	color: #000;
}
.u-color-gray {
	color: #999;
}
.u-color-gray-50 {
	color: #222;
}

.u-color-gray-40 {
	color: #595959;
}

.u-color-gray-30 {
	color: #767676;
}

.u-color-gray-20 {
	color: #c0c0c0;
}

.u-color-silver,
.u-color-gray-10 {
	color: #eaeaea;
}

.u-color-white {
	color: #fff;
}

.u-color-transparent {
	color: transparent;
}

.u-color-primary {
	color: #3d70b2;
}

.u-color-secondary {
	color: #5aaafa;
}

.u-color-tertiary {
	color: #008571;
}

.u-color-highlight {
	color: #febf29;
}

.u-color-accent {
	color: #3cc;
}

/**
 * This will make sure the full background of a layout object is filled.
 */
.o-layout[class*="u-bg-"] {
	position: relative;
	background-color: transparent;
}

.o-layout[class*="u-bg-"]::before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 16px;
	content: '';
}

.o-layout--narrow[class*="u-bg-"]::before {
	left: 8px;
}

.o-layout--wide[class*="u-bg-"]::before {
	left: 32px;
}

.o-layout--flush[class*="u-bg-"]::before {
	left: 0;
}

.o-layout[class*="u-bg-"] > * {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   UTILITIES / DISPLAY
   ========================================================================== */
.u-overflow-hidden {
	overflow: hidden;
}

/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hide-visually {
	width: 1px;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.u-hide-visually.focusable:active,
.u-hide-visually.focusable:focus {
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	clip: auto;
	white-space: inherit;
}

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
	display: none;
}

/**
 * Hidden visually but maintains the layout.
 */
.u-invisible {
	visibility: hidden;
}

/**
 * Various utility classes to show the content.
 */
.u-flex {
	display: flex;
}
.u-flex-wrap{ flex-wrap: wrap; }
.u-block,
.u-shown {
	display: block;
}

.u-inline {
	display: inline;
}

.u-inline-block {
	display: inline-block;
}

.u-visible {
	visibility: visible;
}

/* X-Small Breakpoint [30em = 480px]
   =========================================== */
@media screen and (min-width: 30em) {
	.u-hidden--xs {
		display: none;
	}
	.u-invisible--xs {
		visibility: hidden;
	}
	.u-flex--xs {
		display: flex;
	}
	.u-block--xs,
	.u-shown--xs {
		display: block;
	}
	.u-inline--xs {
		display: inline;
	}
	.u-inline-block--xs {
		display: inline-block;
	}
	.u-visible--xs {
		visibility: visible;
	}
}

/* Small Breakpoint [40em = 640px]
   =========================================== */
@media screen and (min-width: 40em) {
	.u-hidden--s {
		display: none;
	}
	.u-invisible--s {
		visibility: hidden;
	}
	.u-flex--s {
		display: flex;
	}
	.u-block--s,
	.u-shown--s {
		display: block;
	}
	.u-inline--s {
		display: inline;
	}
	.u-inline-block--s {
		display: inline-block;
	}
	.u-visible--s {
		visibility: visible;
	}
}

/* Medium Breakpoint [48em = 768px]
   =========================================== */
@media screen and (min-width: 48em) {
	.u-hidden--m {
		display: none;
	}
	.u-invisible--m {
		visibility: hidden;
	}
	.u-flex--m {
		display: flex;
	}
	.u-block--m,
	.u-shown--m {
		display: block;
	}
	.u-inline--m {
		display: inline;
	}
	.u-inline-block--m {
		display: inline-block;
	}
	.u-visible--m {
		visibility: visible;
	}
}

/* Large Breakpoint [60em = 960px]
   =========================================== */
@media screen and (min-width: 60em) {
	.u-hidden--l {
		display: none;
	}
	.u-invisible--l {
		visibility: hidden;
	}
	.u-flex--l {
		display: flex;
	}
	.u-block--l,
	.u-shown--l {
		display: block;
	}
	.u-inline--l {
		display: inline;
	}
	.u-inline-block--l {
		display: inline-block;
	}
	.u-visible--l {
		visibility: visible;
	}
}

/* Extra-Large Breakpoint [75em = 1200px]
   =========================================== */
@media screen and (min-width: 75em) {
	.u-hidden--xl {
		display: none;
	}
	.u-invisible--xl {
		visibility: hidden;
	}
	.u-flex--xl {
		display: flex;
	}
	.u-block--xl,
	.u-shown--xl {
		display: block;
	}
	.u-inline--xl {
		display: inline;
	}
	.u-inline-block--xl {
		display: inline-block;
	}
	.u-visible--xl {
		visibility: visible;
	}
}

/* Wide-Screen Breakpoint [90em = 1440px]
   =========================================== */
@media screen and (min-width: 90em) {
	.u-hidden--w {
		display: none;
	}
	.u-invisible--w {
		visibility: hidden;
	}
	.u-flex--w {
		display: flex;
	}
	.u-block--w,
	.u-shown--w {
		display: block;
	}
	.u-inline--w {
		display: inline;
	}
	.u-inline-block--w {
		display: inline-block;
	}
	.u-visible--w {
		visibility: visible;
	}
}

/* ==========================================================================
   UTILITIES / GRIDS
   ========================================================================== */
/**
 * A series of utility classes that give an automatic number of columns based
 * on the class used, media breakpoints are included.
 *
 *	<div class="o-layout u-grids-3">
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *	</div>
 *
 * The above will create a three-column structure in which each column will
 * fluidly fill one-third of the width of the parent with the remainder elements
 * wrapping as needed. We can have more complex systems:
 *
 * 	<div class="o-layout u-grids-1 u-grids-3--m">
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 *		<div class="o-layout__item">
 *		</div>
 * 	</div>
 *
 * The above will create a structure in which each column will be 100% width
 * until we enter our medium breakpoint, then they will be one-third the width
 * of the parent container with the remainder elements wrapping as needed.
 */
/* Mobile First
   =========================================== */
.u-grids-1 > .o-layout__item {
	flex-basis: 100%;
	max-width: 100%;
}

.u-grids-2 > .o-layout__item {
	flex-basis: 50%;
	max-width: 50%;
}

.u-grids-3 > .o-layout__item {
	flex-basis: 33.33333%;
	max-width: 33.33333%;
}

.u-grids-4 > .o-layout__item {
	flex-basis: 25%;
	max-width: 25%;
}

.u-grids-5 > .o-layout__item {
	flex-basis: 20%;
	max-width: 20%;
}

.u-grids-6 > .o-layout__item {
	flex-basis: 16.66667%;
	max-width: 16.66667%;
}

.u-grids-7 > .o-layout__item {
	flex-basis: 14.28571%;
	max-width: 14.28571%;
}

.u-grids-8 > .o-layout__item {
	flex-basis: 12.5%;
	max-width: 12.5%;
}

.u-grids-9 > .o-layout__item {
	flex-basis: 11.11111%;
	max-width: 11.11111%;
}

.u-grids-10 > .o-layout__item {
	flex-basis: 10%;
	max-width: 10%;
}

.u-grids-11 > .o-layout__item {
	flex-basis: 9.09091%;
	max-width: 9.09091%;
}

.u-grids-12 > .o-layout__item {
	flex-basis: 8.33333%;
	max-width: 8.33333%;
}


/* X-Small Breakpoint [30em = 480px]
   =========================================== */
@media screen and (min-width: 30em) {
	.u-grids-1--xs > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--xs > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--xs > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--xs > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--xs > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--xs > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--xs > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--xs > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--xs > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--xs > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--xs > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--xs > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}


/* Small Breakpoint [40em = 640px]
   =========================================== */
@media screen and (min-width: 40em) {
	.u-grids-1--s > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--s > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--s > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--s > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--s > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--s > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--s > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--s > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--s > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--s > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--s > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--s > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}

/* Medium Breakpoint [48em = 768px]
   =========================================== */
@media screen and (min-width: 48em) {
	.u-grids-1--m > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--m > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--m > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--m > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--m > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--m > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--m > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--m > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--m > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--m > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--m > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--m > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}

/* Large Breakpoint [60em = 960px]
   =========================================== */
@media screen and (min-width: 60em) {
	.u-grids-1--l > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--l > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--l > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--l > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--l > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--l > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--l > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--l > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--l > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--l > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--l > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--l > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}

/* Extra-Large Breakpoint [75em = 1200px]
   =========================================== */
@media screen and (min-width: 75em) {
	.u-grids-1--xl > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--xl > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--xl > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--xl > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--xl > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--xl > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--xl > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--xl > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--xl > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--xl > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--xl > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--xl > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}

/* Wide-Screen Breakpoint [90em = 1440px]
   =========================================== */
@media screen and (min-width: 90em) {
	.u-grids-1--w > .o-layout__item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.u-grids-2--w > .o-layout__item {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-grids-3--w > .o-layout__item {
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.u-grids-4--w > .o-layout__item {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-grids-5--w > .o-layout__item {
		flex-basis: 20%;
		max-width: 20%;
	}
	.u-grids-6--w > .o-layout__item {
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.u-grids-7--w > .o-layout__item {
		flex-basis: 14.28571%;
		max-width: 14.28571%;
	}
	.u-grids-8--w > .o-layout__item {
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.u-grids-9--w > .o-layout__item {
		flex-basis: 11.11111%;
		max-width: 11.11111%;
	}
	.u-grids-10--w > .o-layout__item {
		flex-basis: 10%;
		max-width: 10%;
	}
	.u-grids-11--w > .o-layout__item {
		flex-basis: 9.09091%;
		max-width: 9.09091%;
	}
	.u-grids-12--w > .o-layout__item {
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
}

/* ==========================================================================
   UTILITIES / ICONS
   ========================================================================== */
/**
 * This contains the "@font-face" call needed to add the ReadyTheme Icons Font 
 * package to your site. These icons are available for use in addition to any 
 * theme-based icons which may be referenced in the "theme-fonts.css" file.
 */
@font-face {
	font-display: block;
	font-family: 'ReadyTheme Icons';
	font-style: normal;
	font-weight: normal;
	src: url("/mm5/themes/00000001/shadows/ui/css/ReadyThemeIcons.woff") format("woff");
}

[class^="u-icon-"],
[class*=" u-icon-"],
[data-icon]::before {
	font-family: "ReadyTheme Icons", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	speak: none;
	text-transform: none;
}

[data-icon]::before {
	content: attr(data-icon);
}

[class^="u-icon-"]::before,
[class*=" u-icon-"]::before,
[data-icon]::before {
	background-color: rgba(0, 0, 0, 0);
}

.u-icon-error::before {
	content: "\21";
}

.u-icon-warning::before {
	content: "\22";
}

.u-icon-question::before {
	content: "\23";
}

.u-icon-info::before {
	content: "\24";
}

.u-icon-gift::before {
	content: "\25";
}

.u-icon-settings::before {
	content: "\26";
}

.u-icon-protected::before {
	content: "\27";
}

.u-icon-secure::before {
	content: "\28";
}

.u-icon-envelope::before {
	content: "\29";
}

.u-icon-truck::before {
	content: "\2a";
}

.u-icon-globe::before {
	content: "\2b";
}

.u-icon-history::before {
	content: "\2c";
}

.u-icon-balance::before {
	content: "\2d";
}

.u-icon-remove::before {
	content: "\2e";
}

.u-icon-cart-add::before {
	content: "\2f";
}

.u-icon-chevron-up::before {
	content: "\30";
}

.u-icon-chevron-down::before {
	content: "\31";
}

.u-icon-chevron-left::before {
	content: "\32";
}

.u-icon-chevron-right::before {
	content: "\33";
}

.u-icon-triangle-up::before {
	content: "\34";
}

.u-icon-triangle-down::before {
	content: "\35";
}

.u-icon-triangle-left::before {
	content: "\36";
}

.u-icon-triangle-right::before {
	content: "\37";
}

.u-icon-arrow-up::before {
	content: "\38";
}

.u-icon-arrow-down::before {
	content: "\39";
}

.u-icon-arrow-left::before {
	content: "\3a";
}

.u-icon-arrow-right::before {
	content: "\3b";
}

.u-icon-subtract::before {
	content: "\3c";
}

.u-icon-add::before {
	content: "\3d";
}

.u-icon-cross::before {
	content: "\3e";
}

.u-icon-check::before {
	content: "\3f";
}

.u-icon-zoom-out::before {
	content: "\40";
}

.u-icon-zoom-in::before {
	content: "\41";
}

.u-icon-search::before {
	content: "\42";
}

.u-icon-credit-card::before {
	content: "\43";
}

.u-icon-heart-empty::before {
	content: "\44";
}

.u-icon-heart-full::before {
	content: "\45";
}

.u-icon-star-empty::before {
	content: "\46";
}

.u-icon-star-full::before {
	content: "\47";
}

.u-icon-home::before {
	content: "\48";
}

.u-icon-user::before {
	content: "\49";
}

.u-icon-phone::before {
	content: "\4a";
}

.u-icon-facebook::before {
	content: "\4b";
}

.u-icon-twitter::before {
	content: "\4c";
}

.u-icon-pinterest::before {
	content: "\4d";
}

.u-icon-google::before {
	content: "\4e";
}

.u-icon-instagram::before {
	content: "\4f";
}

.u-icon-vimeo::before {
	content: "\50";
}

.u-icon-youtube::before {
	content: "\51";
}

.u-icon-flickr::before {
	content: "\52";
}

.u-icon-print::before {
	content: "\53";
}

.u-icon-wallet::before {
	content: "\54";
}

.u-icon-document::before {
	content: "\55";
}

.u-icon-menu::before {
	content: "\56";
}

.u-icon-calendar::before {
	content: "\57";
}

.u-icon-bag-empty::before {
	content: "\58";
}

.u-icon-bag-full::before {
	content: "\59";
}

.u-icon-cart-empty::before {
	content: "\5a";
}

.u-icon-cart-full::before {
	content: "\5b";
}

.u-icon-location::before {
	content: "\5c";
}

@media speech {
	[class^="u-icon-"]::before,
	[class*=" u-icon-"]::before,
	[data-icon]::before {
		display: none;
		visibility: hidden;
		content: none;
	}
}

/* ==========================================================================
   UTILITIES / PRINT
   ========================================================================== */
/**
 * Print styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * Inlined to avoid the additional HTTP request:
 * http://www.phpied.com/delay-loading-your-print-css/
 */
@media print {
	@page {
		size: letter;
		margin: 10%;
		orphans: 2;
		widows: 2;
	}
	/**
	* 1. Black prints faster: http://www.sanbeiji.com/archives/953
	*/
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		/* [1] */
		box-shadow: none !important;
		text-shadow: none !important;
	}
	body > *:not(main) {
		display: none;
	}
	a,
	a:visited {
		text-decoration: underline !important;
	}
	pre {
		white-space: pre-wrap !important;
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	/*
	 * Printing Tables:
	 * http://css-discuss.incutio.com/wiki/Printing_Tables
	 */
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}

.u-printable__content {
	display: none;
	visibility: hidden;
}

@media print {
	.u-printable:not(.u-printable__content) {
		display: none;
		visibility: hidden;
	}
	.u-printable__content {
		display: block;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		visibility: visible;
	}
	.u-printable__content * {
		visibility: visible;
	}
	.u-print-none {
		display: none !important;
	}
	.u-print-inline {
		display: inline !important;
	}
	.u-print-inline-block {
		display: inline-block !important;
	}
	.u-print-block {
		display: block !important;
	}
	.u-print-table {
		display: table !important;
	}
	.u-print-table-row {
		display: table-row !important;
	}
	.u-print-table-cell {
		display: table-cell !important;
	}
	.u-print-flex {
		display: flex !important;
	}
	.u-print-inline-flex {
		display: inline-flex !important;
	}
}


/* Text alignment utilities
   =========================================== */
.u-text-left {
	text-align: left;
}

.u-text-center {
	text-align: center;
}

.u-text-right {
	text-align: right;
}

.u-text-justify {
	text-align: justify;
}
@media screen and (min-width: 30em) {
	.u-text-left--xs {
		text-align: left;
	}
	.u-text-center--xs {
		text-align: center;
	}
	.u-text-right--xs {
		text-align: right;
	}
	.u-text-justify--xs {
		text-align: justify;
	}
}

@media screen and (min-width: 40em) {
	.u-text-left--s {
		text-align: left;
	}
	.u-text-center--s {
		text-align: center;
	}
	.u-text-right--s {
		text-align: right;
	}
	.u-text-justify--s {
		text-align: justify;
	}
}

@media screen and (min-width: 48em) {
	.u-text-left--m {
		text-align: left;
	}
	.u-text-center--m {
		text-align: center;
	}
	.u-text-right--m {
		text-align: right;
	}
	.u-text-justify--m {
		text-align: justify;
	}
}

@media screen and (min-width: 60em) {
	.u-text-left--l {
		text-align: left;
	}
	.u-text-center--l {
		text-align: center;
	}
	.u-text-right--l {
		text-align: right;
	}
	.u-text-justify--l {
		text-align: justify;
	}
}

@media screen and (min-width: 90em) {
	.u-text-left--w {
		text-align: left;
	}
	.u-text-center--w {
		text-align: center;
	}
	.u-text-right--w {
		text-align: right;
	}
	.u-text-justify--w {
		text-align: justify;
	}
}

/* Font sizing utilities
  =========================================== */
.u-font-tiny {
	font-size: 0.625em;
}

.u-text-small,
.u-font-small {
	font-size: 0.75em;
}

@media screen and (min-width: 40em) {
	.u-font-tiny {
		font-size: 0.75em;
	}
	.u-text-small,
	.u-font-small {
		font-size: 0.832em;
	}
}

.u-font-medium {
	font-size: 1em;
}

.u-font-large {
	font-size: 1.25em;
}

.u-font-huge {
	font-size: 1.75em;
}

/* Font style utilities
 * 1. This is a hold-over class for content output by Miva.
  =========================================== */
.u-font-light,
.u-text-light {
	font-weight: 300;
}

.u-font-regular,
.u-text-regular {
	font-weight: 400;
}

.u-font-medium,
.u-text-medium {
	font-weight: 500;
}

.required,
.u-font-bold,
.u-text-bold {
	font-weight: 700;
}
.u-font-black,
.u-font-boldest,
.u-text-black,
.u-text-boldest {
	font-weight: 900;
}

.u-text-caps {
	font-variant: small-caps;
}

.u-text-italic {
	font-style: italic;
}

.u-text-normal {
	font-style: normal;
	font-weight: 400;
}

.u-text-lowercase {
	text-transform: lowercase;
}

.u-text-revert {
	text-transform: none;
}

.u-text-uppercase {
	text-transform: uppercase;
}

.u-text-capitalize {
	text-transform: capitalize;
}

.u-text-strike {
	text-decoration: line-through;
}

.u-text-underline {
	text-decoration: underline;
}

.x-hover--allowed a.u-text-underline:hover {
	text-decoration: none;
}

.u-text-constrain {
	/*max-width: 30em;*/
}

/* Word Wrapping and White Space utilities
  =========================================== */
.u-white-space-normal {
	white-space: normal;
}

.u-white-space-nowrap {
	white-space: nowrap;
}

.u-white-space-pre {
	white-space: pre;
}

.u-white-space-pre-line {
	white-space: pre-line;
}

.u-white-space-pre-wrap {
	white-space: pre-wrap;
}

.u-word-wrap-break {
	word-wrap: break-word;
}

.u-word-wrap-normal {
	word-wrap: normal;
}

/* ==========================================================================
   UTILITIES / VERTICAL ALIGN
   ========================================================================== */
.u-align-baseline {
	vertical-align: baseline;
}

.u-align-bottom {
	vertical-align: bottom;
}

.u-align-middle {
	vertical-align: middle;
}

.u-align-top {
	vertical-align: top;
}

/**
 * Utility classes to vertically align an element centrally within its parent.
 *
 * Using .u-vertical-align-center on an element can cause visual issues if it renders
 * on a half pixel so we can apply preserve-3d to prevent this on the parent
 * element.
 */
.u-vertical-align-parent {
	transform-style: preserve-3d;
}

/**
	 * This class requires a set height on the parent element to function correctly.
	 */
.u-vertical-align-center {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

/* ==========================================================================
   UTILITIES / WIDTHS
   ========================================================================== */
/**
 * A series of utility classes that give a fluid width to whichever element
 * they are applied to, media breakpoints are included.
 */
/* Mobile First
   =========================================== */
/**
 * Width size modifiers.
 */
.u-width-1 {
	flex-basis: 8.333%;
	max-width: 8.333%;
}

.u-width-2 {
	flex-basis: 16.666%;
	max-width: 16.666%;
}

.u-width-3 {
	flex-basis: 25%;
	max-width: 25%;
}

.u-width-4 {
	flex-basis: 33.333%;
	max-width: 33.333%;
}

.u-width-5 {
	flex-basis: 41.666%;
	max-width: 41.666%;
}

.u-width-6 {
	flex-basis: 50%;
	max-width: 50%;
}

.u-width-7 {
	flex-basis: 58.333%;
	max-width: 58.333%;
}

.u-width-8 {
	flex-basis: 66.666%;
	max-width: 66.666%;
}

.u-width-9 {
	flex-basis: 75%;
	max-width: 75%;
}

.u-width-10 {
	flex-basis: 83.333%;
	max-width: 83.333%;
}

.u-width-11 {
	flex-basis: 91.666%;
	max-width: 91.666%;
}

.u-width-12 {
	flex-basis: 100%;
	max-width: 100%;
}

/**
 * Offset size modifiers.
 */
.u-offset-1 {
	margin-left: 8.333%;
}

.u-offset-2 {
	margin-left: 16.666%;
}

.u-offset-3 {
	margin-left: 25%;
}

.u-offset-4 {
	margin-left: 33.333%;
}

.u-offset-5 {
	margin-left: 41.666%;
}

.u-offset-6 {
	margin-left: 50%;
}

.u-offset-7 {
	margin-left: 58.333%;
}

.u-offset-8 {
	margin-left: 66.666%;
}

.u-offset-9 {
	margin-left: 75%;
}

.u-offset-10 {
	margin-left: 83.333%;
}

.u-offset-11 {
	margin-left: 91.666%;
}

/* X-Small Breakpoint [30em = 480px]
   =========================================== */
@media screen and (min-width: 30em) {
	.u-width-1--xs {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--xs {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--xs {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--xs {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--xs {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--xs {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--xs {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--xs {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--xs {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--xs {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--xs {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--xs {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--xs {
		margin-left: 8.333%;
	}
	.u-offset-2--xs {
		margin-left: 16.666%;
	}
	.u-offset-3--xs {
		margin-left: 25%;
	}
	.u-offset-4--xs {
		margin-left: 33.333%;
	}
	.u-offset-5--xs {
		margin-left: 41.666%;
	}
	.u-offset-6--xs {
		margin-left: 50%;
	}
	.u-offset-7--xs {
		margin-left: 58.333%;
	}
	.u-offset-8--xs {
		margin-left: 66.666%;
	}
	.u-offset-9--xs {
		margin-left: 75%;
	}
	.u-offset-10--xs {
		margin-left: 83.333%;
	}
	.u-offset-11--xs {
		margin-left: 91.666%;
	}
}


/* Small Breakpoint [40em = 640px]
   =========================================== */
@media screen and (min-width: 40em) {
	.u-width-1--s {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--s {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--s {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--s {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--s {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--s {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--s {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--s {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--s {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--s {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--s {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--s {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--s {
		margin-left: 8.333%;
	}
	.u-offset-2--s {
		margin-left: 16.666%;
	}
	.u-offset-3--s {
		margin-left: 25%;
	}
	.u-offset-4--s {
		margin-left: 33.333%;
	}
	.u-offset-5--s {
		margin-left: 41.666%;
	}
	.u-offset-6--s {
		margin-left: 50%;
	}
	.u-offset-7--s {
		margin-left: 58.333%;
	}
	.u-offset-8--s {
		margin-left: 66.666%;
	}
	.u-offset-9--s {
		margin-left: 75%;
	}
	.u-offset-10--s {
		margin-left: 83.333%;
	}
	.u-offset-11--s {
		margin-left: 91.666%;
	}
}

/* Medium Breakpoint [48em = 768px]
   =========================================== */
@media screen and (min-width: 48em) {
	.u-width-1--m {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--m {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--m {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--m {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--m {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--m {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--m {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--m {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--m {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--m {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--m {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--m {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--m {
		margin-left: 8.333%;
	}
	.u-offset-2--m {
		margin-left: 16.666%;
	}
	.u-offset-3--m {
		margin-left: 25%;
	}
	.u-offset-4--m {
		margin-left: 33.333%;
	}
	.u-offset-5--m {
		margin-left: 41.666%;
	}
	.u-offset-6--m {
		margin-left: 50%;
	}
	.u-offset-7--m {
		margin-left: 58.333%;
	}
	.u-offset-8--m {
		margin-left: 66.666%;
	}
	.u-offset-9--m {
		margin-left: 75%;
	}
	.u-offset-10--m {
		margin-left: 83.333%;
	}
	.u-offset-11--m {
		margin-left: 91.666%;
	}
}

/* Large Breakpoint [60em = 960px]
   =========================================== */
@media screen and (min-width: 60em) {
	.u-width-1--l {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--l {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--l {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--l {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--l {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--l {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--l {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--l {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--l {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--l {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--l {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--l {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--l {
		margin-left: 8.333%;
	}
	.u-offset-2--l {
		margin-left: 16.666%;
	}
	.u-offset-3--l {
		margin-left: 25%;
	}
	.u-offset-4--l {
		margin-left: 33.333%;
	}
	.u-offset-5--l {
		margin-left: 41.666%;
	}
	.u-offset-6--l {
		margin-left: 50%;
	}
	.u-offset-7--l {
		margin-left: 58.333%;
	}
	.u-offset-8--l {
		margin-left: 66.666%;
	}
	.u-offset-9--l {
		margin-left: 75%;
	}
	.u-offset-10--l {
		margin-left: 83.333%;
	}
	.u-offset-11--l {
		margin-left: 91.666%;
	}
}

/* Extra-Large Breakpoint [75em = 1200px]
   =========================================== */
@media screen and (min-width: 75em) {
	.u-width-1--xl {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--xl {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--xl {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--xl {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--xl {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--xl {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--xl {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--xl {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--xl {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--xl {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--xl {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--xl {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--xl {
		margin-left: 8.333%;
	}
	.u-offset-2--xl {
		margin-left: 16.666%;
	}
	.u-offset-3--xl {
		margin-left: 25%;
	}
	.u-offset-4--xl {
		margin-left: 33.333%;
	}
	.u-offset-5--xl {
		margin-left: 41.666%;
	}
	.u-offset-6--xl {
		margin-left: 50%;
	}
	.u-offset-7--xl {
		margin-left: 58.333%;
	}
	.u-offset-8--xl {
		margin-left: 66.666%;
	}
	.u-offset-9--xl {
		margin-left: 75%;
	}
	.u-offset-10--xl {
		margin-left: 83.333%;
	}
	.u-offset-11--xl {
		margin-left: 91.666%;
	}
}

/* Wide-Screen Breakpoint [90em = 1440px]
   =========================================== */
@media screen and (min-width: 90em) {
	.u-width-1--w {
		flex-basis: 8.333%;
		max-width: 8.333%;
	}
	.u-width-2--w {
		flex-basis: 16.666%;
		max-width: 16.666%;
	}
	.u-width-3--w {
		flex-basis: 25%;
		max-width: 25%;
	}
	.u-width-4--w {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.u-width-5--w {
		flex-basis: 41.666%;
		max-width: 41.666%;
	}
	.u-width-6--w {
		flex-basis: 50%;
		max-width: 50%;
	}
	.u-width-7--w {
		flex-basis: 58.333%;
		max-width: 58.333%;
	}
	.u-width-8--w {
		flex-basis: 66.666%;
		max-width: 66.666%;
	}
	.u-width-9--w {
		flex-basis: 75%;
		max-width: 75%;
	}
	.u-width-10--w {
		flex-basis: 83.333%;
		max-width: 83.333%;
	}
	.u-width-11--w {
		flex-basis: 91.666%;
		max-width: 91.666%;
	}
	.u-width-12--w {
		flex-basis: 100%;
		max-width: 100%;
	}
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1--w {
		margin-left: 8.333%;
	}
	.u-offset-2--w {
		margin-left: 16.666%;
	}
	.u-offset-3--w {
		margin-left: 25%;
	}
	.u-offset-4--w {
		margin-left: 33.333%;
	}
	.u-offset-5--w {
		margin-left: 41.666%;
	}
	.u-offset-6--w {
		margin-left: 50%;
	}
	.u-offset-7--w {
		margin-left: 58.333%;
	}
	.u-offset-8--w {
		margin-left: 66.666%;
	}
	.u-offset-9--w {
		margin-left: 75%;
	}
	.u-offset-10--w {
		margin-left: 83.333%;
	}
	.u-offset-11--w {
		margin-left: 91.666%;
	}
}

/* ==========================================================================
   UTILITIES / Z-INDEX
   ========================================================================== */
/**
 * Utility classes to set display relevance on the 'Z' axis.
 */
.u-below-content {
	z-index: -1;
}

.u-over-content {
	z-index: 100;
}

.u-over-control {
	z-index: 200;
}

.u-over-page {
	z-index: 300;
}

.u-over-screen {
	z-index: 400;
}

.u-over-everything {
	z-index: 500;
}