/* BEGIN DEFAULT CSS --------------------------------------------> */


/*

----FONTS----

Montserrat (montserrat)

900 - Black
800 - Extra Bold
700 - Bold
600 - Semi-bold
500 - Medium
400 - Regular
300 - Light
200 - Extra light
100 - Thing


Merriweather (merriweather)

300 - Light
400 - Regular
700 - Bold
900 - Black



*/


html
{
	/* prevent vertical scrollbar jump */
	overflow-y: scroll;

	/* need to hide bottom scrollbar if using the calc(50vw - 50%) method */
	overflow-x: hidden;

	font-family: 'montserrat', Arial, sans-serif;
	line-height: 1.7;
	color: #000;

	/* adjust these on other elements */
	--min-font-size: 16;
	--max-font-size: 19;

	/* you probably won't need to adjust these on other elements, but you can */
	--fluid-start: 767;
	--fluid-end: 1920;
}

html
{
	/* fluid css - https://codepen.io/lowbatteries/full/qBEyXEP */
	font-size: calc(var(--max-font-size) * 1px); /* IE11 */
	font-size: max(
		var(--min-font-size) * 1px, min(
			var(--max-font-size) * 1px,
			var(--min-font-size) * 1px + (var(--max-font-size) - var(--min-font-size)) * ((100vw - var(--fluid-start) * 1px) / (var(--fluid-end) - var(--fluid-start)))
		));
}

h1, h2, h3, h4, h5, h6, #sectionTitle, #subContent h2, p, li
{
	/* fluid css - https://codepen.io/lowbatteries/full/qBEyXEP */
	font-size: calc(var(--max-font-size) * 1px); /* IE11 */
	font-size: max(
		var(--min-font-size) * 1px, min(
			var(--max-font-size) * 1px,
			var(--min-font-size) * 1px + (var(--max-font-size) - var(--min-font-size)) * ((100vw - var(--fluid-start) * 1px) / (var(--fluid-end) - var(--fluid-start)))
		));

	/* So, I guess set the top and bottom margin up with vars also */
	margin-top: max(
		var(--min-margin-top) * 1px, min(
		var(--max-margin-top) * 1px,
		var(--min-margin-top) * 1px + (var(--max-margin-top) - var(--min-margin-top)) * ((100vw - (var(--fluid-start) * 1px)) / (var(--fluid-end) - var(--fluid-start)))
		));

	margin-bottom: max(
		var(--min-margin-bottom) * 1px, min(
			var(--max-margin-bottom) * 1px,
			var(--min-margin-bottom) * 1px + (var(--max-margin-bottom) - var(--min-margin-bottom)) * ((100vw - (var(--fluid-start) * 1px)) / (var(--fluid-end) - var(--fluid-start)))
		));


	--min-margin-top: 10;
	--max-margin-top: 30;

	--min-margin-bottom: 18;
	--max-margin-bottom: 22;

	/* Make the minimum font size 70% of the max */
	--min-font-size: calc(var(--max-font-size) * .7);
}

html[data-whatintent="mouse"] *:focus,
html[data-whatintent="touch"] *:focus
{
	outline: 0;
}

/* make sure the browser doesn't go smaller than 320, and throws a scrollbar */
@media (max-width: 320px)
{
	html
	{
		max-width: 320px;
		overflow-x: visible;
	}
}

body
{
	position: relative;
	min-width: 320px;
	max-width: 1548px;
	margin: 0 auto;
	padding: 0 80px 0 80px;
	background: #fff;
	/*box-sizing: border-box;*/
}

@media (max-width: 1349px)
{
	body
	{
		padding: 0 44px 0 44px; /* top padding for fixed header offset, plus reduced side padding */
	}
}

/* in mobile or tablet we do not want anything outside the body bounds scrollable */
@media (max-width: 1024px)
{
	body
	{
		overflow-x: hidden;
	}
}

@media (max-width: 919px)
{
	body
	{
		padding: 0 16px 0 16px;  /* top padding for fixed header offset, plus further reduced side padding */
		box-sizing: border-box;
	}
}

p
{
	--min-margin-top: 10;
	--max-margin-top: 12;
	--min-margin-bottom: 20;
	--max-margin-bottom: 30;
}

/* normalize cell padding in tables - https://codepen.io/lowbatteries/pen/vRPBar */
td p:first-child
{
	margin-top: 0;
	padding-top: 0;
}

td p:last-child
{
	margin-bottom: 0;
	padding-bottom: 0;
}


b, strong
{
	font-weight: bolder; /* relative, works better if you have a light base font */
}

b b,
strong strong,
strong b,
b strong
{
	/* bad HTML was making multiple levels of bold */
	font-weight: inherit;
}

/* no blockquote, just padding - make it equal */
p[style*='padding-left: 30px'],
td p[style*='padding-left: 30px']
{
	padding-right: 30px
}

p[style*='padding-left: 60px'],
td p[style*='padding-left: 60px']
{
	padding-right: 60px
}

p[style*='padding-left: 90px'],
td p[style*='padding-left: 90px']
{
	padding-right: 90px
}

sup, sub
{
	line-height: 0;
}

a
{
	color: #C24C40;
	text-decoration: none;
}

a:hover,
a:focus
{
	color: #9A251A;
}

/* search results highlight */
mark
{
	background: #0a80ca;
	color: white;
}

/* needed for IE11 */
main, nav, footer { display: block }

/* make tel: links look like normal text */
a[href^=tel]
{
	color: inherit !important;
	text-decoration: inherit !important;
	cursor: default !important;
}

h1, h2, h3, h4, h5, h6
{
	padding: 0;
	color: #000000;
	font-weight: bolder; /* relative, works better if you have a light base font */
	line-height: normal;
	--min-margin-top: 30;
	--max-margin-top: 48;
	--min-margin-bottom: 15;
	--max-margin-bottom: 20;
	line-height: 1.2;
}

h1
{

	font-weight: 400;
	/*--min-font-size: 28;*/
	--max-font-size: 34;
	--min-margin-bottom: 20;
	--max-margin-bottom: 30;
	color: #1B3C5C;
	font-family: 'merriweather';
}

h2
{
	color: #C24C40;
	font-weight: 400;
	--min-font-size: 22;
	--max-font-size: 34;
	--min-margin-bottom: 20;
	--max-margin-bottom: 36;
	font-family: 'merriweather';
}

#subContent h2
{
	--min-margin-bottom: 16;
	--max-margin-bottom: 20;

	font-weight: 600;
	color: #1B3B5C;

	--min-font-size: 17;
	--max-font-size: 20;
	font-family: 'montserrat';

}

.results-criteria-wrapper h2
{
	font-weight: bold;
	font-size: 1.1em;
}

h3
{
	font-weight: 600;
	color:	rgb(62, 99, 139);
	--min-font-size: 22;
	--max-font-size: 28;
	font-family: 'monserrat';
}

h4
{
	color: #1B3C5C;
	font-weight: 600;
	--min-font-size: 16;
	--max-font-size: 20;
	--min-margin-bottom: 14;
	--max-margin-bottom: 18;
}

h5
{
	text-transform: uppercase;
	color: #C24C40;
	font-weight: 600;
	--min-font-size: 15;
	--max-font-size: 17;
	--min-margin-bottom: 14;
	--max-margin-bottom: 18;
}

/* Reserved for Print Pilot */
h6
{
	font-weight: bolder;

	--min-font-size: 14;
	--max-font-size: 18;
}

#sectionTitle
{
	font-family: 'merriweather';
	--max-font-size: 40;

	--min-margin-top: 0;
	--max-margin-top: 0;

	--min-margin-bottom: 0;
	--max-margin-bottom: 0;

	line-height: 1.2;
}

#sectionTitle h1
{
	margin: 0;
	font: inherit;
}

#bannerContent h1,
h1#pageTitle
{
	margin-top: 0;
}


ul, ol
{
	padding: 0;
	margin: 0 0 1em 0;
}

ol
{
	padding-left: 1em;
}

li
{
	padding: 0;
	margin: .5em 0em .5em 1.5em;
}

ul li::marker
{
	color: #3E638B;
}


/* bullet graphic
ul li
{
	list-style: none url('../i/bullet.png'); /* data-uri *\/
}
*/

ol ol,
ul ul
{
	margin: .5em 0 0 0;
	padding: 0;
}

/* invalid directly-nested lists need the left margin from 'li' above */
ol > ol,
ul > ul
{
	margin-left: 1.5em;
}

/* wysiwyg sometimes puts text in lists inside paragraphs, making uneven spacing */
li > p
{
	margin: 0;
	padding: 0;
}

img
{
	border: 0;
}

/* make sure WYSIWYG images don't overflow content */
:not(td) > p img,
:not(td) > main img,
:not(td) > h1 img,
:not(td) > h2 img,
:not(td) > h3 img,
:not(td) > h4 img,
:not(td) > h5 img,
:not(td) > h6 img
{
	max-width: 100%;
	height: auto;
}

#content > * > :first-child,
#content > * > :first-child > :first-child
{
	margin-top: 0;
}


@media (max-width: 767px)
{
	/* make wys tables take up full width on smaller screens */
	#mainContent table[style*=width]
	{
		width: 100% !important;
		height: auto !important;
	}
}

@media (max-width: 479px)
{
	/* make wys images take up full width on smaller screens */
	p > img,
	p > a:not(sp_pencil) > img
	{
		float: none !important;
		width: 100% !important;
		height: auto !important;
		margin: 10px 0 18px 0 !important;
	}
}


/* ---- START FLEXIBLE BACKGROUNDS ---

	items that need a background stripe - make sure the item itself has:

	- position:relative
	- a background color set
	- no uncleared floats (needs to stretch to its contents height
	- can't use overflow: hidden
*/

#banner::before,
#footer::before,
#homeNewsHeader::before,
#preFooter::before,
body.professionals-item #banner::before,
#homeAnimation .info::before,
#homeAnimation::before
{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	/*
		we need to be left offset by the width of the left margin, which is half the
		difference between page width and viewport width

			long version, before simplifying: -(100vw - 100%)/2
	*/
	left: calc(50% - 50vw);
	width: 100vw;
	background: inherit;
}


/* Smooth Resizing of Elements -----------------------------------> */

#banner,
.letterLinks > *,
.bioList > ul > li,
.footerSocial,
#homeNewsHeader,
#alertMessage,
#logo svg
{
	transition-property: top, right, bottom, left,
		width, height,
		max-width, max-height,
		min-width, min-height,
		padding, margin;

	transition-duration: 500ms;
	transition-timing-function: ease;
}

/* Static News */

#staticNews
{
	position: relative;
	z-index: 10;
	top: -50px;
	opacity: 0;
	transition: all 500ms ease 250ms;
}

#staticNews.transitionNow
{
	top: -90px;
	opacity: 1;
}

#staticNews ul,
#staticNews li
{
	margin: 0;
	list-style: none;
}

#staticNews li
{
	position: relative;
	margin: 0 0 46px;
}

#staticNews a:not(.sp_pencil)
{
	position: relative;
	display: block;
	height: 100%;
	min-height: 285px;
	padding: 58px;
	padding: max(30px,
			 min(58px, 30px + (58 - 30) * ((100vw - 767px) / (1920 - 767))
	));

	padding-top: 68px;
	padding-top: max(50px,
			 min(68px, 50px + (68 - 50) * ((100vw - 767px) / (1920 - 767))
	));


	box-sizing: border-box;
	color: #1B3C5C;
	background: #ffffff;
	/*border-top: 20px solid #C24C40;*/
}

#staticNews a:not(.sp_pencil)::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 20px;
	background: #C24C40;
	transition: all 250ms ease;
}

#staticNews .sp_pencil
{
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 10;
}

#staticNews .tabletitle
{
	margin-bottom: 20px;
	color: #C24C40;
	font-weight: 600;
	font-size: 17px;
	text-transform: uppercase;
}

#staticNews .reveal
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	/*background: #C24C40;*/
	color: #ffffff;
	padding: 58px;
	padding: max(30px, min(58px, 30px + (58 - 30) * ((100vw - 767px) / (1920 - 767)) ));
	padding-top: 68px;
	padding-top: max(50px, min(68px, 50px + (68 - 50) * ((100vw - 767px) / (1920 - 767)) ));
	box-sizing: border-box;
	transition: all 250ms ease;
}

#staticNews .reveal .tabletitlerevealed
{
	margin-bottom: 17px;
	font-weight: 600;
	text-transform: uppercase;
}

#staticNews a:not(.sp_pencil):hover::before
{
	height: 100%;
}

#staticNews li:hover .reveal,
#staticNews li:focus-within .reveal
{
	opacity: 1;
}

#staticNews ul li
{
	min-height: 285px;
}

@media (min-width: 768px)
{
	#staticNews ul
	{
		display: flex;
		justify-content: space-between;
	}

	#staticNews ul li
	{
		width: calc((100%/3) - 30px);
		max-width: 454px;
		min-height: 285px;
	}
}


/* Object Support ------------------------------------------------> */

.errors,
.mandatory
{
	color: #c33;
}

.errors a
{
	color: inherit;
	text-decoration: underline;
}

#captcha_wrapper
{
	float: none;
	height: auto;
	clear: both;
}

#captcha_wrapper img
{
	margin-top: 2px;
	display: block;
}

table.results_list
{
	border-collapse: collapse;
	width: 100%;
}

table.results_list th
{
	text-align: left;
}

table.results_list td:not(:last-child)
{
	padding-right: 10px;
}

@media (max-width: 767px)
{
	table.results_list,
	table.results_list td,
	table.results_list tr
	{
		display: block;
	}

	table.results_list th
	{
		display: none;
	}
}

.itemList ul,
.itemList ul li
{
	list-style: none;
	margin-left: 0;
}

.itemList > ul li
{
	margin: 0em 0em .8em 0em;
}

