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

/*

HelveticaNeueLTPro (HelveticaNeue)
-----------------------------------

Thin - 200
Light - 300
Roman - 400

HelveticaNeueLTPro Condensed (HelveticaNeue_cn)
--------------------------------------------

Thin - 200
Light - 300
Normal - 400
Medium - 500
Bold - 700

*/


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

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

	font-family: 'HelveticaNeue', Arial, sans-serif;
	font-weight: 300;
	line-height: 1.5;
	color: #000;

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

	/* 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, p, .title, .info, .abstract, #pageTitle, .impabstract
{
	/* 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)))
		));

	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)))
		));


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

h1, h2, h3, h4, h5, h6, p, #pageTitle
{

	/*--min-margin-top: 10;*/
	--max-margin-top: 15;

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


	--min-margin-bottom: calc(var(--max-margin-bottom) * .7);
	--min-margin-top: calc(var(--max-margin-top) * .7);
}

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

iframe
{
	max-width: 100%;
}

/* 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;
	padding: 96px 16px 0;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}

@media (min-width: 1024px)
{
	body
	{
		padding-left: 90px;
		padding-left: max(44px,
				 min(90px, 44px + (90 - 44) * ((100vw - 1024px) / (1920 - 1024))
		));

		padding-right: 90px;
		padding-right: max(44px,
				 min(90px, 44px + (90 - 44) * ((100vw - 1024px) / (1920 - 1024))
		));
	}
}


/* in mobile or tablet we do not want anything outside the body bounds scrollable */
@media (max-width: 1080px)
{
	/* This is a really odd break point (1080), but landscape ipad needed it here to prevent the page scrolling right to left */
	body
	{
		overflow-x: clip;
	}
}


p,
.title
{
	--min-font-size: 16;
	--fluid-start: 600;
	--fluid-end: 1280;
}

p.introText
{
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	line-height: 1.33;
	--min-font-size: 20;
	--max-font-size: 26;
}

/* 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: #E31B23;
	text-decoration: none;
}

a:hover,
a:focus
{
	color: #808080;
}

/* 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: #161616;
	font-weight: bolder; /* relative, works better if you have a light base font */
	line-height: 1.2;
}

h1,
#pageTitle
{
	font-family: 'HelveticaNeue_cn';
	color: #000;
	font-weight: 500;
	--min-font-size: 30;
	--max-font-size: 52;
}

h2
{
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;

	--max-margin-top: 45;
	--max-margin-bottom: 20;
	--max-font-size: 44;

}

#subContent h2
{
	text-transform: uppercase;

	--min-font-size: 17;
	--max-font-size: 23;
}

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

h3
{
	font-family: 'HelveticaNeue_cn';

	--max-font-size: 32;
	--max-margin-top: 53;
	--max-margin-bottom: 21;
}

h4
{
	font-family: 'HelveticaNeue_cn';
	color: #E0202C;
	font-weight: 500;
	--max-font-size: 26;
	--max-margin-top: 24;
	--max-margin-bottom: 16;
}

h5
{
	/*color: #8C98AC;*/

	--max-font-size: 22;
	--max-margin-top: 53;
	--max-margin-bottom: 16;
}

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

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

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

ol
{
	padding-left: 1em;
}

li
{
	padding: 0;
	margin: 10px 0em 10px 1.5em;
}

li ~ li
{
	margin-top: 10px;
}


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

@media (min-width: 1800px)
{
	/* 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) > 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;
	/*--min-margin-top: 0;
	--max-margin-top: 0;*/
}

/*#content a svg path
{
	fill: #0a80ca;
}
*/
#content a:hover svg path,
#content a:focus svg path
{
	fill: inherit;
}


#sideQuote
{
	max-width: 500px;
	padding: 34px;
	padding: max(20px,
				 min(34px, 20px + (34 - 20) * ((100vw - 767px) / (1600 - 767))
	));
	padding-bottom: 80px;
	margin-bottom: 50px;
	color: #ffffff;
	background: #2C3154;

	box-sizing: border-box;
}

#sideQuote p
{
	line-height: 1.29;
	font-family: 'HelveticaNeue_cn';
	font-weight: 200;

	--min-font-size: 26;
	--max-font-size: 36;

	--min-margin-bottom: 15;
	--max-margin-bottom: 26;
}

#sideQuote #attribution p
{
	--max-font-size: 32;
}

#sideQuote
{
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

@media (min-width: 1024px)
{
	body
	{
		padding-top: 135px;
	}
}

@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
*/

#cookieBanner::before,
#footer::before,
#homeNewsHeader::before,
#homeAnimation .content::before,
#practiceSpotlight::before,
#homeNewsSpotlight .content::before,
#bannerText::before,
ul.subNavList::before,
#staticNews::before,
#lowerSpotlights::before,
.upperSearchForm::before,
.newsroomList::before,
#homeNews::before,
#testimonialSlides::after,
#lowerSpotlights::after,
#homeAnimation::before,
#jumpNav::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;
}

#footer::before
{
	background: linear-gradient(170deg, rgba(227,226,221,1) 0%,rgba(227,226,221,1) 68%,rgba(234,233,229,1) 68%,rgba(234,233,229,1) 100%);

}


/* 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;
}


/* 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;
	font-size: 20px;
}

#resultPageLinks a,
#resultPageLinks span
{
	padding: 0 3px 2px;
	margin-left: 7px;
}

#resultPageLinks span
{
	border-bottom: 2px solid #8C98AC;
}

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

	--min-font-size: 20;
	--max-font-size: 24;
	--max-margin-top: 20;
	--max-margin-bottom: 24;

	color: #E31B23;
	padding-bottom: 18px;

	border-bottom: 1px solid #EAEAEA;
}

/* 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 button
{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.expandableHeading button::after
{
	content: '+';
	display: inline-block;
	vertical-align: middle;
	color: inherit;
	font-weight: 300;
	font-size: 22px;

	line-height: 1;
	text-align: center;
}

.expandableHeading.expanded
{
	--max-margin-bottom: 5;
	border-bottom: none;
}

.expandableHeading.expanded + div.expandableContent
{
	border-bottom: 1px solid #EAEAEA;
}

.expandableHeading.expanded button::after
{
	position: relative;
	top: -2px;
	right: 2px;
	transform: rotate(45deg);
	transform-origin: center;
	color: #E31B23;
}

.expandableHeading button:hover,
.expandableHeading button:focus
{
	color: #808080;
}

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

.extraItems.hasXrefItems
{
	/*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: 135px;*/
	height: 96px;
	padding: 0 20px;
	background: rgba(255,255,255,1);
	box-sizing: border-box;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}

/*body.scrolled #header
{
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
*/
#logo
{
	display: inline-block; /* inline-block to prevent logo from interfering with nav */
	position: relative;
	z-index: 9999;
	/*margin: 37px 0 0 0;*/
	margin-top: 30px;
	width: 60%;
	/*max-width: 309px;*/
	max-width: 187px;
}

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

