/* imports */

/* global vars */

/* element vars */

/* import _fonts.css FIRST */
@font-face
{
	font-display: swap;
	font-family: 'Albertus MT Std';
	font-style: normal;
	font-weight: 400;

	src: url( '/assets/img/fonts/Albertus-MT-Std.woff2' ) format( 'woff2'    ),
	     url( '/assets/img/fonts/Albertus-MT-Std.woff'  ) format( 'woff'     ),
	     url( '/assets/img/fonts/Albertus-MT-Std.ttf'   ) format( 'truetype' )
	;
}/*
	General class that resets mulitple styles of various elements even though
	some styles may not apply to some of the affected elements.
*/

.reset
{
	*border-collapse: collapse;
	border-spacing: 0;
	border-width: 0;

	list-style: none;
	margin: 0;
	padding: 0;
}/*
	Tame superscripts
*/

sup
{
	font-size: 75%;
	line-height: 0;
}.text-hide
{
	display: block; /* text-indent works only on block level elements */

	height: 100%; /* beta: for elements that must take the full height of parent */

	overflow: hidden;

	text-indent: -2000px; /* IE7 would display a blue "link" line when set to -1000px */
}.responsive
{
    display: block;
    height: 100%;
    width: 100%;
}

.responsive--fluid-width
{
    height: auto;
    max-width: 100%;
}

.responsive--height
{
    display: block;
    height: 100%;
    width: auto;
}

.responsive--width
{
    display: block;
    height: auto;
    width: 100%;
}
/* all files in partials (not recursive) */
#gutter
{
	background-color: #0A1F3E;
	border-top: 1px solid #448BCA;

	-ms-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	font-size: .8rem;

	/* b/c IE11 sucks, we need units */
	max-height: 0vh;

	-webkit-tap-highlight-color: transparent;

	-moz-transform: translateY( 100% );
	-ms-transform: translateY( 100% );
	-o-transform: translateY( 100% );
	-webkit-transform: translateY( 100% );
	transform: translateY( 100% );

	-moz-transition-property: transform, max-height;
	-o-transition-property: transform, max-height;
	-webkit-transition-property: transform, max-height;
	transition-property: transform, max-height;
	-moz-transition-delay: 0s, .5s;
	-o-transition-delay: 0s, .5s;
	-webkit-transition-delay: 0s, .5s;
	transition-delay: 0s, .5s;
	-moz-transition-duration: .3s, 0s;
	-o-transition-duration: .3s, 0s;
	-webkit-transition-duration: .3s, 0s;
	transition-duration: .3s, 0s;
	transition-timing-function: ease-in-out;
}

#gutter[ data-scale ]
{
	-moz-transform: scale3d( 1, 0, 1 );
	-ms-transform: scale3d( 1, 0, 1 );
	-o-transform: scale3d( 1, 0, 1 );
	-webkit-transform: scale3d( 1, 0, 1 );
	transform: scale3d( 1, 0, 1 );
	-moz-transform-origin: bottom;
	-ms-transform-origin: bottom;
	-o-transform-origin: bottom;
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}

#gutter.gutter--on
{
	/* set to an insane value just for transition purposes */
	max-height: 100vh;

	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transform: none;
	transform: none;

	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}#gutter__items
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;-ms-flex-wrap: nowrap;
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap;
}

/* Make pseudo elements push flex items to the center
   since justify-content: center clips overflowed content
*/

/* Some, not all, versions of IE 11 can't handle this!
   Tested: VM IE11, VM Edge - Win10 (IE 11 mode), Ali IE11
*/
/*
#gutter__items::before,
#gutter__items::after
{
	content: '';
	margin: auto;
}
*/

#gutter__items > :first-child
{
	margin-left: auto;
}

#gutter__items > :last-child
{
	margin-right: auto;
}#header
{
	-ms-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	font-size: .8rem;
}#header__bar
{
	height: 1.438em;

	width: 100%;
}#header__hgroup
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;

	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;

	padding-bottom: 1em;
	padding-top: 2em;
}#header__logo
{
	cursor: pointer;

	/* reset UA default */
	font-size: 1em;

	-webkit-tap-highlight-color: transparent;

	width: 23.125em;
}#header__title
{
	align-self: flex-end;

	font-size: 2.5em;
}

