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

/*


Playfair display (playfair_display)
Available weights:

900
700
400 (normal) Normal


Lato ('Lato')

100 Hairline (extra light)
200 Thin
300 Light
400 (normal) Normal
500 Medium
600 Semi-bold
700 (bold) Bold
800 Heavy
900 (ultra bold) Ultra Bold



*/


html
{
	/* make sure the browser doesn't go smaller than 320, and throws a scrollbar */
	max-width: 320px;

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

	/* horizontal scroll for the ^ 320px max */
	overflow-x: visible;

	color: #000000; /* changed per swati */
	font-family: 'Lato', Arial, sans-serif;
	line-height: 1.6;
	font-weight: 300;

	/* 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: 1600;

	--logo-gray: #4F4F4E;
	--logo-teal: #2C94A5;
	--light-cyan: #D8E6E8;
	--very-light-cyan: #EFF6F7;
	--medium-cyan: #14A4BA;
	--dark-cyan: #1E556B;
	--light-blue: #87CDD6;
	--blue-green: #2D94A5;
	--cyan-blue: #17A4BA;
	--orange-yellow: #F4B84A;
	--main-dark: #4F4F4E;
	--rules: #E3E3E3;
}

h1, h2, h3, h4, h5, h6, p, li, .title, ul.subNavList li, .newsList .section, .smalltext, .largetext, .quote, .attribution, .abstract, #officeAddress, .position, .email, .phone, .office, #subscribeTitle, #subscribeText, .location, .bioposition, #officeAddressPhone
{
	/* 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)))
		));

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

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


	/* Make the default minimum font size and margin 70% of the max and no lower than 16px */
	--min-font-size: max(16, calc(var(--max-font-size) * .7));

	/* Make the default minimum margin 50% of the max */
	--min-margin-bottom: max(10, calc(var(--max-margin-bottom) * .5));
	--min-margin-top: max(10, calc(var(--max-margin-top) * .5));
}

html:not([data-whatintent="keyboard"]) *:focus
{
	outline: 0;
}

/* above 321px no need for horizontal scroll */
@media (min-width: 321px)
{
	html
	{
		max-width: unset;

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

body
{
	position: relative;
	min-width: 320px;

	/* in mobile or tablet we do not want anything outside the body bounds scrollable */
	overflow-x: clip;

	max-width: 1660px;
	margin: 0 auto;
	margin-top: 80px;
	padding: 0 16px 0 16px;
	background: #fff;
	box-sizing: border-box;
}

@media (min-width: 920px)
{
	body
	{
		/* increased side padding */
		padding: 0 44px 0 44px;
	}
}

@media (min-width: 1350px)
{
	body
	{
		/* further increased side padding */
		padding: 0 80px 0 80px;
		overflow: visible;
	}
}

p
{
	margin: 0.5em 0 1.25em 0;
}

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

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: var(--blue-green);
	text-decoration: none;
}

a:is(:hover,:focus)
{
	color: #0E5865;
}

p a:is(:hover,:focus)
{
	text-decoration: underline;
	text-underline-offset: 4px;
}



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

h1, h2, h3, h4, h5, h6
{
	--max-margin-top: 40;
	--max-margin-bottom: 20;
	padding: 0;
	color: #000000;
	font-weight: 400;

	line-height: 1.25;
}

h1,
.looksLikeh1
{
	font-family: 'playfair_display';
	--min-font-size: 42;
	/*--max-font-size: 90;*/
	--max-font-size: 70; /* changed per jessica */
	line-height: 1.2;
	--max-margin-bottom: 30;
}

h1#pageTitle
{
	margin-top: 0;
}

h2,
.looksLikeh2
{
	--max-margin-bottom: 20;
	font-family: 'playfair_display';
	--max-font-size: 60;
}

#subContent h2
{
	margin-top: 45px;
	margin-bottom: 15px;
	text-transform: uppercase;
	--min-font-size: 17;
	--max-font-size: 21;
	font-family: 'Lato';
	color: var(--dark-cyan);
	letter-spacing: 2px;
}

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

h3,
.looksLikeh3
{
	font-family: 'playfair_display';
	--max-font-size: 40;
	--max-margin-bottom: 25;
}

h4,
.looksLikeh4
{
	font-family: 'Lato', Arial, sans-serif;
	margin-top: 10px;
	--max-font-size: 26;
	color: var(--dark-cyan);
}

h5,
.looksLikeh5
{
	margin-top: 30px;
	text-transform: uppercase;
	--max-font-size: 21;
	color: var(--blue-green);
}

/* Reserved for Print Pilot */
h6,
.looksLikeh6
{
	font-weight: bolder;
	--max-font-size: 22;
}

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

ol
{
	padding-left: 1em;
}

li
{
	margin: 1em 0em 1em 1.5em;
	padding: 0;
}

li ~ li
{
	margin-top: 1em;
}

ul li::marker
{
	color: var(--light-cyan);
}

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


@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: 500px)
{
	/* 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
*/

#footer::before,
#homeNewsHeader::before,
#cookieBanner::before
{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;

	/*
		we need to be left offset by the width of the left margin, which is half the
		difference between page width and viewport width

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

	width: 100vw;
	background: inherit;

}


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

#logo svg,
#banner,
.letterLinks > *,
.bioList > ul > li,
#homeNewsHeader,
#footerSocial
{
	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;
}

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

ul.results_criteria,
ul.results_criteria > li
{
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

ul.results_criteria > li
{
	display: block;
}

#captcha_wrapper
{
	grid-column: 1 / -1;
	clear: both;
	float: none;
	height: auto;
}

#captcha_wrapper img
{
	display: inline-block;
	margin: 2px 10px 0 0;
}

#captcha_wrapper button.reloadCode
{
	display: inline-block;
	position: relative;
	margin: 12px 0 0 0;
	padding: 0.25em;
	width: 2.25em;
	height: 2.25em;
	background: transparent;
	box-sizing: border-box;
	border: 0;
	font-size: 12px;
	vertical-align: top;
	-webkit-appearance: none;
}

.reloadCode.loading
{
	animation: reloadRotate 600ms linear 10;
}

@keyframes reloadRotate
{
	100%
	{
		transform: rotate(360deg);
	}
}

.reloadCode:before,
.reloadCode:after
{
	content: "";
	display: block;
}

.reloadCode:before
{
	width: 1.5em;
	height: 1.5em;
	border: 0.125em solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	transform: rotate(45deg);
}

.reloadCode:after
{
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border-width: 0.3125em 0 0.3125em 0.5em;
	border-style: solid;
	border-color: transparent transparent transparent currentColor;
}

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

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

#resultPageLinks
{
	margin: 1em 0;
}

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

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

/* buttons to look like links */
/*.expandButton button,*/
.collapseButton button
{
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none;
	color: inherit;
	font: inherit;
	text-transform: inherit;
	text-align: inherit;
	cursor: pointer;
}

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

/*.expandButton:is(:hover,:focus),*/
.collapseButton:is(:hover,:focus)
{
	color: #888888;
}

.expandButton.expanded
{
	display: none;
}

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

.extraItems
{
	 display: none;

	 /* prevent slideToggle jump */
	 overflow: hidden;
}


/* 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
{
	z-index: -1;
	color: transparent !important;
	background: transparent !important;
	pointer-events: none;
}


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

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

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

#logo
{
	/* inline-block to prevent logo from interfering with nav */
	display: inline-block;

	position: relative;
	/*z-index: 9999;*/
	width: 200px;
	margin-top: 20px;
}

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

#logo svg
{
	fill: var(--logo-gray);
}

#logo svg #logoAngle
{
	fill: var(--logo-teal);
}

/*body.mobileActive #logo svg
{
	fill: #FFFFFF;
}*/

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

@media (min-width: 1120px)
{
	#logo svg
	{
		max-width: unset;
	}
}

@media (min-width: 1280px)
{

	body
	{
		margin-top: 122px;
	}

	#header
	{
		height: 122px;
	}

	#logo
	{
		width: 315px;
		margin-top: 35px;
	}
}

@media (min-width: 1350px)
{
	#header
	{
		padding: 0 80px 0 80px;
	}
}


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

#banner
{
	position: relative;
}


#bannerImage::after
{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0,0,0,0.76) 0%, transparent 50%);
}


#bannerImage > picture > img
{
	display: block;
	position: absolute;
	left: calc(50% - 50vw);
	z-index: -1;
	width: 100vw;
	height: 100%;
	object-fit: cover;
}

#bannerContent
{
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	/*min-height: 50vw;*/
	min-height: clamp(150px, 50vw, 300px);
	padding-top: 50px;
	padding-bottom: 3%;
	/*max-height: 250px;*/
	color: #ffffff;
	box-sizing: border-box;
}