#logo svg .st0
{
	fill: #E31B23;
}

#header #packet-widget
{
	position: absolute;
	right: 45px;
	top: 17px;
}

@media (min-width: 1024px)
{
	#header
	{
		height: 135px;
		padding: 0 45px;
	}

	#logo
	{
		max-width: 309px;
		margin-top: 37px;
	}
}

@media (min-width: 1600px)
{
	#header #packet-widget
	{
		right: 65px;
	}
}

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

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

#searchJump
{
	display: block;
	position: absolute;
	z-index: 10000;
	/*top: 51px;
		top: max(40px,
				 min(50px, 40px + (50 - 40) * ((100vw - 350px) / (500 - 350))
		));*/
	top: calc(50% - 15px);
	right: 80px;
	width: 37px;
	line-height: 1;
	cursor: pointer;
}

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

body.mobileActive #logo svg
{
	fill: #ffffff;
}

#searchJump:hover svg .st0,
#searchJump:focus svg .st0
{
	fill: #E31B23 !important;
	opacity: 1;
	transition: fill 0.3s, opacity 0.3s;
}

body.mobileActive #logo svg path.st0
{
	fill: #E31B23;
}

body.mobileActive #searchJump
{
	/*top: 27px;*/
	width: 25px;
}

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

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

#siteSearch
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0,0,0,.85) !important;

	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: 100vh;

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

#siteSearch > div
{
	margin: auto;

	width: 70vw;
	min-width: 290px;
	max-width: 1500px;
	margin-top: 20vh;

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

	border-bottom: 2px solid white !important;
}

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

#siteSearch div button
{
	position: static;
	margin-left: 2px;
	padding: 10px;
	border: 0;
	cursor: pointer;
}

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

#siteSearch input#searchtext2
{
	width: 80%;
	padding: 2px 2px 2px 5px;
	border: 0;
	font:inherit;
	font-size: 30px;
	font-weight: bold;
	min-height: auto;

	color: white;

	flex-grow: 1;
}

#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: calc(20vh + 54px);
	left: calc(50% - 50vw + 15vw);

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

@media (max-width: 1023px)
{
	#searchJump
	{
		width: 28px;
	}
}

@media (max-width: 479px)
{
	#searchPopup
	{
		left: calc(50% - 145px);
	}
}

.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;
}

@media (max-width: 580px)
{
	.searchPopup
	{
		left: calc(50% - 145px);
	}
}

.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;
}

#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;
}


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

#banner
{
	position: relative;
	width: 100%;
	margin-bottom: 90px;
	margin-bottom: max(40px,
				 min(90px, 40px + (90 - 40) * ((100vw - 767px) / (1920 - 767))
	));
	background: #000000;
}

/*#banner::before
{

	background: linear-gradient(10deg, rgba(227,27,35,1) 0%,rgba(227,27,35,1) 35%,rgba(240,240,240,1) 35%,rgba(240,240,240,1) 100%);
}*/

/*

 banner mask?
#bannerImage::after
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0,0,0,0.50) 30%, transparent);
}
*/

body.noUpperMargins #banner
{
	margin-bottom: 0;
}

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

#bannerImage > picture > img
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

#bannerContent
{
	position: relative;
	width: 100%;

	color: #fff;
	z-index: 1;
}

#bannerContent #pageTitle
{
	color: inherit;
}

#bannerText::before
{
	background: rgba(240,240,240,1);
	/*background: linear-gradient(8deg, rgba(227,27,35,1) 0%,rgba(227,27,35,1) 45%,rgba(240,240,240,1) 45%,rgba(240,240,240,1) 100%);*/
}

body.hasBannerImage #bannerText::before
{
	display: none;
}

#bannerText::after
{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	display: block;
	width: 100vw;
	max-width: 1630px;
	left: calc(50% - 50vw);
	height: 100%;
	background: #E31B23;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	z-index: 1;
	transition: clip-path 400ms ease;
}

#bannerText
{
	position: relative;
	height: 40vw;
	max-height: 301px;
}

#bannerText #pageTitle
{
	/*opacity: 0;*/
	transition: all 250ms ease 50ms;
}

/*#bannerText.transitionNow::after*/
#bannerText::after
{
	clip-path: polygon(0 20%, 100% 50%, 100% 100%, 0 100%);
}

#bannerText.transitionNow #pageTitle
{
	opacity: 1;
}

#bannerText > div
{
	position: absolute;
	width: 100%;
	bottom: 0;
	z-index: 2;
}

#bannerContent
{
	max-width: 1350px;
	margin: 0 auto;
}

/*#bannerContent *
{
	color: inherit;
}*/

#bannerVideo
{
	position: relative;
	width: 100vw;
	height: 78vw;
	left: calc(50% - 50vw);
	overflow: hidden;
}

#bannerVideo .xrefMultimediaList ul
{
	display: block;
}

#bannerVideo .title
{
	font-size: 0px;
}

#bannerVideo li
{
	margin: 0;
}

#bannerVideo li a
{
	display: block;
	height: 100%;
}


#bannerVideo img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

#bannerVideo a
{
	display: block;
	position: absolute;
	z-index: 10;
	bottom: 28px;
	bottom: max(20px,
				 min(28px, 20px + (28 - 20) * ((100vw - 350px) / (919 - 350))
	));
	left: 40px;
	left: max(20px,
				 min(34px, 20px + (34 - 20) * ((100vw - 350px) / (919 - 350))
	));
	width: 49px;
	height: 49px;
	font-size: 0px;
	background: url('../i/icon-play-btn.svg') no-repeat; /* data-uri */
	background-size: 49px;
}


@media (min-width: 600px)
{
	#bannerVideo
	{
		position: absolute;
		right: 0;
		bottom: -20px;
		left: auto;
		width: 40vw;
		max-width: 250px;
		height: auto;
		z-index: 10;
	}
}

@media (min-width: 768px)
{
	#bannerText::after
	{
		width: 79vw;
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	}

	/*#bannerText.transitionNow::after */
	#bannerText::after
	{
		clip-path: polygon(0 16%, 100% calc(100% - 3px), 100% 100%, 0 100%);
	}
}

@media (min-width: 920px)
{
	#bannerVideo
	{
		z-index: 10;
		/*width: 29.65%;*/
		width: 25%;
		/*top: max(15px,
					 min(235px, 15px + (235 - 15) * ((100vw - 767px) / (1600 - 767))
		));*/
		top: max(80px,
					 min(120px, 80px + (120 - 80) * ((100vw - 767px) / (1600 - 767))
		));
		bottom: auto;
		max-width: 100%;
	}
}


#pageExtras,
#pdfPacketWrapper
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#pageExtras > *:not(:last-child)
{
	margin-right: 22px;
}

#pageExtras #pdfLink,
#pageExtras .socialshare_button
{
	display: block;
	width: 22px;
}

#pageExtras svg
{
	display: block;
	width: 100%;
	height: auto;
}