#header__title > *
{
	animation-delay: .5s;
	animation-duration  /* no_alias */ : .5s;
	animation-fill-mode /* no_alias */ : backwards;
	animation-name      /* no_alias */ : animate-fadeIn, animate-nudgeInDown; 

	display: block;
}#nav
{
	font-size: .8rem;

	-webkit-tap-highlight-color: transparent;
}#nav__items
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;

	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}#overlay-invite
{
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}/* @link https://codepen.io/raf187/pen/BvgGRQ */
#overlay-invite__arrows > i
{
	-moz-animation-duration: 2s;
	-o-animation-duration: 2s;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	-moz-animation-name: animate-fadeInOut, overlay-invite;
	-o-animation-name: animate-fadeInOut, overlay-invite;
	-webkit-animation-name: animate-fadeInOut, overlay-invite;
	animation-name: animate-fadeInOut, overlay-invite;

	border-bottom: 5px solid #D29A32;
	 border-right: 5px solid #D29A32;

	display: block;

	padding: 15px;

	margin: -5px;
}

#overlay-invite__arrows > i:first-child
{
	animation-delay: 0.4s;
}

#overlay-invite__arrows > i:nth-child( 2 )
{
	animation-delay: 0.2s;
}

@keyframes overlay-invite
{

	0%
	{
		/* IE picky with spacing! */
		-moz-transform: rotate( 45deg ) translate(-20px, -20px);
		-ms-transform: rotate( 45deg ) translate(-20px, -20px);
		-o-transform: rotate( 45deg ) translate(-20px, -20px);
		-webkit-transform: rotate( 45deg ) translate(-20px, -20px);
		transform: rotate( 45deg ) translate(-20px, -20px);
	}

	100%
	{
		/* IE picky with spacing! */
		-moz-transform: rotate( 45deg ) translate(20px, 20px);
		-ms-transform: rotate( 45deg ) translate(20px, 20px);
		-o-transform: rotate( 45deg ) translate(20px, 20px);
		-webkit-transform: rotate( 45deg ) translate(20px, 20px);
		transform: rotate( 45deg ) translate(20px, 20px);
	}

}#pages
{
	opacity /* no alias */: 1;

	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-moz-transition-duration: .5s;
	-o-transition-duration: .5s;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}

#pages[ data-modal ]
{
	opacity /* no alias */: 0;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}#wrapper
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;-ms-flex-direction: column;
-webkit-flex-direction: column;
flex-direction: column;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;

	height: 100vh;
}.container
{
	margin: auto;
	max-width: 1920px;

	width: 90.417%;
}

.container--2x
{
	width: 81.752%;
}.fancy-scrollbar
{
/*	-webkit-overflow-scrolling: touch; */
        -ms-overflow-style: -ms-autohiding-scrollbar;
	        overflow: auto;
	        overflow: overlay;

	scrollbar-arrow-color: #0A1F3E;
	scrollbar-face-color: #23447C;
	scrollbar-shadow-color: #23447C;
	scrollbar-track-color: #448BCA;
}

.fancy-scrollbar::-webkit-scrollbar
{
	height: .5em;
	 width: .5em;
}

.fancy-scrollbar::-webkit-scrollbar-thumb
{
	background-color: rgba( 68, 139, 202, 0.3 );

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}.gutter__icon
{
	display: inline-block;

	fill: #448BCA;

	height: 3.438em;

	-moz-transition: transform .1s;
	-o-transition: transform .1s;
	-webkit-transition: transform .1s;
	transition: transform .1s;

	width: 3.438em;
}

:hover            > .gutter__icon,
.gutter__item--on > .gutter__icon
{
	fill: #F2C318;

	-moz-transform: scale( 1.1 );
	-ms-transform: scale( 1.1 );
	-o-transform: scale( 1.1 );
	-webkit-transform: scale( 1.1 );
	transform: scale( 1.1 );
}.gutter__item
{
	cursor: pointer;

	/* margin is clipped when #gutter overflows */
	padding: 1.5em;

	text-align: center;
}p.gutter__title
{
	color: #448BCA;
	font-family: Arial, sans-serif;
	font-size: 0.875em;
	line-height: 1;
}

:hover            > .gutter__title,
.gutter__item--on > .gutter__title
{
	color: #F2C318;
}.icon--x::after
{
	content: "\274c"; /* use the hex value here... */

	text-shadow: 0 0 0 #FFFFFF;

	-moz-transition: text-shadow .2s;
	-o-transition: text-shadow .2s;
	-webkit-transition: text-shadow .2s;
	transition: text-shadow .2s;
}

.icon--x:hover::after
{
	text-shadow: 0 0 0 #F2C318;
}