#bannerContent .aligner
{
	padding-right: 150px;
}

body.careers #bannerContent .aligner
{
	max-width: 500px;
}

#bannerContent p
{
	--max-font-size: 21;
}

#bannerContent::after
{
	display: block;
	position: absolute;
	right: 0;
	bottom: -6.5%;
	content: '';
	width: 20vw;
	height: 20vw;
	max-width: 185px;
	max-height: 185px;
	background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
	background-size: 100%;

	transform: rotate(-135deg);
}

body.careers #bannerContent::after
{
	bottom: -5%;
}

#bannerContent *
{
	color: inherit;
}

@media (min-width: 600px)
{
	#bannerContent .aligner
	{
		padding-right: 200px;
	}
}

@media (min-width: 768px)
{
	/*#bannerContent::after
	{
		right: -30px;
	}*/
}

@media (min-width: 1350px)
{

	#bannerContent
	{
		height: auto;
		min-height: 379px;
	}

	body.careers #bannerContent
	{
		padding-bottom: 0;
		align-items: center;
		min-height: 570px;
		box-sizing: border-box;
	}

	#bannerContent::after
	{
		right: -90px;
	}

}


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

#searchJump
{
	display: block;
	position: absolute;
	z-index: 10000;
	top: calc(50% - 12px);
	right: 20px;
	line-height: 1;
	cursor: pointer;
	width: 26px;
}

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

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

body.mobileActive #searchJump svg
{
}

#searchJump:is(:hover,:focus) svg
{
	opacity: 1;
	fill: var(--blue-green);
	transition: fill 0.3s, opacity 0.3s;
}

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

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

@media (min-width: 1350px)
{
	#searchJump
	{
		right: 80px;
	}
}

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

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