#pageExtras a svg path
{
	fill: #000000;
}

#pageExtras a:hover svg path
{
	fill: #E31B23;
}

@media (min-width: 920px)
{
	#pageExtras
	{
		position: absolute;
		top: -30px;
		right: 0;
	}
}

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

#topNav
{
	position: relative;
	line-height: normal;
	font-weight: 300;
}

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

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

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

#topNav li > a
{
	display: block;
	padding: 10px 8px;

	margin: 0 16px;

	/*padding-left: 24px;
	padding-left: max(10px,
			 min(24px, 10px + (24 - 10) * ((100vw - 1280px) / (1920 - 1280))
	));

	padding-right: 24px;
	padding-right: max(10px,
			 min(24px, 10px + (24 - 10) * ((100vw - 1280px) / (1920 - 1280))
	));*/
}

#topNav li.current > a
{
	color: #E31B23;
}

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

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

#topNav > 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);
}
*/




/* 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: 100%;
		height: 100vh;
		padding: 160px 0px 10px;
		background: #141414;
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;

		font-family: 'HelveticaNeue_cn';
		font-weight: 500;
		font-size: 42px;
		font-size: max(32px,
				 min(42px, 32px + (42 - 32) * ((100vw - 767px) / (1600 - 767))
		));
		line-height: 1.2;
	}


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

	#mainNav::before
	{
		display: none;
	}

	#mainNav > ul,
	#mainNav li ul
	{
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
		max-width: 520px;
		max-width: max(350px,
				 min(520px, 350px + (520 - 350) * ((100vw - 767px) / (1450 - 767))
		));
		/*width: 40vw;*/ /* put a max width on lists even though the parent expands the full viewport */
	}

	#mainNav li ul
	{
		padding-left: 20px;
	}

	#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
	{
		display: block;
		color: #ffffff;
		position: relative;
		padding-left: 1px;
	}

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

	#mainNav > ul > li
	{
		margin: 0 0 15px;
	}

	#mainNav > ul > li#navButton-contact
	{
		margin-top: 55px;
	}

	#mainNav > ul > li#navButton-contact,
	#mainNav > ul > li#navButton-subscribe,
	#mainNav > ul > li#navButton-client
	{
		text-transform: none;
		font-size: 30px;
		font-size: max(24px,
				 min(30px, 24px + (30 - 24) * ((100vw - 767px) / (1600 - 767))
		));
	}

	#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: 10px 0 0 0;
		text-transform: none;
		font-size: max(20px,
				 min(26px, 20px + (26 - 20) * ((100vw - 767px) / (1600 - 767))
		));
	}

	#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: 100px;
	}

	#mainNav #subNavBack a
	{
		position: relative;
		margin-left: 1px;
		padding-left: 15px;
		font-size: 22px;
	}

	#mainNav #subNavBack a::before
	{
		content: '‹';
		position: absolute;
		left: 0;
		top: 5px;
		font-size: 24px;
		font-weight: 300;
		line-height: 0.85rem;
	}

	#mainNav ul ul li.subNavHeader
	{
		margin-top: 12px;
		margin-bottom: 20px;
		font-size: .8em;
	}


	/* Mobile Nav 'Hamburger' Button */

	button#navToggle
	{
		display: block;
		position: absolute;
		z-index: 9999;
		top: 33px;
		right: 20px;
		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;*/
	}

	/*.mobileNav.isActive:hover,
	.mobileNav.isActive:focus,
	.mobileNav:hover,
	.mobileNav:focus
	{
		opacity: .7;
	}
*/
	.mobileNavBox
	{
		position: relative;
		display: inline-block;
		width: 44px;
		height: 32px;
	}

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

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

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

	button#navToggle:hover .mobileNavBox span,
	button#navToggle:focus .mobileNavBox span
	{
		background: #E31B23;
	}

	.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: 14px;
		transition: top .1s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavSpring .mobileNavBox :last-child
	{
		top: 28px;
		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);
	}
/*}*/

@media (max-width: 1023px)
{


	.mobileNavBox span
	{
		width: 32px;
	}

	.mobileNavSpring .mobileNavBox :first-child
	{
		top: 10px;
	}

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

#navSocial
{
	width: 100%;
	max-width: 520px;
	max-width: max(350px,
			 min(520px, 350px + (520 - 350) * ((100vw - 767px) / (1450 - 767))
	));
	margin-top: 20px;
}

#navSocial ul
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#navSocial ul li:not(:last-child)
{
	margin-right: 30px;
}

#navSocial svg path
{
	fill: #ffffff;
}

#navSocial svg polygon
{
	fill: black;
}

#navSocial a:hover svg path,
#navSocial a:focus svg path
{
	fill: #E31B23;
}

@media (min-width: 768px)
{

	body.mobileActive #searchJump
	{
		width: 38px;
		top: 29px;
	}

	.mobileNav.isActive .mobileNavBox span
	{
		width: 45px;
	}
}

@media (min-width: 1024px)
{
	body.mobileActive #searchJump
	{
		top: 49px;
	}
}

/* Desktop Navigation ------------------------------------------------> */
#topNav
{
	display: none;
}

@media (min-width: 1280px)
{
	#topNav
	{
		display: flex;
		position: absolute;
		z-index: 9997;
		top: 49px;

		/* body's padding minus menu item's padding */
		right: 170px;

		height: 86px;
	}

	#topNav > ul,
	#topNav > ul > li
	{
		display: inline-block;
		background: none;
		height: 100%;
	}

	/* we want real hover, not fake touch-hover */
	html:not([data-whatintent="touch"]) #topNav > ul :hover > ul,
	#topNav > ul .touchOpen > ul,
	#topNav > 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 */
	#topNav > ul .keepOpen > ul:focus-within
	{
		display: block;
	}

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

	#topNav > ul ul
	{
		/*** center the drops ***/
		left: calc(50% - 120px);
		width: 307px;

		background: #ffffff;
		padding: 52px 63px 37px;
		box-shadow: 1px 0 3px 0 rgba(0,0,0,.1);
		box-sizing: border-box;
	}

	#topNav > ul > li > a
	{
		height: 100%;
		white-space: nowrap;
		font-size: 22px;
		font-size: max(18px,
				 min(22px, 18px + (22 - 18) * ((100vw - 1280px) / (1920 - 1280))
		));
		box-sizing: border-box;
	}

	/*#topNav > ul:first-of-type > li > a
	{
		text-transform: uppercase;
	}*/

	#topNav > ul > li:hover > a,
	#topNav > ul > li:focus > a
	{
		background: none;
		color: #808080;
		border-bottom: 2px solid #E31B23;
	}

	#topNav > ul > li.current > a::after,
	#topNav > ul > li > a:hover::after,
	#topNav > ul > li > a:focus::after
	{
		/*content: '';

		height: 2px;
		background: #000000;

		position: absolute;
		bottom: 0;
		left: 1.8vw;
		right: 1.8vw;

		z-index: 99999999;*/
	}

	/* second-level links */
	#topNav li li > a
	{
		color: #575252;
		padding: 0;
	}

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

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

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

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

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

		top: 0;
		left: 100%;
	}

	/*** split menu styles ***/
	#topNav > 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 */
	#topNav > ul + ul
	{
		position: absolute;
		right: 2.8vw;
		top: -50px;
		width: auto;
	}

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

	#topNav > ul + ul > li > a:first-child::after
	{
		left: 0;
		right: 0;
	}

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

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


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

	#topNav #navButton-practices ul
	{
		width: 100vw;
		max-width: 600px;
		box-sizing: border-box;
	}

	#navButton-practices > ul
	{
		columns: 2;
	}

	#topNav #navButton-practices a
	{
		white-space: normal;
		break-inside: avoid;
	}

	/* sub practices *\/
	#navButton-practices ul ul
	{
		display: block;
		position: static;
		width: auto;
		padding: 0;
	}

	/* third level practices *\/
	#navButton-practices ul ul ul
	{
		padding-left: 1em;
	}

	#navButton-practices ul ul a::before
	{
		content: '– ';
	}
	*/

	button#navToggle
	{
		right: 60px;
	}
}




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