#resultPageLinks
{
	margin: 1em 0;
}

.expandableHeading
{
	position: relative;
	cursor: pointer;
	font-weight: 400;
}

/* buttons to look like links */
.expandableHeading button,
.expandButton button,
.collapseButton button
{
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;

	border: none;
	font: inherit;
	color: inherit;

	cursor: pointer;
	text-transform: inherit;
	text-align: inherit;
}

.expandButton button,
.collapseButton button
{
	color: #0a80ca;
	text-decoration: none;
	cursor: pointer;
}

.expandButton:hover,
.expandButton:focus,
.collapseButton:hover,
.collapseButton:focus
{
	color: #888888;
}

.expandButton.expanded
{
	display: none;
}

.expandableHeading
{
	padding-bottom: 18px;
	padding-left: 6px;
	margin-top: 25px;
	margin-bottom: 20px;
	border-bottom: 1px solid #EAEAEA;
	line-height: 1.2;
	color: #3E638B;
	font-size: 21px;
	font-family: 'merriweather';
}

.expandableHeading button
{
	width: 100%;
	padding-right: 50px !important;
	box-sizing: border-box;
}

.expandableHeading button::after
{
	position: absolute;
	right: 0;
	bottom: 20px;
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url('../i/expander-arrow.svgz') no-repeat; /* data-uri */
	line-height: 1;
}

.expandableHeading button:hover::after,
.expandableHeading button:focus::after
{
	background: url('../i/expander-arrow-filled.svgz') no-repeat; /* data-uri */
}

.expandableHeading.expanded button::after
{
	transform: rotate(180deg);
	background: url('../i/expander-arrow-filled.svgz') no-repeat; /* data-uri */
}

.expandableContent
{
	display: none;
	overflow: hidden;
}

.extraItems
{
	overflow: hidden; /* prevent slideToggle jump */
	display: none;
}


/* Keyboard Content Jumpers  ---------------------------------------> */

/*
	how these content jumps should work on desktop:

	1. Initially completely hidden (transparent, in the second block)
	2. On focus, they are made fully visible and clickable
*/

.contentJump
{
	display: block;

	position: absolute;
	z-index: 999;
	top: 5px;
	right: 50%;

	/* padding and background needed for keyboard-focus */
	padding: 5px 15px;
	background: white;
}


/* make them transparent unless keyboard focused */

.contentJump:not(:focus),
.contentJump:not(:focus)::selection,
html:not([data-whatintent="keyboard"]) .contentJump
{
	pointer-events: none;
	color: transparent !important;
	background: transparent !important;
	z-index: -1;
}


/* Header --------------------------------------------------------> */

#header
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	width: 100%;
	height: 116px;
	padding: 0 80px 0 80px;
	background: rgba(255,255,255,0.90);
	box-sizing: border-box;
}

body.scrolled #header
{
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
}

#logo
{
	/*display: inline-block;*/ /* inline-block to prevent logo from interfering with nav */
	position: relative;
	width: 60%;
	margin-top: 41px;
	max-width: 233px;
	/*z-index: 9999;*/ /* Don't want this to show over hamburger */
}

#logo svg
{
	display: block;
	width: 100%;
	height: auto;
	fill: #1B3B5C;
	transition: fill 0.5s ease-out;
}

@media (max-width: 1349px)
{
	#header
	{
		padding: 0 44px 0 44px;
	}
}

@media (max-width: 919px)
{
	#header
	{
		position: absolute;
		padding: 0 16px 0 16px;
	}
}


/* Popup search --------------------------------------------------------> */

#searchJump
{
	display: block;
	position: absolute;
	z-index: 100;
	top: 45px;
	right: 77px;
	line-height: 1;
	cursor: pointer;
	width: 22px;
	/*transition: top 0.25s;*/
}

#searchJump svg
{
	display: block;
	width: 100%;
	height: auto;
	fill: #000;
}

#searchJump:hover svg,
#searchJump:focus svg
{
	fill: #888;
	opacity: 1;
	transition: fill 0.3s, opacity 0.3s;
}

html.mobileActive,
#mainNav.hasSubOpen,
#mainNav.hasSubOpen li,
#mainNav.hasSubOpen :not(.touchOpen) > ul
{
	overflow: hidden;
}

.mobileActive #searchJump
{
	position: fixed;
	top: 18px;
}

.mobileActive #searchJump svg
{
	fill: #FFF;
}

.mobileActive #searchJump:hover svg,
.mobileActive #searchJump:focus svg
{
	opacity: 0.7;
}


#siteSearch
{
	position: absolute;
	top: 116px;
	right: 0;
	z-index: 9989;
	width: 80vw;
	max-width: 850px;
	opacity: 0;
	height: 0;
	overflow: hidden;

	/* this is the close transition - fade out, hide height */
	transition: opacity 0.25s, height 0s 1s, visibility 0s 1s;
	visibility: hidden;
}

#siteSearch:target,
#siteSearch.target
{
	opacity: 1;
	height: 70px;

	/* this is the fade in transition, fade in - change height immediately */
	transition: opacity 0.25s, height 0s;
	visibility: visible;
}

#siteSearch > div
{
	margin: 0;
	display: flex;
	gap: 0;
}

#siteSearch div > *:not(label)
{
	background: none;
	overflow: hidden;
	display: block;
	margin: 0;
}

#siteSearch div button
{
	position: static;
	width: 70px;
	border: 0;
	cursor: pointer;
	color: #ffffff;
	background: #3D648C;
}

/*#siteSearch div button img
{
	height: 25px;
}*/

#siteSearch input#searchtext2
{
	width: calc(100% - 70px);
	border: 0;
	font:inherit;
	font-size: 18px;
	font-weight: 500;
	min-height: auto;

	background: #DCDDDE;

	flex-grow: 1;
	box-sizing: border-box;
}

#searchClose
{
	display: none;
}

#searchClose
{
	/*border: none;
	font: inherit;
	color: inherit;
	background: none !important;
	cursor: pointer;
	text-transform: inherit;
	text-align: inherit;
	display: block;
	position: absolute;
	top: 15px;
	right: 10px;
	width: 0;
	height: 0;
	font-size: 0;
	overflow: hidden;
	padding: 28px 28px 0 0;
	cursor: pointer;
	box-sizing: border-box;*/
}

#searchClose::after,
#searchClose::before
{
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	bottom: -2px;
	width: 0;
	left: 50%;
	border: 1px solid white;
	border-radius: 4px;
	transform: rotate(-45deg);
}

#searchClose::before
{
	transform: rotate(45deg);
}

#searchPopup
{
	display: block;

	position: fixed;
	overflow: auto;
	z-index: 10000;

	width: calc(70vw);
	min-width: 290px;
	max-width: 2000px;

	max-height: calc(70vh - 84px);

	top: 163px;
	right: 60px;
	left: auto !important;
	/*left: calc(50% - 50vw + 15vw);*/

	background: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.searchPopup > *
{
	padding: 5px 36px;
	margin: 0;
	display: block;
	width: 100%;
	box-sizing: border-box;

	font-size: 16px !important;
	line-height: 1.4;
}

.searchPopup * p
{
	margin: 0;
	padding: 0;
}

.searchPopup .link
{
	font-weight: bold;
}

.searchPopup .selected
{
	background: #ddd;
	position: relative;
}

.searchPopup .selected::after
{
	content: '»';
	color: #999;

	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 1.3em;
	height: 1.3em;
	line-height: 1.3em;
	text-align: center;

	box-shadow: 0 0 1px black;

	background: white;
	border-radius: 50%;
}

/* search popup predictive */
#inlineSearchPopup
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: 350px;
}

.searchPopup
{
	display: block;

	position: fixed;
	overflow: auto;
	z-index: 10000;

	width: calc(70vw);
	min-width: 290px;
	max-width: 2000px;

	max-height: calc(70vh - 84px);

	top: calc(20vh + 54px);
	left: calc(50% - 50vw + 15vw);

	background: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.searchPopup a
{
	text-shadow: none;
	background: none;
	color: black;
	font-weight: normal;
}


.searchPopup > *
{
	padding: 10px 36px;
	padding: 5px 36px;
	margin: 0;
	display: block;
	width: 100%;
	box-sizing: border-box;

	font-size: 16px !important;
	line-height: 1.4;
}

.searchPopup * p
{
	margin: 0;
	padding: 0;
}

.searchPopup .link
{
	font-weight: bold;
}

.searchPopup .selectable:hover
{
	background: #ebebeb;
}

.searchPopup .selected
{
	background: #ddd;
	position: relative;
}

.searchPopup .selected::after
{
	content: '»';
	color: #999;

	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 1.3em;
	height: 1.3em;
	line-height: 1.3em;
	text-align: center;

	box-shadow: 0 0 1px black;

	background: white;
	border-radius: 50%;
}

.searchPopup .popupHeader,
#allSearch
{
	position: -webkit-sticky !important;
	position: sticky !important;

	top: 0;

	background: white;
	color: black;
	font-size: 19px !important;
	text-transform: uppercase;
	margin-top: 14px;
}

.searchPopup .popupHeader,
.searchPopup .popupHeader a
{
	font-weight: bold;
}

@media (min-width: 920px)
{
	#siteSearch
	{
		right: 31px;
	}

	#siteSearch input#searchtext2
	{
		width: calc(100% - 108px);
		height: 70px;
	}

	#siteSearch div button
	{
		padding: 0 15px;
		width: 108px;
	}

	#searchPopup
	{
		width: 80vw;
		max-width: 850px;
		top: 186px;
		right: 31px;
	}
}

@media (min-width: 1350px)
{
	#searchPopup
	{
		right: 28px;
	}
}

#allSearch
{
	top: auto;
	bottom: 0;
}

.searchPopup .popupHeader:not(.selected) a,
#allSearch:not(.selected) a
{
	color: inherit;
}

/* search popup results: bio */
.acBio .results_list > div
{
	display: flex;
	padding-bottom: 10px;
}

.acBio a
{
	font-weight: bold;
}

.acBio .photo
{
	padding: 0 10px 0 0;
}

.acBio .photo img
{
	max-width: 70px;
	max-height: 50px;

	display: block;
	border: 1px solid #ccc;
}

#allSearch
{
	position: -webkit-sticky;
	position: sticky;

	font-size: 16px !important;
	bottom: 0;
	background: #3a3a3a;
	margin: 0 18px;
	width: calc(100% - 36px);
	padding: 10px 20px;
}

#allSearch a
{
	color: white !important;
	font-weight: bold;
}

@media (min-width: 920px)
{
	#searchJump
	{
		right: 110px;
	}

	.mobileActive #searchJump
	{
		right: 80px;
	}
}

@media (min-width: 1350px)
{
	#siteSearch
	{
		right: 19px;
	}

	#siteSearch button
	{
		font-size: 22px;
		font-weight: 500;
	}

	#searchJump.open::before
	{
		content: '';
		position: absolute;
		top: -24px;
		left: -29px;
		display: block;
		width: 108px;
		height: 116px;
		background: #3D648C;
	}

	#searchJump.open svg
	{
		position: relative;
		z-index: 10;
		fill: #ffffff !important;
	}
}


/* Banner --------------------------------------------------------> */

#banner
{
	position: relative;
	width: 100%;
	min-height: 516px;
	min-height: max(350px,
			 min(516px, 350px + (516 - 350) * ((100vw - 767px) / (1920 - 767))
	));
	display: flex;
	align-items: flex-end;
	padding-top: 160px;
	box-sizing: border-box;


	margin-bottom: 70px;
	margin-bottom: max(30px,
			 min(70px, 30px + (70 - 30) * ((100vw - 767px) / (1350 - 767))
	));

	background: #000000;
}

#bannerImage
{
	position: absolute;
	width: 100vw;
	left: calc(50% - 50vw);
	height: 100%;
	overflow: hidden;
}

body.shortBanner #banner
{
	min-height: 0;
	height: 276px;
}


#bannerImage::after
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .61;
	background-image: linear-gradient(to right, rgba(0,0,21,0.50) 40%, transparent);
}


#bannerImage > picture > img
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top;
	z-index: 1;
	/*transform: scale(1.1);
	top: 10px;
	left: 95px;
	left: max(20px,
			 min(95px, 20px + (95 - 20) * ((100vw - 400px) / (1920 - 400))
	));*/
}

#bannerContent
{
	/*position: absolute;*/
	z-index: 2;
	color: #fff;
	font-size: 16px;
	padding-bottom: 70px;
	margin-left: 25px;
	margin-left: max(0px,
			 min(25px, 0px + (25 - 0) * ((100vw - 400px) / (1920 - 400))));
	padding-right: 55px;

}

body.shortBanner #bannerContent
{
	padding-bottom: 20px;
}

#bannerContent *
{
	color: inherit;
}

#bannerContent p:last-child
{
	margin-bottom: 0;
}

.bannerExtras
{
	position: absolute;
	bottom: 21px;
	right: 0;
	z-index: 10;
	display: flex;
	margin-right: 60px;
	margin-right: max(0px,
			 min(60px, 0px + (60 - 0) * ((100vw - 400px) / (1920 - 400))));
}

.bannerExtras a
{
	display: block;
	width: 36px;
	height: 36px;
	overflow: hidden;
	border-radius: 50%;
	border: 2px solid #ffffff;
}

.bannerExtras > *:not(:last-child)
{
	margin-right: 16px;
}

.bannerExtras svg
{
	fill: #ffffff;
}

.bannerExtras a:hover,
.bannerExtras a:focus
{
	background: #ffffff;
}

.bannerExtras a:hover svg,
.bannerExtras a:focus svg
{
	fill: #1A3B5C;
}

/* Main Navigation -----------------------------------------------> */

#mainNav
{
	position: relative;
	line-height: 1;
	font-weight: 400;
}