#siteSearch:target,
#siteSearch.target
{
	opacity: 1;
	visibility: visible;
	height: 100vh;

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

#siteSearch > div
{
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 70vw;
	min-width: 290px;
	max-width: 1500px;
	margin: 20vh auto auto auto;
	border-bottom: 2px solid white !important;
}

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

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

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

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

#searchClose
{
	display: none;
}

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

#searchClose::after,
#searchClose::before
{
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: 50%;
	width: 0;
	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;
	top: calc(20vh + 54px);
	left: calc(50% - 145px);
	width: calc(70vw);
	min-width: 290px;
	max-width: 2000px;
	max-height: calc(70vh - 84px);
	background: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.searchPopup > *
{
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 32px;
	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
{
	border-bottom: 1px solid #ddd;
}

.searchPopup .selected,
.searchPopup .selectable:hover
{
	position: relative;
	background: #ebebeb;

	color: inherit;
}

.searchPopup .selected::after
{
	content: '»';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 1.3em;
	height: 1.3em;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 1px black;
	color: #999;
	line-height: 1.3em;
	text-align: center;
}

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

.searchPopup
{
	display: block;
	position: fixed;
	z-index: 10000;
	top: calc(20vh + 54px);
	left: calc(50% - 145px);
	width: calc(70vw);
	min-width: 290px;
	max-width: 2000px;
	max-height: calc(70vh - 84px);
	overflow: auto;
	background: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

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

.searchPopup .popupHeader,
#allSearch
{
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0;
	margin-top: 0;
	background: #1E556B;
	color: white;
	font-size: 18px !important;

	z-index: 1;
}

.searchPopup .popupHeader a
{
	display: block;
}

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

/* search popup results: bio */
.acBio
{
	padding: 0;
}

.acBio .text
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 0;
}

.acBio .results_list > div
{
	display: flex;
}

.acBio a
{
	font-weight: 600;
}

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

.acBio .photo img
{
	display: block;
	max-width: 131px;
	max-height: 94px;
	border: 1px solid #ccc;
}

#allSearch
{
	top: auto;
	bottom: 0;

	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	width: 100%;
	margin: 0px;
	padding: 10px 38px;
	background: #1E556B;
	font-size: 16px !important;
}

#allSearch a
{
	color: white !important;
}

#allSearch a:hover,
#allSearch a:focus
{
	text-decoration: underline;
}

@media (min-width: 501px)
{
	#searchPopup,
	.searchPopup
	{
		left: calc(50% - 50vw + 15vw);
	}
}

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

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

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

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

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

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

#topNav li
{
	margin: 0 22px;
}

#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 */
	background: #aaa;

	color: white;
	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 !important; /* hidden per swati */
	position: absolute;
}

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

#mainNav #navButton-people 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);
}
*/

#topNav
{
	display: none;
}

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

@media (min-width: 1280px)
{

	#topNav
	{
		display: flex;
		position: absolute;
		z-index: 9998;
		top: 35px;

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

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

	/* 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: 240px;

		background: #aaa;
		padding: 10px 0 18px 0;
	}

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

	#topNav > ul:first-of-type > li > a
	{
		font-size: 24px;
		font-weight: 700;
	}

	#topNav:is(:hover,:focus-within) > ul > li > a
	{
		opacity: .31;
	}

	#topNav > ul > li > a:is(:hover,:focus)
	{
		opacity: 1;
		/*color: var(--blue-green);*/
	}

	#topNav > ul > li > a::before
	{
		position: absolute;
		top: 0;
		content: '';
		display: block;
		left: 50%;
		right: 50%;
		height: 2px;
		background: #000000;
		transition: all 250ms ease;
	}

	#topNav > ul > li > a:is(:hover,:focus)::before
	{
		left: 0;
		right: 0;
	}

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

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

	#topNav > ul > li.current > a:not(:hover):not(:focus)
	{
		background: none;
		color: var(--blue-green);
	}

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

	/* push double drops out the width of the parent */
	#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 secondary nav */
	#topNav > ul + ul ul
	{
		display: none !important
	}

	#topNav> ul + ul > li
	{
		margin-right: 2.2vw;
	}

	#topNav > ul + ul > li > a
	{
		padding: 3px 0;
	}

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


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

	button#navToggle
	{

	}

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

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

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

	#mainNav #navButton-capabilities a
	{
		white-space: normal;
		break-inside: avoid;
	}

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

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

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


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

/*@media (max-width: 1349px)
{*/
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 9998;
		top: 0;
		right: -100vw;
		left: auto;
		width: 100vw;
		max-width: 646px;
		height: 100vh;
		padding: 140px 30px 10px;
		/*border-top: 130px solid transparent;*/
		/*background: var(--orange-yellow);*/
		background: var(--light-cyan);
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;

		overflow: auto;
	}

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

	#mainNav::before
	{
		display: none;
	}

	#mainNav > ul,
	#mainNav li ul
	{
		/*width: 40vw;*/ /* put a max width on lists even though the parent expands the full viewport */
	}

	#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;
		padding-left: 30px;
		color: #000000;
	}

	#mainNav li:hover > a
	{
		text-decoration: none !important;
	}

	#mainNav li.current > a::before,
	#mainNav > ul > li:hover > a::before,
	#mainNav li:hover > a::before,
	html[data-whatintent="keyboard"] #mainNav > ul > li:focus-within > a::before,
	#mainNav ul ul li.subNavHeader::before
	{
		position: absolute;
		top: calc(50% - 8px);
		left: 0;
		display: block;
		content: '';
		width: 15px;
		height: 15px;
		background: url('../i/icon-chevron-white.svgz') no-repeat; /* data-uri */
		background-size: cover;
	}

	#mainNav li:hover > a::before
	{
		width: 10px;
		height: 10px;
		top: calc(50% - 6px);
		left: 10px;
	}

	#mainNav > ul > li,
	#mainNav ul ul li.subNavHeader
	{
		margin: 0 0 20px;
		font-size: 32px;
		font-family: 'playfair_display';
	}

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

	#mainNav > ul > li:nth-child(3)
	{
		margin-bottom: 40px;
	}

	#mainNav > ul > li:nth-child(n+4)
	{
		font-size: 20px;
	}

	#mainNav > ul ul > li
	{
		text-transform: none;
	}

	#mainNav li li:hover > a,
	html[data-whatintent="keyboard"] #mainNav li li:focus-within > a
	{
		/* using data-whatintent, because some browsers don't understand focus-within */
		background: none;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

	#mainNav li > a:first-child:not(:last-child)::after
	{

	}

	#mainNav #subNavBack
	{
		position: absolute;
		top: 35px;
		font-family: 'lato';
		text-transform: uppercase;
		font-size: 17px;
		letter-spacing: 1px;
	}

	#mainNav #subNavBack a
	{
		position: relative;
		padding-left: 50px;
	}

	#mainNav #subNavBack a::before
	{
		position: absolute;
		left: 0;
		top: 1px;
		content: '';
		display: block;

		width: 13px;
		height: 13px;
		background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
		background-size: contain;

		filter: brightness(0%);
		transform: rotate(90deg);
	}

	/*#mainNav ul ul li.subNavHeader
	{
		margin-top: 12px;
		margin-bottom: 20px;
		font-size: 28px;
		font-weight: 600;
	}*/

	#mainNav > ul ul > li
	{
		margin: 0 0 18px;
		font-size: 20px;
	}

	#mainNav #navButton-people ul li#megaSearch
	{
		display: none !important; /* hide megaSearch in mobile always */
	}


	/* Mobile Nav 'Hamburger' Button */

	button#navToggle
	{
		display: block;
		position: absolute;
		z-index: 9999;
		top: calc(50% - 14px);
		right: 57px;
		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;
		box-sizing: border-box;
	}

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

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

	.mobileNavBox
	{
		position: relative;
		display: inline-block;
		width: 35px;
		height: 27px;
	}

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

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

	.mobileNav.isActive .mobileNavBox span
	{
		width: 30px;
		height: 2px;
	}

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


	#navToggle:is(:hover,:focus) .mobileNavBox span
	{
		background: var(--blue-green);
	}

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

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

	.mobileNavSpring .mobileNavBox :nth-child(2)
	{
		width: 26px;
	}

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


	/* ToggleDrop version - subs expand below instead of swing in from side
		Just add .toggleDrop to the #mainNav element */
	/*
	#mainNav.toggleDrop li ul
	{
		display: none;
		position: relative;
		right: auto !important;
		left: auto !important;
		height: auto;
		padding-top: 0px;
		padding-left: 10px;
		background: none;
		visibility: visible;
		transition: none;
	}

	#mainNav.toggleDrop li ul li.subNavHeader
	{
		display: none;
	}

	#mainNav.toggleDrop li > a:first-child:not(:last-child)::after
	{
		text-align: center;
		transform: rotate(90deg);
		transition: transform 150ms ease-out;
	}

	#mainNav.toggleDrop li > a.toggleDropOpen:first-child:not(:last-child)::after
	{
		transform: rotate(-90deg);
		transform-origin: 0px center;
	}
	*/
/*}*/

/* mobile stlyles cont. - for  smaller screens */


@media (min-width: 920px)
{

	button#navToggle
	{
		right: 84px;
	}

	#mainNav,
	#mainNav li ul
	{
		padding-left: 75px;
		padding-right: 75px;
	}

	#mainNav > ul > li,
	#mainNav ul ul li.subNavHeader
	{
		font-size: 45px;
		margin: 0 0 20px;
	}

	#mainNav > ul > li:nth-child(n+4)
	{
		font-size: 32px;
	}

	#mainNav > ul > li:nth-child(3)
	{
		margin-bottom: 60px;
	}

	#mainNav #subNavBack
	{
		top: 55px;
	}

}

@media (min-width: 1280px)
{
	button#navToggle.mobileNav.isActive
	{
		top: 48px;
	}
}

@media (min-width: 1350px)
{
	button#navToggle
	{
		right: 124px;
	}

	#mainNav a
	{
		padding-left: 42px;
	}

	#mainNav li.current > a::before,
	#mainNav li:hover > a::before,
	html[data-whatintent="keyboard"] #mainNav > ul > li:focus-within > a::before,
	#mainNav ul ul li.subNavHeader::before
	{
		top: calc(50% - 11px);
		width: 22px;
		height: 22px;
	}

	#mainNav ul ul li.current > a::before
	{
		width: 15px;
		height: 15px;
		top: calc(50% - 8px);
	}

	#mainNav li:hover > a::before
	{
		width: 12px;
		height: 12px;
		top: calc(50% - 6px);
		left: 10px;
	}
}



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


ul.subNavList li
{
	position: relative;
	list-style: none;
	padding: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
}

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

ul.subNavList a
{
	display: block;
	width: 100%;
	color: var(--dark-cyan);
}

ul.subNavList a:is(:hover, :focus)
{
	color: var(--blue-green);
}

ul.subNavList li.here::before,
ul.subNavList li.hereParent::before
{
	position: absolute;
	left: -25px;
	top: 4px;
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
	background-size: 100%;
	transform: rotate(-90deg);
}

@media (min-width: 920px)
{
	#subNav
	{
		position: relative;
	}

	#subNav::after
	{
		content: '';
		position: absolute;
		bottom: 0;
		left: calc(50% - 50vw);
		width: 100vw;
		height: 1px;
		background: var(--rules);
		z-index: -1;
	}

	.subNavList
	{
		display: flex;
		/*justify-content: center;*/

		padding: 30px 0;
	}

	ul.subNavList li
	{
		margin: 0;
		--fluid-start: 1280;
		--fluid-end: 1700;
		--min-font-size: 12;
		--max-font-size: 17;
		text-align: center;
		line-height: 1.25;
	}

	.subNavList li:not(:last-child)
	{
		margin-right: max(22px,
					 min(39px, 22px + (39 - 22) * ((100vw - 1280px) / (1600 - 1280))
		));
	}

	ul.subNavList li.here::before,
	ul.subNavList li.hereParent::before
	{
		position: absolute;
		left: calc(50% - 13px);
		top: auto;
		bottom: -42px;
		transform: unset;
		width: 26px;
		height: 26px;
		transform: rotate(180deg);
	}
}

/* Tabs and Expandable Headers ------------------------------------> */
/* these headings are to have similar styling */

.expandableHeading,
h2.sectionTitle
{
	position: relative;
	font-weight: 400;
	cursor: pointer;
	font-size: 26px;
	font-family: 'lato';
	color: var(--dark-cyan);
	margin: 0;
}

.expandableHeading button,
h2.sectionTitle
{
	display: block;
	width: 100%;
	margin: 0 0 25px 0 !important;
	padding: 10px 30px 10px 0 !important;
	background: none !important;
	border: none;
	color: var(--dark-cyan);
	font: inherit;
	/*font-size: 26px;*/
	font-size: 23px; /* changed per jessica */
	font-weight: 400;
	text-transform: inherit;
	text-align: inherit;
	cursor: pointer;
	border-bottom: 1px solid var(--rules);
	box-sizing: border-box;
}

.expandableHeading button:is(:hover, :focus),
h2.sectionTitle:is(:hover, :focus)
{
	color: var(--blue-green);
}

.expandableHeading button::after,
h2.sectionTitle::after
{
	position: absolute;
	right: 15px;
	top: 15px;
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	background: url('../i/icon-chevron.svgz') no-repeat;
	background-size: 100%;
	transition: all 500ms ease;
}

.expandableHeading.expanded button::after,
h2.sectionTitle.isOpen::after
{
	transform: rotateX(180deg);
}

/*h2.sectionTitle::after,
h2.sectionTitle::before
{
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	display: block;
	width: 9px;
	height: 18px;
	background: url('../i/icon-chevron-piece-left.svgz') no-repeat;
	background-size: contain;

	transition: all 500ms ease;
}

h2.sectionTitle::after
{
	background: url('../i/icon-chevron-piece-right.svgz') no-repeat;
	background-size: contain;
}

h2.sectionTitle::before
{
	right: 9px;
}

.expandableHeading.expanded button::after,
h2.sectionTitle.isOpen::after
{
	transform: rotateX(180deg);
}

.expandableHeading.expanded button::before,
h2.sectionTitle.isOpen::before
{
	transform: rotateX(180deg);
}*/

/* mobile/tablet tabs */
/*@media (max-width: 1024px)
{*/
	#tabLinks
	{
		display: none;
	}

	h2.sectionTitle
	{
		display: block;
	}

	.contentSection
	{
		display: block !important;
	}

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

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

/* desktop tabs */
/*@media (min-width: 1025px)
{
	#tabLinks
	{
		margin: 1.5em 0 2em 0;
		border-bottom: 1px solid #003C5B;
	}

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

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

	.sectionTitle
	{
		display: none;
	}

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

@media (min-width: 1301px)
{
	#tabLinks a
	{
		margin-right: 2px;
		padding: .5em 1em;
	}
}*/


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

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

.itemTile .results_list
{
	position: relative;
}

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

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

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

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

@media (min-width: 501px)
{
	.itemTile .results_list
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.itemTile .results_list > *
	{
		width: calc(50% - 10px);
	}
}


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

#content
{
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 350px;
	margin: 50px auto 0;
}



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

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

#upperContent #subNav
{
	padding: 0;
	margin: 0;
}

#subContent
{
	order: 2;
	position: relative;
	width: 100%;
	margin-top: 40px;
	box-sizing: border-box;
}

#content::before
{
	content: '';
	position: absolute;
	left: calc(50% - 50vw);
	top: 0;
	z-index: -1;
	display: block;
	width: 100vw;
	height: 700px;
	background: url('../i/subcontent-bg.png') right top no-repeat; /* data-uri */
	background-size: 594px auto;
}

#upperContent
{
	position: relative;
	padding-bottom: 20px;
}

#pageTools
{
	position: absolute;
	left: 0;
	top: 15px;
	display: flex;
	justify-content: flex-end;
}

#pageTools > *
{
	margin-right: 15px;
	width: 40px;
}

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

#pageTools svg .svgInnards,
#itemAccessories .svgInnards,
#preFooterSocial .svgInnards
{
	fill: var(--medium-cyan);
}

#pageTools svg .svgCircle,
#itemAccessories svg .svgCircle,
#preFooterSocial .svgCircle
{
	fill: var(--light-cyan);
}

#pageTools a:is(:hover, :focus) .svgInnards,
#itemAccessories a:is(:hover, :focus)  .svgInnards,
#preFooterSocial a:is(:hover, :focus) .svgInnards
{	fill: var(--light-cyan); }

#pageTools a:is(:hover, :focus) .svgCircle,
#itemAccessories a:is(:hover, :focus) .svgCircle,
#preFooterSocial a:is(:hover, :focus) .svgCircle
{	fill: var(--medium-cyan); }

@media (min-width: 920px)
{
	#content
	{
		display: block;
	}

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

	#mainContent
	{
		float: left;
		width: calc(100% - 28% - 121px);
	}

	#subContent
	{
		clear: right;
		float: right;
		width: 28%;
		margin-top: 120px;
	}

	#content::before
	{
		background: url('../i/subcontent-bg.png') right top no-repeat; /* data-uri */
		background-size: 30vw auto;
	}

	#upperContent
	{
		padding: 0;
	}

	#pageTools
	{
		left: auto;
		right: 0;
		top: auto;
		bottom: -125px;
		z-index: 100;
	}

	#pageTools > *
	{
		width: 52px;
		margin: 0 0 0 22px;
	}
}

#subContent li
{
	/*margin-top: 0.5em;
	margin-bottom: 0.5em;*/

}

#subContent ul > li
{
	margin-left: 0;
	list-style: none;
}

#subContent .results_list li a
{
	color: inherit;
}

#subContent .results_list li a:is(:hover,:focus)
{
	color: var(--blue-green);
}

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

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

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

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

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

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

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

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

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

#subContent .itemSection
{
	margin-bottom: 45px;
}

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

#area_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 */

.view_more,
.viewMore,
.view_more2
{
	margin-top: 35px;
}

.view_more a,
.viewMore a,
.view_more2 a
{
	display: inline-block;
	width: auto;
	margin: 0 0 28px 0;
	font-size: 17px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 400;
	text-decoration: none !important;
}

.view_more a::before,
.viewMore a::before,
.view_more2 a::before
{
	position: relative;
	top: 2px;
	display: inline-block;
	content: '';
	width: 18px;
	height: 18px;
	margin-right: 15px;
	background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
	background-size: cover;
	transform: rotate(-90deg);
}

.view_more a:is(:hover,:focus)::before,
.viewMore a:is(:hover,:focus)::before
{

	background: url('../i/icon-chevron-hover.svgz') no-repeat; /* data-uri */
	background-size: cover;
	transform: rotate(90deg);
}

.view_more2 a::before,
.view_more2 a:is(:hover,:focus)::before
{
	background: url('../i/icon-chevron-white.svgz') no-repeat; /* data-uri */
	background-size: cover;
	transform: rotate(0deg);
}

.view_more2 a
{
	padding: 17px 30px 17px 25px;
	background: var(--orange-yellow);
}

.view_more2 a:is(:hover, :focus)
{
	color: #ffffff;
	background: var(--blue-green);
}

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


/* Static News */

.staticNews
{
	margin-top: 1.25rem;
	padding: 1.25rem 0 0 0;
	border-top: 1px solid currentColor;
}

.staticNews ul.results_list
{
	position: relative;
}

.staticNews ul.results_list > li
{
	position: relative;
	width: 100%;
	margin-bottom: 1.25rem;
	box-sizing: border-box;
}

.staticNews ul.results_list > li:only-child
{
	width: 100%;
}

.staticNews ul.results_list > li a
{
	display: block;
	min-height: auto;
	padding: 1em;
	border: 4px solid currentColor;
	box-sizing: border-box;
}

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

	.staticNews ul.results_list > li
	{
		width: calc(50% - 20px);
	}

	.staticNews ul.results_list > li a
	{
		min-height: 10em;
	}
}


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

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