@media (min-width: 1024px)
{
	#searchJump
	{
		right: 44px;
	}

	button#navToggle
	{
		right: 100px;
		top: 54px;
	}
}

@media (min-width: 1600px)
{

	#topNav
	{
		right: 192px;
	}

	#searchJump
	{
		right: 66px;
	}

	button#navToggle
	{
		right: 122px;
	}
}

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

ul.subNavList
{
	position: relative;
	padding: 90px 0 20px;
	margin: 0;
	font-size: 34px;
	font-size: max(28px,
				 min(34px, 28px + (34 - 28) * ((100vw - 767px) / (1920 - 767))
	));
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	background: #F5F5F5;
}

ul.subNavList::after
{

	position: absolute;
	left: 0;
	top: 48px;
	font-size: 16px;
	content: 'Explore';
	text-transform: uppercase;
}

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

ul.subNavList > li > a
{
	display: inline-block;
	position: relative;
	padding-left: 37px;
}

ul.subNavList li ul
{
	padding-left: 60px;
}

ul.subNavList li li
{
	font-size: 28px;
	font-size: max(24px,
				 min(28px, 24px + (28 - 24) * ((100vw - 767px) / (1920 - 767))
	));
	font-weight: 300;
}

ul.subNavList ul
{
	padding-left: 10px;
	/*display: none;*/
}

ul.subNavList li a
{
	color: inherit;
}

ul.subNavList li.here,
ul.subNavList li.hereParent
{
	color: #E31B23;
}


/* removed per jessica */
/* added back in per client */
ul.subNavList > li.here > a::before,
ul.subNavList li.hereParent > a::before
{
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 5px);
	content: '';
	width: 23px;
	height: 10px;
	background: #DF1A20;
	clip-path: polygon(0px 0, 100% 0%, 100% 0, 0px 100%);
}

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

@media (min-width: 920px)
{
	ul.subNavList
	{
		padding-top: 20px;
		background: none;
	}

	ul.subNavList::after
	{
		display: none;
	}

	ul.subNavList li.here > a::before,
	ul.subNavList li.hereParent > a::before
	{
		display: none;
	}
}

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

#tabLinks
{
	margin: 1.5em 0 2em 0;
	border-bottom: 1px solid #003C5B;
}

#tabLinks a
{
	display: inline-block;
	position: relative;
	top: 1px;
	margin-right: 2px;
	padding: .5em 1em;
	border: 1px solid #003C5B;
}

#tabLinks .current
{
	border-bottom-color: white;
	color: inherit;
	text-decoration: none;
	cursor: default;
}

.contentSection
{
	display: none;
}

.sectionTitle
{
	display: none;
}

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

@media (max-width: 1300px)
{
	#tabLinks a
	{
		margin-right: 1px;
		padding: .4em 0.5em;
		font-size: 17px;
	}
}

@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: #ddd;
		color: #666;

		--min-font-size: 26;
		--max-font-size: 36;

		box-sizing: border-box;
		text-decoration: none;
		cursor: pointer;
	}

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

	h2.sectionTitle::after
	{
		content: '+';
		position: absolute;
		top: 17px;
		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: 10px 0 10px 0;
	}

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


/* Jump nav -------------------------------------------------------> */

/*#jumpNav
{
	display: none;
}*/

#jumpNav
{
	position: relative;
	order: 3;
	background: #F5F5F5;
}

#jumpNav > ul
{
	display: none;
	padding-top: 5px;
}

#jumpNav ul,
#jumpNav li
{
	margin: 0;
	position: relative;
	list-style: none;
	font-size: 26px;
	font-size: max(20px,
				 min(26px, 20px + (26 - 20) * ((100vw - 920px) / (1600 - 920))
	));

	padding-left: 0;
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	color: #808080;
}

#jumpNav li
{
	padding-left: 46px;
	margin: 0 0 18px !important;
	line-height: 1.2;
}

#jumpNav li.current
{
	color: #000000;
}

#jumpNav li.current::before
{
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 5px);
	content: '';
	width: 23px;
	height: 10px;
	background: #DF1A20;
	clip-path: polygon(0px 0, 100% 0%, 100% 0, 0px 100%);
}

#jumpNav li a
{
	color: inherit;
}

#jumpNav li a:hover,
#jumpNav li a:focus
{
	color: #E31B23;
}

#mediaContact
{
	margin-bottom: 30px;
}

#mediaName
{
	font-family: 'HelveticaNeue_cn';
	font-size: 24px;
	font-size: max(20px,
				 min(24px, 20px + (24 - 20) * ((100vw - 767px) / (1920 - 767))
	));
	font-weight: 500;
}

#mediaEmail
{
	color: #E31B23;
}

@media (min-width: 920px)
{

	#jumpNav
	{
		position: -webkit-sticky;
		position: sticky;
		top: 150px;
		padding-top: 7px;
		padding-bottom: 100px;
		z-index: 100;
		background: none;
	}

	#jumpNav::before
	{
		display: none !important;
	}

	#jumpNav > ul
	{
		display: block;
		margin-bottom: 65px;
	}
}


/* Lower spotlights  */

#lowerSpotlights,
#staticNews
{
	clear: both;
	order: 5;
}

#staticNews
{
	position: relative;
	width: 100vw;
	left: calc(50% - 50vw);
	padding: 36px;

	padding-top: 97px;
	padding-top: max(36px,
				 min(97px, 36px + (97 - 36) * ((100vw - 767px) / (1600 - 767))
	));

	padding-bottom: 85px;
	padding-bottom: max(36px,
				 min(85px, 36px + (85 - 36) * ((100vw - 767px) / (1600 - 767))
	));

	margin: 43px 0 0;
	background: #f0efed;
	box-sizing: border-box;
}

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