/* base style resets */
#mainNav ul,
#mainNav li
{
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	text-align: left;
}

/* top level */
#mainNav > ul
{
	width: 100%;
}

/* all menu links */
#mainNav a
{
	color: #000000;
	text-decoration: none;
}

#mainNav li > a
{
	display: block;
	padding: 10px 1.8vw;
}

#mainNav li li:hover > a,
html[data-whatintent="keyboard"] #mainNav li li:focus-within > a
{
	/* using data-whatintent, because some browsers don't understand focus-within */
	color: #C24C40;
	text-decoration: none;
}

/* main subnav items */
/* subnavs should be same background/color as main nav*/
/*#mainNav ul,
#mainNav ul li
{
	background: inherit;
	font-size: inherit;
}*/

#mainNav > ul ul
{
	display: none;
	position: absolute;
}

/*
#mainNav #navButton-professionals ul div
{
	color: white;
}

#mainNav #navButton-professionals ul div form > div > div
{
	flex-basis: 100%;
}

#mainNav .letterLinks
{
	margin-left: 0;
	color: #ccc;
}

#mainNav .letterLinks a,
#mainNav .letterLinks span
{
	width: calc(100% / 13);
}

#mainNav .letterLinks > *:nth-child(12),
#mainNav .letterLinks > *:last-child
{
	width: calc(100% / 13 - 1px);
}
*/

@media (min-width: 768px)
{
	#bannerContent
	{

		width: 70%;
		max-width: 872px;
		padding-bottom: 64px;
		padding-bottom: max(20px,
				 min(64px, 20px + (64 - 20) * ((100vw - 767px) / (1920 - 767))
		));
	}
}

/* Desktop Navigation ------------------------------------------------> */

@media (min-width: 1350px)
{
	#mainNav
	{
		/*display: flex;*/
		position: absolute;
		z-index: 9999;
		top: 10px;

		/* body's padding minus menu item's padding */
		right: 138px;
		padding-right: 30px;
		/*border-right: 1px solid #DCDDDE ;*/
	}

	#mainNav::after
	{
		position: absolute;
		right: 0;
		top: 0;
		content: '';
		width: 1px;
		height: calc(100% - 15px);
		background: #DCDDDE;
	}

	#mainNav > ul,
	#mainNav > ul > li
	{
		display: inline-block;
		background: none;
	}

	/* we want real hover, not fake touch-hover */
	html:not([data-whatintent="touch"]) #mainNav > ul :hover > ul,
	#mainNav > ul .touchOpen > ul,
	#mainNav > ul .keepOpen > ul
	{
		display: block;
	}

	/* focus-within separated because IE11 chokes on it, but if someone has focus within
		a menu we definitely want it to be visible */
	#mainNav > ul .keepOpen > ul:focus-within
	{
		display: block;
	}

	/* last two double/triple drops go right like parent above */
	#mainNav > ul > li:nth-last-child(-n + 2):hover > ul ul
	{
		left: inherit;
		right: 100%;
	}

	#mainNav > ul:first-of-type > li > a
	{
		padding-bottom: 15px;
	}

	#mainNav > ul ul
	{
		/*** center the drops ***/
		left: calc(50% - 164px);
		top: 100%;
		width: 329px;

		z-index: 100;
		background: #3E638B;
		padding: 38px 39px 55px;
		box-sizing: border-box;
	}

	/*#mainNav > ul ul::before
	{
		position: absolute;
		top: -21px;
		left: calc(50% - 7px);
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 6.5px 7px 6.5px;
		border-color: transparent transparent #c24d40 transparent;
	}*/

	#mainNav > ul ul a
	{
		padding: 0;
	}

	#mainNav > ul > li > a
	{
		white-space: nowrap;
		font-size: 22px;
	}

	#mainNav > ul > li > a:hover,
	#mainNav > ul > li > a:focus
	{
		background: none;
		color: #888;
	}

	/* second-level links */
	#mainNav li li > a
	{
		text-transform: none;
		color: #ffffff;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}

	#mainNav li li:not(:last-child)
	{
		margin: 0 0 18px;
	}

	/* dropdown current page highlight */
	#mainNav > ul > li > ul .current > a:not(:hover):not(:focus)
	{
		color: #000;
		background: none;
	}

	#mainNav > ul + ul > li.current > a:not(:hover):not(:focus)
	{
		background: none;
		color: #C24C40;
	}

	/* only users who clicked in to the subnav need to see the header */
	#mainNav .subNavHeader,
	#subNavBack
	{
		display: none;
	}

	/* push double drops out the width of the parent */
	#mainNav > ul li > ul ul
	{
		display: none !important; /* no double drops by default */

		top: 0;
		left: 100%;
	}

	/*** split menu styles ***/
	#mainNav > ul:not(:only-child)
	{
		/* we want to right-align these */
		display: flex;
		justify-content: flex-end;
	}

	/* position the second nav above and make it smaller */
	/*#mainNav > ul + ul
	{
		position: absolute;
		right: 2.8vw;
		top: -50px;
		width: auto;
	}*/

	#mainNav > ul:first-child
	{
		top: 5px;
		z-index: 100;
		text-transform: uppercase;
		font-weight: 600;
	}

	#mainNav > ul:first-of-type > li > a
	{
		padding-left: 14px;
		padding-right: 14px;
		font-size: 16px;
		color: #3E638B;
	}

	#mainNav > ul:first-of-type > li > a:hover,
	#mainNav > ul:first-of-type > li > a:focus
	{
		color: #1B3C5C;
	}

	#mainNav > ul:first-of-type > li.current > a:not(:hover):not(:focus)
	{
		color: #C24C40;
	}

	#mainNav > ul:first-of-type > li:last-child
	{
		padding-right: 0;
	}

	#mainNav > ul + ul
	{
		right: -10px;
		font-weight: 600;
	}

	#mainNav > ul + ul > li > a
	{
		padding: 18px 22px 25px;
		color: #1B3C5C;
	}

	#mainNav > ul + ul > li:focus,
	#mainNav > ul + ul > li:hover
	{
		color: #ffffff;
		background: #3E638B;
	}

	#mainNav > ul + ul > li:hover > a,
	#mainNav > ul + ul > li:focus > a
	{
		color: inherit !important;
	}

	/* hide drops on secondary nav */
	/*#mainNav > ul + ul ul
	{
		display: none !important
	}*/

	/* styles above, repeated, because some browsers don't understand focus-within */
	#mainNav > ul + ul > li:focus-within > a
	{
		background: none !important;
	}

	/*** end split menu styles ***/


	/* mobile nav button is not visible at this screen width */

	button#navToggle
	{
		display: none;
	}


	/* mega menu styles */
	/*
	#mainNav #navButton-professionals ul
	{
		width: 100vw;
		max-width: 600px;
		box-sizing: border-box;
		padding-left: 20px;
		padding-right: 20px;
	}
	*/

	#mainNav #navButton-services ul,
	#mainNav #navButton-industry ul
	{
		left: -300px;
		width: 100vw;
		max-width: 937px;
		box-sizing: border-box;
	}

	#mainNav #navButton-industry ul
	{
		left: -438px;
	}

	#navButton-services > ul,
	#navButton-industry > ul
	{
		columns: 3;
	}

	#mainNav #navButton-services a,
	#mainNav #navButton-industry a
	{
		white-space: normal;
		break-inside: avoid;
	}

	#mainNav #navButton-services ul::before,
	#mainNav #navButton-industry ul::before
	{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url('../i/squiggle-opacity.svgz') 68% 150% no-repeat; /* data-uri */
		background-size: 300%;
		/*opacity: .035;*/
	}

	#searchJump
	{
		width: 38px;
		height: 38px;
		right: 60px;
		top: 30px;
	}

	#searchJump svg
	{
		display: block;
		width: 100%;
		max-width: 100%;
		height: auto;
		fill: #3E638B;
	}
}


/* Mobile Navigation ------------------------------------------------> */

@media (max-width: 1349px)
{
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 9998;
		top: 0;
		right: -100vw;
		left: auto;
		width: 100vw;
		max-width: 498px;
		height: 100vh;
		padding: 80px;
		padding: max(40px,
				 min(80px, 40px + (80 - 40) * ((100vw - 320px) / (1349 - 320))
		));

		padding-top: 130px;
		background: #757264;
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;
		overflow-y: scroll;
	}

	#mainNav li ul
	{
		padding-bottom: 100px;
	}

	/*#mainNav::before
	{
		content: '';
		position: absolute;
		top: calc(50% - 125px);
		right: 0;

		display: block;
		width: 478px;
		height: 250px;
		z-index: 10;

		background: url('../i/nav-squiggle.png') no-repeat;
		background-size: 100% auto;
	}*/

	#mainNav
	{
		display: flex;
		flex-direction: column;
		align-items: flex-end; /* need to keep nested items to the right side of screen */
		overflow: auto;

		background: url('../i/nav-squiggle.png') right 470px no-repeat, #757264;
	}

	#mainNav > ul:nth-child(1)
	{
		margin-top: 55px;
		order: 2;
		text-transform: uppercase;
		color: #D9D8CD;
	}

	#mainNav > ul:nth-child(1) > li > a
	{
		font-size: 18px;
		font-weight: 600;
	}

	#mainNav > ul:nth-child(2) > li > a
	{
		font-size: 26px;
		font-weight: 600;
	}

	#mainNav::before
	{
		display: none;
	}

	#mainNav.target,
	#mainNav.target li ul
	{
		left: auto !important; /* might be set by repositionDrops, ignore it */
	}

	/* needed to avoid a keyboard trap on mobile */
	html[data-whatintent="keyboard"] #mainNav li:not(.touchOpen) > ul
	{
		visibility: hidden;
	}

	#mainNav li ul
	{
		box-shadow: none;
	}

	#mainNav.target,
	#mainNav li.touchOpen > ul
	{
		visibility: visible;
		right: 0;
	}

	#mainNav ul,
	#mainNav li
	{
		display: block;
		margin: 0;
		padding: 0;
	}

	#mainNav a
	{
		color: #ffffff;
	}

	#mainNav li.current > a
	{
		color: #989797;
	}

	#mainNav > ul > li
	{
		margin: 0.8rem 48px 0px 0px;
	}

	#mainNav li > a
	{
		font-size: 20px;
		padding: 5px 0;
		font-weight: 400;
	}

	#mainNav > ul > li:hover > a,
	html[data-whatintent="keyboard"] #mainNav > ul > li:focus-within > a
	{
		/* using data-whatintent, because some browsers don't understand focus-within */
		background: none;
		color: #cccccc;
	}

	#mainNav > ul ul > li
	{
		margin: 0 0 10px;
		text-transform: none;
	}

	#mainNav li li:hover > a,
	html[data-whatintent="keyboard"] #mainNav li li:focus-within > a
	{
		/* using data-whatintent, because some browsers don't understand focus-within */
		background: none;
		color: #cccccc;
	}

	/*#mainNav li > a:first-child:not(:last-child)::after
	{
		content: '›';
		position: absolute;
		top: 0;
		right: 0;
		font-size: 2rem;
		font-weight: 200;
	}*/

	#mainNav #subNavBack
	{
		position: absolute;
		top: 98px;
		text-transform: uppercase;
		font-size: 20px;
		line-height: 20px;
	}

	#mainNav #subNavBack a
	{
		position: relative;
		padding-left: 20px;
		font-weight: 500;
	}

	#mainNav #subNavBack a::before
	{
		content: '‹';
		position: absolute;
		left: 0;
		font-size: 50px;
		line-height: 12px;
	}

	#mainNav ul ul li.subNavHeader
	{
		margin-bottom: 10px;
	}

	#mainNav ul ul li.subNavHeader a
	{
		margin-top: 12px;
		font-size: 20px;
		text-transform: uppercase;
		font-weight: 700;
	}


	/* Mobile Nav 'Hamburger' Button */

	button#navToggle
	{
		display: block;
		position: absolute;
		z-index: 9999;
		top: calc(50% - 16px);
		right: 40px;
		font-size: 0;
	}

	.mobileNav
	{
		display: inline-block;
		overflow: visible;
		margin: 0;
		padding: 4px;
		background-color: transparent;
		border: 0;
		color: inherit;
		font: inherit;
		text-transform: none;
		cursor: pointer;
		transition-timing-function: linear;
		transition-duration: .15s;
		transition-property: opacity, filter;
	}

	button#navToggle.mobileNav.isActive
	{
		position: fixed; /* allows for home page alert message repositioning */
		top: 25px;
		right: 20px;
	}

	.mobileNav.isActive:hover,
	.mobileNav.isActive:focus,
	.mobileNav:hover,
	.mobileNav:focus
	{
		opacity: .7;
	}

	.mobileNavBox
	{
		position: relative;
		display: inline-block;
		width: 40px;
		height: 22px;
	}

	.mobileNavBox span
	{
		display: block;
		top: 50%;
		margin-top: -2px;
	}

	.mobileNavBox span
	{
		position: absolute;
		top: 10px;
		width: 40px;
		height: 4px;
		background-color: #000;
		border-radius: 4px;
		transition-timing-function: ease;
		transition-duration: .15s;
		transition-property: transform;
	}

	.mobileNav.isActive .mobileNavBox span
	{
		width: 48px;
		height: 2px;
		background-color: #fff;
	}

	.mobileActive #searchJump
	{
		width: 40px;
		height: 40px;
	}

	.mobileNavBox span:first-child
	{
		top: 0;
	}

	.mobileNavBox span:last-child
	{
		top: 20px;
	}


	/* Add in a 'MENU' label if necessary, hidden by default */

	.mobileNavLabel
	{
		display: none;
		/*display: inline-block;
		margin-left: 5px;
		color: #fff;
		font-weight: 600;
		vertical-align: middle;
		text-transform: uppercase;*/
	}


	/* SPRING - default mobile nav button style */
	/* see https://github.com/jonsuh/hamburgers for other effects */

	.mobileNavSpring .mobileNavBox span
	{
		top: 0px;
		/*transition: background-color 0s linear .13s;*/
	}

	.mobileNavSpring .mobileNavBox :first-child
	{
		top: 10px;
		transition: top .1s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavSpring .mobileNavBox :last-child
	{
		top: 20px;
		transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavSpring.isActive .mobileNavBox :nth-child(2)
	{
		transition-delay: .22s;
		background-color: transparent !important;
	}

	.mobileNavSpring.isActive .mobileNavBox :first-child
	{
		top: 0;
		transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .15s, transform .13s cubic-bezier(.215, .61, .355, 1) .22s;
		transform: translate3d(0, 10px, 0) rotate(45deg);
	}

	.mobileNavSpring.isActive .mobileNavBox :last-child
	{
		top: 0;
		transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s cubic-bezier(.215, .61, .355, 1) .22s;
		transform: translate3d(0, 10px, 0) rotate(-45deg);
	}

	#navSocial
	{
		order: 3;
		width: 100%;
		margin-top: 75px;
	}

	#navSocial ul
	{
		justify-content: flex-start !important;
	}

	#navSocial li
	{
		margin-right: 31px;
	}

	#searchJump
	{
		z-index: 10000;
	}

}

/* mobile stlyles cont. - for  smaller screens */
@media (max-width: 919px)
{
	#mainNav > ul,
	#mainNav li ul
	{
		width: 100%;
		margin-left: 0px;
	}


	#mainNav #subNavBack
	{
		top: 98px;
	}

	#mainNav ul ul li.subNavHeader
	{
		margin-top: 10px;
		font-size: 1.6rem;
	}

	button#navToggle
	{
		right: 12px;
	}
}


/* Sub Navigation ------------------------------------------------> */

#subNav
{
	position: relative;
	width: 100%;
	/* padding: 5px 0; */
	padding: 0px 0;
	/*margin: 60px 0 100px;*/
	margin: 60px 0 0;
	box-sizing: border-box;
	border-left: 16px solid #C24C40;
}

ul.subNavList
{
	padding-left: 30px;
	margin: 0;
	font-size: 20px;
	font-weight: 500;
}

ul.subNavList li
{
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	line-height: 1.2;
}

ul.subNavList li a:not(:hover):not(:focus)
{
	color: #757264;
}

ul.subNavList li.here a:not(:hover):not(:focus)
{
	color: #C24C40;
}

ul.subNavList li:last-child
{
	margin-bottom: 0;
}

ul.subNavList ul
{
	padding-left: 10px;
}

ul.subNavList li.here > a,
ul.subNavList li.hereParent > a
{
	color: #C24C40;
}

ul.subNavList li a:hover,
ul.subNavList li a:focus
{
	color: #A7A59B;
}

@media (min-width: 920px)
{
	#subNav
	{
		/* margin: .25em 0 0 0; */
		margin: 0 0 0 -6px;
	}

}

/* Tabs -------------------------------------------------------> */

#tabLinks
{
	margin: 0 0 46px;
	border-bottom: 1px solid #eaeaea;
	text-transform: uppercase;
	color: #757264;
	font-size: 16px;
	font-size: max(14px,
			 min(16px, 14px + (16 - 14) * ((100vw - 1024px) / (1920 - 1024))
	));
}

#tabLinks a
{
	display: inline-block;
	position: relative;
	padding: 10px 0 4px;
	margin-right: 48px;
	margin-right: max(20px,
			 min(48px, 20px + (48 - 20) * ((100vw - 1024px) / (1920 - 1024))
	));
	color: #757264;
	font-weight: 500;
	border-bottom: 10px solid transparent;
	border-width: 10px;
	border-width: max(5px,
			 min(10px, 5px + (10 - 5) * ((100vw - 1024px) / (1920 - 1024))
	));
}

#tabLinks a.current
{
	/*border-color: #c24c40;*/
	color: #c24c40;
	text-decoration: none;
	cursor: default;
}

#tabLinks div#marker,
#tabLinks a.current::after
{
	display: block;
	content: '';
	position: absolute;
	/*width: 10px;*/
	width: 100%;
	height: 10px;
	bottom: -10px;
	background: #c24c40;
	transition: all 250ms ease;
}

.contentSection
{
	display: block;
}

section.contentSection
{
	display: none;
}

.sectionTitle
{
	display: none;
}

#tabLinks a#tabViewAll
{
	float: right;
	padding: 0.5em 0;
	border: none;
}


@media (max-width: 1024px)
{
	#tabLinks
	{
		display: none;
	}

	h2.sectionTitle
	{
		display: block;
		position: relative;
		overflow: hidden;
		margin: 1px 0 0 0;
		padding: 13px 20px 13px 20px;
		background: #7F7D70;
		color: #ffffff;
		font-size: 19px;
		box-sizing: border-box;
		text-decoration: none;
		cursor: pointer;
		line-height: 1.2;
	}

	h2.sectionTitle:hover,
	h2.sectionTitle:focus
	{
		background: #929085;
	}

	h2.sectionTitle::after
	{
		content: '+';
		position: absolute;
		top: 14px;
		right: 10px;
		font-weight: lighter;
		font-size: 20px;
	}

	h2.sectionTitle.isOpen::after
	{
		content: '\2212'; /* minus sign, NOT hyphen or dash */
	}

	.contentSection
	{
		display: block !important;
	}

	.contentSection > *
	{
		display: none;
		padding: 0 0 10px 0;
	}

	#tabLinks a#tabViewAll
	{
		display: none;
	}
}


/* Basic Tiles ----------------------------------------------------> */

/* Make a tile like:
	$lister->attributes['div_results']['class'] = 'itemTile';
	$lister->link_tags = array('WRAP');
*/

.itemTile .results_list
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}

.itemTile .results_list > * /* could be a div or li */
{
	display: flex;
	flex-direction: column;
	position: relative;
	width: calc(50% - 10px);
	margin: 0 0 20px 0;
	box-sizing: border-box;
	color: #fff;
}

.itemTile .results_list > * > a:not(.sp_pencil)
{
	display: block;
	flex: 1 0 auto;
	padding: 20px;
	background: #cccccc;
	color: #fff;
}

.itemTile .results_list > * > a:not(.sp_pencil):hover,
.itemTile .results_list > * > a:not(.sp_pencil):focus
{
	background: #bbbbbb;
	text-decoration: none;
}

.itemTile .results_list > * .title
{
	color: #0a80ca;
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 479px)
{
	.itemTile .results_list
	{
		display: block;
	}

	.itemTile .results_list > *
	{
		width: 100%;
	}
}


/* Content -------------------------------------------------------> */

#content
{
	position: relative;
	min-height: 350px;
	margin: 5.5rem auto;
}

#content::after
{
	/* make div stretch to height of content */
	display: block;
	clear: both;
	content: '';
}

main
{
	position: relative;
	width: 100%;
	/* margin: 1rem 0 0 0; */
	padding: 0 0 0.5rem 0;
	box-sizing: border-box;
}

#subContent
{
	margin: 60px 0;
}

@media (min-width: 920px)
{
	#mainContent:not(:only-child)
	{
		float: right;
		width: calc(100% - 25% - 40px);
	}

	#subNav,
	#subContent
	{
		float: left;
		clear: left;
		width: 25%;
		box-sizing: border-box;
	}

	#subContent
	{
		margin-top: 20px;
	}

	#subNav + #mainContent + #subContent
	{
		margin-top: 60px;
	}


}

@media (min-width: 1350px)
{
	#mainContent:not(:only-child)
	{
		width: calc((100% - 22%) - 96px);
	}

	#subNav,
	#subContent
	{
		width: 22%;
	}
}

@media (max-width: 919px)
{
	#content
	{
		display: flex;
		flex-direction: column;
	}

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
	}

	#lowerContent
	{
		order: 3;
	}

	#subNav
	{
		order: 4;
	}
}