.icon--x.modal__close
{
    position: absolute;
	right: 0;
	top: 0;
}.icon
{
	cursor: pointer;

	display: inline-block;

	font-size: 1.5rem;

	/* for i.icon */
	font-style: normal;

	height: 2.5em;

	line-height: 2.5em;

	/* for ::after pseudo */
	position: relative;

	width: 2.5em;
}

.icon::after
{
	/* ios does not honor color!
	   .icon_ element should use text-shadow instead
	*/
	color: transparent;

	position: absolute;

	bottom: 0;
	left: 0;
	right: 0;
	top: 0;

	text-align: center;

	/* for typical .icon.text-hide */
	text-indent: 0;
}.input,

/* must be used with .btn! */
.input__submit
{
	/* Remove inner shadow for iOS. If ommited, must define background-image
	   to prevent UA default
	*/
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;

	border: 0 none;

	/* undo iOS default border radius */
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.input
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	display: block;

	font: 1em/1.5 Arial, sans-serif;

	margin: auto;

	max-width: 500px;

	padding: .5em;

	width: 100%;
}

.input--fancy
{
	background-color: rgba( 255, 255, 255, 0.8 );

	outline: none;

	/* get rid of focus flash on iOS */
	-webkit-tap-highlight-color: transparent;

	-moz-transition: background-color .3s;
	-o-transition: background-color .3s;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}

.input--fancy:focus
{
	background-color: #FFFFFF;
}

.input--hide
{
	display: none;
}

.input--invalid .input
{
	background-color: #721C24;
	color: #FFFFFF;
}.input__block
{
	margin-top: 3em;

	/* for .input__label--fancy label if exists */
	position: relative;
}.input__label--fancy
{
	color: #F2C318;

	position: absolute;
	left: 50%;
	top: 0;

	-moz-transform: translate3d( -50%, -100%, 0 );
	-ms-transform: translate3d( -50%, -100%, 0 );
	-o-transform: translate3d( -50%, -100%, 0 );
	-webkit-transform: translate3d( -50%, -100%, 0 );
	transform: translate3d( -50%, -100%, 0 );

	-moz-transition: transform .3s ease-out;
	-o-transition: transform .3s ease-out;
	-webkit-transition: transform .3s ease-out;
	transition: transform .3s ease-out;

	/* wraps in iPhone portrait */
	white-space: nowrap;
}

/* IE11 is real buggy so we dont include the -ms prefix */
.input--fancy:placeholder-shown + .input__label--fancy
{
	color: #000;

	top: 50%;
	-moz-transform: translate3d( -50%, -50%, 0 );
	-ms-transform: translate3d( -50%, -50%, 0 );
	-o-transform: translate3d( -50%, -50%, 0 );
	-webkit-transform: translate3d( -50%, -50%, 0 );
	transform: translate3d( -50%, -50%, 0 );
}

.input--invalid .input__label--fancy
{
	color: #FFFFFF !important;
}.input__submit
{
	cursor: pointer;

	/* reset UA defaults on button elems */
	font-size: 1em;

	padding: .75em 3.5em;

	position: relative;
}

.input__submit > svg
{
	left: 0;

	position: absolute;

	top: 0;
}

.input__submit > span
{
	color: #FFFFFF;
	position: relative;
}.modal
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;bottom: 0;
left: 0;

position: fixed;

right: 0;
top: 0;-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;

background: rgba( 0, 0, 0, .5 );

font-size: 1rem;

-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;

filter: alpha( opacity=0);
opacity: 0;

overflow: hidden;

-moz-transition-property: opacity;
-o-transition-property: opacity;
-webkit-transition-property: opacity;
transition-property: opacity;
-moz-transition-delay: 0s;
-o-transition-delay: 0s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-moz-transition-duration: .5s;
-o-transition-duration: .5s;
-webkit-transition-duration: .5s;
transition-duration: .5s;

z-index: -1;}

.modal--on
{
	filter: alpha( opacity=100);
	opacity: 1;

-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;

z-index: 1;}.modal__content
{
	background: rgba( 0, 0, 0, .2 );

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	min-height: 500px;
	min-width: 800px;

	padding: 3em;

	max-height: 100%;
	max-width: 100%;

	overflow-y: auto;

	/* for .modal__close.icon--x */
	position: relative;

	text-align: center;
}.modal__title
{
	font-size: 1.5em;
	margin-top: 0.833em;
}.nav__bar
{
	position: absolute;
	top: 0;
	width: 100%;
}

:hover         > .nav__bar,
.nav__item--on > .nav__bar
{
	height: 0.625em;
}.nav__icon
{
	height: 0;

	margin: 3em auto 2em;
	padding-bottom: 50%;

	position: relative;

	width: 50%;
}