#staticNews ul,
#lowerSpotlights ul
{
	display: grid;
	grid-gap: 22px;
	max-width: 1594px;
	/*padding: 0 20px;*/
	margin: 0 auto;
}

.staticNewsMore
{
	max-width: 1594px;
	margin: 0 auto 26px;
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

#lowerSpotlights ul
{
	max-width: 1370px;
}


#staticNews li a
{
	display: block;
	padding: 44px 44px 70px;
	height: 100%;
	background: #ffffff;
	color: #000000;
	box-sizing: border-box;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition: background 500ms ease,
				color 500ms ease,
				clip-path 500ms ease;
}

#staticNews .info
{
	margin: 0 0 8px;
	font-weight: 500;
	font-family: 'HelveticaNeue_cn';
	font-size: 19px;
	font-size: max(17px,
				 min(19px, 17px + (19 - 17) * ((100vw - 767px) / (1600 - 767))
	));
	color: #E31B23;
}

#staticNews .info span + span::before
{
	content: '|';
	margin: 0 10px;
}

#staticNews .title
{
	--min-font-size: 17;
	--max-font-size: 20;
	color: inherit;

}



#staticNews li a:hover,
#staticNews li a:focus
{
	background: #000000;
	color: #ffffff;
}

#staticNews li:hover a,
#staticNews li:focus a
{

	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 63px), 0 100%);
}

#staticNews li a:hover .info,
#staticNews li a:focus .info
{
	/*color: #C3C3C3;*/
}


#lowerSpotlights
{
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
	padding: 35px;
	padding-top: 85px;
	padding-top: max(48px,
				 min(85px, 48px + (85 - 48) * ((100vw - 767px) / (1600 - 767))
	));
	padding-bottom: 85px;
	padding-bottom: max(48px,
				 min(85px, 48px + (85 - 48) * ((100vw - 767px) / (1600 - 767))
	));
	background: #000000;
	color: #ffffff;
	box-sizing: border-box;
}

#lowerSpotlights ul
{
	grid-template-columns: auto;
	grid-gap: 118px;
	grid-gap: max(40px,
				 min(118px, 40px + (118 - 40) * ((100vw - 767px) / (1920 - 767))
	));
}

#lowerSpotlights .image
{
	position: relative;
	margin: 0 0 28px;
}

#lowerSpotlights .image img
{
	display: block;
	width: 100%;
	height: auto;
}

#lowerSpotlights a .image::after,
#bioSubnav li a::after
{
	content: '';
	position: absolute;
	display: block;
	top: 1px;
	left: 1px;
	width: 100%;
	height: 100%;
	background: #000000;

	clip-path: polygon(15% 100%, 100% 100%, 100% 100%, 0 100%);
	transition: all 250ms ease;
}

#bioSubnav li a::after
{
	background: #ffffff;
}

#lowerSpotlights a:hover .image::after,
#lowerSpotlights a:focus .image::after,
#bioSubnav li a:hover::after,
#bioSubnav li a:focus::after
{
	clip-path: polygon(15% 100%, 100% 70%, 100% 100%, 0 100%);
}

#lowerSpotlights a
{
	color: inherit;
}

#lowerSpotlights .title
{
	margin-bottom: 5px;
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
}

#lowerSpotlights .title,
#lowerSpotlights .abstract
{

	--min-font-size: 17;
	--max-font-size: 20;
}


/* Slanted spotlight thing */

#lowerSlantedSpotlight
{
	margin-top: 20px;
}

.slantedSpotlight
{
	order: 4;
	margin-bottom: 117px;
	margin-bottom: max(70px,
				 min(117px, 70px + (117 - 70) * ((100vw - 768px) / (1920 - 768))
	));
}

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

.slantedSpotlight .imageBox
{
	position: relative;
	margin: 0 0 30px;
}

.slantedSpotlight .imageBox::before
{
	position: absolute;
	left: 6%;
	top: 8%;
	content: '';
	display: block;
	width: 88%;
	height: 84%;
	background: #8C98AC;
	transform: skewY(7deg);
}

.slantedSpotlight .image
{
	clip-path: polygon(0 11%, 100% 0, 100% 89%, 0 100%);
}

.slantedSpotlight .image img
{
	display: block;
	width: 100%;
	height: auto;
}

.slantedSpotlight .title
{
	font-family: 'HelveticaNeue_cn';
	--min-font-size: 32;
	--max-font-size: 44;
	font-weight: 500;
	line-height: 1.2;
}

.slantedSpotlight .standardbutton
{
	margin-top: 35px;
}

@media (min-width: 768px)
{

	#staticNews ul,
	#lowerSpotlights ul
	{
		/*grid-template-columns: repeat(2, 1fr);*/
		grid-template-columns: 1fr 1fr 1fr; /* changed per logan */
	}

	.slantedSpotlight li
	{
		display: flex !important;
		align-items: center;
	}

	.slantedSpotlight .imageBox
	{
		flex: 0 1 650px;
	}

	.slantedSpotlight .content
	{
		flex: 0 1 650px;
		margin-left: 56px;
	}

}

@media (min-width: 1024px)
{

	#lowerSpotlights ul
	{
		grid-template-columns: repeat(3, 1fr);
	}

	#lowerSpotlights::after
	{
		z-index: 10;
		left: auto;
		right: 0;
		transition: right 750ms ease;
		background: #ffffff;
	}

	#lowerSpotlights.transitionNow::after
	{
		right: 100vw;
	}
}

@media (min-width: 1280px)
{
	#staticNews ul
	{
		grid-template-columns: repeat(4, 1fr);
		padding: 0 40px;
	}

	.staticNewsMore
	{
		padding: 0 40px;
	}

	.staticNewsMore
	{
		margin-bottom: 0;
	}

	.staticNewsMore a
	{
		position: absolute;
		top: 50px;
		top: max(15px,
					 min(50px, 15px + (50 - 15) * ((100vw - 1024px) / (1920 - 1024))
		));
	}
}

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

#content
{
	position: relative;
	max-width: 1350px;
	min-height: 350px;
	margin: 0 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;
}

#subNav
{
	position: relative;
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 0 0.5rem 0;
	box-sizing: border-box;
	order: 4;
}

#subContent
{
	position: relative;
	width: 100%;
	margin: 1rem 0 0 0;
	padding: 1rem 0 0.5rem 0;
	box-sizing: border-box;
	/*border-top: 1px solid #e4e4e4;*/ /* this mandatory for mobile at least */
}

#upperContent
{
	margin-bottom: 15px;
}

body.noUpperMargins #mainContent
{
	margin-top: 0;
}

#mainContent
{
	margin-bottom: 50px;
}