#subContent li
{
	margin-top: 0.6em;
	margin-bottom: 0.6em;
	line-height: 1.5;
}

div.texthtml
{
	margin: 5px 0 8px 0;
}

.texthtml p
{
	padding: 0 0 8px 0;
}

ul.none
{
	margin: 5px 0 8px 0;
	list-style: none;
}

ul.none li
{
	padding: 0;
	margin: 0 0 8px 0;
}

/* JS now takes care of the hiding of these elements based on div class.
	It wouldn't be horrible to retain these in addition though.
*/

/* if there are 5 or more, hide any items after first 3 */
.expandableList .results_list > li:nth-last-child(n+5) ~ li:nth-child(n+4)
{
	display: none;
}

.expandableList .results_list > li
{
	margin-top: 0;
}

/* hide all items for area, industry, and office 'professionals' */
.expandableFullList .results_list > li
{
	display: none;
}

.popupPlayerPlaylist .expandableList,
.popupPlayerPlaylist .expandableList li
{
	display: block;
}


#subContent .itemSection:not(#bio_education) ul,
#subContent .itemSection:not(#bio_education) ul li
{
	list-style: none;
	margin-left: 0;
	margin-bottom: .5em;
}

#mainContent .itemSection ul.results_list
{
	margin-bottom: 0em;
}

#area_bio ul.results_list,
#industry_bio ul.results_list,
#item_bio ul.results_list
{
	margin: 0 0 0 0;
}

.itemSection ~ .itemSection > .extraItems > ul > li
{
	margin-top: 0;
}


/* View More type links */

.view_more a
{
	position: relative;
	display: inline-block;
	width: auto;
	margin: 11px 0 28px 0;
	/* padding: 7px 14px 7px 14px; */
	padding: 7px 19px 7px 0;
	/* background: #969696; */
	background: none;
	color: #3E638B;
	font-weight: 500;
	text-transform: uppercase;
	vertical-align: middle;
	font-size: 16px;
}

.view_more a span
{
	position: absolute;
	right: 0;
	top: 3px; /* adjusted per Logan */
	font-size: 30px;
	line-height: 1;
}



.view_more a:hover,
.view_more a:focus
{
	/* background: #868686; */
	color: #C24C40;
	text-decoration: none;
}

/* if the <a> is inside a <p>, it's from the wys */
p.view_more a
{
	position: relative;
	display: inline-block;
	padding: 34px;
	padding: max(20px, min(34px, 20px + (34 - 20) * ((100vw - 767px) / (1920 - 767)) ));
	padding-left: 47px;
	padding-left: max(20px, min(47px, 20px + (47 - 20) * ((100vw - 767px) / (1920 - 767)) ));
	padding-right: 95px;
	font-size: 23px;
	font-size: max(20px, min(23px, 20px + (23 - 20) * ((100vw - 767px) / (1920 - 767)) ));
	font-family: 'merriweather';
	color: #ffffff;
	background: #C24C40;
	border: 1px solid #C24C40;
	line-height: 1.1;
	box-sizing: border-box;
	text-transform: none;
}

p.view_more a::after
{
	content: '';
	position: absolute;
	top: calc(50% - 15px);
	right: 35px;
	right: max(20px, min(35px, 20px + (35 - 20) * ((100vw - 767px) / (1920 - 767)) ));
	display: block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	transform: rotate(-90deg);
	background: url(../i/expander-arrow.svgz) no-repeat, #EAEAEA;
}

p.view_more a:hover,
p.view_more a:focus
{
	background: #ffffff;
	color: #C24C40;
}

p.view_more a:hover::after,
p.view_more a:focus::after
{
	background: url(../i/expander-arrow-filled.svgz) no-repeat, #EAEAEA;
}

.rsvpButton
{
	margin: 10px 0 0 0;
}

#lowerContent
{
	clear: both;
	overflow: hidden;
	padding-top: 1px; /*prevents expander getting cut off*/
}

.lowerStaticText
{
	max-width: 1011px;
	margin-left: auto;
	margin-right: auto;
	/*
	margin-bottom: max(75px,
			 min(150px, 75px + (150 - 75) * ((100vw - 767px) / (1350 - 767))
	));*/
	margin-bottom: clamp(40px, 100/1350 * 100vw, 100px);

}

/* Staggered spotlights-------------------------------------------> */


#staggeredSpotlights
{

	/* I was told to cut the spacing above and below by half.  50 bucks says I change this at least 3 more times before they realize we are chasing our tales */
	/*
	padding-top: 150px;
	padding-top: max(75px,
			 min(150px, 75px + (150 - 75) * ((100vw - 767px) / (1920 - 767))
	));

	margin-bottom: 168px;
	margin-bottom: max(100px,
			 min(168px, 100px + (168 - 100) * ((100vw - 767px) / (1920 - 767))
	));*/

	padding-top: 75px;
	padding-top: max(32px,
			 min(75px, 32px + (75 - 32) * ((100vw - 767px) / (1920 - 767))
	));

	margin-bottom: 84px;
	margin-bottom: max(50px,
			 min(84px, 50px + (84 - 50) * ((100vw - 767px) / (1920 - 767))
	));
}

#staggeredSpotlights ul.results_list,
#staggeredSpotlights ul.results_list > li
{
	margin: 0;
	list-style: none;
}

#staggeredSpotlights ul.results_list > li
{
	position: relative;
}

#staggeredSpotlights ul.results_list > li:not(:last-child)
{
	margin-bottom: 172px;
	margin-bottom: max(100px,
			 min(172px, 100px + (172 - 100) * ((100vw - 767px) / (1920 - 767))
	));
}

#staggeredSpotlights .image
{
	position: relative;
	margin: 0 0 20px;
	background: #ffffff;
}


#staggeredSpotlights .image::after,
.wideContentSpotlight::before
{
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 10px;
	background: #C24C40;
	z-index: 2;
}

#staggeredSpotlights .image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