.nav__icon > .responsive
{
	position: absolute;
}
.nav__item
{
	background-color: rgba( 68, 139, 202, 0.3 );

	cursor: pointer;

	margin: 1.375em 0;

	position: relative;

	text-align: center;

	-moz-transition: box-shadow       .1s,
	            background-color .1s,
	            transform        .1s;
	-o-transition: box-shadow       .1s,
	            background-color .1s,
	            transform        .1s;
	-webkit-transition: box-shadow       .1s,
	            background-color .1s,
	            transform        .1s;
	transition: box-shadow       .1s,
	            background-color .1s,
	            transform        .1s;

	/* 4x4 */
	width: 22%;
}

.nav__item:hover,
.nav__item--on
{
	background-color: #0B5BAB;
	-moz-box-shadow: 0px 0px 2.5em rgba( 0, 0, 0, .3 );
	-webkit-box-shadow: 0px 0px 2.5em rgba( 0, 0, 0, .3 );
	box-shadow: 0px 0px 2.5em rgba( 0, 0, 0, .3 );
	-moz-transform: scale( 1.05 );
	-ms-transform: scale( 1.05 );
	-o-transform: scale( 1.05 );
	-webkit-transform: scale( 1.05 );
	transform: scale( 1.05 );
}.nav__title
{
	margin: 1em;

	font-size: 1.125em;
}

:hover         > .nav__title,
.nav__item--on > .nav__title
{
	color: #F2C318;
}.notice
{
	animation-duration  /* no_alias */ : .5s;
	animation-name      /* no_alias */ : animate-fadeIn, animate-slideInUp;

	font-size: 1rem;

	padding: 1.25em;

	text-align: center;

	position: fixed;

	bottom: 0;
	left: 0;
	right: 0;

	z-index: 2;
}

.notice > h1
{
	font-size: 1.25em;
}

.notice--success
{
	background: #00B4AA;
	color: #FFFFFF;
}

.notice--fail
{
	background-color: #721C24;
	color: #FFFFFF;
}.overlay
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;bottom: 0;
left: 0;

position: fixed;

right: 0;
top: 0;-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;

background: rgba( 0, 0, 0, .5 );

font-size: 1rem;

-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;

filter: alpha( opacity=0);
opacity: 0;

overflow: hidden;

-moz-transition-property: opacity;
-o-transition-property: opacity;
-webkit-transition-property: opacity;
transition-property: opacity;
-moz-transition-delay: 0s;
-o-transition-delay: 0s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-moz-transition-duration: .5s;
-o-transition-duration: .5s;
-webkit-transition-duration: .5s;
transition-duration: .5s;

z-index: -1;text-align: center;
}

.overlay--on
{
	filter: alpha( opacity=100);
	opacity: 1;

-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;

z-index: 1;}.overlay__title
{
	font-size: 2em;
}.page
{
	/* b/c IE11 sucks, we need units */
	max-height: 0vh;

	-moz-transform: scale3d( 0, 0, 0 );
	-ms-transform: scale3d( 0, 0, 0 );
	-o-transform: scale3d( 0, 0, 0 );
	-webkit-transform: scale3d( 0, 0, 0 );
	transform: scale3d( 0, 0, 0 );

	-moz-transition-property: transform, max-height;
	-o-transition-property: transform, max-height;
	-webkit-transition-property: transform, max-height;
	transition-property: transform, max-height;
	-moz-transition-delay: 0s, .5s;
	-o-transition-delay: 0s, .5s;
	-webkit-transition-delay: 0s, .5s;
	transition-delay: 0s, .5s;
	-moz-transition-duration: .5s, 0s;
	-o-transition-duration: .5s, 0s;
	-webkit-transition-duration: .5s, 0s;
	transition-duration: .5s, 0s;

	/* prevent margins, shadows, etc. from leaking out and affecting top position of currently showing page */
	overflow: hidden;
}

.page--on
{
	/* set to an insane value just for transition purposes */
	max-height: 100vh;

	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transform: none;
	transform: none;

	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;

	/* prevent clipping of box-shadow of home page icons */
	overflow: visible; /* reset .page */
}

.page--on[ data-gutter ]
{
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}.page__footer
{
	font-size: 0.7em;
	margin: 4em 0 1.5em;
	filter: alpha( opacity=80);
	opacity: .8;
} 

.page__footer small
{
	font-size: 1em; /* reset UA default */
}