@media (min-width: 920px)
{

	#content
	{
		margin: 2.5rem auto 0;
	}

	body.noUpperMargins #content
	{
		margin-top: 0;
	}

	#mainContent:not(:only-child)
	{
		float: left;
		width: calc(100% - 29.65% - 96px);
	}

	body.flextext #mainContent
	{
		float: left;
		width: calc(100% - 29.65% - 96px);
	}

	#mainContent
	{
		margin-bottom: 50px;
	}

	body.fullWidth #mainContent
	{
		width: 100%;
		margin-top: 0;
		float: none;
	}

	#subContent
	{
		margin-bottom: 76px;
	}

	#subContent,
	#subNav
	{
		float: right;
		clear: right;
		/*width: 29.65%;*/
		width: 27.5%;
	}

	#jumpNav
	{
		float: left;
		clear: left;
		width: 22.5%;
	}

	body.hasBannerVideo #subNav
	{
		/*margin-top: max(1px,
					 min(200px, 1px + (200 - 1) * ((100vw - 920px) / (1400 - 767))
		));*/

		margin-top: max(1px,
					 min(150px, 1px + (150 - 1) * ((100vw - 920px) / (1400 - 767))
		));

	}
}

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

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
	}

}

#subContent li
{
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	line-height: 1.4;
}

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)*/
.expandableList .results_list > li:nth-child(n+4)
{
	display: none;
}

/* 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;
}

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

#area_bio ul.results_list,
#industry_bio ul.results_list,
#office_bio ul.results_list
{
	margin: 0 0 8px 0;
}

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


/* View More type links */


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


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

form
{
	position: relative;
	margin: 0;
	padding: 0;
}

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

form > div
{
	display: flex;
	flex-flow: row wrap;
	gap: 11px;
}

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

@media (min-width: 600px)
{
	form > div > div
	{
		width: calc(50% - 5.5px);
	}
}

@media (min-width: 920px)
{
	form > div > div
	{
		width: calc((100%/3) - 8px);
	}
}

@media (min-width: 1500px)
{
	form > div > div
	{
		width: calc((100%/4) - 9px);
	}
}

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

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

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

.packet-internal form > div.checkboxWrapper
{
	display: block;
	padding: 0 0 18px 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
{
	margin-top: 7px;
	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 */
input[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: 48px; /* appease IE11 */
	margin: 0;
	/* padding: 1px 7px; */
	padding-left: 24px;
	vertical-align: top;
	color: #666766;
	background-color: #fff;
	border: 1px solid #d6d6d6;
	font: 300 18px/1.8 HelveticaNeue, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	border-radius: 0;
}

.customSelect
{
	padding-left: 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: 9px 24px 0;
	color: #666766;
	font: 300 18px/1.8 HelveticaNeue, 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: 0;
	z-index: 5;
	padding: 2px 4px 0 2px;
	background-color: #ffffff;
	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;
}

 .customSelect::after
{
	content: '';
	display: block;
	position: absolute;
	top: 18px;
	right: .75em;

	width: 0;
	height: 0;
	border-style: solid;
	border-width: .45em .45em 0 .45em;
	border-color: currentColor transparent transparent transparent;
}

/* 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 0px;
}

/* 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;
	padding: 9px 24px 0;
	box-sizing: border-box;
}

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;
}

input[type=submit],
::-webkit-file-upload-button,
a.viewAll,
.reviseButton a
{
	box-sizing: border-box;
	width: auto;
	height: 34px;
	margin: 2px 0 0px 0;
	padding: 1px 14px 1px 14px;
	border: 0 solid #d6d6d6;
	background: #000;
	color: #fff;
	font: normal 14px/1.8 Helvetica, Arial, sans-serif;
	cursor: pointer;
	vertical-align: top;
	text-transform: uppercase;
}

a.clearAll
{
	float: right;
}

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

input[type=submit]:hover,
input[type=submit]:focus,
a.viewAll:hover,
a.viewAll:focus,
.reviseButton a:hover,
.reviseButton a:focus
{
	background: #868686;
	text-decoration: none;
}


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

.results_criteria li
{
	margin: 0;
	list-style: none;
}

.results_criteria + p
{
	margin-top: 5px;
}



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

#emailField
{
	display: none;
}

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

.upperSearchForm
{
	position: relative;
	padding: 63px 0 44px;

	background: #101010;
	color: #ffffff;
}

.upperSearchForm button
{
	cursor: pointer;
	text-transform: uppercase;
	background: none;
	border: none;
	color: #ffffff;
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}

.upperSearchForm button svg
{
	position: relative;
	top: 3px;
	fill: currentColor;
	width: 19px;
	height: 19px;
	margin-left: 10px;
}

.upperSearchForm button:hover,
.upperSearchForm button:focus
{
	color: #cecece;
}

.upperSearchForm input
{
	border: none;
}

/* 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;
}


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

#footer
{
	position: relative;
	margin: 0;

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

	padding-bottom: 32px;

	padding-left: 0;
	padding-right: 0;

	/*padding-left: 36px;
	padding-left: max(0px,
			 min(36px, 0px + (80 - 0) * ((100vw - 767px) / (1920 - 767))
	));

	padding-right: 36px;
	padding-right: max(0px,
			 min(36px, 0px + (36 - 0) * ((100vw - 767px) / (1920 - 767))
	));*/


	box-sizing: border-box;
	color: #696969;
	font-size: 17px;

}

#footer a
{
	color: #000000;
}

#footer a:hover,
#footer a:focus
{
	color: #000000;
}

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


ul#footerLinks li
{
	white-space: nowrap;
}

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


#footerOffices
{
	max-width: 1080px;
	margin-bottom: 83px;
	margin-top: 48px;
	margin-top: max(25px,
			 min(48px, 25px + (48 - 25) * ((100vw - 767px) / (1600 - 767))
	));
	line-height: 1.2;
}

#footerOffices ul,
#footerOffices ul li
{
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
}

#footerOffices ul
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	grid-gap: min(5vw, 20px);
}

#footerOffices .title
{
	font-family: 'HelveticaNeue_cn';
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: 500;
}

#footerOffices .title a:hover,
#footerOffices .title a:focus
{
	color: #808080;
}

#footerSocial
{
	margin: 0 0 27px;
}

#footerSocial ul
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#footerSocial li a
{
	display: block;
	height: 21px;
}

#footerSocial li a svg
{
	display: block;
	width: auto;
	height: 100%;
}

#footerSocial li a svg path
{
	fill: #E31B23;
}

#footerSocial li a:hover svg path,
#footerSocial li a:focus svg path
{
	fill: #000000;
}

#footerSocial li:not(:last-child)
{
	margin-right: 33px;
}

#footerLinks
{
	display: flex;
	flex-wrap: wrap;
}

#footerLinks li:not(:last-child)::after
{
	content: '|';
	margin: 0 9px;
}

#footerLinks a:not(:hover):not(:focus)
{
	color: #696969;
}

@media (min-width: 768px)
{
	#footerSocial ul,
	#footerLinks
	{
		justify-content: flex-end;
	}
}