form > div
{
	display: grid;
	grid-gap: 16px;
}

form > div > div
{
	position: relative;
		min-width: 0;
}

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

}

form > div > :is(.textarea_wrapper, .checkbox_wrapper, .radio_wrapper)
{
	grid-column: 1 / -1;
}

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

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

label
{
	display: block;
}

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

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

form > div > :is(.textarea_wrapper, .checkbox_wrapper, .radio_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
{
	align-self: flex-start;
	margin: 6px 6px 0 0;
	padding: 0;
}

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

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

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

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

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

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

/*form > div button
{
	position: absolute;
	right: 0;
	top: 10px;
	padding: 15px;
	background: none;
	border: none;
	width: 50px;
	height: 50px;
	transform: rotate(90deg);
	box-sizing: border-box;
	cursor: pointer;
}*/

#homeSearchForm form > div button svg
{
	display: block;
	width: 18px;
	height: 18px;
	fill: var(--orange-yellow);
}

/* WebForm uses an id */
#submit_wrapper,
.submit_wrapper
{
	grid-column: 1 / -1;
	width: 100%;
}

#shortForm .submit_wrapper
{
	grid-column: unset;
}

button#search
{
	float: right;
	height: 68px;
	padding: 15px 23px;
}

#shortForm button#search
{
	float: left;
}

button#search svg
{
	width: 18px;
	height: 18px;
	fill: var(--orange-yellow);
	transform: rotate(90deg);
	margin-right: 15px;
}

button#search:is(:hover,:focus) svg
{
	fill: var(--blue-green);
}

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
{
	border-radius: 0;
	font: inherit;
	-webkit-appearance: none;
}

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

	/* appease IE11 */
	min-height: 68px;

	margin: 0;
	padding: 0px 21px 0;
	background-color: #fff;
	border: 1px solid #d6d6d6;
	border-radius: 0;
	box-sizing: border-box;
	color: #666766;
	font-size: 16px;
	line-height: 1;
	vertical-align: top;
}

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
{
	/* needed for animation to work on .customSelect */
	display: block !important;

	position: absolute;
	padding: 27px 21px 0;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--logo-gray);
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
	pointer-events: none;
}

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

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

.customSelect
{
	display: inline-block !important;
	position: relative;
	overflow: hidden;

	/* make room for the arrow */
	padding-right: 40px;
}

.customSelect::after
{
	content: '';
	display: block;
	position: absolute;
	right: 16px;
	top: calc(50% - 8px);
	width: 15px;
	height: 15px;
	background: url('../i/icon-chevron-select.svgz') no-repeat; /* data-uri */

}

/* normalize selects */
select
{
	/* customSelect tries to be useful and set the width, but it breaks a lot */
	width: 100% !important;

	box-sizing: border-box;

	/* bug 50545 - in case labels are uppercase, leave the underlying options alone in all cases */
	text-transform: none;
}

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

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

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

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

.customSelectInner
{
	display: block !important;
	width: 100% !important;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-top: 27px;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--logo-gray);
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
}

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: var(--very-light-cyan);
}

/* 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],
button[type=submit],
.standardButton,
.packetButton,
::file-selector-button,
::-webkit-file-upload-button,
a.viewAll,
.reviseButton a
{
	/* needed to normalize vertical text alignment across <a> and <button> elements */
	align-items: center;
	display: inline-flex;

	width: auto;
	height: 52px;
	margin: 0 0 10px 0;
	padding: 1px 18px 1px 18px;
	box-sizing: border-box;
	border: 1px solid var(--rules);
	background: none;
	font-size: 17px;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	color: #000000;
	letter-spacing: 1px;
	vertical-align: top;
	font-weight: 400;
}


/* fake demo button */
span.packetButton
{
	cursor: default;
}

input[type=file]::file-selector-button,
input[type=file]::-webkit-file-upload-button
{
	margin-right: 10px;
}

a.clearAll
{
	float: right;
}

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

:is(
	input[type=submit],
	button[type=submit],
	.standardButton,
	.packet-button,
	a.viewAll,
	.reviseButton
):is(:hover, :focus)
{
	text-decoration: none;
	background: var(--very-light-cyan);
}