#staggeredSpotlights .title,
#staggeredSpotlights .title2
{
	color: #1B3C5C;
	font-size: 54px;
	font-size: max(35px,
			 min(54px, 35px + (54 - 35) * ((100vw - 767px) / (1600 - 767))
	));
	font-family: 'merriweather';
	line-height: 1;
}

#staggeredSpotlights .title2
{
	color: #C24C40;
}

#staggeredSpotlights .abstract
{
	margin-top: 30px;
	margin-top: max(20px,
			 min(30px, 20px + (30 - 20) * ((100vw - 767px) / (1920 - 767))
	));

	margin-bottom: 40px;
	margin-bottom: max(20px,
			 min(40px, 20px + (40 - 20) * ((100vw - 767px) / (1920 - 767))
	));
}

#staggeredSpotlights .abstract li
{
	margin-left: 0;
	font-size: 21px;
	font-family: 'merriweather';
	list-style: none;
}

#staggeredSpotlights .abstract li a:not(:hover):not(:focus)
{
	color: #3E638B;
}

#staggeredSpotlights .abstract li::before
{
	position: relative;
	top: 7px;
	display: inline-block;
	content: '';
	width: 30px;
	height: 30px;
	margin-right: 21px;
	background: url('../i/expander-arrow.svgz') no-repeat; /* data-uri */
	transform: rotate(-90deg);
}

#staggeredSpotlights .readmore
{
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}

#staggeredSpotlights .readmore a
{
	background: url('../i/small-arrow.svgz') -20px center no-repeat; /* data-uri */
	background-size: 17px 19px;
	transition: all 250ms ease;
	color: #3E638B;
}

#staggeredSpotlights .readmore a:hover,
#staggeredSpotlights .readmore a:focus
{
	color: #9A251A;
	padding-left: 25px;
	background: url('../i/small-arrow.svgz') left center no-repeat; /* data-uri */
	background-size: 17px 19px;
}

#staggeredSpotlights .arrow
{
	display: none;
}

#staggeredSpotlights ul.results_list > li:nth-child(even)
{
	text-align: right;
}

@keyframes slideRevealLeft
{

	0%	 { left: 100%;}
	50%  { left: 0; }
	53%  { left: 0; }
	100% { left: calc(-100% + 20px); }
}

@keyframes slideRevealRight
{

	0%	 { right: 100%;}
	50%  { right: 0; }
	53%  { right: 0; }
	100% { right: calc(-100% + 20px); }
}

@media (min-width: 768px)
{

	#staggeredSpotlights .arrow
	{
		width: 50%;
	}

	#staggeredSpotlights .arrow img
	{
		display: block;
		width: auto;
		height: 100%;
		right: 0;
		opacity: .15;
	}

	/*#staggeredSpotlights ul.results_list > li .content.transitionNow .arrow
	{
		right: 0;
		opacity: .15;
	}*/


	#staggeredSpotlights ul.results_list > li:nth-child(even) .arrow
	{
		right: auto;
		/*left: -100%;*/
		left: 0;
		transform: rotate(180deg);
	}

	/*#staggeredSpotlights ul.results_list > li:nth-child(even) .content.transitionNow .arrow
	{
		right: auto;
		left: 0;
	}*/

	#staggeredSpotlights .content > *:not(.arrow)
	{
		position: relative;
		z-index: 10;
	}



	#staggeredSpotlights .arrow
	{
		position: absolute;
		display: block;
		height: 150%;
		top: -25%;
		right: 0;
		/*right: -100%;
		opacity: 0;
		transition: all 500ms ease;*/
	}

	#staggeredSpotlights ul.results_list > li
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#staggeredSpotlights .image,
	.wideContentSpotlight .image
	{
		overflow: hidden;
	}

	#staggeredSpotlights .image::after,
	.wideContentSpotlight::before
	{
		position: absolute;
		top: 0;
		left: 100%;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		background: #C24C40;
		left: calc(-100% + 20px);

		/*animation: slideRevealLeft 1500ms forwards;
		animation-play-state: paused;*/
	}

	#staggeredSpotlights ul.results_list > li:nth-child(even)
	{
		text-align: left;
		flex-direction: row-reverse;
	}

	#staggeredSpotlights ul.results_list > li:nth-child(even) .image::after
	{
		position: absolute;
		top: 0;
		left: auto;
		right: 100%;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		background: #C24C40;
		animation: slideRevealRight 1500ms forwards;
		animation-play-state: paused;
	}

	/*#staggeredSpotlights .image.transitionNow::after,*/
	/*.wideContentSpotlight::before
	{
		animation-play-state: running !important;
	}*/

	.wideContentSpotlight a::before
	{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #C24C40;
		z-index: 1;
		left: -100%;
		transition: left 400ms ease;
	}

	.wideContentSpotlight a:hover::before,
	.wideContentSpotlight a:focus::before
	{
		left: 0;
	}

	#staggeredSpotlights .image
	{
		flex: 0 1 834px;
		margin: 0 40px 0 0;
	}

	#staggeredSpotlights ul.results_list > li:nth-child(even) .image
	{
		margin: 0 0 0 40px;
	}

	#staggeredSpotlights .content
	{
		flex: 0 1 595px;
	}

	#staggeredSpotlights .arrow
	{
		height: 125%;
		top: -12%;
	}

	/*.wideContentSpotlight .image::after
	{
		opacity: 0;
		transition: opacity 10ms ease 400ms;
	}*/

	/*#staggeredSpotlights .image img,*/
	/*.wideContentSpotlight .image img
	{
		opacity: 0;
		transition: opacity 10ms ease 700ms;
	}

	.wideContentSpotlight .image img
	{
		transition-delay: 400ms;
	}*/

	/*#staggeredSpotlights .image.transitionNow img,*/
	/*.wideContentSpotlight.transitionNow img,
	.wideContentSpotlight.transitionNow .image::after
	{
		opacity: 1;
	}*/
}


/* Content spotlights --------------------------------------------> */

/*#newsroomSpotlight
{
	background: #000000;
}*/

#newsroomSpotlight ul,
#newsroomSpotlight li
{
	padding: 0;
	margin: 0;
	list-style: none;
}

#newsroomSpotlight li
{
	margin: 0 0 20px;
}

#newsroomSpotlight a:hover
{
	color: #ffffff !important;
	/*text-decoration: underline;*/
}

.wideContentSpotlight
{
	position: relative;
	overflow: hidden;
	min-height: 296px;
	min-height: max(200px,
			 min(296px, 200px + (296 - 200) * ((100vw - 400px) / (1350 - 400))
	));
	display: flex;
	align-items: center;
}

.wideContentSpotlight a
{
	background: none !important;
}

.wideContentSpotlight .sp_pencil
{
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 20;
}

.wideContentSpotlight a:not(:hover):not(:focus)
{
	color: #ffffff !important;
}

.wideContentSpotlight .content
{
	position: relative;
	z-index: 2;
	padding: 101px;
	padding: max(25px,
			 min(101px, 25px + (101 - 25) * ((100vw - 400px) / (1350 - 400))
	));

	padding-top: 30px;
	padding-bottom: 30px;
}

.wideContentSpotlight .image img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.wideContentSpotlight .image::after
{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(67,66,62, .5);
}

.wideContentSpotlight .typedate
{
	color: #DEDEDE;
}

/* Stats spotlights ----------------------------------------------> */


#statSpotlight
{
	position: relative;
	top: -30px;
	opacity: 0;
	z-index: 100;
	clear: both;
	margin-top: 78px !important;
	margin-bottom: 5px;

	transition: all 500ms ease 250ms;
}

#statSpotlight.transitionNow
{
	top: 0;
	opacity: 1;
}

#statSpotlight ul,
#statSpotlight li
{
	margin: 0;
	list-style: none;
}

#statSpotlight li
{
	max-width: 356px;
	padding-bottom: 50px;
	margin: 0 auto 50px;
	font-size: 18px;
	text-align: center;
	border-bottom: 1px solid #D0D0D0;
}

#statSpotlight li:last-child
{
	border-bottom: none;
}

#statSpotlight .number
{
	margin: 0 0 20px;
	font-family: 'merriweather';
	font-weight: 400;
	font-size: 72px;
	font-size: max(50px,
			 min(72px, 50px + (72 - 50) * ((100vw - 767px) / (1600 - 767))
	));
	line-height: 1;
	color: #C24C40;
}


@media (min-width: 768px)
{

	#statSpotlight ul
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#statSpotlight li
	{
		width: 30%;
		padding: 20px 0;
		margin: 0;
		border-bottom: none;
	}

	#statSpotlight ul li:nth-child(2)
	{
		padding: 123px;
		padding: max(50px,
				 min(123px, 50px + (123 - 50) * ((100vw - 1280px) / (1920 - 1280))
		));

		padding-top: 20px;
		padding-bottom: 20px;

		border-left: 1px solid #D0D0D0;
		border-right: 1px solid #D0D0D0;
	}
}


/* Job listing */

#jobListing li
{
	display: flex;
	margin: 0;
	padding: 15px 0;
	border-bottom
}

#jobListing li:nth-child(even)
{
	background: #f5f5f5;
}

#jobListing li > div,
#jobListingHeader > div
{
	flex: 1 1 40%;
}


#jobListing li > div:first-child
{
	padding-left: 20px;
}

#jobListing li > div + div,
#jobListingHeader > div + div
{
	margin-left: 150px;
	margin-left: max(30px,
			 min(150px, 30px + (150 - 30) * ((100vw - 767px) / (1920 - 767))
	));
}

#jobListingHeader
{
	display: flex;
	margin: 0 0 20px;
	font-size: 24px;
	font-size: max(18px,
			 min(24px, 18px + (24 - 18) * ((100vw - 767px) / (1350 - 767))
	));
	font-weight: 600;
	background: #eaeaea;
	padding: 10px 20px;
}

/* Forms ---------------------------------------------------------> */

form
{
	position: relative;
	margin: 0;
	padding: 0;
	margin-bottom: 67px;
	margin-bottom: max(0px,
			 min(67px, 0px + (67 - 0) * ((100vw - 400px) / (1920 - 400))
	));
}

form::after
{
	/* make div stretch to height of content */
	display: block;
	clear: both;
	content: '';
}

form > div
{
	display: flex;
	flex-flow: row wrap;
	gap:	16px;
	/* justify-content: space-between; */
}

form > div > div
{
	position: relative;
	width: calc(50% - 14px);
	/* margin: 0 0 28px 0; */
}

#subContent form > div > div
{
	width: 100%;
	margin-right: 0;
}

#subContent form > div > div:last-child
{
	margin-left: auto;
	width: 100px;
}


form > div > div.textarea_wrapper
{
	width: calc(100% - 12px);
}

form > div > div.checkbox_wrapper
{
	width: 100%;
	padding: 5px 0 10px 0;
}

form > div > div.checkbox_wrapper > div > div
{
	display: flex;
	margin: 0 0 10px 0;
}

label
{
	display: block;
}

/* radio/checkboxes without a wrapper */
input + label
{
	display: inline;
}

label p
{
	margin: 0;
	padding: 0;
}

form > div > div.radio_wrapper > label,
form > div > div.checkbox_wrapper > label
{
	display: block;
	position: relative;
	padding: 0 0 10px 0;
	line-height: 1.3;
}

form > div > div.checkbox_wrapper > div
{
	line-height: 1.4;
}

form > div > div.checkbox_wrapper > div > div > input
{
	margin: 6px 6px 0 0;
	padding: 0;
	align-self: flex-start;
}

form > div > div.checkbox_wrapper > div > div > label
{
	/* in safari, unrestricted width was shrinking the actual checkbox */
	max-width: calc(100% - 30px);
}

form > div > div.radio_wrapper
{
	width: 100%;
	padding: 10px 0 0 0;
}

form > div > div.radio_wrapper > div
{
	display: flex;
}

form > div > div.radio_wrapper > div > div
{
	padding-right: 12px;
}

form > div > div.radio_wrapper > div > div > label
{
	display: inline-block;
	padding: 2px 0 0 4px;
	vertical-align: middle;
}

form > div > div.submit_wrapper
{
	/* width: 100%;  uncomment if you want this on its own line */
}

/* WebForm uses an id */
#submit_wrapper
{
	width: 100%;
}

form > p
{
	width: 100%;
}

/* hide the label via CSS by default if it has a value (class added in ItemSearch) */
form > div > div.hasValue > label
{
	/* visibility: hidden; not necessary with labels visible above the field */
}

/* remove the visibility: hidden the moment the field has any style added to it via JS */
form > div > div.hasValue > label[style]
{
	visibility: visible;
}

/* reset button appearance on iOS */
[type=submit],
button,
::-webkit-file-upload-button
{
	-webkit-appearance: none;
	border-radius: 0;
	font: inherit;
}

input[type=file]
{
	font: inherit;
}

input:not([type]),
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea,
select,
.customSelect
{
	width: 100%;
	min-height: 33px; /* appease IE11 */
	margin: 0;
	/* padding: 1px 7px; */
	padding: 8px 19px;
	vertical-align: top;
	color: #666766;
	/* background-color: #fff; */
	background-color: #F6F6F6;
	/* border: 1px solid #d6d6d6; */
	border: none;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	border-radius: 0;
}

textarea
{
	min-height: 6.5em;
}

/***
	floating labels applied only to search forms, not other forms, for accessibility
	if you *must* do floating labels everywhere, remove the ".search_form" from
	the selector, and make sure to remove it in the inFieldLabels call in default.js
***/
.search_form form > div > div > label
{
	position: absolute;
	/* padding: 2px 7px; */
	padding: 8px 19px;
	color: #666766;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;

	display: block !important; /* needed for animation to work on .customSelect */
}

.search_form form > div > div.hasFocus > label
{
	display: block !important;
	top: -10px;
	left: 8px;
	z-index: 5;
	padding: 2px 4px 0 2px;
	background-color: #ffffff;
	border-radius: 3px;
	font-size: 0.6rem;
	line-height: 1;
	transition: all 0.3s ease;
}

