/* ==========================================================================
   Base CSS Styles
   ========================================================================== */

/**
 * 
 *
 */
 
* { box-sizing: border-box; }

html, body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.4rem;
	letter-spacing: .03rem;
}

body {
    background-color: #f3f3f3;
	font-size: 16px;
}

ins {
	text-decoration: none;
}

a {
    text-decoration: none;
    color: #0f7293;
}

a:hover {
    text-decoration: underline;
}

:focus {
    outline: 0;
    border-color: #1589ee;
    box-shadow: 0 0 3px #0070D2;
}


input[type="text"]::-webkit-input-placeholder {
  color: #595959;
  font-size: .8rem;
}

input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: #595959;
  font-size: .8rem;
}

input[type="text"]::-moz-placeholder { /* Firefox 19+ */
  color: #595959;
  font-size: .8rem;
}

input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: #595959;
  font-size: .8rem;
}

input[type="text"]::-ms-input-placeholder { /* Edge */
  color:#595959;
  font-size: .8rem;
}

input[type="text"]:placeholder-shown { /* Standard one last! */
  color: #595959;
  font-size: .8rem;
}

main, header, nav, aside, footer {
	display: block;
}


/* ==========================================================================
   Application Layout
   ========================================================================== */

/**
 * Each application can consist of either a two column or three column layout.
 * The first column is always the navigation (<nav>), second column is main (<main>) content,
 * and the option addition of a third (<aside>) column is available.
 * 
 *
 */

.header {
	display: table;
	width: 100%;
	height: 59px;
	background-color: #ffffff;
	white-space: nowrap;
	box-shadow: 0 8px 6px -6px rgb(189, 189, 189);
}

.header__logo {
	display: table-cell;
	width: 250px;
	margin: 0;
	background-color: #139dcc;
	color: #ffffff;
	line-height: 60px;
	height: 60px;
	text-align: center;
	font-weight: normal;
	position: relative;
	z-index: 1;
	vertical-align: middle;
	transition: .3s ease width;	
}

.logo__icon {
	width: 40px;
	height: 40px;
	margin: 0 0 0 7px;
	vertical-align: middle;
}

.logo__text {
	font-size: 1.1rem;
    vertical-align: middle;
}

main {
    display: block;
}

.sidebar {
	height: 100%;
    background-color: #f7f7f7;
    width: 310px;
    color: #393939;
    padding: 20px 10px 0;
    position: absolute;
    top: 59px;
    right: 0;
    transition: .3s ease width;
}

.layout--one-column {
    margin: 0;
}

.layout--two-column {
	margin: 0 0 0 250px;
}

.layout--three-column {
	margin: 0 310px 0 250px;
}

.collapse-navigation .header__logo {
    width: 60px;
    text-indent: -9999px;
}

.collapse-navigation .menu__container {
    width: 60px;
}

.collapse-navigation .layout--two-column {
    margin: 0 0 0 60px;
}

.collapse-navigation .menu .menu__item {
    padding: 14px;
    position: relative;
}

.collapse-navigation .menu .menu__item + dd {
    left: 59px;
}

.collapse-navigation .menu__item .icon {
    float: none;
    margin: 0;
}

.collapse-navigation .menu__item__label {
	background-color: #333333;
	color: #ffffff;
	padding: 5px 10px;
	border-radius: 3px;
	position: relative;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .3s ease opacity;
	display: inline-block;
	transform: scale(0);
}

.collapse-navigation .menu__item:hover .menu__item__label, .menu__item:focus .menu__item__label {
	opacity: 1;
	transform: scale(1) translateX(40px);
}