@media (min-width: 600px)
{
	form > div
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px)
{
	form > div
	{
		grid-template-columns: repeat(3, 1fr);
	}

	#shortForm form > div
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

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

#emailField
{
	display: none;
}


/* auto complete js */

.autocomplete-suggestions
{
	position: absolute;
	top: 0;
	left: 0;

	max-height: 350px;
	overflow: auto;
	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-suggestion
{
	padding: 5px;
	line-height: 120%;
	/* white-space: nowrap; */
}

.autocomplete-suggestions .autocomplete-selected
{
	background: #f0f0f0;
}

/* ---------------------------- */
/* -------- START HERE -------- */
/* ---------------------------- */


/* Prefooter social */

#preFooterSocial
{
	padding-top: 80px;
	margin-top: 80px;
	margin-bottom: 100px;
	border-top: 1px solid var(--rules);
	text-align: center;
}

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

#preFooterSocial ul
{
	display: flex;
	justify-content: center;

}

#preFooterSocial li:not(:last-child)
{
	margin-right: 28px;
}

#preFooterSocial a
{
	display: block;
	width: 55px;
}

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


/* Careers subnav */

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

#careersSubNav li
{
	transition: all 350ms ease;
	top: 0;
}

#careersSubNav li:is(:hover, :focus-within)
{
	top: -10px;
}

#careersSubNav li a::after
{
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100% );
	opacity: .8;
}

#careersSubNav ul
{
	display: grid;
	grid-gap: max(30px,
	             min(87px, 30px + (87 - 30) * ((100vw - 767px) / (1600 - 767))
	));
}

#careersSubNav img
{
	display: block;
	width: 100%;
	height: auto;
}

#careersSubNav .title
{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
	padding: max(20px,
	             min(63px, 20px + (63 - 20) * ((100vw - 767px) / (1600 - 767))
	));

	--min-font-size: 24;
	--max-font-size: 45;
	line-height: 1.25;
	color: #ffffff;
	font-family: 'playfair_display';
}

@media (min-width: 600px)
{
	#careersSubNav ul
	{
		grid-template-columns: repeat(2, 1fr);
	}
}


/* bottom banner */

#bottomBanner
{
	margin-bottom: 120px;
}

#bottomBanner,
#bottomBanner > a
{
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 300px;
	width: 100%;
}

#bottomBanner::after
{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0,0,0,1) 10%, rgba(0,0,0, 0) 100%);
	opacity: .76;
	z-index: -1;
}

#bottomBanner picture img
{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

#bottomBanner h3
{
	margin-bottom: 0;
	max-width: 500px;
	padding: max(30px,
	             min(80px, 30px + (80 - 30) * ((100vw - 767px) / (1600 - 767))
	));
	color: #ffffff;
}

@media (min-width: 1280px)
{

	#bottomBanner,
	#bottomBanner > a
	{
		min-height: 544px;
	}
}

/* bio spotlight */

#bioSpotlight
{
	/* Deemed too much spacing on bio search page */
	/*padding-top: max(80px,
				 min(136px, 80px + (136 - 80) * ((100vw - 767px) / (1600 - 767))
	));*/

	/* Still too much spacing */
	/*padding-top: max(30px,
				 min(50px, 30px + (50 - 30) * ((100vw - 767px) / (1600 - 767))
	));*/
}

#bioSpotlight .title
{
	/* There are two different styles in the mockups - one on the homepage, one on text pages.	Jessica said they should be the same, so I'm going with what I think looks best */

	font-weight: 500;
	/*--max-font-size: 20;*/
	--max-font-size: 26;
}

#bioSpotlight .subtitle
{
	font-style: italic;
	--max-font-size: 20;
}

#bioSpotlight .hovertext
{
	margin-top: 20px;
}

/* Bio xref */

.bioXref li
{
	display: flex;
	margin: 0 0 10px 0;
}

.bioXref .photo
{
	flex: 0 0 146px;
	margin-right: 26px;
}

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

.bioXref .content
{
	margin-top: 20px;
}

.bioXref .title
{
	font-weight: 700;
	/*font-size: 24px;*/
	--min-font-size: 20;
	--max-font-size: 24;
	line-height: 1.25;
}

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

.bioXref .bioposition
{
	margin: 6px 0;
	text-transform: uppercase;
	--min-font-size: 15;
	--max-font-size: 18;
	line-height: 1.25;
}

.bioXref .office
{
	--min-font-size: 16;
	--max-font-size: 21;
	line-height: 1.25;
}

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

/* changed per jessica */
/*.bioXref .office a:not(:hover):not(:focus)
{
	color: var(--blue-green) !important;
}*/


/* News items at the bottom of bios and practices */

.itemNewsItems
{
	margin-bottom: 123px;
	max-width: 1325px;
}

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

.itemNewsItems ul
{
	display: grid;
	grid-gap: 30px;
}

.itemNewsItems li
{
	position: relative;
	min-height: 40vh;
}

.itemNewsItems .image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.itemNewsItems .image::before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,.8) 30%, transparent);
	opacity: .8;
	z-index: 1;
}

.itemNewsItems .image img
{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.itemNewsItems .title
{
	position: relative;
	z-index: 10;
	padding: 42px;
	box-sizing: border-box;
	--max-font-size: 30;
	font-family: 'playfair_display';
	color: #ffffff;
	padding: 40px max(30px,
				 min(42px, 30px + (42 - 30) * ((100vw - 768px) / (1280 - 768))
	));

	padding-right: max(30px,
				 min(75px, 30px + (75 - 30) * ((100vw - 768px) / (1280 - 768))
	));

	line-height: 1.4375;
	box-sizing: border-box;
}

.itemNewsItems li a::after
{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	display: block;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .9);
	transition: all 500ms ease;
}

.itemNewsItems li:is(:hover,:focus-within)::after
{
	position: absolute;
	top: -15px;
	right: -15px;
	content: '';
	display: block;
	width: 97px;
	height: 97px;
	background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
	background-size: cover;
	transform: rotate(-135deg);
}

.itemNewsItems li a:is(:hover,:focus)::after
{
	width: calc(100% - 33px);
	height: calc(100% - 33px);
}

.itemNewsItems li a:is(:hover,:focus) .title
{
	color: #000000;
	transition: all 250ms ease 300ms;
}


@media (min-width: 768px)
{
	.itemNewsItems ul
	{
		grid-template-columns: repeat(3, 1fr);
	}

	.itemNewsItems .title
	{
		padding-top: max(40px,
					 min(75px, 40px + (75 - 40) * ((100vw - 768px) / (1280 - 768))
		));
	}


	.bioXrefColumned ul.results_list
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 28px;
		grid-column-gap: 55px;
	}
}

@media (min-width: 1280px)
{
	.itemNewsItems ul
	{
		grid-gap: 105px;
	}

	.itemNewsItems li
	{
		min-height: 0;
		aspect-ratio: 371/544;
	}


	#bioSpotlight .hovertext
	{
		display: none;
	}

	#bioSpotlight a:is(:hover,:focus) .hovertext
	{
		display: block;
	}
}


/* Testimonial */

#testimonial
{
	padding: max(50px,
				 min(90px, 50px + (90 - 50) * ((100vw - 767px) / (1600 - 767))
	)) 0;
	margin-top: max(50px,
				 min(90px, 50px + (90 - 50) * ((100vw - 767px) / (1600 - 767))
	));
	border-top: 1px solid var(--rules);
}

body.careers #testimonial
{
	margin-top: 0;
	border-top: none;
}

#testimonial .content
{
	margin: 0 auto;
	max-width: 1000px;
}

#testimonial .quote
{
	text-align: center;
	--max-font-size: 38;
	font-family: 'playfair_display';
	line-height: 1.42;
}

 .attribution
{
	margin-top: 20px;
	--max-font-size: 18;
	text-align: center;
	/*color: var(--medium-cyan);*/
	color: var(--cyan-blue);
	font-style: italic;
}

/* Freeform spotlight */

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


@keyframes reveal_up
{

	0%
	{
		clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
		opacity: 0;
	}

	50%
	{

		opacity: 1;
	}

	100%
	{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}

}

.freeFormSpotlight li
{
	max-width: 371px;
	background: var(--dark-cyan);

	transition: all 1000ms ease;

	clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
	opacity: 0;

}

.freeFormSpotlight li.reveal
{
	animation: reveal_up forwards 1s;
}