.page__footer + .page__footer
{
	margin-top: 0;
}.page__image > svg
{
	height: 10px;
}.page__link
{
	color: #F2C318;
	text-decoration: none;
}

.page__link:active,
.page__link:hover
{
	text-decoration: underline;
}.page__links > li
{
	margin: .5em 0;
}.page__panel
{
	/* % required by IE11 */
	-ms-flex: 2 1 0%;
	-webkit-flex: 2 1 0%;
	flex: 2 1 0%;

	margin: 0 2em;
}

.page__panel--sm
{
	-ms-flex-grow: 1.25;
	-webkit-flex-grow: 1.25;
	flex-grow: 1.25;
}

.page__panel--sm:nth-child( 2 )
{
	-ms-flex-grow: .8;
	-webkit-flex-grow: .8;
	flex-grow: .8;
}

.page__panel--sm > *
{
	margin: 1.625em 0;
}.page__panels
{
	/*display: -moz-box;*/

display: -ms-flexbox;

/*display: -webkit-box;*/
display: -webkit-flex;

display: flex;font-size: 1rem;

	-ms-flex-pack: distribute;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}/* h2 for specificity w/ .title */
h2.page__title,
  .page__title
{
	color: #D29A32;

	font-size: 1.5em;

	margin: .75em 0 0;

	text-transform: none; /* reset inline .title */
}

span.page__title
{
	font-size: 1em;
	font-weight: bold;

	margin: auto;

	text-decoration: underline;
}.title
{
	font-family: "Albertus MT Std", serif;

	font-weight: normal;

	text-transform: uppercase;
}@keyframes animate-fadeIn
{

	0%
	{
		opacity /* no_alias */: 0;
	}

}

@keyframes animate-fadeInOut
{

	0%
	{
		opacity /* no_alias */: 0;
	}

	50%
	{
		opacity /* no_alias */: 1;
	}

	100%
	{
		opacity /* no_alias */: 0;
	}

}

@keyframes animate-nudgeInDown
{

	0%
	{
		transform /* no_alias */: translateY( -50% );
	}

}

@keyframes animate-slideInUp
{

	0%
	{
		-moz-transform: translateY( 100% );
		-ms-transform: translateY( 100% );
		-o-transform: translateY( 100% );
		-webkit-transform: translateY( 100% );
		transform: translateY( 100% );
	}

}body
{
	background-color: #23447C;

	color: #FFFFFF;

	font: 1rem/1.5 Arial, sans-serif;

	margin: 0;

	/* disable iOS overscrolling */
	overflow: hidden;
	position: fixed;
	height: 100vh;
	width: 100vw;
}

body::before
{
	background: url( '/assets/img/intranet/digital/main/wings.png'      ) no-repeat fixed,
		        url( '/assets/img/intranet/digital/main/background.svg' )           fixed
	;

	content: '';

	bottom: 0;
	width: 100%;

	position: fixed;
	top: 0;

	z-index: -1;
}html
{
	font-size: 20px;
}svg
{
	display: block;

	height: 0;
	width: 0;
}/* end: imports */

/* media queries */

@media only screen and ( max-width: 1400px )
{
	#gutter
{
	font-size: 0.64rem;
}#header
{
	font-size: 0.56rem;
}#nav
{
	font-size: 0.64rem;
}.notice
{
	font-size: 0.8rem;
}.page__panel--sm
{
	-ms-flex-grow: 1.75;
	-webkit-flex-grow: 1.75;
	flex-grow: 1.75;
}

.page__panel--sm:nth-child( 2 )
{
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}.page__panels
{
	font-size: 0.8rem;
}}

@media only screen and ( max-width: 1000px )
{
	.nav__item
{
	/* 3x3 */
	width: 31%;
}.page__image
{
	max-width: 360px;
}.page__links
{
	font-size: .9rem;
	text-align: center;
}.page__panel
{
	-ms-flex: 0 1 auto !important;
	-webkit-flex: 0 1 auto !important;
	flex: 0 1 auto !important;
}.page__panels
{
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}}

@media only screen and ( max-width: 800px )
{
	#header__hgroup
{
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}#header__title
{
	align-self: auto; /* reset #header__title */
}

#header__title > *
{
	margin-top: 1em;
}.modal__content
{
	background: #0A1F3E;

	min-height: 0;
	min-width: 0;
}}

@media only screen and ( max-width: 600px )
{
	#gutter
{
	font-size: 0.56rem;
}#header
{
	font-size: 0.48rem;
}.nav__item
{
	/* 2x2 */
	width: 47%;
}}

/* end: media queries */