select
{
	 /* make '-All-' camouflaged until customSelect takes over */
	 /* you may need to change this color to match your particular select bg color */
	 /* we switch back to the inherited color with select.hasCustomSelect below */
	color: #ffffff;
}

.customSelect
{
	display: inline-block !important;
	overflow: hidden;
	padding-right: 40px;  /* make room for the arrow */

	position: relative;
}

/* I made some changes to this ::after to match mockup for professionals search page - Logan */

.customSelect::after
{
	content: '';
	display: block;
	position: absolute;
	/* top: .75em; */
	top: calc(50% - .25em);
	right: .75em;

	/* http://apps.eky.hk/css-triangle-generator/ */
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .5em .5em 0 .5em;
	border-color: #c24c40 transparent transparent transparent;
}


/* I added a ::before to get the arrow down look - logan */
.customSelect::before
{
	content: '';
	display: block;
	position: absolute;
	/* top: .75em; */
	top: calc(50% - .4em);
	right: .75em;

	/* http://apps.eky.hk/css-triangle-generator/ */
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .5em .5em 0 .5em;
	border-color: #F6F6F6 transparent transparent transparent;
	z-index: 1;
}

/* normalize selects */
select
{
	font-family: ui-sans-serif, sans-serif;

	/* customSelect tries to be useful and set the width, but it
		breaks a lot */
	width: 100% !important;
	box-sizing: border-box;
}

/* this makes sure the invisible select always floats above */
select.hasCustomSelect
{
	z-index: 1;

	/* we made this white to be camouflaged on load, but now must return to prev color */
	color: #666766;
	padding: 5px 15px;
}

/* per swati, we always want this to be 16px out the gate */
option
{
	font-size: 16px;
	color: inherit;
}

/* custom select color - somewhat buggy, leaving out for now
select option:hover,
select option:focus,
select option:active,
select option:checked {
	background: linear-gradient(#0a80ca, #0a80ca);
	background-color: #0a80ca !important;
	color: white !important;
}
*/

.customSelectInner
{
	display: block !important;
	white-space: nowrap;
	overflow: hidden;
	width: 100% !important;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
.customSelectFocus
{
	/* there must be a visual change on focus for accessibility */
	background-color: #eee;
}

/* invalid styles - pink! */
.errors + div > form input:not([type=radio]):invalid,
.errors + div > form textarea:invalid,
.errors + div > form select[data-invalid],
.errors + div > form select[data-invalid] + .customSelect,
form div.invalid
{
	background-color: #fee;
}

/* invalid and focused - darker pink! */
.errors + div > form input:not([type=radio]):invalid:focus,
.errors + div > form textarea:invalid:focus,
.errors + div > form select[data-invalid]:focus,
.errors + div > form select[data-invalid] + .customSelect:focus
{
	background-color: #fcc;
}

/* wrapper divs for checkbox/radios need styling */
div.required.invalid
{
	padding-left: 5px;
}

[type=submit],
::-webkit-file-upload-button,
a.viewAll,
.reviseButton a
{
	box-sizing: border-box;
	width: auto;
	height: 34px;
	margin: 8px 0 0 0;
	padding: 1px 14px 1px 14px;
	color: #c24c40;
	/* width: 71px; */
	/* padding-right: 140px; */
	position: relative;
	display: block;
	border: 0 solid #d6d6d6;
	background: none;
	/* background: #969696; */
	/* color: #fff; */
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
	font-family: inherit;
	cursor: pointer;
	vertical-align: top;
}

a.clearAll
{
	float: right;
}

a.viewAll,
.reviseButton a
{
	display: inline-flex;
	align-items: center;
}

[type=submit]:hover,
[type=submit]:focus,
a.viewAll:hover,
a.viewAll:focus,
.reviseButton a:hover,
.reviseButton a:focus
{
	/* background: #868686; */
	color: #9f0604;
	text-decoration: none;
}

[type=submit]::after
{
	display: block;
	content: '';
	background: url(../i/expander-arrow-filled.svgz) no-repeat;
	height: 30px;
	width: 30px;
	z-index: 3;
	top: calc(50% - 15px);
	right: -35px;
	position: absolute;
	transform: rotate(-90deg)
}


/* side, index, and other page specific form styles */

#emailField
{
	display: none;
}

@media (max-width: 479px)
{
	form > div > div
	{
		width: 100%;
	}
}


/* auto complete js */

.autocomplete-w1
{
	position: absolute;
	top: 0;
	left: 0;
	padding: 8px 0 0 6px;
}

.autocomplete
{
	max-height: 350px;
	overflow: auto;
	margin: -6px 6px 6px -6px;
	background: white;
	outline: 1px solid black;
	text-align: left;
	cursor: default;
	box-shadow: 4px 4px 5px -2px rgba(0,0,0,0.5);
	box-sizing: border-box;
}

.autocomplete .selected
{
	background: #f0f0f0;
}

.autocomplete div
{
	padding: 5px;
	/* white-space: nowrap; */
	line-height: 120%;
}

.autocomplete div span.autoCompleteMore
{
	color: #0a80ca;
	font-size: 11px;
}

.autocomplete h2
{
	margin: 0;
	padding: 12px 5px 6px 5px;
	white-space: nowrap;
}

.autocomplete strong
{
	font-weight: bolder;
	color: #0b3c5d;
}

/* Bio contact in sidebars */



#item_bio
{
	padding: 40px;
	padding: max(20px, min(40px, 20px + (40 - 20) * ((100vw - 1280px) / (1920 - 1280)) ));
	padding-top: 30px;

	font-size: 17px;
	box-sizing: border-box;
	background: #eaeaea;
}


#item_bio_contact li a:hover,
#item_bio_contact li a:focus
{
	color: #9f0604;
}

#managingPartner h2
{
	margin-top: 0;
}

#managingPartner li
{
	display: flex;
	margin-bottom: 20px;
}

#managingPartner .photo
{
	flex: 0 1 110px;
}

#managingPartner .photo img
{
	display: block;
	width: 100%;
	height: auto;
}

#managingPartner .content
{
	flex: 1 1 154px;
	margin-left: 26px;
}

#managingPartner .title
{
	margin-bottom: 16px;
	font-family: 'merriweather';
	color: #C24C40;
	font-size: 19px;
	font-size: max(16px,
			 min(19px, 16px + (19 - 16) * ((100vw - 767px) / (1920 - 767))
	));
}

#managingPartner .title a:not(:hover):not(:focus)
{
	color: inherit;
}

#managingPartner .email a:not(:hover):not(:focus)
{
	color: #3E638B;
}


#item_bio #bios button.toggleExpand,
#item_bio button.toggleExpand
{
	margin-bottom: 0;
}

#item_bio button.toggleExpand:not(:hover):not(:focus)
{
	color: #C24C40;
}


#subContent .itemSection:not(#item_bio) a:not(:hover):not(:focus)
{
	color: #3E638B;
}

@media (min-width: 920px)
{
	#managingPartner .title
	{
		font-size: 19px;
		font-size: max(16px,
				 min(19px, 16px + (19 - 16) * ((100vw - 1350px) / (1920 - 1350))
		));
	}
}

@media (min-width: 1350px)
{
	#managingPartner .photo
	{
		flex: 0 0 110px;
	}
}


/* Careers -------------------------------------> */

#careersSubnav
{
	margin-top: 40px;
}

#careersSubnav li
{
	margin: 0 0 16px;
	list-style: none;
}

#careersSubnav a
{
	position: relative;
	display: block;

	padding: 34px;
	padding: max(20px,
			 min(34px, 20px + (34 - 20) * ((100vw - 767px) / (1920 - 767))
	));

	padding-left: 47px;
	padding-left: max(20px,
			 min(47px, 20px + (47 - 20) * ((100vw - 767px) / (1920 - 767))
	));
	padding-right: 55px;

	font-size: 23px;
	font-size: max(20px,
			 min(23px, 20px + (23 - 20) * ((100vw - 767px) / (1920 - 767))
	));
	font-family: 'merriweather';
	color: #ffffff;
	background: #C24C40;
	border: 1px solid #C24C40;
	line-height: 1.1;
	box-sizing: border-box;
}

#careersSubnav a::after
{
	content: '';
	position: absolute;
	top: calc(50% - 15px);
	right: 35px;
	right: max(20px,
			 min(35px, 20px + (35 - 20) * ((100vw - 767px) / (1920 - 767))
	));
	display: block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	transform: rotate(-90deg);
	background: url('../i/expander-arrow.svgz') no-repeat, #EAEAEA; /* data-uri */
}

#careersSubnav a:hover,
#careersSubnav a:focus
{
	background: #ffffff;
	color: #C24C40;
}

#careersSubnav a:hover::after,
#careersSubnav a:focus::after
{
	background: url('../i/expander-arrow-filled.svgz') no-repeat, #EAEAEA; /* data-uri */
}

@media (min-width: 1280px)
{

	#careersSubnav ul
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	#careersSubnav li
	{
		width: calc(50% - 8px);
	}

}

/* Pre footer- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#preFooter
{
	position: relative;
	padding-bottom: 42px;
	margin-top: 140px;
	/*margin-top: 120px;*/
	/*height: 394px;*/
	background: #757264;
	box-sizing: border-box;
}

#footerSquiggle
{
	position: absolute;
	left: calc(50% - 60vw);
	bottom: 0;
	z-index: 0;
	display: block;
	width: 120vw;
	height: auto;
	object-fit: cover;
	opacity: .1;
}

.footerSocial
{
	position: relative;
	z-index: 10;
}

.footerSocial ul,
.footerSocial li
{
	margin: 0;
	list-style: none;
}

.footerSocial ul,
#navSocial ul
{
	display: flex;
	justify-content: center;

}

.footerSocial ul li:not(:last-child)
{
	/* margin-right: 33px; */
	margin-right: 15px;
}

.footerSocial a,
#navSocial ul li a
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	background: #ffffff;
	border-radius: 50%;
	color: #7F7D70;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 58px;
	box-sizing: border-box;
}

.footerSocial a:hover,
.footerSocial a:focus,
#navSocial ul li a:hover,
#navSocial ul li a:focus
{
	background: #C9C6B4;
}

.footerSocial svg
{
	display: block;
	height: auto;
	fill: #7F7D70;
}

.footerlinkedin svg {	width: 20px; }
.footerfacebook svg {	width: 9px; }
.footertwitter svg {	width: 24px; }

#footerSubscribe a
{
	width: auto;
	border-radius: 10px;
	padding: 0 20px;
	font-weight: 600;
}

@media (min-width: 768px)
{
	.footerSocial ul li:not(:last-child)
	{
		margin-right: 33px;
		/* margin-right: 15px; */
	}
}

@media (min-width: 920px)
{
	#preFooter
	{
		margin-top: 240px;
	}
}

@media (min-width: 1280px)
{

	.footerSocial a
	{
		width: 58px;
		height: 58px;
	}

	.footerlinkedin svg {	width: 25px; }
	.footerfacebook svg {	width: 13px; }
	.footertwitter svg {	width: 29px; }

	#footerSubscribe a
	{
		padding: 0 26px;
	}


}

@media (min-width: 1350px)
{

	#navSocial
	{
		display: none;
	}
}

#officeList ul,
#officeList li
{
	margin: 0;
	list-style: none;
}

#officeList li
{
	margin: 0 0 30px;
}


/* Footer --------------------------------------------------------> */

#footer
{
	display: flex;
	align-items: flex-end;
	/* justify-content: space-between; */
	justify-content: center;
	position: relative;
	z-index: 10;
	margin: 0;
	padding: 23px 0;
	/* background: #333333; */
	background: #fff;
	box-sizing: border-box;
	/* color: #c5c4c4; */
	color: #2c2c2c;
	/* font-size: 0.8rem; */
	font-size: 16px;
}

#footerRight
{
	margin-left: auto;
}

#footer a
{
	/* color: #c5c4c4; */
	color: #2c2c2c;
}

#footer a:hover,
#footer a:focus
{
	color: #0a80ca;
}

#footer ul li,
#footer ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer ul
{
	display: flex;
	flex-wrap: wrap;
	/* justify-content: flex-end; */
	justify-content: center;
}

ul#footerLinks li
{
	/* margin: 0 0 0 1rem; */
	margin: 0 .6rem 0 .6rem;
	white-space: nowrap;
	font-size: 17px;
}

#footer p
{
	margin: 0;
	padding: 0;
	font-size: 14px;
}

#footerLinks a:hover,
#footerLinks a:focus
{
	color: #757264;
}


/* Video Support -------------------------------------------------> */

#backgroundPopup
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	height: 100%;
	width: 100%;
	background: #333;
	border: 1px solid #cecece;
}

.popupPlayerWrapper
{
	display: none;
	position: fixed;
	top: calc(50% - 40vh);
	left: calc(50% - 40vw);
	z-index: 99999999;
	height: 80vh;
	width: 80vw;
	background: #fff;
	border: 12px solid #cecece;
	border-radius: 2px;
	box-sizing: border-box;
	/*color: #fff;*/ /*I don't think so?*/
}

.popupPlayerWrapper.inlinePlayer
{
	position: relative;
	top: inherit;
	left: inherit;
	z-index: inherit;
	width: 100%;
	height: 425px;
	margin: 0 0 1.25em 0;

	/* make the player height the size of the iframe */
	height: 0;
	padding-bottom: 56.25%; /* 16:9 */
}

.mediaPlayer
{
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	box-sizing: border-box;
	overflow: hidden;
}

.mediaPlayer > iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	z-index: 999999;
}

.mediaPlayer > video,
.mediaPlayer > audio
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	margin: auto;
	background: #000;
	box-sizing: border-box;
}