@media (max-width: 767px)
{
	/* page speed optimizer for home hero */
	body#index .freeFormSpotlight li.reveal
	{
		animation: none;
		transition: none;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}


.freeFormSpotlight li,
.freeFormSpotlight li > a:not(.sp_pencil)
{
	position: relative;
	display: flex;
	align-items: flex-end;
	color: #ffffff;
	aspect-ratio: 471 / 544;
	/*aspect-ratio: 371 / 544;*/
}

.freeFormSpotlight li > a:not(.sp_pencil)
{
	height: 100%;
	width: 100%;
}

.freeFormSpotlight:not(#bioSpotlight) li > a
{
	background: none;
	transition: background 500ms ease;
}

.freeFormSpotlight:not(#bioSpotlight) li > a:is(:hover,:focus)
{
	background: var(--light-cyan);
}

.freeFormSpotlight:not(#bioSpotlight) li > a:is(:hover,:focus) .image
{
	/*display: none;*/
	opacity: 0;
}

.freeFormSpotlight:not(#bioSpotlight) a:is(:hover,:focus) .smalltext,
.freeFormSpotlight:not(#bioSpotlight) a:is(:hover,:focus) .title,
.freeFormSpotlight:not(#bioSpotlight) a:is(:hover,:focus) .subtitle
{
	color: #000000;
}

.freeFormSpotlight a:is(:hover,:focus) .largetext
{
	color: var(--dark-cyan);
}

.freeFormSpotlight .image
{
	height: 100%;
	width: 100%;
	transition: opacity 250ms ease;
}


.freeFormSpotlight .aligner
{
	position: relative;
	z-index: 2;
	padding: max(20px,
				 min(50px, 20px + (50 - 20) * ((100vw - 600px) / (1600 - 600))
	));

	padding-bottom: max(30px,
				 min(50px, 30px + (50 - 30) * ((100vw - 767px) / (1600 - 767))
	));
}

.freeFormSpotlight .image,
.freeFormSpotlight .image img
{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

.freeFormSpotlight .image img
{
	object-position: center top;
}

.freeFormSpotlight .image::before
{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	content: '';
	/*background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 70%);*/
	background: linear-gradient(to top, rgba(0, 0, 0, .7) 30%, transparent 80%);
	opacity: .5;
	transition: all 500ms ease;
}

.freeFormSpotlight a:is(:hover,:focus) .image::before
{
	/*background: linear-gradient(to top, rgba(0, 0, 0, .7) 50%, transparent 100%);*/
	opacity: 1;
}

/*.freeFormSpotlight:not(#bioSpotlight) .image::after,
.freeFormSpotlight li > a:not(.sp_pencil):is(:hover,:focus)::after*/
.freeFormSpotlight:not(#bioSpotlight) .image::after,
.freeFormSpotlight li > a:not(.sp_pencil)::after
{
	position: absolute;
	top: -13px;
	right: -13px;
	content: '';
	display: block;
	width: 88px;
	height: 88px;

	background: url('../i/icon-chevron.svgz') no-repeat; /* data-uri */
	background-size: 100%;
	transform: rotate(-135deg);
}

.freeFormSpotlight li > a:not(.sp_pencil)::after
{
	opacity: 0;
	transition: opacity 250ms ease;
}

.freeFormSpotlight li > a:not(.sp_pencil):is(:hover,:focus)::after
{
	opacity: 1;
}

.freeFormSpotlight .playbutton
{
	margin-bottom: 16px;
}

.freeFormSpotlight .svgCircle
{
	fill: var(--light-blue);
}

.freeFormSpotlight .svgInnards
{
	fill: #ffffff;
}

.freeFormSpotlight .largetext
{
	--fluid-start: 1400;
	--max-font-size: 95;
	--min-font-size: 45;
	--max-margin-bottom: 10;
	line-height: 1.1;
	font-family: 'playfair_display';
	color: var(--light-blue);
}

.freeFormSpotlight .smalltext
{
	--min-font-size: 19;
	--max-font-size: 21;
}

.freeFormMultiple
{
	margin-top: 52px;
	margin-bottom: max(75px,
				 min(124px, 75px + (124 - 75) * ((100vw - 1200px) / (1700 - 1200))
	));
}

.freeFormMultiple ul
{
	display: grid;
	grid-gap: 20px;
}

#freeFormIntro
{
	margin: 0 0 40px;
}

#freeFormSingle li,
#freeFormSingle a
{
	aspect-ratio: unset;
	min-height: 544px;
}

@media (min-width: 600px)
{
	.freeFormMultiple ul
	{
		display: flex;
		flex-wrap: wrap;
		/*justify-content: space-between;*/
		justify-content: center;

	}


	.freeFormMultiple li
	{
		width: 45%;
		max-width: 371px;
	}
}

@media (min-width: 920px)
{
	#freeFormSingle ul
	{
		display: flex;
		justify-content: flex-end;
	}

}

@media (min-width: 1280px)
{
	.freeFormMultiple
	{
		display: flex;
		justify-content: space-between;
		padding-bottom: max(150px,
					 min(255px, 150px + (255 - 150) * ((100vw - 1200px) / (1700 - 1200))
		));
	}

	.freeFormMultiple ul
	{
		justify-content: space-between;
	}

	.freeFormMultiple #freeFormIntro
	{
		margin-top: max(40px,
					 min(75px, 40px + (75 - 40) * ((100vw - 1200px) / (1600 - 1200))
		));
		flex: 0 1 500px;
	}

	.freeFormMultiple .results
	{
		flex: 0 3 837px;
		box-sizing: border-box;
		margin-left: 100px;
	}

	.freeFormSpotlight li,
	.freeFormSpotlight li a:not(.sp_pencil)
	{
		aspect-ratio: 371 / 544;
	}

	.freeFormMultiple li:nth-child(odd)
	{
		top: max(150px,
					 min(255px, 150px + (255 - 150) * ((100vw - 1200px) / (1700 - 1200))
		));
	}
}


/* News list */

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


.newsList .itemdate span
{
	display: block;
	line-height: 1;
}

.newsList .itemdate .month
{
	font-size: 17px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.newsList .itemdate .month,
.newsList .itemdate .year
{
	color: var(--logo-gray);
}

.newsList .itemdate .day
{
	font-size: 50px;
	font-family: 'playfair_display';
	line-height: .75;
	margin-bottom: 12px;
	color: var(--dark-cyan);
}

.newsList .itemdate .year
{
	letter-spacing: 3px;
	font-size: 16px;
}

.newsList li
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 32px;
	overflow: hidden;
}

.newsList .itemdate
{
	display: block;
	/*float: left;*/
	width: 100px;
	flex: 0 0 100px;
	min-height: 100px;
	padding: 15px 10px 5px;
	margin-right: 49px;
	border: 1px solid var(--rules);
	text-align: center;
	box-sizing: border-box;
}

.newsList li:is(:hover, :focus-within) .itemdate
{
	background: var(--very-light-cyan);
}


.newsList .content
{
	margin-top: 6px;
}

.newsList .info
{

	text-transform: uppercase;
	--max-font-size: 17;
	letter-spacing: 1px;
	color: var(--dark-cyan);
	overflow: hidden;
	font-weight: 400;
}

.newsList .info > div
{
	display: inline;
}

.newsList .info .location
{
	text-transform: none;
	letter-spacing: 0px;
	font-style: italic;
}

.newsList .info > div + div::before
{
	content: '|';
	margin: 0 10px;
}

.newsList .section
{
	font-weight: 400;
	color: var(--dark-cyan);
	text-transform: uppercase;
	--max-font-size: 17;
	letter-spacing: 1px;
}

.newsList .title
{
	--min-font-size: 18;
	--max-font-size: 21;
	/*color: var(--logo-gray);*/ /* changed per swati */
	font-weight: 300;
	line-height: 1.71;
}

.newsList .title a
{
	color: inherit;
}

.newsList li:is(:hover, :focus-within) .title a
{
	color: var(--blue-green);
}

.splitNewsList
{
	margin-top: 120px;
}

/*
.splitNewsList.newsList .year
{
	display: none;
}
*/

.splitNewsList h2
{
	margin-top: 10px;
	--max-font-size: 70;
	--min-margin-bottom: 20;
	--max-margin-bottom: 60;
}

@media (min-width: 768px)
{
	.splitNewsList
	{
		display: flex;
		justify-content: space-between;
	}

	.splitNewsList > div:first-child
	{
		flex: 0 3 45%;
		padding-right: 50px;
		box-sizing: border-box;
	}

	.splitNewsList > div.results,
	.splitNewsList > div.itemList
	{
		flex: 0 1 65%;
		max-width: 825px;
	}
}

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

#footer
{
	position: relative;
	padding: 60px 0;
	margin-top: 40px;
	background: #2E2E2E;
}

#footer a
{
	color: #ffffff;
}

#footer a:is(:hover,:focus)
{
	color: var(--light-blue);
}

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

#footer .top
{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #707070;
}

#footerLogo
{
	overflow: hidden;
	width: 58px;
	height: 58px;
	margin: 0 auto 40px;
}

#footerLogo svg
{
	fill: #ffffff;
	height: 100%;
	width: auto;
}

/*#footerLogo #logoText
{
	display: none;
}*/

#footerLogo #logoG
{
	fill: #ffffff;
}

#footerLogo #logoAngle
{
	fill: var(--logo-teal);
}


#footer .bottom
{
	color: var(--light-cyan);
	font-size: 17px;
}

#footer .bottom li
{
	font-size:	inherit;
}

#footer .bottom a
{
	color: inherit;
}

#footerOffices
{
	overflow: hidden;
}

#footerOffices ul.results_list,
#footerSocial ul,
#footerLinks
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

}

#footerOffices li
{
	font-size: 18px;
	font-weight: 400;
}

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


#footerSocial ul li:not(:last-child),
#footerLinks li:not(:last-child)
{
	margin-right: 25px;
}

#footerSocial
{
	text-align: center;
}

#footerSocial > a:not(:last-child)
{
	margin-right: 25px;
}

#footerSocial ul
{
	margin: 0 0 15px;
}

#footerSocial svg
{
	fill: #ffffff;
}

#footerSocial a:is(:hover,:focus) svg
{
	fill: var(--light-blue);
}

#footerSocial a:is(:hover,:focus),
#footerLinks a:is(:hover,:focus)
{
	color: #ffffff;
}

#footer #footerLinks
{
	margin-top: 15px;
}

#footerSubscribe
{
	margin-top: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}

#footerSubscribe a
{
	padding: 10px 20px;
	display: inline-block;
	background: var(--logo-teal);
	line-height: 1;
	border-radius: 20px;
}

@media (min-width: 768px)
{

	#footer .top
	{
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		/*padding: 0 0 57px 0;*/
		padding: 0 0 75px;
	}

	#footerLogo
	{
		margin: 0 40px 0 0;
	}

	#footerOffices
	{
		width: 100%;
	}

	#footerOffices ul.results_list
	{
		justify-content: flex-end;
		width: 100%;
	}

	#footerOffices li
	{
		margin: 0 0 0 30px !important;
	}

	#footerSubscribe
	{
		position: absolute;
		bottom: 30px;
		right: 0;
	}

}

@media (min-width: 1024px)
{
	#footer .bottom
	{
		display: flex;
		justify-content: space-between;
	}

	#footerSocial
	{
		display: flex;
	}

	#footerSocial ul
	{
		margin: 0 30px 0 0;
	}

	#footer #footerLinks
	{
		margin: 0;
	}
}

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

.inlineMultimediaPlaceholder
{
	position: relative;
	z-index: 10;
	max-width: none;
	margin: 15px 0px 8px 0px;
}

.popupPlayerWrapper.inlinePlayer
{
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: inherit;
	top: inherit;
	left: inherit;
	width: 100%;
	height: auto;
	overflow: visible;
	margin: 0 0 1.25em 0;
	padding-bottom: 0;
	transform: none;
}

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

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

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

.popupPlayerWrapper.inlinePlayer .mediaPlayer,
.popupPlayerWrapper.inlinePlayer.playerWithSidebar .mediaPlayer,
.popupPlayerWrapper.inlinePlayer.playerWithPlaylist .mediaPlayer,
.popupPlayerWrapper.inlinePlayer.playerWithPlaylist.playerWithSidebar .mediaPlayer
{
	position: relative;
	width: 100% !important;
	height: 100% !important;

	 /* 16:9 */
	padding-bottom: 56.25%;
}

/* 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: 9;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 25%;
	max-width: 100%;
	overflow: hidden;
	background: #f0f0f0;
}

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

.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
{
	list-style: none;
	position: relative;
	left: 0;
	width: 100%;
	min-width: 100000px;
	height: calc(100% - 10px);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

.popupPlayerPlaylist ul li
{
	display: block;
	float: left;
	position: relative;
	list-style: none;
	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;
	z-index: 5;
	top: 0;
	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:is(:hover,: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;
	background: #d8d8d8;
	border-top: 5px solid #f0f0f0;
	border-bottom: 5px solid #f0f0f0;
	text-align: center;
}

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

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

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

a#playlistPrev:is(:hover,:focus),
a#playlistNext:is(:hover,: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: 0;
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	background: #f5f5f5;
}

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

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

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

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

.popupPlayerSidebar .expandableHeading:is(:hover, :focus)
{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	color: inherit;
	pointer-events: none;
}

.popupPlayerWrapper .position
{
	color: #333333;
}

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

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

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

#mainContent .xrefMultimediaList ul li,
.itemMultimediaList ul.results_list li
{
	margin: 0 0 30px 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: 310px;
}

#mainContent .xrefMultimediaList ul li .photo img,
.itemMultimediaList ul.results_list 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
{
	content: '';
	clear: both;
	display: block;
}

#mainContent .xrefMultimediaList ul li .photo,
.itemMultimediaList ul.results_list li .photo
{
	position: relative;
	z-index: 1;
	float: left;
	margin: 0 0 10px 0;
	width: 100%;
}

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

.xrefMultimediaList ul li .videomore,
.xrefMultimediaList ul li .title,
.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;
	position: relative;
	max-width: 100%;
}

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

/* start player icon - only edit attributes after the first block! */
.photo .triggerPopupPlayer::before,
.photo .triggerPopupPlayer::after
{
	/* don't edit this block */
	content: '';
	display: block;
	position: absolute;
	top: calc(50% - 0.5em);
	z-index: 5;

	/* left position of inner triangle, will need to adjust slightly based on scale */
	left: calc(50% - .35em);

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

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

	/* font-size here is the full width/height of the icon */
	font-size: 70px;

	/* set the relative size of the triangle inside the circle */
	transform: scale(.5);

	opacity: .85;
	transition: opacity 250ms linear;
}

.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 */
	top: calc(50% - 0.5em);
	left: calc(50% - 0.5em);
	width: 1em;
	height: 1em;
	border: .05em solid currentColor;
	border-radius: 50%;
	box-sizing: border-box;
	transform: none;
}

.photo .triggerPopupPlayer::after
{
	width: 0;
	height: 0;
	background: none;
	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;

	box-shadow: none;
}

.photo .triggerPopupPlayer:is(:hover, :focus-within)::before,
.photo .triggerPopupPlayer:is(:hover, :focus-within)::after
{
	opacity: 1;
}


@media all and (orientation: portrait)
{
	.popupPlayerWrapper
	{
		z-index: 99999999;
		top: 50%;
		left: 50%;
		width: 90vw;
		transform: translate(-50%, -50%);
	}
}

@media (min-width: 768px)
{
	.popupPlayerWrapper
	{
		border: 12px solid #cecece;
		border-radius: 2px;
	}

	.popupPlayerWrapper.inlinePlayer
	{
		display: block;
		height: 100%;
		overflow: initial;
		padding-bottom: unset;
	}

	.popupPlayerWrapper.playerWithSidebar .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithSidebar .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist.playerWithSidebar .mediaPlayer
	{
		width: 75% !important;
		padding-bottom: unset;
	}

	.popupPlayerWrapper.inlinePlayer .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithSidebar .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist .popupPlayerPlaylist,
	.popupPlayerWrapper.inlinePlayer.playerWithPlaylist.playerWithSidebar .popupPlayerPlaylist
	{
		max-width: 100%;
		height: 25%;
	}

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

	.popupPlayerSidebar > div h2,
	.popupPlayerSidebar > div h2.expandableHeading
	{
		padding: 12px 0 8px 0;
	}

	.popupPlayerSidebar
	{
		z-index: 10;
	}

	.popupPlayerWrapper.inlinePlayer .popupPlayerSidebar
	{
		position: absolute;
		width: 25% !important;
		height: 100% !important;
	}

	#mainContent .xrefMultimediaList ul li .photo img,
	.itemMultimediaList ul.results_list li .photo img
	{
		width: 310px;
	}
}

@media (min-width: 920px)
{
	.itemMultimediaList ul.results_list,
	.xrefMultimediaList ul
	{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		justify-content: space-between;
	}
}

@media (min-width: 1025px)
{
	/* might want something a little smaller and centered
	.inlineMultimediaPlaceholder
	{
		max-width: 75%;
		margin: 15px auto 8px auto;
	}
	*/

	#mainContent .xrefMultimediaList ul li,
	.itemMultimediaList ul.results_list li
	{
		margin: 0 0 10px 0;
	}

	.itemMultimediaList ul.results_list li .photo,
	#mainContent .xrefMultimediaList ul li .photo
	{
		float: left;
	}
}


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

#cookieBanner
{
	display: none;
	position: -webkit-sticky;
	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 !important;
	text-decoration: underline;
}

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

#cookieBanner div button
{
	display: flex;
	padding: 14px 18px 14px 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;

	transition: all 350ms;
}

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

#cookieBanner div button:after
{
	content: '×';
	display: block;
	margin-left: 18px;
	font-size: 33px;
	line-height: .6;
}

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

	#cookieBanner p
	{
		font-size: 18px;
		line-height: 28px;
	}
}

#cookieOptions
{
	--min-font-size: 14px;
	font-size: 14px;

	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 button.closeButton
{
	top: 22px;
	right: 22px;
	background: none;
	padding: 0 24px 24px 0;
	background: none;
	border-radius: 0;

	color: black;
}

#cookieOptions button.closeButton:hover
{
	opacity: .5 !important;
}

#cookieOptions button.closeButton:before,
#cookieOptions button.closeButton:after
{
	width: 24px;
	left: 0;
	top: 10px;
}

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

#cookieOptions > div
{
	position: relative;
	width: calc(100vw - 40px);
	max-width: 650px;
	max-height: calc(100vh - 120px);
	overflow: auto;
	background: white;
	padding: 25px 0 0;
	box-sizing: border-box;

	--cookie-border: 1px solid #C1C1C1;
	border: var(--cookie-border);
	border-radius: 4px;
}

#cookieOptions > div > div,
#cookieOptions h2#cookieTitle
{
	padding: 0 40px;
}

#cookieOptions h2#cookieTitle
{
	font-size: 1.42em;
	font-weight: bolder;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 0.8em;

	border-bottom: var(--cookie-border);

	margin: 0 0 30px;
	padding-bottom: 8px;
	padding-right: 60px;

	position: sticky;
}

#cookieOptions h2#cookieTitle > *
{
	margin-bottom: 20px;
}

#cookieOptions h2#cookieTitle svg
{
	max-height: 1.3em;
	width: auto;
}

#cookieOptions h2#cookieTitle::after
{
	content: '';
}

#cookieOptions h3
{
	margin: 0 0 .5em;
	padding: 0 0 0;

	font-size: 1.28em;
	font-weight: bolder;
}

#cookieOptions .cookieType
{
	overflow: hidden;
	margin-top: 2em;
}

#cookieOptions .cookieTypeLabel
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.8em;

	margin-bottom: 0.8em;

	align-items: center;
}

#cookieOptions .cookieTypeLabel h3
{
	margin: 0;
	line-height: 1.1;
}

#cookieOptions .alwaysActive
{
	font-size: max(12px, .85em);

	font-weight: bolder;
	color: var(--blue-green);
}

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

#cookieOptions #cookieConfirm
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap-reverse;
	gap: 0.8em;

	background: inherit;

	border-top: var(--cookie-border);
	padding-top: 22px;
	padding-bottom: 22px;
	margin: 0;

	/*
	position: sticky !important;
	bottom: 0;
	z-index: 1;
	*/
}

#cookieConfirm div
{
	display:flex;
	align-items: center;

	color: #959595;
}

#cookieConfirm button:not(:focus, :hover)
{
	background: var(--blue-green);
	color: white;
}

#cookieConfirm img
{
	xvertical-align: middle;
	height: 1.5em;
}

/* the widget container */
.toggleGroup
{
	position: relative;
	width: 85px;
	height: 28px;
	background: var(--blue-green);
	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-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: rgba(255,255,255,.8);
	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%;

	/* set a white background image with 100% opacity over a background color, then
	   later we'll dial down opacity on the background image for "off" state */
	--switch-opacity: 1;
	--switch-grad: rgba(255,255,255, var(--switch-opacity));

	background-image: linear-gradient(var(--switch-grad), var(--switch-grad));
	background-color: var(--blue-green);
	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;
	--switch-opacity: 0.8;
}


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

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


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

#emailPopup
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(51, 51, 51, 0.7);
	transition: opacity .3s;
}

#emailPopup:not(.open)
{
	opacity: 0;
	pointer-events: none;
}

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

#emailPopupContent
{
	width: calc(100vw - 40px);
	max-width: 800px;
	max-height: calc(100vh - 120px);
	overflow: auto;
	padding: 20px;
	background: white;
	border: 12px solid #cecece;
	box-sizing: border-box;
}

#emailDisclaimerButtons
{
	text-align: center;
}

#emailDisclaimerButtons > *
{
	display: inline-block;
	margin: 10px;
	padding: 4px 10px;
	width: auto;
	overflow: visible;
	background: var(--blue-green);
	border: none;
	color: #fff;
	font: inherit;
	text-transform: inherit;
	text-align: center;
	line-height: inherit;

	/* Corrects font smoothing for webkit */
	-webkit-font-smoothing: inherit;

	/* Corrects inability to style clickable `input` types in iOS */
	-webkit-appearance: none;

	cursor: pointer;
}

#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
{
	flex-basis: 100%;
	width: 100%;
}

/* search text input and button */
#sp_class_search .search_text
{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	margin: 1em 0 0;
}

#sp_class_search .search_text input
{
	display: block;
	height: auto;
	margin: 0;
	vertical-align: bottom;
}

#sp_class_search #searchtext
{
	flex-grow: 1;
	flex-basis: 0;
	width: 100%;
	margin-right: 1rem;
}

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

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

.search_section_wrapper
{
	display: flex;
}

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

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

/* checkbox/radio rows */
#sp_class_search .sections > div,
#sp_class_search .search_type > div > div
{
	display: flex;
	align-items: center;
	padding: 0 0 0.8rem .3rem;
}

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

#sp_class_search label
{
	display: flex;
	align-content: center;
	align-items: flex-end;
	padding-top: 1px;
	padding-left: 0.5rem;
	font-size: 1rem;
	line-height: 1;
}

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

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

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

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

#search .search_result_date
{
	color: #888;
}

.searchBioWrapper > div > div
{
	flex-direction: column;
}

@media (min-width: 768px)
{
	#sp_class_search .search_text
	{
		flex-direction: row;
		align-items: stretch;
	}

	#sp_class_search #searchtext
	{
		width: auto;
	}

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

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

	.searchBioWrapper > div > div
	{
		flex-direction: row;
	}
}

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

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

.searchfoundtext
{
	font-weight: bolder;
}

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

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

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

#search .view_more a::before
{
	display: none;
}

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

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

#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
{
	margin-top: 27px;
	border: none;
	font-weight: bold;
}

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

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

#search .searchOptionsWrapper
{
	position: relative;
	width: 100%;
	max-width: 400px;
}

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

#search #searchOptions
{
	width: 100%;
	max-width: 400px;
}

#search select:hover
{
	cursor: pointer;
}

/* bio section search results */
.searchBioWrapper div.results_list > div
{
	display: flex;
}

.searchBioWrapper .photo
{
	order: 2;
	padding: 0 0 9px 0;
	margin: 0;
}

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

.searchBioWrapper .title
{
	font-weight: 700;
}

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

.result-items > div,
.result-items > p
{
	margin: 0 0 32px;
	padding: 0 0 32px;
	border-bottom: 1px solid #a69e9d;
}

@media (min-width: 768px)
{
	.searchBioWrapper .photo img
	{
		padding: 0 0 0 32px;
	}
}

.result-items p.link
{
	font-weight: 700;
	margin-bottom: 0;
	padding-top: 5px;
	padding-bottom: 0;
	border-bottom: none;
}



/* Example Styles Support */

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

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:is(:hover,:focus)
{
	background: #6a747c;
	text-decoration: none;
}

/* buttons to look like links */
button.toggleExpand,
.expandButton button,
.collapseButton button
{
	position: relative;
	margin: 0 0 35px 0;
	padding: 0 0 0 30px !important;
	background: none !important;
	border: none;
	color: #0a80ca;
	font: inherit;
	text-align: left;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 400;
	color: #000000;
	font-size: 17px;
	letter-spacing: 1px;
}

button.toggleExpand:is(:hover,:focus),
.expandButton button:is(:hover,:focus),
.collapseButton button:is(:hover,:focus)
{
	color: #000000;
}

.expandButton button::before,
.collapseButton button::before
{
	position: absolute;
	left: 0;
	top: 3px;
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: var(--orange-yellow);

	mask-image: url('../i/icon-chevron.svg');
	mask-size: 18px;
	transform: rotate(180deg);
}

.collapseButton button::before
{
	transform: unset;
}

button.toggleExpand svg
{
	position: absolute;
	left: 0;
	top: 3px;
	display: block;
	width: 18px;
	height: auto;
	fill: var(--orange-yellow);
}

button.toggleExpand:not(.expanded) svg
{
	transform: rotate(180deg);
}

button.toggleExpand:is(:hover,:focus) svg
{
	fill: var(--blue-green);
}

.expandButton button:is(:hover,:focus)::before,
.collapseButton button:is(:hover,:focus)::before
{
	background: var(--blue-green);
}

/* 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;
	background: transparent;
	border: 1px solid #ccc;
	box-sizing: border-box;
	text-align: center;
}

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

.nowrap
{
	white-space: nowrap;
}

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