@media (min-width: 1525px)
{
	#footerLinks li:first-child
	{
		position: absolute;
		left: 0;
		/*left: 36px;
		left: max(0px,
				 min(36px, 0px + (36 - 0) * ((100vw - 767px) / (1920 - 767))
		));*/
	}

	#footerLinks li:first-child::after
	{
		content: '';
	}

	/*#footerOffices
	{
		max-width: 90%;
	}*/
}


/* 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: flex;
	flex-wrap: wrap;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99999999;
	width: 60vw;
	height: auto;
	background: #fff;
	border: 12px solid #cecece;
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
}

.popupPlayerWrapper .position
{
	color: #333333;
}

/* might want something a little smaller and centered
.inlineMultimediaPlaceholder
{
	max-width: 75%;
	margin: 0px auto;
}
*/

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

.mediaPlayer
{
	position: relative;
	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
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 99999999;
		width: 90vw;
	}
}

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

.popupPlayerWrapper a.popupShareButton
{
	z-index: 25;
	top: -15px;
	right: 15px;
}

.popupPlayerPlaylist
{
	display: none;
	flex-basis: 100%;
	position: relative;
	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;
	max-width: 250px;
	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 h4
{
	color: inherit;
}

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

.popupPlayerSidebar > div h2,
.popupPlayerSidebar > div h2.expandableHeading
{
	font-size: 0.9rem;
	margin-left: 0px;
	margin-right: 0px;
}

.popupPlayerSidebar .expandableHeading
{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	color: #333333;
	pointer-events: none;
}

.popupPlayerSidebar .expandableHeading:hover
{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	color: inherit;
	pointer-events: none;
}


.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;
	max-width: 100%;
}

.popupPlayerSidebar
{
	color: #000000;
}

.popupPlayerSidebar #item_bio ul,
.popupPlayerSidebar #item_area ul,
.popupPlayerSidebar #item_industry ul
{
	display: block;
}

.popupPlayerSidebar #item_bio ul li,
.popupPlayerSidebar #item_area ul li,
.popupPlayerSidebar #item_industry ul li
{
	margin-bottom: 20px;
}

@media (min-width: 600px)
{
	.itemMultimediaList ul.results_list,
	.xrefMultimediaList ul
	{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
		grid-gap: 7px;
	}

	#subContent .itemMultimediaList ul.results_list,
	#subContent .xrefMultimediaList ul
	{
		display: block;
	}
}

/* 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);
	margin: 20px 20px 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: 100%;
}

#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,
.xrefMultimediaList ul li .photo
{
	margin: 0 0 20px;
	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: inline-block;*/
	display: block;
	position: relative;
	width: 100%;
}


#item_itemvideo .photo
{
	max-width: 500px;
}

.popupPlayerWrapper.inlinePlayer .popupPlayerPlaylist ul li .photo a.triggerPopupPlayer img
{
	width: 100%;
	object-fit: cover;
}

/* 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)
{
	.inlineMultimediaPlaceholder
	{
		max-width: none;
		margin: 0px;
	}

	#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;
	}

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

	.popupPlayerWrapper.inlinePlayer .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%;
	}
}


/* Quote */

#quote
{
	position: relative;
	padding: 20px;
	margin: 30px 0 40px;
	background: #f7f6f4;

	font-family: 'HelveticaNeue_cn';

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

	padding-top: 100px;

	padding-bottom: 80px;
	padding-bottom: max(30px,
				 min(80px, 30px + (80 - 30) * ((100vw - 767px) / (1920 - 767))
	));

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

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

	box-sizing: border-box;
}

#quote::before
{
	content: '';
	position: absolute;
	left: -22px;
	top: 41px;
	display: block;
	width: 236px;
	height: 40px;

	clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
	background: #8c99ac;
}

#quoteText
{
	font-style: italic;
	margin-bottom: 20px;
	color: #2C3154;
	font-size: 30px;
	font-size: max(20px,
				 min(30px, 20px + (30 - 20) * ((100vw - 767px) / (1920 - 767))
	));
	line-height: 1.4;
}

#mainContent #attribution
{
	color: #2C3154;
	font-size: 28px;
	font-size: max(18px,
				 min(28px, 18px + (28 - 18) * ((100vw - 767px) / (1920 - 767))
	));
}


/* Tile Spotlight */

#tileSpotlight
{
	margin-top: 21px;
	margin-bottom: 45px;
}

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

#tileSpotlight ul li a
{
	position: relative;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition: clip-path 500ms ease;
}

#tileSpotlight ul li a:hover,
#tileSpotlight ul li a:focus
{
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 63px), 0 100%);
}

#tileSpotlight a,
#tileSpotlight ul li
{
	position: relative;
	display: block;
}

#tileSpotlight a.sp_pencil
{
	position: absolute;
	z-index: 10;
}

#tileSpotlight .image img
{
	display: block;
	width: 100%;
	height: auto;
}

#tileSpotlight .image::after
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: .27;
}

#tileSpotlight .content
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

#tileSpotlight .title
{
	width: 100%;
	text-align: center;
	font-family: 'HelveticaNeue_cn';
	font-size: 24px;
	color: #ffffff;
	font-weight: 500;
}

@media (min-width: 768px)
{

	#tileSpotlight ul
	{
		display: flex;
		flex-wrap: wrap;
		grid-gap: 7px;
	}

	#tileSpotlight ul li
	{
		width: calc(50% - 7px);
	}
}


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

#cookieBanner
{
	display: none;
	position: sticky;
	z-index: 9999;
	bottom: 0;
	max-width: 1100px;
	overflow: visible !important;
	margin: 0 auto;
	padding: 1rem 0px;
	color: white;
}

#cookieBanner::before
{
	background: rgba(0,0,0,.85);
}

/* if you need a specific color behind the cookie banner, use this along with
	adjustCookieBanner() in js/default.js */
/**
#cookieBanner
{
	--overFooter: 50%;
}

#cookieBanner::before
{
	background: rgba(0,0,0,.85) linear-gradient(to top, red var(--overFooter), transparent var(--overFooter));
}
/**/

#cookieBanner > div
{
	position: relative;
	overflow: hidden;
	max-height: 100%;
}

#cookieBanner > div > div
{
	max-height: 70vh;
	overflow: auto;
}

#cookieBanner p
{
	margin: 0 0 1em 0;
	padding: 0;
	color: inherit;
	font-size: 16px;
	line-height: 26px;
}

#cookieBanner > div > div > p
{
	margin: 1em 0;
}

#cookieBanner a
{
	color: inherit;
	text-decoration: underline;
}

#cookieBanner a:is(:hover,:focus)
{
	text-decoration-style: dotted;
}

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