.popupPlayerWrapper.playerWithSidebar .mediaPlayer
{
	width: 75% !important;
}

.popupPlayerWrapper.playerWithPlaylist .mediaPlayer
{
	height: 75% !important;
}

@media all and (orientation: portrait)
{
	.popupPlayerWrapper
	{
		left: calc(50% - 45vw);
		top: calc(50% - 20vh);
		width: 90vw;
		height: 40vh;
	}
}

/* override some of the standard closeButton styles */
.popupPlayerWrapper button.closeButton
{
	z-index: 25;
	top: -15px;
	right: -15px;
}

.popupPlayerPlaylist
{
	display: none;
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 25%;
	max-width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.popupPlayerWrapper.playerWithPlaylist.playerWithSidebar .popupPlayerPlaylist
{
	width: 75%;
	max-width: 75%;
}

.popupPlayerPlaylist div.results
{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 10px 0 0 10px;
}

.popupPlayerPlaylist.playlistHorizontalToggles div.results
{
	width: calc(100% - 30px);
	margin: 10px 0 0 30px;
}

.popupPlayerPlaylist ul
{
	position: relative;
	left: 0;
	list-style: none;
	width: 100%;
	min-width: 100000px;
	height: calc(100% - 10px);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

.popupPlayerPlaylist ul li
{
	position: relative;
	list-style: none;
	display: block;
	float: left;
	height: calc(100% - 10px);
	margin: 0 10px 0 0;
	padding: 0;
	box-sizing: border-box;
}

.popupPlayerPlaylist ul li .abstract,
.popupPlayerPlaylist ul li .videoMore
{
	display: none;
}

.popupPlayerPlaylist ul li .photo
{
	position: relative;
	height: 100%;
}

.popupPlayerPlaylist ul li a
{
	display: block;
	position: relative;
	width: auto;
	height: 100%;
}

.popupPlayerPlaylist ul li a img
{
	display: block;
	position: relative;
	z-index: 1;
	width: auto;
	height: 100%;
}

.popupPlayerPlaylist ul li .title
{
	position: absolute;
	top: 0;
	z-index: 5;
	width: 100%;
	padding: 2px 5px;
	background: rgba(0,0,0,0.4);
	color: #fff;
	font-size: 0.8rem;
	box-sizing: border-box;
	cursor: pointer;
}

.popupPlayerPlaylist ul li .sp_pencil
{
	display: none;
}

.popupPlayerPlaylist ul li .title a
{
	color: #fff;
}

.popupPlayerPlaylist ul li .title a:hover,
.popupPlayerPlaylist ul li .title a:focus
{
	text-decoration: none;
}

.popupPlayerPlaylist ul li .title a::after
{
	content: '\00A0\25B6';
}

a#playlistPrev,
a#playlistNext
{
	display: none;
	position: absolute;
	z-index: 50;
	top: 0;
	width: 25px;
	height: calc(100% - 10px);
	margin: 0;
	border-top: 5px solid #f5f5f5;
	border-bottom: 5px solid #f5f5f5;
	background: #d8d8d8;
	text-align: center;
}

.popupPlayerPlaylist.playlistHorizontalToggles a#playlistPrev,
.popupPlayerPlaylist.playlistHorizontalToggles a#playlistNext
{
	display: block;
}

a#playlistPrev
{
	left: 0;
	border-left: 2px solid #f5f5f5;
}

a#playlistNext
{
	right: 0px;
	border-left: 2px solid #f5f5f5;
}

a#playlistPrev:hover,
a#playlistPrev:focus,
a#playlistNext:hover,
a#playlistNext:focus
{
	background-color: #d1d1d1;
}

a#playlistPrev span,
a#playlistNext span
{
	display: inline-block;
	position: relative;
	top: 25%;
	color: #fff;
	font-size: 40px;
}

.popupPlayerSidebar
{
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	background: #f5f5f5;
}

.popupPlayerSidebar > div
{
	padding: 10px 16px 10px 16px;
	font-size: 0.8rem;
}

.popupPlayerSidebar > div h2
{
	font-size: 0.9rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

.itemMultimediaList ul.results_list,
.itemMultimediaList ul.results_list li,
#item_itemvideo > div ul,
#item_itemvideo > div ul li,
.xrefMultimediaList ul,
.xrefMultimediaList ul li,
.popupPlayerSidebar > div ul,
.popupPlayerSidebar > div ul li
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.xrefMultimediaList ul li .photo
{
	margin-bottom: 30px;
	border-left: 12px solid #C24C40;
}

.xrefMultimediaList .itemdate
{
	margin: 0 0 5px;
	color: #C24C40;
	font-weight: 500;
}

.xrefMultimediaList .title a:not(:hover):not(:focus)
{
	color: inherit;
}

#item_itemvideo .photo
{
	margin: 0 0 40px;
}

/* @media (min-width: 900px)
{
	.itemMultimediaList ul.results_list,
	.xrefMultimediaList ul
	{
		display: flex;
		justify-content: space-between;
	}
} */


/* .itemMultimediaList ul.results_list,
.xrefMultimediaList ul
{
	display: flex;
	justify-content: space-between;
} */


/* because of space-between, we need faux element on the end in case we have 2 items on a line */
/* .itemMultimediaList ul.results_list::after,
.xrefMultimediaList ul::after
{
	content: '';
} */

.itemMultimediaList ul.results_list li,
.xrefMultimediaList ul li
/* .itemMultimediaList ul.results_list::after, */
/* .xrefMultimediaList ul::after */
{
	/* flex-basis: calc(100%/3 - 20px); */
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.popupPlayerSidebar > div ul li
{
	margin: 3px 0 4px 0;
}

.itemMultimediaList ul.results_list li
{
	margin: 0 0 10px 0;
}

.itemMultimediaList ul.results_list li .photo img,
#item_relatedsame ul li .photo img,
.itemMultimediaList ul li .photo img,
.xrefMultimediaList ul li .photo img
{
	width: calc(100% - 17px);
	height: auto;
}

#item_relatedsame ul li .photo img
{
	display: block;
	width: 100%;
}

.videomore
{
	font-size: 0.8rem;
}

#item_relatedsame ul li
{
	margin-bottom: 18px;
}

/* .itemMultimediaList ul.results_list li::after,
.xrefMultimediaList ul li::after
{
	display: block;
	clear: both;
	content: '';
} */

.itemMultimediaList ul.results_list li .photo,
.xrefMultimediaList ul li .photo
{
	position: relative;
	z-index: 1;
	float: left;
}

#subContent .xrefMultimediaList ul li .photo
{
	float: none;
}

#mainContent .xrefMultimediaList ul li .videomore,
#mainContent .xrefMultimediaList ul li .title,
#mainContent .xrefMultimediaList ul li .abstract
{
	margin: 0;
}

#mainContent .xrefMultimediaList ul li .abstract p
{
	margin: 0;
	padding: 0;
}

#mainContent .xrefMultimediaList ul li .videomore
{
	font-size: 0.8rem;
}

#subContent #item_relatedsame ul.results_list
{
	margin: 0 0 8px 0;
}

.title .videoMore
{
	margin-left: 6px;
	font-weight: 700;
}

.photo .triggerPopupPlayer,
.photo .triggerPopupPlayer img
{
	display: block;
	position: relative;

	width: 100%;
}

/* start player icon - only edit attributes in this first block! */
.photo .triggerPopupPlayer::before,
.photo .triggerPopupPlayer::after
{
	/* font-size here is the full width/height of the icon */
	font-size: 70px;

	/* color sets the solid color of the icon */
	color: white;

	/* set shadow and background of the icon */
	box-shadow: 0 0 2px 0 black;
	background: rgba(0,0,0,.3);

	/* set the relative size of the triangle inside the circle */
	transform: scale(.5);
	/* left position of inner triangle, will need to adjust slightly based on scale */
	left: calc(50% - .35em);

	/* don't edit */
	content: '';
	display: block;
	position: absolute;
	top: calc(50% - 0.5em);
	z-index: 5;
}

.photo .triggerPopupPlayer::before
{
	/* these ems are set so you can just use font-size: a few blocks above to set
		the size of the icon */
	border: .05em solid currentColor;
	border-radius: 50%;
	top: calc(50% - 0.5em);
	left: calc(50% - 0.5em);
	width: 1em;
	height: 1em;
	box-sizing: border-box;
	transform: none;
}

.photo .triggerPopupPlayer::after
{
	width: 0;
	height: 0;
	border: solid transparent;
	border-left-color: currentColor;

	/* these ems are set so you can just use font-size: a
		few blocks above to set the size of the triangle */
	border-width: 0.5em 0 0.5em 0.87em;

	background: none;
	box-shadow: none;
}
/* end player icon*/

@media (max-width: 1024px)
{
	#mainContent .xrefMultimediaList ul li,
	.itemMultimediaList ul.results_list li
	{
		margin: 0 0 30px 0;
	}

	#mainContent .xrefMultimediaList ul li .photo,
	.itemMultimediaList ul.results_list li .photo
	{
		float: none;
		margin: 0 0 10px 0;
		width: 100%;
	}

	#mainContent .xrefMultimediaList ul li .photo img,
	.itemMultimediaList ul.results_list li .photo img
	{
		/*width: 100%;*/
	}

	#mainContent .xrefMultimediaList ul li .videomore,
	#mainContent .xrefMultimediaList ul li .title,
	#mainContent .xrefMultimediaList ul li .abstract,
	.itemMultimediaList ul.results_list li .videomore,
	.itemMultimediaList ul.results_list li .title,
	.itemMultimediaList ul.results_list li .abstract
	{
		margin-left: 0;
	}
}

@media (max-width: 767px)
{
	.inlineMultimediaPlaceholder
	{
		position: relative;
		z-index: 10;
	}

	.popupPlayerWrapper
	{
		border: 3px solid #cecece;
		border-radius: 2px;
	}

	.popupPlayerWrapper.inlinePlayer
	{
		display: flex;
		flex-direction: column;
		height: auto;
		overflow: visible;
		padding-bottom: 0;
	}

	.popupPlayerWrapper.inlinePlayer .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithSidebar .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist.playerWithSidebar .mediaPlayer
	{
		position: relative;
		width: 100% !important;
		height: 100% !important;
		padding-bottom: 56.25%; /* 16:9 */
	}

	.popupPlayerWrapper.inlinePlayer .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithSidebar .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist.playerWithSidebar .popupPlayerPlaylist
	{
		position: relative;
		width: 100% !important;
		max-width: none;
		height: 100px;
		background: #f0f0f0;
	}

	a#playlistPrev
	{
		border-left: 2px solid #f0f0f0;
	}

	a#playlistNext
	{
		border-left: 2px solid #f0f0f0;
	}

	.popupPlayerWrapper.inlinePlayer .popupPlayerSidebar
	{
		position: relative;
		width: 100% !important;
		height: auto !important;
	}

	.popupPlayerSidebar > div
	{
		padding: 0px 10px 0px 10px;
	}

	.popupPlayerSidebar > div:last-of-type
	{
		padding: 0px 10px 5px 10px;
	}

	.popupPlayerSidebar > div h2
	{
		padding: 6px 0 2px 0;
	}

	/* #mainContent .xrefMultimediaList ul li .photo img,
	.itemMultimediaList ul.results_list li .photo img
	{
		width: 100%;
	} */
}


/* News listing */

/*.newsroomSection
{
	margin-top: 55px;
	margin-top: max(30px,
			 min(55px, 30px + (55 - 30) * ((100vw - 400px) / (1920 - 400))
	));
	margin-bottom: 22px;
	margin-bottom: max(0px,
			 min(22px, 0px + (22 - 0) * ((100vw - 400px) / (1920 - 400))
	));
}*/

.newsroomSearch
{
	padding: 37px;
	margin: 0 0 50px;
	background: #F6F6F6;
}

.newsroomList
{
	margin-top: 50px;
	margin-bottom: 22px;
	margin-bottom: max(0px,
			 min(22px, 0px + (22 - 0) * ((100vw - 400px) / (1920 - 400))
	));
	font-size: 19px;
	font-size: max(16px,
			 min(19px, 16px + (19 - 16) * ((100vw - 767px) / (1920 - 767))
	));
}

.newsroomList a:hover,
.newsroomList a:focus,
#newsroomSpotlight a:hover,
#newsroomSpotlight a:focus
{
	color: #c24c40;
}

.newsroomList li,
.newsroomList ul,
.profileNewsroomList li,
.profileNewsroomList ul
{
	list-style: none;
	margin: 0;
}

.profileNewsroomList li
{
	margin: 0 0 40px;
}

.profileNewsroomList button.toggleExpand
{
	margin-top: 0;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}

/*.newsroomSection ul,*/
.newsroomList ul,
.itemMultimediaList ul.results_list,
.xrefMultimediaList ul
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	gap: max(20px,
			 min(40px, 20px + (40 - 20) * ((100vw - 400px) / (1920 - 400))
	));
	margin-top: 25px;
	margin-bottom: 10px;
	list-style: none;
}

/*.newsroomSection li,*/
.newsroomList li a
/* .multimediaList li */
{
	display: block;
	height: 100%;
	width: 100%;
	background-color: #eaeaea;
	/* min-height: 155px; */
	min-height: 225px;
	min-height: max(120px,
			 min(225px, 120px + (225 - 120) * ((100vw - 400px) / (1920 - 400))
	));
	/* padding: 35px 47px; */
	padding-top: 35px;
	padding-top: max(25px,
			 min(35px, 25px + (35 - 25) * ((100vw - 400px) / (1920 - 400))
	));
	padding-bottom: 55px;
	padding-bottom: max(25px,
			 min(55px, 25px + (55 - 25) * ((100vw - 400px) / (1920 - 400))
	));
	padding-left: 47px;
	padding-left: max(27px,
			 min(47px, 27px + (47 - 27) * ((100vw - 400px) / (1920 - 400))
	));
	padding-right: 47px;
	padding-right: max(27px,
			 min(47px, 27px + (47 - 27) * ((100vw - 400px) / (1920 - 400))
	));
	margin: 0;

	box-sizing: border-box;
}

.newsroomList a:not(:hover):not(:focus)
{
	color: inherit;
}

.newsroomList .view_more
{
	color: #3E638B;
}


.newsroomList .typedate > div + div::before
{
	color: #c24c40;
}

.wideContentSpotlight .typedate > div + div::before
{
	color: #DEDEDE;
}

.typedate
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	font-weight: 500;
	color: #c24c40;
	text-transform: uppercase;
	font-size: 16px;
	font-size: max(14px,
			 min(16px, 14px + (16 - 14) * ((100vw - 767px) / (1920 - 767))
	));
}

.typedate > div + div::before
{
	content: '|';
	position: relative;
	margin: 0 10px;
	font-weight: 500;
	color: #ffffff;
}

.profileNewsroomList .typedate > div + div::before
{
	color: currentColor;
	top: -1px;
}

.profileNewsroomList .title
{
	color: #000000;
}

.profileNewsroomList .title a:not(:hover):not(:focus)
{
	color: inherit;
}

@media (min-width: 768px)
{
	.newsroomList ul,
	.itemMultimediaList ul.results_list,
	.xrefMultimediaList ul
	{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		gap: max(20px,
				 min(40px, 20px + (40 - 20) * ((100vw - 400px) / (1920 - 400))
		));
	}
}

/* Cookie popup -------------------------------------------------> */

#cookiePopup
{
	display: none;
	position: fixed;
	left: 80px;
	right: 80px;
	bottom: 0;
	overflow: hidden;
	z-index: 9999;
	max-width: 1540px;
	margin: 0 auto;
	padding: 25px 60px;
	background: #1B3B5C;
}

#cookiePopup > div
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookiePopup p
{
	margin: 1em 0;
	padding: 0;
	float: left;
	max-width: calc(100% - 300px);
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
}

#cookiePopup a
{
	color: #DEC194;
	text-decoration: none;
}

#cookiePopup a:hover,
#cookiePopup a:focus
{
	color: #cccccc;
}

#cookiePopup p + p
{
	margin-top: .8em;
}

#cookiePopup button
{
	padding: 14px 33px;
	background: #DEC194;
	border: none;
	border-radius: 0;
	color: #1F3E5F;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
}

#cookiePopup button:hover,
#cookiePopup button:focus
{
	color: #000000;
}

@media (max-width: 1349px)
{
	#cookiePopup
	{
		left: 44px;
		right: 44px;
	}
}

@media (max-width: 919px)
{
	#cookiePopup
	{
		left: 16px;
		right: 16px;
		bottom: 0;
	}

	#cookiePopup p
	{
		max-width: calc(100% - 200px);
		margin: 0.4em 0 0.2em 0;
	}
}

@media (max-width: 767px)
{
	#cookiePopup
	{
		padding: 1rem;
	}

	#cookiePopup > div
	{
		display: block;
		text-align: center;
	}

	#cookiePopup p
	{
		float: none;
		max-width: none;
	}

	#cookiePopup button
	{
		margin: 1rem 0 1.3rem 0;
	}
}


/* Standard 'Close' and 'Accept' Button -------------------------> */

.closeButton
{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 0;
	height: 0;
	font-size: 0;
	padding: 20px 20px 0 0;
	overflow: hidden;
	border: 2px solid #fff;
	background-color: #ddd;
	border-radius: 50%;
	cursor: pointer;
	color: #999;
}

.closeButton::before,
.closeButton::after
{
	position: absolute;
	top: 9px;
	left: 3px;
	width: 14px;
	height: 3px;
	content: "";
	background-color: currentColor;
	transform: rotate(-45deg);
}

.closeButton::after,
.closeButton::after
{
	transform: rotate(45deg);
}

.closeButton:hover,
.closeButton:focus
{
	color: #262626;
}

.acceptButton
{
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 0.3vw 0.5vw;
	border: 2px solid #fff;
	background-color: #ddd;
	border-radius: 3px;
	cursor: pointer;
	color: #333333;
	text-transform: uppercase;
}

.acceptButton:hover,
.acceptButton:focus
{
	background-color: green;
	color: #ffffff;
}

@media (max-width: 767px)
{
	.closeButton
	{
		top: 4px;
	}
}


/* Email Popup Support -------------------------------------------------> */

#emailPopupWrapper
{
	position: fixed;
	z-index: 99999;

	display: flex;
	justify-content: center;
	align-items: center;

	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	background: rgba(51, 51, 51, .7);

	transition: opacity .3s;
}

#emailPopupWrapper:not(.active)
{
	pointer-events: none;
	opacity: 0;
}

#emailPopup
{
	position: relative;
	background: white;
}

#emailPopupContent
{
	border: 12px solid #cecece;
	background: white;

	max-height: calc(100vh - 40px);
	width: calc(100vw - 40px);
	max-width: 800px;

	padding: 20px;
	box-sizing: border-box;

	overflow: auto;
}

#emailDisclaimerButtons
{
	text-align: center;
}

#emailDisclaimerButtons a
{
	display: inline-block;
	margin: 10px;
	padding: 4px 6px;
	background: #0a80ca;
	color: #fff;
	text-align: center;
}

#emailPopupClose
{
	position: absolute;
	top: -12px;
	right: -12px;
}

/*SiteMap object */

table.SITE_MAP
{
	margin-top: 5px;
	border-collapse: collapse;
}

table.SITE_MAP th
{
	padding-top: 5px;
	text-align: right;
}

table.SITE_MAP td
{
	padding-top: 5px;
}

table.SITE_MAP td.h_separator
{
	height: 5px;
	border-bottom: solid 1px #ccc;
}

table.SITE_MAP td.v_separator
{
	padding-left: 15px;
	padding-right: 15px;
	color: #666;
	font-size: 08px;
}

@media (max-width: 767px)
{
	table.SITE_MAP,
	table.SITE_MAP th,
	table.SITE_MAP td,
	table.SITE_MAP tr
	{
		display: block;
		padding: 0;
		text-align: left;
	}

	table.SITE_MAP td:nth-child(n + 4)
	{
		padding-left: 10px;
	}

	table.SITE_MAP td:nth-child(n + 6)
	{
		padding-left: 20px;
	}

	table.SITE_MAP .v_separator
	{
		display: none;
	}
}


/* Search Object Support */
#search form
{
	margin: 0 0 2rem 0;
}

#sp_class_search form div
{
	width: 100%;
	flex-basis: 100%;
}

/* search text input and button */
#sp_class_search .search_text
{
	display: flex;
	justify-content: flex-end;

	align-items: stretch;

	margin: 1em 0 0;
}

#sp_class_search .search_text input
{
	vertical-align: bottom;
	margin: 0;

	display: block;

	height: auto;
}

#sp_class_search #searchtext
{
	flex-grow: 1;
	flex-basis: 0;
	width: auto;

	margin-right: 1rem;
}

#sp_class_search p.form-section-label
{
	margin: 1.5rem 0 0.5rem 0;
	padding: 0;

	font-weight: bolder;
}

.search_section_wrapper
{
	display: flex;
}

#subContent .search_section_wrapper
{
	flex-direction: column;
}

/* list of categories can expand as needed */
.search_section_wrapper .sections
{
	flex-grow: 1;
}

/* checkbox/radio rows */
#sp_class_search .sections > div,
#sp_class_search .search_type > div > div
{
	padding: 0 0 0.8rem .3rem;

	display: flex;
	align-items: center;
}

.search_section_wrapper input[type=radio],
.search_section_wrapper input[type=checkbox]
{
	margin: 0;
	padding: 0;
}

#sp_class_search label
{
	font-size: 1rem;
	line-height: 1;

	display: flex;
	align-content: center;
	align-items: flex-end;

	padding-top: 1px;
	padding-left: 0.5rem;
}

#search .SEARCH
{
	margin: 2.5rem 0 0 0;
}

#search #subContent
{
	border: none;
	margin: .5rem 0 0 0;
}

#search #subContent form > div > div
{
	flex-basis: auto;
}

#search #advSearchLink a
{
	color: #888;
}

#search .search_result_date
{
	color: #888;
}

#search div.sections input,
#search div.search_type  input
{
	border: 0;
}

#search a.more
{
	font-weight: bolder;
}

.searchfoundtext
{
	font-weight: bolder;
}

.result-items p
{
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 2px;
	margin-bottom: 18px;
}

.result-items p.link
{
	padding-top: 5px;
	padding-bottom: 0;
	margin-bottom: 0;
}

.section-header h3
{
	font-size: 1.3rem;
	margin-top: 2em;
	margin-bottom: .5em;
	padding: 0;
}

#search .view_more a
{
	position: relative;
	padding: 7px 36px 7px 36px;
}

#search .searchHeader
{
	border-bottom: 1px solid #a69e9d;
	margin: 0;
	padding: 0;
}

#search #searchTabLinks div
{
	border-top: 1px solid #e9e9e9;
	margin: 0;
	padding: 6px 0;
}

#search #searchTabLinks .form-section-label
{
	color: #000;
}

#search #searchTabLinks,
#search #searchTabLinks a
{
	color: #0a80ca;
}

#search #searchTabLinks a span
{
	color: #0a80ca;
}

#search #searchTabLinks .form-section-label
{
	border: none;
	margin-top: 27px;
	font-weight: bold;
}

#search #searchResultsFor span
{
	color: #000;
}

#search #searchResultsFor
{
	margin: 0 0 .5rem 0;
	padding: 0;
	color: #888;
}

#search .searchOptionsWrapper
{
	position: relative;
	/*border: 1px solid #a69e9d;*/
	width: 100%;
	max-width: 400px;
	/*min-height: 32px;*/
}

#search .searchOptionsWrapper,
#search #searchOptions
{
	/*display: inline-block;
	font-size: 18px;*/
}

#search #searchOptions
{
	/*position: absolute;*/
	width: 100%;
}

#search .customSelect
{
	font-size: 18px;
}

/*#search .customSelect,
#search select
{
	border: 0 !important;
	background: inherit;
}*/

#search select:hover
{
	cursor: pointer;
}


/* Bio section search results */
.searchBioWrapper div.results_list > div
{
	display: flex;
	justify-content: space-between;
}

.searchBioWrapper .photo
{
	padding: 0 0 9px 32px;
	margin: 0;

	order: 2;
	flex: 0 0 232px;
}

.searchBioWrapper .photo img
{
	padding: 0;
	width: 200px;
	max-width: none;
}

.searchBioWrapper .divider
{
	border-top: 1px solid #a69e9d;
	margin: 18px 0;
	display: none;
}

.result-items > div:not(:last-of-type),
.result-items > p.excerpt:not(:last-of-type)
{
	border-bottom: 1px solid #a69e9d;
	margin: 0 0 32px;
	padding: 0 0 32px;
}

@media (max-width: 767px)
{
	#sp_class_search .search_text
	{
		flex-direction: column;

		align-items: flex-start;
	}

	#search main .search_form [type=submit]
	{
		margin-top: .5rem;
	}

	#sp_class_search #searchtext
	{
		width: 100%;
	}

	#sp_class_search .search_section_wrapper
	{
		flex-direction: column;
	}

	#search div.form-section
	{
		margin-bottom: 0;
	}

	.searchBioWrapper .photo
	{
		flex: 0 0 25vw;
	}

	.searchBioWrapper .photo img
	{
		width: 100%;
	}
}


/* Example Styles Support */

table#fontReference
{
	width: 100%;
	margin: 0 0 38px 0;
	font-size: 80%;
	/*white-space: nowrap;*/
	line-height: 1;
}

table#fontReference th,
table#fontReference td
{
	padding: 6px 6px 6px 0;
}


/* Map Object Support */

.sp_map
{
	margin: 2em 0 1em 0;
}

.printMap
{
	display: inline-block;
	padding: 4px;
	background: #0a80ca;
	color: #fff;
	text-align: center;
}

.printMap:hover,
.printMap:focus
{
	background: #6a747c;
	text-decoration: none;
}

/* buttons to look like links */
button.toggleExpand
{
	margin: 20px 0 1.5em 0;
	padding: 7px 19px 7px 0 !important;
	background: none !important;
	border: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
	color: #3E638B;
	/*text-transform: uppercase;*/
}

#subContent button.toggleExpand
{
	margin-top: 0;
	padding-top: 0;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}

#bio_extracontent button.toggleExpand
{
	margin-top: 0;
}

button.toggleExpand:hover,
button.toggleExpand:focus,
#bio_extracontent button.toggleExpand
{
	color: #9f0604;
}


#bio_extracontent button.toggleExpand:hover,
#bio_extracontent button.toggleExpand:focus
{
	color: #3E638B;
}


/* Newsletter Object Support */

.newsletter-unsubscribe-form blockquote
{
	margin-left: 0;
	margin-right: 0;
}


/* Alignment */

figure
{
	margin: .5em 0;
}

.alignleft,
.align-left,
img[style*='float: left']
{
	float: left;
	margin: .5em 1.5em .5em 0;
}

.alignright,
.align-right,
img[style*='float: right']
{
	float: right;
	margin: .5em 0 .5em 1.5em;
}

.aligncenter,
.align-center,
.alignnone
{
	clear: both;
	display: block;
	margin: .5em auto;
}

figure.image
{
	display: table !important;
	padding: 5px;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid #ccc;
	text-align: center;
}

figure.image figcaption
{
	display: block !important;
	clear: both;
	padding: 5px;
	font-size: 0.8rem;
}


#ot-sdk-btn
{
	display: none;
}

/* END DEFAULT CSS ----------------------------------------------->