.collapse-navigation .menu__item__label:before {
    content: '';
    border-color: transparent #333333 transparent transparent;
    border-style: solid;
    border-width: 16px;
    height: 0px;
    width: 0px;
    position: absolute;
    left: -31px;
    top: 0px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/**
 * This section declares the utility classes for alignment, floats, floating columns, etc.
 *
 */

/* Alignment modifiers
   ========================================================================== */

.align--center {
	text-align: center;
}

.align--right {
	text-align: right;
}

.align--left {
	text-align: left;
}

.align--top {
	vertical-align: top;
}

.align--middle {
	vertical-align: middle;
}

.align--bottom {
	vertical-align: bottom;
}

/* Position modifiers
   ========================================================================== */

.position--top {
	position: absolute;
    top: 0;
}

.position--right {
	position: absolute;
    right: 0;
}

.position--bottom {
	position: absolute;
    bottom: 0;
}

.position--left {
	position: absolute;
    left: 0;
}

.position--center {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.3rem;
    margin: auto;
	padding: 0 5px;
}

.position--relative {position: relative;}


/* Float modifiers
   ========================================================================== */

.float--right {
	float: right;
	margin: 0 0 0 20px;
	max-width: 100%;
}

.float--left {
	float: left;
	margin: 0 20px 0 0;
	max-width: 100%;
}

.float--clearfix {
	clear: both;
}

.float--two-columns {
	width: 45%;
}

.float--three-columns {
	width: 30%;
}

/* Overflow classes
   ========================================================================== */

.overflow--visible {
	overflow: visible;
}

.overflow--hidden {
	overflow: hidden;
}

.--vertical-scroll {
	overflow-y: auto;
}

.--horizontal-scroll {
	overflow-x: auto;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * This section declares the utility classes for headings, paragraps, and more.
 *
 */

.heading--large {
	font-size: 2rem !important;
	font-weight: normal !important;
	line-height: 2rem;
	margin: 20px 0;
}

.heading--medium {
	font-size: 1.8rem !important;
	font-weight: normal !important;
	line-height: 2rem;
	margin: 20px 0;
}

.heading--small {
	font-size: 1.5rem !important;
	font-weight: normal !important;
	line-height: 2rem;
	margin: 20px 0;
}

.heading--label {
	font-size: 1rem !important;
	font-weight: bold !important;
	line-height: 2rem;
	margin: 20px 0;
}

/* Striped headers with color modifiers (default is gray)
   ========================================================================== */

.heading--striped {
	background-size: 40px 40px;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent);
	background-color: #5f5f5f;
    color: #ffffff;
	/*padding: .5em 1rem;*/
	border-radius: 3px 3px 0 0;
}

.heading--striped.heading--striped-blue {
	background-color: #016e98;
}

.heading--striped.heading--striped-green {
	background-color: #37884f;
}

.heading--striped.heading--striped-red {
	background-color: #883737;
}

/* Text adjustments
   ========================================================================== */
   
   .nowrap {
	   white-space:nowrap;
   }

/* ==========================================================================
   Icon Styles
   ========================================================================== */

/**
 * 
 *
 */

.icon {
    width: 31px;
    height: 30px;
	fill: #5f697b;
    display: inline;
    margin: 0 auto;
	vertical-align: middle;
	transition: .3s ease fill;
}

.icon--small {
	width: 20px;
	height: 20px;
}

.icon--medium {
  width: 50px;
  height: 50px;
  fill: rgb(43, 49, 65);
}

.icon--large {
  width: 100px;
  height: 100px;
  fill: rgb(43, 49, 65);
}

.heading__icon {
	margin: 0 10px 0 0;
}

.icon--primary {
	fill: #139dcc;
}

.icon--secondary {
	fill: #ffffff;
}

/* ==========================================================================
   Links
   ========================================================================== */

.link__container {
	overflow: hidden;
	padding: 30px 0;
}

.link--cover {
	position: absolute;
    top: 0;
    left: 0;
	right: 0;
	margin: auto;
    background: rgba(14,77,99, 0.95);
	color: #ffffff;
	font-size: 1.2rem;
	height: 150%;
	opacity: 0;
	transition: .2s ease opacity;
}

.link--cover:hover, .link--cover:focus {
	opacity: 1;
}

.link__text {
	position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 30%;
    text-align: center;
	padding: 0 5px;
}

header a:link, header a:visited {
    width: 59px;
    height: 60px;
	background-color: #ffffff;
    display: block;
    text-align: center;
	border: none;
    border-left: 1px solid #f2f2f6;
	border-radius: 0;
    font-size: .8rem;
    color: #5f697b;
	padding: 5px 0 0 0;
	margin: 0;
	transition: ease background .3s, color .3s;
}

.no-svg header a {
	line-height: 50px;
}

header a:hover {
	background-color: #139dcc;
	color: #ffffff;
	text-decoration: none;
}

header a:hover .icon {
	fill: #ffffff;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/**
 * Buttons, links that look like buttons, and input buttons all should have
 * consistent and uniform styling. Links should look like links, and navigate the
 * user to a new page/screen. If a link should behave like a button, consider using
 * a <button>. If that is not feasible use the .button class and consider using ARIA.
 *
 */

.button-group {
	list-style: none;
    margin: 0;
    padding: 20px 0;
}

.button-group--directional {
	text-align: right;
	overflow: hidden;
}

.button-group--directional button:first-child, .button-group--directional .button:first-child, .button-group--directional input[type="submit"]:first-child, .button-group--directional input[type="reset"]:first-child {
	float: left;
}

.button-group .button, .button-group button {
    display: inline-block;
    margin: 5px 10px;
}

.button, button, .pagination__button, input[type="submit"], input[type="reset"] {
	padding: 10px 30px;
	background-color: #ffffff;
	border: 1px solid transparent;
	text-decoration: none;
	border-radius: 3px;
	display: inline-block;
	margin: 10px auto;
	cursor: pointer;
	font-size: .8rem;
	transition: ease background .3s, color .3s;
}

.button--has-icon-left {
	padding-left: 10px;
}

.button--has-icon-right {
	padding-right: 10px;
}

.button--has-icon-left .icon {
    margin: 0 10px 0 0;
}

.button--has-icon-right .icon {
    margin: 0 0 0 10px;
}

.button--full-width {
	display: block;
	width: 100%;
}

.button:hover, button:hover, .pagination__button:hover {
	text-decoration: none;
}

/* Search button to be used in a navigation menu (mobile only)
   ========================================================================== */

.button.menu__search--button {
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 14px;
    width: 60px;
	display: none;
}

.menu__search--button .menu__item__label {padding: 9px 10px;}

/* Blue button modifiers
   ========================================================================== */

.button--blue {
    background-color: #016e98;
    color: #ffffff;
}

.button--blue:hover, .button--blue:focus {
	background-color: #185a71;
}

.button--blue .icon {
	fill: #ffffff;
}

/* Gray Button (Used for secondary actions) modifiers
   ========================================================================== */

.button--gray {
	border-color: #636363;
	background-color: #ffffff;
	color: #636363;
}

.button--gray:hover, .button--gray:focus {
	background-color: #636363;
	color: #ffffff;
}

.button--gray:hover .icon, .button--gray:focus .icon {
	fill: #ffffff;
}

/* White button modifiers
   ========================================================================== */

.button--white {
	background-color: #ffffff;
	color: #002b68;
}

.button--white .icon {
	fill: #002b68;
}

.button--white:hover, .button--white:focus { 
	background-color: #2a76a9;
	color: #ffffff;
}

.button--white:hover .icon, .button--white:focus .icon { 
	fill: #ffffff;
}

/* Icon Only Button modifiers */

.button--icon {
	padding:0;
	vertical-align:middle;
	margin: auto;
}

/* Disabled Button modifiers
   ========================================================================== */
   
.button--disabled, .button[disabled], [disabled] {
    background-color: #a9a9a9;
    color: #ffffff;
    border-color: #989898;
    pointer-events: none;
	
}

.button--disabled .icon, .button[disabled="true"] {
	fill: #ffffff;
	
}

.button--disabled:hover, .button[disabled="true"]:hover, .button--disabled:focus, .button[disabled="true"]:focus {
	background-color: #cccccc;
	color: #565656;
	pointer-events: none;
	
}

.button--disabled:hover .icon, .button[disabled="true"]:hover .icon, .button--disabled:focus .icon, .button[disabled="true"]:focus .icon {
	fill: #565656;
}


/* ==========================================================================
   Content Blocks
   ========================================================================== */

/**
 * Does is hold content? It's here. Basic styling for sectioning elements, callouts,
 * lists, definition lists, etc.
 *
 * 
 *
 */


section {
    clear: left;
	padding: 0 25px 20px;
	margin: 10px auto 40px;
	overflow: hidden;
    display: block;
}

.page__header > .heading--label:first-child, .page__header > .heading--small:first-child, .page__header > .heading--medium:first-child, .page__header > .heading--large:first-child {
	margin: auto;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 2rem;
}

.page__header {
    background: #ffffff;
    padding: 15px 20px 15px;
    margin-bottom: 25px;
    margin-left: -25px;
    margin-right: -25px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
	text-align: right;
	position: relative;
	min-height: 74px;
}

/* Definition list
   ================================================================================ */
   
.definition__list {
	list-style: none;
	margin: 20px 0;
    padding: 0 5px;
	overflow: hidden;
}

.definition__term {
    margin: 0 0 10px;
}

.definition__attribute {
    color: #595959;
	margin: 0;
}

/* Sign in Card
   ========================================================================== */
   
.circle-mask {
	border-radius: 50%;
	margin: 20px 0;
}

.avatar__background {
	fill: #cccccc;
}

.avatar__image {
	fill: #eaeaea;
}

.card.card--sign-in {
	background-color: #ffffff;
    max-width: 550px;
    margin: 5% auto auto;
    border: 1px solid #cccccc;
    border-radius: 3px;
    position: relative;
    -webkit-box-shadow: 0 8px 6px -6px rgb(189, 189, 189);
    -moz-box-shadow: 0 8px 6px -6px rgb(189, 189, 189);
    box-shadow: 0 8px 6px -6px rgb(189, 189, 189);
    font-size: .8rem;
    padding: 0 30px 50px;
}


/* Grid Layout
   ========================================================================== */
   

/* Basic Grid Layout */

   .grid {
		/* display: flex; */
		/* justify-content: center; */
		display: table;
		padding: 10px;
		/*max-width: 90%;*/
		margin: auto;
		border-spacing: 30px;
	}
	
	.grid--two-column .grid__cell {
		width: 50%;
	}
	
	.grid--three-column .grid__cell {
		width: 33%;
	}
	
	.grid--four-column .grid__cell {
		width: 25%;
	}
	
	.grid__cell {
		border-radius: 3px;
		max-width: 400px;
		display: table-cell;
	}

/* Masonry Grid Layout */

.masonry-grid {
	margin: 0 auto;
	column-width: 400px;
	-moz-column-width: 400px;
	-webkit-column-width: 400px;
	column-gap: 1rem;
	-moz-column-gap: 1rem;
	-webkit-column-gap: 1rem;
	column-count: 1;
	-moz-column-count: 1;
	-webkit-column-count: 1;
	overflow: visible;
}

.masonry-grid__cell .card {
	max-width: 100%;
}

.masonry-grid--two-column {
	column-count: 2;
	-moz-column-count: 2;
	-webkit-column-count: 2
}

.masonry-grid--three-column {
	column-count: 3;
	-moz-column-count: 3;
	-webkit-column-count: 3
}

.masonry-grid--four-column {
	column-count: 4;
	-moz-column-count: 4;
	-webkit-column-count: 4
}

.masonry-grid .masonry-grid__cell {
	padding-bottom: 10px;
	width: auto;
	-webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
	page-break-inside: avoid; /* Firefox */
	break-inside: avoid; /* IE 10+ */
	
}

.no-csscolumns-breakinside .masonry-grid .masonry-grid__cell {
	display: inline-block;
	width: 100%;
}

.masonry-grid__cell .card, .masonry-grid__cell div, .masonry-grid__cell table {
	margin: auto;
	-webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
	page-break-inside: avoid; /* Firefox */
	break-inside: avoid; /* IE 10+ */
}

/* Span All Columns */
.masonry-grid .masonry-grid__cell--span {
	-webkit-column-span: all;
    column-span: all;
}

/* Main page banner
   ========================================================================== */

.banner {
	background-size: cover;
	overflow: visible;
	position: relative;
	padding: 40px 10px 40px 10px;
	margin: 0 0 40px 0;
}

.banner__iris {
	background-image: url(../img/background.jpg);
	background-color: #001b51;
	background-repeat: no-repeat;
}

.banner__header {
  color: #ffffff;
}

.banner__tagline {
	color: #ffffff;
	display: block;
	margin: 0 0 53px 0;
  
}

.banner p {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 16px 0;
}

.banner .button {
    display: block;
    margin: 30px auto 0;
	font-size: 1rem;
}

/* Table View
   ========================================================================== */
   
table {
	/*table-layout: fixed;*/
	margin: 0;
	padding: 0;
	border: 1px solid #e1e1e1;
	border-collapse: collapse;
	width: 100%;
	background-color: #ffffff;
}

table th {
	font-weight: bold;
	text-align: left;
}

table td, table th {
	border: none;
	border-bottom: 1px solid #e1e1e1;
	padding: 8px;
	word-break: break-word;
}

.table--zebra-striped tr:nth-child(odd)  {
	/*background-color: rgb(227, 241, 249);*/
	background-color: #eceff3;
}
   

/* Card View
   ========================================================================== */

.card {
	background-color: #ffffff;
    max-width: 750px;
   	margin: 10px auto;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    position:relative;
    -webkit-box-shadow:0 8px 6px -6px rgb(189, 189, 189);
    -moz-box-shadow:0 8px 6px -6px rgb(189, 189, 189);
    box-shadow: 0 8px 6px -6px rgb(189, 189, 189);
    font-size: .8rem;
    page-break-inside: avoid;
}

.card.card--full-width {
	max-width: 100%;
}

.card table {
	border: none;
}

.card p {
    padding: 0 20px;
}


.card .list--table {
    padding: 0;
	margin: 0;
	list-style: none;
	letter-spacing: 0rem;
	line-height: 1.5rem;

}

.card .list--table li {
	margin: 0;
	letter-spacing: .05rem;
	padding: 6px 25px;

}

.card .list--table .list--table__value {
	float: right;
	margin: 0 0 0 30px;
}

.table--zebra-striped li:nth-child(odd) {
	background-color: #E3EDF9;
}


.no-svg .card .card__heading span {
    padding: 0;
}

.card__heading {
    margin: 0;
    padding: 1rem 1rem 1rem 1rem;
	position: relative;
    line-height: 1rem;
    color: #ffffff;
    background-color: #3f474f;
    border-radius: 3px 3px 0 0;
    font-size: 1rem;
    font-weight: normal;
}

.card__heading--no-icon {
	padding: 1rem;
}

.card__heading .card__icon {
	position: absolute;
	top: 0;
	left: 10px;
	bottom: 0;
	margin: auto;
}

/* ==========================================================================
   Form Controls
   ========================================================================== */

/**
 * This section provides styling for all form control inputs (except buttons)
 * and their labels.
 *
 * Individual widgets may consist of form controls or use <form> but those
 * styles are declared in a separate section.
 * 
 *
 */

input[type="text"], input[type="password"], input[type="search"] {
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #cccccc;
    width: 100%;
}

label {
	display: block;
	margin: 10px 0;
    font-size: .9rem;
}

.label__required-field {

    color: #ab1d1d;
}

label.error + input {
    border: 1px solid #901C1C !important;
}

label.error:after {
    content: 'Incorrect entry';
    color: #901c1c;
    float: right;
}

.label--inline {
    position: absolute;
    top: 15px;
    left: 10px;
    bottom: 0;
    margin: auto;
    color: #5f697b;
    cursor: text;
    font-size: .8rem;
	white-space: nowrap;
	line-height: 30px;
}

.label--inline .icon {
    float: left;
    margin: 0 10px 0 0;
}

.no-svg .label--inline {
	left: 20px;
}

/*input:focus + .label--inline {
    text-indent: -9999px;
    width: 47px;
}*/

.header__form-control {
	display: table-cell;
	position: relative;
	left: 0;
	overflow: hidden;
}

.header__form-control .header__form-input {
	height: 59px;
	border-radius: 0;
	vertical-align: super;
	border: none;
	border-left: 1px solid #cccccc;
	/*border-right: 1px solid #cccccc;*/
	padding: 10px 10px 10px;
	font-size: .8rem;
}

input::placeholder {
	color: #595959;
}

.header__form-component {
	width: 70%;
	display: inline-block;
	position: relative;
}

.header__form-component.header__form-component--small {
	width: 30%;
}

.header__form-control .header__form-component:first-child > .header__form-input, .header__form-component .header__form-input--inlined {
	border: none;
	padding: 0 0 0 50px;
}

.header__menu {
	display: table-cell;
	width: 173px;
	vertical-align: top;
	position: relative;
	z-index: 10;
	padding: 0;
	
}

.no-svg .header__form-control .header__form-input {
	padding: 20px 0 10px 20px;
	height: 30px;
}

/* ==========================================================================
   Navigation Menu Styles
   ========================================================================== */

/**
 * This section provides styling the main navigation pane (column 1).
 *
 * Modifiers will be added based upon whether we want a fly-out menu (IRIS),
 * an inline, accordian menu (EPP), or if we do not want a submenu.
 * 
 *
 */


.menu__container {
    height: 100%;
    background-color: #4c637b; /*#3f474f*/
	width: 250px;
    color: #ffffff; 
    position: absolute; /*changed to fixed for sticky employee card */
	top: 59px;
    left: 0;
	transition: .3s ease width;
    z-index: 10;
	white-space: nowrap;
}

.menu__search {
    position: relative;
    border-bottom: 1px solid #a0a5ad;
}

input.menu__container-input {
    width: 100%;
    padding: 20px 0 20px 50px;
    border: none;
}

.menu {
    padding: 0;
    font-size: .8rem;
	list-style: none;
	margin: 0;
}

.menu__item {
    margin: 10px 0;
    padding: 10px;
	outline: 0;
	transition: .3s ease background, .3s ease color;
    cursor: pointer;
}

.menu__item .icon {
    fill: #ffffff;
    margin: 0 10px 0 0;
}

.menu__item__label {
    vertical-align: middle;
}

.menu__item + dd, .menu__item > .submenu {
	visibility: hidden;
	position: absolute;
    text-align: left;
    top: 0;
    height: 100%;
    width: 0;
    color: #ffffff;
	left: 250px;
	background-color: #42566b;
    z-index: 100;
    margin: 0;
    box-shadow: inset 3px 0 6px rgba(0, 0, 0, 0.31);
	white-space: normal;
	cursor: default;
	overflow: hidden;
	padding: 0;
    list-style: none;
}

.submenu__label {
    font-size: 1rem;
    margin: 20px 25px 30px 25px;
}

.submenu__item {
    margin: 10px 25px;
}

.menu a:link, .menu a:visited {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.menu__item > a:link, .menu__item > a:visited {
    text-align: left;
    padding: 0;
	color: #ffffff;
}

.submenu__item > a:hover {
	color: #00E2FF;
}

.menu__item:hover, .menu__item:focus, .menu__item--active {
	background-color: #ffffff;
	color: #4c637b;
}

.menu__item:hover a, .menu__item:focus a {
	color: #4c637b;
}

.menu__item:hover .icon, .menu__item:focus .icon, .menu__item--active .icon {
	fill: #4c637b;
}

.menu ins {
    margin: 0;
    display: block;
}

.submenu__item ins {
    display: inline;
}


/* ==========================================================================
   Author-It Styles
   ========================================================================== */

/**
 * These styles are specific to documentation and the class names are set within TCB's Documentation Staff's tool.
 *
 * 
 *
 */


.authoritactualdata {
    font-family: 'Courier New', monospace;
}

.authoritbutton {
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.authoritvalue, .authoritsystemmessage {
    font-family: 'Courier New', monospace;
    font-style: italic;
}

.authoritemailaddress {
    font-style: italic;
}

.authoritmenuoption {
    font-weight: bold;
    font-style: italic;
}

.authorittelephone {
    font-weight: bold;
}

.tablefieldspecs {
	font-style:italic;
}

p.authoritnote, p.authoritnote1, p.authoritnote2, p.authoritnote3 {
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
    padding: 10px 15px;
    background-color: #F7F7F7;
    margin: 20px auto;
}

/* ==========================================================================
   Widgets
   ========================================================================== */

/**
 * These components will more than likely have JS applied to them.
 * Styling for modal windows, tooltips, custom components.
 *
 * 
 *
 */
 
 
/* Contact List
	========================================================================= */
 
	.contact-list {
		max-width: 800px;
		margin: auto;
		position: relative;
	}
	
	.contact-list__label {
		width: 100%;
		text-align: left;
		position: relative;
		padding: 30px;
		background-color: #ffffff;
		border-left: 4px solid #ffffff;
		transition: .3s ease background-color, .3s ease border-left-color, .3s ease transform;
	}
	
	.contact-list__label:before {
		content: '';
		width: 100%;
		height: 100%;
		box-shadow: 0 0 10px #bdbdbd;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	
	.contact-list__label:hover, .contact-list__radio:focus + .contact-list__label {
		border-left-color: #518dd6; 
		border-color: #1589ee;
    	box-shadow: 0 0 3px #0070D2;
	}
	
	.contact-list__label:hover:before, .contact-list__radio:focus + .contact-list__label:before, .contact-list__radio:checked + .contact-list__label:before {
		opacity: 1;
	}
	
	.contact-list__radio:checked + .contact-list__label {
		border-left-color: #518dd6;
	}
	
	.contact-list__icon {
		border-radius: 50%;
		width: 40px;
		height: 40px;
		top: 0;
		left: 26px;
		bottom: 0;
		position: absolute;
		margin: auto;
		transition: .3s ease transform;
	}
	
	.contact-list__contact {
		margin: 0 0 0 60px;
		font-size: 1.05rem;
		line-height: 1.3rem;
		transition: .3s ease transform;
	}
	
	.contact__description {
		display: block;
		font-size: .8rem;
	}
	
	.contact-list__radio {
		position: absolute;
		left: -9999px;
	}
	
	.contact-list__options {
		position: absolute;
		top: 0;
		right: 10px;
		bottom: 0;
		margin: auto;
		border-radius: 50%;
		padding: 0;
		height: 50px;
		width: 50px;
		display: none;
	}
	
	.contact-list__options:hover, .contact-list__options:focus {
		background-color: #139dcc;
	}
	
	.contact-list__options:hover > .icon, .contact-list__options:focus > .icon {
		fill: #ffffff;
	}

	.contact-list__input {
		text-align: left;
		padding: 8px 0;
		position: absolute;
		overflow: hidden;
		top: -9999px;
		width: 4px;
		transition: .3s ease width;
		white-space: nowrap;
		transition-delay: .1s;
		background-color: #e8e8e8;
		border-left: 4px solid #759ccc;
	}
  
	.contact-list__input.contact-list__input--show {
		width: 100%;
		padding-left: 26px;
	}
	
	.contact--selected .contact-list__contact {
		transform: translateY(-18px);
	}
	
	.contact--selected {
		transform: translateY(15px);
	}
	
	.contact-list__item.contact--selected ~ .contact-list__item {
		transform: translateY(30px);
	}
	
	.contact--selected .contact-list__label {
		padding-bottom: 50px;
	}
	
	.contact--selected .contact-list__icon {
		transform: translateY(-30px);
	}
	
	.contact-list__input > input {
		width: 70%;
		vertical-align: middle;
  	}


/* Field Level Help
	========================================================================= */
 
 .field-level-help {
	padding: 0;
	background: none;
	border-bottom: 1px solid transparent;
	text-decoration: none;
	border-radius: 0;
	display: inline-block;
	margin: auto;
	cursor: help;
	font-weight: inherit;
	color: inherit;
	line-height:1.4rem;
	transition: ease color .3s;
 }
 
 .field-level-help:hover, .field-level-help:focus {
	 border-bottom: 1px dotted #333333;
 }
 
 
/* List box */
.list__box {
	border: 1px solid #cccccc;
	background-color: #ffffff;
	border-radius: 3px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1
}
.list__option {
	position: relative;
	color: #040707;
	text-decoration: none;
	padding: .8rem 1rem .8rem 3rem;
	margin: 0;
	display: block;
	cursor: pointer;
}

.list__option:before{
	content: '';
	speak: none;
	background: url(../img/assets.png) no-repeat 0 -3px;
	width: 32px;
	height: 32px;
	position:absolute;
	top: 0;
	left:7px;
	bottom:0;
	margin: auto;
}
.list__input--radio + .list__option:before{
	content: '';
	speak: none;
	background: url(../img/assets.png) no-repeat -41px -3px;
	width: 32px;
	height: 32px;
	position:absolute;
	top: 0;
	left:7px;
	bottom:0;
	margin: auto;
}
.list__input {position:absolute;left:-9999px;}
.list__input.list__input--radio:checked + .list__option:before {background-position: -41px -51px;}
.list__input:checked + .list__option:before {background-position: 0 -51px;}
.list__option:hover, .list__input:focus + .list__option {background-color: #cee4fb;}

/* jQuery Datepicker
	========================================================================= */
	
.ui-datepicker-header {
    background-color: #3f474f;
    color: #ffffff;
    padding: .5rem 0;
    position: relative;
    border-radius: 3px 3px 0 0;
}

.ui-datepicker {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 0;
    border-radius: 3px;
    width: 20rem;
    display: none;
    position: relative;
}

.ui-datepicker:before {
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 6px -6px rgb(209, 208, 208);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
        
.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

button.ui-state-default {
    background: none;
    border: none;
    padding: .6rem;
    margin: auto;
    display: inline;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}
        
.ui-datepicker td:hover {
    background-color: #cee4fb;
}
        
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {

    width: 30px;
    height: 27px;
    border: none;
    top: 0;
    background: none;
    bottom: 0;
    position: absolute;
    padding: 0;
    margin: auto;
}
        
.ui-datepicker .ui-datepicker-prev {
    left: 8px;
}
        
.ui-datepicker .ui-datepicker-next {
    right: 8px;
}
        
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.ui-datepicker__svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    fill: #ffffff;
}
        
.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
    border: none;
    table-layout: auto;
}
        
.ui-datepicker td {
    border: 0;
    padding: 1px;
    text-align: center;
    transition: .3s ease background;
}
        
.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}

/* jQuery Autocomplete
 	========================================================================= */
	
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

.ui-desc {
	font-size: 13px;
	font-style: italic;
  }

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	background: #cee4fb;
	font-weight: normal;
}
.ui-autocomplete {
	max-height: 200px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
}
 
 /* Skip Blocks of Content
   ========================================================================== */

.skip-content {
    position: fixed;
    top: -300px;
    left: 0;
    z-index: 100;
    width: 100%;
    background: rgb(76, 99, 123);
    background: rgba(76, 99, 123, 0.93);
    height: 60px;
    line-height: 60px;
    padding: 0 0 0 30px;
    color: #ffffff;
    transition: .3s ease top;
    text-align: left;
}

.skip-content:focus {
    top: 0;
    border-color: #1589ee;
    box-shadow: 0 0 3px #0070D2;
}

/* Small toasts for errors, warnings, informative, and success conditions
   ================================================================================ */

.toast__container {
	position: fixed;
    z-index: 1000;
	right: -9999px;
	opacity: 0;
	transition: .3s ease opacity;
}

.toast--visible {
	opacity: 1;
}

.toast {
	background-color: rgba(76, 76, 76, 0.94)/*#4c4c4c*/;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 1rem 2rem 1rem 4rem;
    border-radius: 3px;
    margin: 20px auto;
    font-size: .9rem;
	position: relative;
	display: inline-block;
}

.toast .icon {
	margin: auto;
	fill: #ffffff;
	position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
}

.toast__close {
	background: none;
    padding: 0;
    margin: 0 0 0 20px;
    width: 33px;
    height: 32px;
    overflow: hidden;
    vertical-align: middle;
}

.toast--error {
	background-color: #c54e48;
    border: 1px solid #bd362f;
	color: #ffffff;
}

.toast--error .icon {
	fill: #ffffff;
}

.toast--warning {
	background-color: #fffef0;
    border: 1px solid #dcc906;
	color: #333333;
}

.toast--warning .icon {
	fill: #dcc906;
}

.toast--info {
	background-color: rgba(1, 110, 152, 0.92)/*#edfaff*/;
    border: 1px solid #139dcc;
	color: #ffffff;
}

.toast--info .icon {
	fill: #ffffff;
}

.toast--success {
	background-color: rgba(60, 122, 60, 0.94)/*#edfbf7*/;
    border: 1px solid #3c7a3c;
	color: #ffffff;
}

.toast--success .icon {
	fill: #ffffff;
}

/* Calendar
   ========================================================================== */

.calendar {
    font-size: .8rem;
}

.calendar__header {
    background-color: #333333;
    color: #ffffff;
    margin: 0;
    text-align: center;
    padding: 22px 0 20px 0;
    font-weight: normal;
    font-size: 1.07rem;
    border-radius: 5px 5px 0 0;
}

.previous-month__button {
    text-indent: -9999px;
    border: none;
    width: 23px;
    height: 23px;
    padding: 0;
    /*background: url('../images/sprite.svg') -3px -5px no-repeat;*/
    background-size: 500%;
    top: 18px;
    left: 30px;
    position: absolute;
    cursor: pointer;
}

.next-month__button {
    text-indent: -9999px;
    border: none;
    width: 23px;
    height: 23px;
    padding: 0;
    /*background: url('../images/sprite.svg') -26px -5px no-repeat;*/
    background-size: 500%;
    top: 18px;
    right: 30px;
    position: absolute;
    cursor: pointer;
}

.calendar__table {
    padding: 0 10px 15px;
    border-bottom: 1px solid #eaeaea;
}

.calendar__table th {
    padding: 10px;
    text-align: center;
}

.calendar__table td {
    padding: 0;
    text-align: center;
    border: none;
}

.calendar__table td abbr {
    padding: 10px;
    display: block;
}

/* Timeline
   ========================================================================== */
   
   .timeline {
		margin: 30px 0 0 0;
		padding: 0;
		list-style: none;
		position: relative;
	}
	
	.timeline:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 10px;
        background: #afdcf8;
        left: 55px;
        margin-left: -10px;
    }
	
	.timeline__entry {
		position: relative;
	}
	
	.timeline__icon {
        width: 40px;
        height: 40px;
        position: absolute;
        padding: 8px;
        fill: #fff;
        background: #46a4da;
        border-radius: 50%;
        box-shadow: 0 0 0 6px #afdcf8;
        text-align: center;
        left: 30px;
        top: 0;
		/*z-index: 1;*/
    }
	
	.timeline .timeline__label {
        margin: 0 0 15px 90px;
        padding: 0 1rem 1rem;
        font-weight: 300;
        line-height: 1.4rem;
        position: relative;
        border-radius: 5px;
    }

/* Modal Window
   ========================================================================== */

.modal__window {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
	background: #333333;
    background: rgba(51, 51, 51, 0.74);
    z-index: 100;
	opacity: 0;
	overflow-y: scroll;
    transition: .3s ease opacity;
}

.modal__container {
    background-color: #ffffff;
    width: 70%;
	max-width: 600px;
    top: 10%;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 3px;
    box-shadow: 0 8px 6px -6px rgb(56, 56, 56);
    position: absolute;
}

.modal__header {
    text-align: center;
    margin: 0;
    padding: 30px 0;
}

.modal__content {
    padding: 0 30px;
}

.modal__footer {
    margin: 30px 0 0;
    padding: 20px 30px;
    background-color: #f7f7f7;
    border-radius: 0 0 3px 3px;
}

.modal__footer .button-group {
	padding: 0;
}

.modal__close-button {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
	color: #ffffff;
    border: none;
    overflow: hidden;
    top: -40px;
    right: 0;
    background: none;
}

.modal__loading {
	text-indent: -9999px;
	height: 120px;
    width: 120px;
    margin: auto;
	background: url(../img/spinner.gif) no-repeat;
}

.modal__close-button .icon {
    fill: #ffffff;
    width: 40px;
    height: 40px;
}

.modal__close-button:hover .icon, .modal__close-button:focus .icon {
    fill: #bfbdbd;
}

.modal__window--active {
	opacity: 1;
}

/* Modal Window Effects */

.modal__window--fade .modal__container {
	opacity: 0;
}

.modal__window--fade.modal__window--active .modal__container {
	opacity: 1;
}

.modal__window--slide .modal__container {
	top: -9999px;
	transition: .3s ease top;
}

.modal__window--slide.modal__window--active .modal__container {
	top: 10%;
}




/* Custom Select Box (default is large option)
   ========================================================================== */

.custom-select {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: left;
    background: #fff;
    width: auto;
	max-width: 100%;
    line-height: 1rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

.custom-select__placeholder-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
	/*margin: 0 10px 0 0;
	display: inline-block;*/
    fill: #65798e;
    width: 30px;
    height: 30px;
}

.custom-select__input {
	position: relative;
	padding: 1rem;
}

.custom-select__input--with-icon {
	padding: 1em 1em 1em 4rem;
}

.no-svg .custom-select__input {
	background-image: url('data:image/gif;base64,R0lGODlhFAAUALMLADU6SkZKWbi6wNXW2nx/ievs7SwxQl5ibpqdpfj5+SswQf///wAAAAAAAAAAAAAAACH5BAEAAAsALAAAAAAUABQAAARGcMlJq70463uU/yB4UIMRnooxVAQaElYBuB5QXAitIFgSuIFERuASbDqh0aYEUm0krQ/suZDVbtRFbpeV+IJdicAYLpvLEQA7');
	background-repeat: no-repeat;
	background-position: 86% 50%;
}

.custom-select__placeholder, .custom-select a:link, .custom-select a:visited {
    display: block;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select a:link, .custom-select a:visited {
	padding: .8rem 1rem;
}

.custom-select__placeholder {
    color: #333333;
	padding: 0;
	max-width: 85%;
    
}

.custom-select__options {
   /* overflow: visible;*/
    background: transparent;
    visibility: hidden;
    padding: 0;
	margin: 0;
	/*max-width: 100%;*/
    position: absolute;
    /*width: auto;*/
    background-color: #ffffff;
    box-shadow: 0 8px 6px -6px rgb(209, 208, 208);
    border-top: none;
    height: 0;
	list-style: none;
    overflow: hidden;
	top: 63px;
  	border-radius: 3px;
	z-index: 1;
  	transition: ease .2s all;
}

.custom-select--active .custom-select__options {
    height: auto;
    /*padding-bottom: 1.25rem;*/
	border: 1px solid #cccccc;
	visibility: visible;
}

.custom-select--large.custom-select--active .custom-select__options {
    height: 200px;
    overflow-y: auto;
}

.custom-select a:link, .custom-select a:visited {
    width: auto;
    height: auto;
    text-align: left;
    float: none;
    border: none;
	  color: #040707;
  text-decoration: none;
    transition: .3s ease all;
}

.custom-select a:hover, .custom-select a:focus {
  background-color: #cee4fb;
}

.custom-select__down-arrow {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
	/*float: right;*/
    width: 30px;
    height: 30px;
    fill: #65798e;
}

.custom-select__option-icon {
   /* margin: 0 10px 0 15px;*/
   	margin: 0 10px 0 0;
    fill: #65798e;
    vertical-align: middle;
    width: 25px;
    height: 25px;
}

.header__menu .custom-select {
    border: none;
    border-radius: 0;
    line-height: 30px;
    height: 59px;
}

.header__menu .custom-select__input {
	border-left: 1px solid #cccccc;
	height: 60px;
}

/* Chips
	========================================================================= */
	
	.chip-label {
		font-size: .8rem;
		color: #595959;
	}

	.chip {
		font-size: .8rem;
		color: #595959;
		background-color: #E7E7E7;
		border-radius: 20px;
		transition: .3s ease background;
		border: 1px solid #e1e1e1;
		display: inline-block;
		padding: 10px 25px;
		margin: auto;
    	line-height: 1.4rem;
		cursor: pointer;
	}
	
	.chip.chip--disabled {
		cursor: auto;
	}
	
	.chip .custom-select__placeholder {
		font-size: .9rem;
		max-width: 100%;
	}
	
	.chip:not(.chip--disabled):hover, .chip:not(.chip--disabled):focus, .chip:not(.chip--disabled):hover .custom-select__down-arrow, .chip:not(.chip--disabled):focus .custom-select__down-arrow {
		background-color: #bbbbbb;
		color: #494949;
		fill: #494949;
	}
	
	.chip .custom-select__down-arrow {
		width: 23px;
		height: 23px;
		background: #E7E7E7;
		transition: .3s ease background;
	}
	
	.chip .custom-select__placeholder {
		font-weight: bold;
	}
	
	.chip.custom-select {
		padding: 0;
		line-height: 1rem;
	}

    .chip .custom-select__placeholder-icon {
        width: 25px;
        height: 25px;
        left: 15px;
    }
	
	.chip .custom-select__input {
		padding: 13px 1rem;
	}
	
	.chip .custom-select__input--with-icon {
        padding: 1em 1em 1em 3rem;
	}


/* Pagination Control
   ========================================================================== */
   
  	.pagination__button {
        padding-top: 5px;
        padding-bottom: 5px;
		white-space: nowrap;
		display: inline-block;
	}
	
	.pagination-group .pagination__input {
		padding: 8px 0;
		width: auto;
		text-align: center;
		border-radius: 3px;
		border: 1px solid #b7b7b7;
		font-size: 1.2rem;
		vertical-align: middle;
	}

    .pagination__button__text {
        vertical-align: middle;
    }
	
/* Tooltip
   ========================================================================== */

    .no-tooltip .tooltip {display: none !important;}
	.tooltip {
	  position: absolute;
	  z-index: 1070;
	  display: block;
	  font-family: Arial, sans-serif;
	  font-size: 12px;
	  font-style: normal;
	  font-weight: normal;
	  line-height: 1.42857143;
	  text-align: left;
	  text-align: start;
	  text-decoration: none;
	  text-shadow: none;
	  text-transform: none;
	  letter-spacing: normal;
	  word-break: normal;
	  word-spacing: normal;
	  word-wrap: normal;
	  white-space: normal;
	  filter: alpha(opacity=0);
	  opacity: 0;
	
	  line-break: auto;
	}
	.tooltip.in {
	  filter: alpha(opacity=100);
	  opacity: 1;
	}
	.tooltip.top {
	  padding: 5px 0;
	  margin-top: -3px;
	}
	.tooltip.right {
	  padding: 0 5px;
	  margin-left: 3px;
	}
	.tooltip.bottom {
	  padding: 5px 0;
	  margin-top: 3px;
	}
	.tooltip.left {
	  padding: 0 5px;
	  margin-left: -3px;
	}
	.tooltip-inner {
		max-width: 200px;
		padding: 5px 8px;
        font-size: .8rem;
		color: #fff;
		text-align: center;
		background-color: #016e98;
		border-radius: 4px;
	}
	.tooltip-arrow {
	  position: absolute;
	  width: 0;
	  height: 0;
	  border-color: transparent;
	  border-style: solid;
	}
	.tooltip.top .tooltip-arrow {
	  bottom: 0;
	  left: 50%;
	  margin-left: -5px;
	  border-width: 5px 5px 0;
	  border-top-color: #016e98;
	}
	.tooltip.top-left .tooltip-arrow {
	  right: 5px;
	  bottom: 0;
	  margin-bottom: -5px;
	  border-width: 5px 5px 0;
	  border-top-color: #016e98;
	}
	.tooltip.top-right .tooltip-arrow {
	  bottom: 0;
	  left: 5px;
	  margin-bottom: -5px;
	  border-width: 5px 5px 0;
	  border-top-color: #016e98;
	}
	.tooltip.right .tooltip-arrow {
	  top: 50%;
	  left: 0;
	  margin-top: -5px;
	  border-width: 5px 5px 5px 0;
	  border-right-color: #016e98;
	}
	.tooltip.left .tooltip-arrow {
	  top: 50%;
	  right: 0;
	  margin-top: -5px;
	  border-width: 5px 0 5px 5px;
	  border-left-color: #016e98;
	}
	.tooltip.bottom .tooltip-arrow {
	  top: 0;
	  left: 50%;
	  margin-left: -5px;
	  border-width: 0 5px 5px;
	  border-bottom-color: #016e98;
	}
	.tooltip.bottom-left .tooltip-arrow {
	  top: 0;
	  right: 5px;
	  margin-top: -5px;
	  border-width: 0 5px 5px;
	  border-bottom-color: #016e98;
	}
	.tooltip.bottom-right .tooltip-arrow {
	  top: 0;
	  left: 5px;
	  margin-top: -5px;
	  border-width: 0 5px 5px;
	  border-bottom-color: #016e98;
	}
	
	
/* ==========================================================================
   Mobile CSS
   ========================================================================== */


@media (max-width: 895px) {
	/* Two Column */
	.pagination-group .pagination__button {
		width: 30px;
		height: 39px;
		overflow: hidden;
		padding: 0;
		vertical-align: middle;
		line-height: 36px;
	}
    
    .pagination__button__text {
        position: absolute;
        left: -9999px;
    }
	
	.menu__container {
		width: 60px;
	}
	
	.menu__item .icon {float: none;margin: 0;}
	
	.menu__item__label {
		background-color: #333333;
		color: #ffffff;
		padding: 5px 10px;
		border-radius: 3px;
		position: relative;
		top: 0;
		left: 0;
		opacity: 0;
		transition: .3s ease opacity;
		display: inline-block;
		transform: scale(0);
	}
	
	.menu__item__label:before {
		content: '';
		border-color: transparent #333333 transparent transparent;
		border-style: solid;
		border-width: 16px;
		height: 0px;
		width: 0px;
		position: absolute;
		left: -31px;
		top: 0px;
	}
	
	.menu__item:hover .menu__item__label, .menu__item:focus .menu__item__label {
		opacity: 1;
		transform: scale(1) translateX(40px);
	}
	
	.menu .menu__item {
		padding: 14px;
		position: relative;
	}
	
	.button.menu__search--button {display: inline-block;}
	.menu__search {display: none;}
	
	header .header__logo {
		width: 60px;
	}
	
	.logo__icon {
		margin: auto;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	.logo__text {
		text-indent: -9999px;
		display: block;
	}
	
	.menu .menu__item + dd {
		left: 59px;
	}
	
	.layout--two-column {
		margin: 0 0 0 60px;
	}

}


@media (max-width: 800px) {
	/* Two Column */
	
	.card-grid {
		width: 100% !important;
	}

	.card-grid .card {
		width: 100%;
		margin: 10px auto 20px;
		position: static !important;
	}
	
	
	
	
    
}

@media (max-width: 700px) {
	
.grid {
	display: block;
	max-width: 100%;
}

.grid .grid__cell {
	max-width: 100%;
	width: 100%;
    display: block;
}

.masonry-grid {
		left: 0;
}

.page__header > .heading--label:first-child, .page__header > .heading--small:first-child, .page__header > .heading--medium:first-child, .page__header > .heading--large:first-child {
    position: static;
    margin: 0 0 7px 10px;
}

.page__header {
    text-align: left;
}

.masonry-grid .masonry-grid__sizer, .masonry-grid .masonry-grid__cell {
    width: 100%;
}
	
}

@media (max-width: 500px) {
	
	
	.header__menu {
		width: 70px;
	}
	
	.header__menu .custom-select__down-arrow {
    	display: none;
	}
	
	.header__menu .custom-select__placeholder {
		text-indent: -9999px;
	}
	
	.header__menu .custom-select__placeholder-icon {
		left: auto;
		right: 20px;
	}
	
	.header__menu .custom-select {
		background: inherit;
		width: auto !important;
	}
	
	.header__menu .custom-select__input {
		padding: 1rem;
		width: 70px;
		float: right;
	}
	
	.header__menu .custom-select__options {
		right: 0;
	}
	
	.timeline:before {
		left: 19px;
	}
	
	.timeline__icon {
		left: -5px;
	}
	
	.timeline .timeline__label {
		margin: 0 0 15px 30px;
	}
}

@media (max-width: 430px) {
	.pagination-group .pagination__input {
		width: 60%;
		font-size: 1rem;
	}
	.pagination-group .pagination__button {
		height: 35px;
		line-height: 31px;
	}
	
	.timeline:before {
		z-index: 1;
		left: 10px;
		width: 5px;
		border-radius: 0 0 0 5px;
	}
	
	.timeline__icon {
		top: -22px;
		left: -15px;
		margin: auto;
		width: 35px;
		height: 35px;
		z-index: 1;
	}
	
	.timeline__label.card {
		margin: 35px 0 0 0;
	}
}
@media print {
    body {
        margin:0; 
        padding:0; 
        line-height: 1.3; 
        word-spacing:1px; 
        letter-spacing:0.2px;
        font-size: 11pt;
        background-color: #ffffff !important;
        color: #333333 !important;
    }
	
	.--horizontal-scroll {overflow:visible;}
	
	.layout--two-column {
		margin: 0;
	}
	
	section {
		overflow: visible;
	}
	
	.masonry-grid {
		column-count: 1;
	}
    
    .no-print, .header, nav, .skip-content {
        display: none;
    }
    
    .masonry-grid .masonry-grid__cell {
        width: 100%;
        position: static !important;
    }
    
    .masonry-grid__cell .card, .masonry-grid__cell div, .masonry-grid__cell table {
        -webkit-column-break-inside: auto;
        page-break-inside: auto;
        break-inside: auto;
    }

} 