#cookieBanner div button
{
	display: flex;
	padding: 14px 18px 10px 25px;
	margin: 10px 10px 10px 0;
	background: none;
	border: 1px solid currentColor;
	border-radius: 0;
	color: inherit;
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

#cookieBanner button:last-of-type
{
	margin-right: 0;
	background: black;
}

#cookieBanner div button:after
{
	content: '×';
	display: block;
	margin-left: 18px;
	font-size: 30px;
	line-height: 16px;

	position: relative;
	top: 3px;
}

#cookieBanner #cookieManage::after
{
	content: '›';
}

#cookieBanner button:is(:hover,:focus)
{
	background: white;
	color: black;
}

@media (min-width: 920px)
{
	#cookieBanner > div
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#cookieBanner > div > div
	{
		padding-right: 40px;

		max-height: 100%;
		overflow: hidden;
	}
}

#cookieOptions
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
}

#cookieOptions:not(.open)
{
	display: none;
}

#cookieOptions > div
{
	position: relative;
	width: calc(100vw - 40px);
	max-width: 800px;
	max-height: calc(100vh - 120px);
	overflow: auto;
	padding: 20px;
	background: white;
	border: 8px solid #999;
	box-sizing: border-box;
}

#cookieOptions h2
{
	margin: 0 0 .5em;
	padding: 0;
	font-size: 2em;
}

#cookieOptions div + div h2
{
	clear: both;
	float: left;
}

#cookieOptions .toggleGroup
{
	float: right;
}

#cookieOptions p
{
	clear: both;
	width: 100%;
}

/* the widget container */
.toggleGroup
{
	position: relative;
	width: 85px;
	height: 28px;
	background: black;
	border-radius: 14px;

	/* goes to white on focus */
	border: 1px dashed transparent;

	color: white;
}

/* hide the real radio inputs */
.toggleGroup input
{
	position: absolute;
	z-index: -1;
}

/* normalize fonts for the labels, and make them cover the whole widget */
.toggleGroup label
{
	/* align the text in the space remaining */
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	/* make the first label appear on the left by giving 50% right padding */
	padding: 0 45% 0 0;

	/* so the slider can inherit from the top level of the widget, this level has to inher it too */
	border-radius: inherit;

	font: inherit;
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
}

.toggleGroup:focus-within
{
	border-color: white;
	text-decoration: underline;
}

/* second label needs to appear on the right */
.toggleGroup label ~ label
{
	padding: 0 0 0 45%;
	color: #ccc;
	cursor: pointer;
}

/* unchecked label should be the only one clickable */
.toggleGroup :checked + label
{
	pointer-events: none;
}

/* the slider is attached to the last label so it sits above everything else */
.toggleGroup label ~ label:after
{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 45%;
	width: 55%;
	background-color: white;
	background-clip: content-box;
	border-radius: inherit;
	border: 3px dotted transparent;
	box-sizing: border-box;
	transition: all 150ms;
}

/* off state - straight right edge */
.toggleGroup label ~ :checked + label:after
{
	left: 0;
	background-color: #ccc;
}


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

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

.popupShareButton::after
{
	content: "";
	opacity: 0.35;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	background: #ddd url('../i/icon-share.svg') center center no-repeat; /* data-uri */
	background-size: 13px;
}

.popupShareButton:is(:hover,:focus)::after
{
	opacity: 0.9;
}

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

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

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

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

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

@media (min-width: 768px)
{
	.closeButton,
	.popupShareButton
	{
		top: 15px;
	}
}


/* 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,
#emailDisclaimerButtons button
{
	display: inline-block;
	margin: 10px;
	padding: 4px 12px;
	margin: 0;
	background: #0a80ca;
	color: #fff;
	text-align: center;
	border: none;
}

#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 .search_text input[type=text]
{
	padding-top: 4px;
	padding-left: 15px;
}

#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;
}


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

		align-items: flex-start;
	}

	#search main .search_form input[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 > div > div
	{
		flex-direction: column;
	}
}

#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
{
	margin-top: 30px;
}

#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: 400px;
	min-height: 46px;
}

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

#search #searchOptions
{
	position: absolute;
	min-width: 400px;
}

#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;
}

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

	order: 2;
}

.searchBioWrapper .photo img
{
	padding: 0 0 0 32px;
	width: 220px;
}

.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;
}


/* 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,
button.toggleExpandExtraItems
{
	margin: 25px 0 1.5em 0;
	border: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
	color: #0a80ca;
}

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

/* This was originally removed at what I thought was client request because they didn't like how you ended up with buttons next to each other (see a service item).  They have now complained that they are gone, so adding them back in */
/*button.toggleExpandExtraItems.expanded
{
	display: none !important;
}*/

/*.standardbutton
{
	padding-bottom: 40px;
	padding-bottom: max(1px,
			 min(40px, 1px + (40 - 1) * ((100vw - 767px) / (1920 - 767))
	));
}
*/
.standardbutton a,
button.toggleExpand,
button.toggleExpandExtraItems,
.view_more a,
#historyLinks a,
.wys_view_more a,
.expandButton button
{
	position: relative;
	display: inline-block;
	padding: 15px 30px 13px !important;
	text-align: center;
	background: #ffffff;
	color: #E31B23;
	font-family: 'HelveticaNeue_cn';
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
	box-shadow: 1px 2px 8px 0 rgba(0,0,0,.19);
	box-sizing: border-box;
}

button.toggleExpand,
button.toggleExpandExtraItems
{
	width: auto;
}

button.toggleExpandExtraItems.expanded span:first-child
{
	display: none;
}

button.toggleExpandExtraItems.expanded span:last-child
{
	display: block !important;
}

.standardbutton a span,
.view_more a span,
button.toggleExpandExtraItems span,
button.toggleExpand span,
#historyLinks a span
{
	position: relative;
	z-index: 2;
}

.standardbutton a::before,
.view_more a::before,
button.toggleExpandExtraItems::before,
button.toggleExpand::before,
#historyLinks a::before
{
	content: '';
	position: absolute;
	top: 0;
	left: calc(-100% - 40px);
	width: calc(100% + 40px);
	height: 100%;
	background: #E31B23;
	clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);

	transition: all 250ms ease;
	z-index: 0;
}

/* don't forget to wrap the text inside the <a> in a span */
.standardbutton a:hover,
.standardbutton a:focus,
.view_more a:hover,
.view_more a:focus,
button.toggleExpandExtraItems:hover,
button.toggleExpand:hover,
#historyLinks a:hover,
button.toggleExpandExtraItems:focus,
button.toggleExpand:focus,
#historyLinks a:focus,
.wys_view_more a:hover,
.wys_view_more a:focus
{
	color: #ffffff;
}

.wys_view_more a:hover,
.wys_view_more a:focus
{
	background: #E31B23;
}

.standardbutton a:hover::before,
.standardbutton a:focus::before,
.view_more a:hover::before,
.view_more a:focus::before,
button.toggleExpandExtraItems:hover::before,
button.toggleExpand:hover::before,
#historyLinks a:hover::before,
button.toggleExpandExtraItems:focus::before,
button.toggleExpand:focus::before,
#historyLinks a:focus::before
{
	left: 0;
}


/*This will be shown via js if there are xref items*/
button.toggleExpandExtraItems
{
	display: none;
}



/* 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;
}




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