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

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: #000;
	font-family: 'sourcesans', Arial, sans-serif;
	line-height: 1.6;

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

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

	--link-color: #306095;
	--button-color: #306095;
	--button-hover-color: #868686;

	--brand-yellow: #FCFFB3;
	--brand-light-blue: #1BCAEA;
	--brand-dark-blue: #09396D;
	--brand-lightgray: #F5F5F5;
}

h1, .titleLikeH1, h2, h3, h4, h5, h6, p, li, .title, .section, .subtitle, #sectionTitle,  #bioTitle,
.toggleExpand, .attachment_wrapper a, #officeAddress
{
	/* fluid css - https://codepen.io/lowbatteries/full/qBEyXEP */
	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)))
		));

	--max-padding-top: 12;
	--max-padding-bottom: 12;
	*/

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

	--max-margin-top: 12;
	--max-margin-bottom: 30;
}

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;

	margin: 0 auto;
	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;
	}
}

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

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

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


b, strong
{
	/* 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(--link-color);
	text-decoration: none;
}

a:is(:hover,:focus)
{
	color: #888888;
	color: #008099;
}

/* search results highlight */
mark
{
	background: var(--link-color);
	color: white;
}

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

h1, .titleLikeH1, h2, h3, h4, h5, h6
{
	padding: 0;
	color: #444444;

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

	line-height: normal;

	--min-margin-top: 30;
	--max-margin-top: 30;
	--min-margin-bottom: 18;
	--max-margin-bottom: 18;
}

h1,
.titleLikeH1
{
	font-weight: 600;
	letter-spacing: 0.62px;
	--min-font-size: 42;
	--max-font-size: 62;
}

h2
{
	font-weight: 700;
	--min-font-size: 30;
	--max-font-size: 38;
}

#subContent h2
{
	font-weight: 600;
	--min-font-size: 17;
	--max-font-size: 22;
}

h2.itemMatches
{
	font-weight: bold;
	font-size: 1.1em;
}

h3
{
	font-weight: 500;
	letter-spacing: 0.72px;
	--min-font-size: 28;
	--max-font-size: 36;
}

h4
{
	color: #444;
	font-weight: 600;
	--min-font-size: 21.5;
	--max-font-size: 28;
}

h5
{
	text-transform: uppercase;
	--min-font-size: 18;
	--max-font-size: 27;
}

/* Reserved for Print Pilot */
h6
{
	font-weight: bolder;
	--min-font-size: 14;
	--max-font-size: 22;
}

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

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

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

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

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

/* invalid directly-nested lists need the left margin from 'li' above */
:is(ul,ol) > :is(ul,ol)
{
	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;
}

#content a svg path
{
	fill: var(--link-color);
}

#content a:is(:hover,:focus) svg path
{
	fill: inherit;
}

@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,
#upperContent::before,
#tabLinks::before,
#aboveContent::before,
body.mapPage #belowContent::before,
.staticNews::before,
#whatCanWeHelpYouFind::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;
}

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

	text-transform: inherit;
	text-align: inherit;

	color: var(--link-color);
	text-decoration: none;
	cursor: pointer;
}

.expandButton button:is(:hover,:focus),
.collapseButton button:is(:hover,:focus)
{
	text-decoration: underline;
}

.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
{
	/* button reset */
	border: none;
	margin: 0;
	width: auto;
	overflow: visible;
	color: inherit;
	font: inherit;
	text-transform: inherit;
	text-align: inherit;
	line-height: inherit;

	/* Corrects font smoothing for webkit */
	-webkit-font-smoothing: inherit;
	/* Corrects inability to style clickable `input` types in iOS */
	-webkit-appearance: none;
	appearance: none;
	/* end button reset */

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

/* let this one float wherever it lands (just above the footer */
#jumpPage
{
	top: auto;
}

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

#header
{
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	width: 100%;
	height: 130px;
	padding: 0 16px 0 16px;
	box-sizing: border-box;
	transition: height 250ms ease-out;
}

body.scrolled #header
{
	height: 76px;
	background: var(--brand-dark-blue);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
}

#header::after
{
	content: '';
	position: absolute;
	z-index: 35;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 130px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.50) 30%, transparent);

	/*
	height: 330px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.50) 10%, transparent);
	*/
	
	background-image: linear-gradient(to bottom, rgba(17,50,95,0.90) 1%, transparent); 
}

body#index #header::after
{
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.50) 10%, transparent); 
}

body.scrolled #header::after
{
	display: none;
}

#logo
{
	/* inline-block to prevent logo from interfering with nav */
	display: block;
	position: relative;
	z-index: 8999;
	width: 100%;
	max-width: 1560px;
	height: 63px;
	height: 42px;
	margin: 34px auto 0 auto;
	transition: all 250ms ease-out;
}

#logo svg
{
	display: block;
	position: absolute;
	top: 0;
	width: auto;
	max-width: calc(100vw - 180px);
	height: 63px;
	height: 42px;
	fill: #000;
	transition: all 250ms ease-out;
}

body.scrolled #logo
{
	margin: 10px auto 0 auto;
}

body.scrolled #logo,
body.scrolled #logo svg
{
	height: 51px;
}

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

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

#logo svg .st1
{
	fill: #108FBE;
}
*/

#logo svg:first-of-type
{
	opacity: 1;
}

#logo svg:last-of-type
{
	opacity: 0;
}

body.scrolled #logo svg:first-of-type
{
	opacity: 0;
}

body.scrolled #logo svg:last-of-type
{
	opacity: 1;
}

#logo svg:first-of-type .st0 
{
	stroke-width: .25px;
}

#logo svg:first-of-type .st0, 
#logo svg:first-of-type .st1, 
#logo svg:first-of-type .st2 
{
	fill: #fff;
}

#logo svg:first-of-type .st0, 
#logo svg:first-of-type .st2 
{
	stroke: #fff;
	stroke-miterlimit: 10;
}

#logo svg:last-of-type .st0 
{
	fill: #fff;
}

#logo svg:last-of-type .st1 
{
	fill: #a6a8ab;
}

@media (min-width: 920px)
{
	#logo,
	#logo svg
	{
		height: 63px;
	}
	
	#header
	{
		padding: 0 44px 0 44px;
	}
}

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

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


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

#banner
{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 30;
	width: calc(100% + 32px);
	min-height: 268px;
	overflow: hidden;
	margin-left: -16px;
	padding: 0 16px;
	background-color: var(--brand-dark-blue);
	box-sizing: border-box;
}

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

#bannerImage
{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
}

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

#bannerImage > picture > img
{
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: var(--brand-dark-blue);
}

#bannerImageOverlay
{
	position: absolute;
	top: 0;
	right: 490px;
	z-index: 3;
	width: 100%;
	height: 100%;
	/*overflow: hidden;*/
}

#bannerImageOverlay #polygon1
{
	position: absolute;
	top: 0;
	z-index: 1;
}

#bannerImageOverlay #polygon2
{
	position: absolute;
	top: 0;
	left: 412px;
	z-index: 2;
}

body.noImageBanner #bannerImageOverlay
{
	right: -660px;
	width: 100vw;
}

body.noImageBanner #bannerImageOverlay #polygon1
{
	position: absolute;
	top: 0;
	z-index: 2;
}

body.noImageBanner #bannerImageOverlay #polygon2
{
	position: absolute;
	top: 0;
	left: 480px;
	z-index: 3;
}

body.noImageBanner #bannerImageOverlay #polygon3
{
	position: absolute;
	top: 0;
	left: 520px;
	z-index: 1;
}

#bannerContent
{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 30px;
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1560px;
	height: 100%;
	margin: 0px auto;
	padding: 130px 0 20px 0;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
}

#banner h1,
#banner .titleLikeH1
{
	color: #fff;
	line-height: 1;

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

@media (min-width: 920px)
{
	#banner
	{
		width: calc(100% + 88px);
		margin-left: -44px;
		padding: 0 44px;
	}

	#bannerContent
	{
		padding: 130px 0 40px 0;
	}
}

@media (min-width: 1350px)
{
	#banner
	{
		width: calc(100% + 160px);
		min-height: 468px;
		margin-left: -80px;
		padding: 0 80px;
	}

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

	body.tallBanner #banner
	{
		min-height: 630px;
	}

	#bannerContent
	{
		padding: 130px 0 70px 0;
	}
}


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

#searchJump
{
	display: block;
	position: absolute;
	z-index: 10000;
	top: 51px;
	right: 77px;
	line-height: 1;
	cursor: pointer;
	transition: top 250ms ease-out;
}

body.scrolled #searchJump
{
	top: 26px;
}

body.mobileActive #searchJump,
body.scroll.mobileActive #searchJump
{
	top: 19px;
	right: 62px;
}

#searchJump svg
{
	display: block;
	width: 100%;
	height: auto;
	max-width: 31px;
	/*fill: var(--brand-yellow);*/
	fill: none;
	stroke: var(--brand-yellow);
}

body.mobileActive #searchJump svg
{
	stroke: #FFF;
}

#searchJump:is(:hover,:focus) svg
{
	opacity: 1;
	/*
	fill: #888;
	fill: var(--brand-light-blue);
	*/
	stroke: #fff;
	transition: stroke 0.3s, opacity 0.3s;
}

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

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

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

	body.scrolled #searchJump
	{
		top: 23px;
		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.open
{
	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: calc(100% - min(5vw, 20px) - 52px);
	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;
	z-index: 1;
	top: 0;
	margin-top: 0;

	background: white;
	font-weight: 700;
	font-size: 16px !important;

	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.searchPopup .popupHeader a
{
	display: block;
	color: black;
	font-weight: inherit;
}

.searchPopup .popupHeader a,
#allSearch a
{
	color: inherit;
}

/* search popup results: bio */
.acBio
{
	padding-top: 0;
	padding-bottom: 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;
}

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

.acBio .title
{
	margin-bottom: 0;
	margin-top: 0;
	--min-margin-bottom: 0;
	--min-margin-top: 0;
}

#allSearch
{
	top: auto;
	bottom: 0;

	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	width: 100%;
	margin: 0px;
	padding: 10px 38px;
	background: var(--link-color);
	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
{
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	text-align: left;
}

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

/* all menu links */
#mainNav a
{
	color: var(--brand-yellow);
	text-decoration: none;
}

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

#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: var(--brand-yellow);

	color: white;
	text-decoration: none;
}

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

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

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

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

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

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

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


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

@media (min-width: 1400px)
{
	#mainNav
	{
		display: flex;
		position: absolute;
		z-index: 9999;
		top: 41px;

		/* body's padding minus menu item's padding */
		right: calc(-1vw + 80px + 60px);

		transition: top 250ms ease-out;
	}

	body.scrolled #mainNav
	{
		top: 16px;
	}

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

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

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

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

	#mainNav > ul ul
	{
		/*** center the drops ***/
		left: calc(50% - 140px);
		width: 288px;

		/*background: var(--brand-yellow);*/
		background: #DCF6FF;
		margin-top: 19px;
		padding: 10px 40px 18px 40px;
		box-sizing: border-box;
	}

	#mainNav > ul ul::before 
	{
		content: "";
		position: absolute;
		top: -8px;
		
		left: 50%;
		transform: translateX(-50%);
	  
		width: 0;
		height: 0;
	  
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #DCF6FF;
	}

	#mainNav > ul > li > a
	{
		margin-left: 1px;
		padding: 2px  calc(1vw - 1px);
		border: 1px solid transparent;
		white-space: nowrap;
		font-size: 1.35rem;
	}

	#mainNav > ul > li
	{
		padding-bottom: 19px;
		

	}

	#mainNav > ul > li.current > a,
	#mainNav > ul > li > a:is(:hover,:focus),
	#mainNav > ul > li:is(:hover,:focus) > a
	{
		background: none;
		border: 1px solid var(--brand-light-blue);
		border-radius: 15px;
		color: #fff;
	}

	#mainNav > ul > li > a:is(:hover,:focus)
	{
		background: none;
		color: #fff;
	}

	/*
	#mainNav > ul > li.current > a::after,
	#mainNav > ul > li > a:is(:hover,:focus)::after
	{
		content: '';

		height: 2px;
		background: #000000;

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

		z-index: 99999999;
	}
	*/

	/* second-level links */

	/*
	#mainNav li li:not(:last-child)
	{
		border-bottom: 1px solid rgba(27, 202, 234, 0.37);
	}
	*/

	#mainNav li li > a
	{
		color: #575252;
		padding-left: 4px;
		padding-right: 4px;
		font-size: 1.25rem;
	}

	#mainNav > ul > li > ul > li > a:is(:hover,:focus)
	{
		color: #000;
		background: none;
	}

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

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

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

		top: 0;
		left: 100%;
	}

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

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

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

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

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

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

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

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


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

	button#navToggle
	{
		display: none;
	}

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

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

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

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

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

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

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


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

@media (max-width: 1399px)
{
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 9998;
		top: 0;
		right: -100vw;
		left: auto;
		width: 100vw;
		max-width: 440px;
		height: 100vh;
		padding: 160px 0px 10px;
		padding: 73px 16px 120px;
		/*background: var(--brand-yellow);*/
		background: #DCF6FF;
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;

		overflow: hidden;
        overflow-y: auto;
	}

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

		overscroll-behavior: contain
	}

	#mainNav::before
	{
		display: none;
	}

	#mainNav::after
	{
		display: block;
		content: '';
		position: fixed;
		z-index: 10000;
		top: 0px;
		right: 0;
		max-width: 100vw;
		width: 440px;
		height: 60px;
		background: #306095;
		opacity: 0;
		transition: all 0.3s ease-in-out;
	}

	body.mobileActive #mainNav::after
	{
		opacity: 1;
	}

	#mainNav > ul,
	#mainNav li ul
	{
		padding-left: 0px;
		padding-right: 0px;
		/*width: 40vw; /* put a max width on lists even though the parent expands the full viewport */
		/*max-width: 440px;*/
	}

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

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

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

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

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

	#mainNav a
	{
		color: #ffffff;
		color: var(--brand-dark-blue);
	}

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

	#mainNav li > a
	{
		padding-left: 0;
		padding-right: 0;
	}

	#mainNav > ul > li
	{
		margin: 0.8rem 48px 0px 48px;
		font-size: 1.2rem;
	}

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

	#mainNav > ul ul > li
	{
		font-size: 1rem;
		text-transform: none;
	}

	#mainNav > ul li a
	{
		/*border-bottom: 1px solid rgba(27, 202, 234, 0.37);*/
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	#mainNav > ul > li > ul > li a
	{
		border-bottom: 0px solid rgba(27, 202, 234, 0.37);
		padding-bottom: 0px;
		margin-bottom: 0px;
	}

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

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

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

	#mainNav #subNavBack
	{
		position: absolute;
		top: 0;
	}

	#mainNav #subNavBack a
	{
		position: relative;
		margin-left: 1px;
	}

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

	#mainNav ul ul li.subNavHeader
	{
		margin-top: 12px;
		font-size: 1.2rem;
		text-transform: uppercase;
	}

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


	/* Mobile Nav 'Hamburger' Button */

	button#navToggle
	{
		display: flex;
		align-items: center;
		position: absolute;
		z-index: 9999;
		top: calc(50% - 14px);
		right: 40px;
		font-size: 0;
	}

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

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

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

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

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

	body.mobileActive .mobileNavBox span
	{
		margin-top: 0;
	}

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

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

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

	body.mobileActive .mobileNavLabel
	{
		display: inline-block;
		color: #fff;
		font-weight: 600;
		vertical-align: middle;
		text-transform: uppercase;
		font-size: 1.2rem;
	}


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

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

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

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

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

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

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


	/* 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;
		padding-top: 0;
		padding-bottom: 0;
		background: none;
		border-top: 0px;
		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;
	}
	
}

@media (max-width: 1399px)
{
	#mainNav > ul > li
	{
		font-size: 1.6rem;
	}

	#mainNav > ul ul > li
	{
		font-size: 1.2rem;
	}

	#mainNav li > a:first-child:not(:last-child)::after
	{
		top: 2px;
		font-size: 2.4rem;
	}

	#mainNav #subNavBack a::before
	{
		left: -10px;
		font-size: 3rem;
		line-height: 1.3rem;
	}

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

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

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

	

	button#navToggle
	{
		right: 12px;
	}
}

@media (max-width: 414px)
{
	button#navToggle.mobileNav.isActive
	{
		right: 260px;
	}
}

@media (max-width: 375px)
{
	button#navToggle.mobileNav.isActive
	{
		right: 220px;
	}
}

@media (max-width: 320px)
{
	button#navToggle.mobileNav.isActive
	{
		right: 166px;
	}
}


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

#subNav
{
	/*max-width: 50vw;*/
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	box-sizing: border-box;
}

ul.subNavList
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
	row-gap: 10px;
	margin: 0;
	padding: 0;
}

ul.subNavList li
{
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1rem;
	letter-spacing: 1.92px;
	text-transform: uppercase;
	line-height: 1.1;
}

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

ul.subNavList li a
{
	display: flex;
	align-items: center;
	padding: 13px 24px;
	border-radius: 22.5px;
	border: 1px solid var(--brand-light-blue);
	color: #fff;
}

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

ul.subNavList li.here > a,
ul.subNavList li.hereParent > a
{
	color: var(--brand-light-blue);
}

@media (max-width: 1024px)
{

}


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

.expandableHeading,
h2.sectionTitle
{
	position: relative;
	margin: -1px 0 0 0;
	padding: 20px 24px 20px 0;
	border-top: 1px solid #1BCAEA;
	border-bottom: 1px solid #1BCAEA;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #444444;
	cursor: pointer;
}

.expandableHeading.expanded,
h2.sectionTitle.isOpen
{
	border-bottom-color: transparent;
}

.expandableHeading:is(:hover,:focus)
{
	color: var(--link-color);
}

.expandableHeading button
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none;
	color: inherit;
	text-transform: inherit;
	text-align: left;
	cursor: pointer;
}

h2.sectionTitle
{
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
}

.expandableHeading button::after,
h2.sectionTitle::after
{
	display: inline-block;
	content: '\25BC';
	content: '';
	width: 19px;
	height: 9px;
	background-image: url('../i/expander.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-left: 10px;
	font-size: 1.75rem;
	line-height: 1;
	color: #323232;
	transition: transform 0.25s ease;
}

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

.expandableContent
{
	display: none;
	overflow: hidden;
	border-bottom: 1px solid #1BCAEA;
}

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

	h2.sectionTitle
	{
		display: flex;
	}

	.contentSection
	{
		display: block !important;
	}

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

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

/* desktop tabs */
@media (min-width: 1025px)
{
	#tabLinks
	{
		position: relative;
		width: 100%;
		max-width: 1560px;
		margin: 0 auto 2em auto;
		padding: max(15px, 2.0vw) 0px max(7.5px, 1vw) 0px;
		background: var(--brand-lightgray);
	}

	#tabLinks a
	{
		display: inline-block;
		position: relative;
		margin-right: max(10px, 1.15vw);
		margin-bottom: max(10px, 1vw);
		padding: .4em 1.5em;
		border-radius: 22.5px;
		border: 1px solid #1BCAEA;
		color: #323232;
		font-size: 1rem;
		font-weight: 400;
		letter-spacing: 1.1px;
		text-transform: uppercase;
	}

	#tabLinks a:is(:hover,:focus)
	{
		background: var(--brand-dark-blue);
		border-color: var(--brand-dark-blue);
		color: #fff;
	}

	#tabLinks .current
	{
		color: #000;
		text-decoration: none;
		cursor: default;

		background: var(--brand-dark-blue);
		border-color: var(--brand-dark-blue);
		color: #fff;
	}

	.sectionTitle
	{
		display: none;
	}

	/*
	#tabLinks a#tabViewAll
	{
		float: right;
		padding: 0.5em 0;
		border: none;
	}
	*/
	
	#mainContent .contentSection
	{
		padding-bottom: 1rem;
	}
}

.bioMore > a#tabViewMore
{
	display: inline-block;
	margin-top: 10px;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
}


/* 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 > *
{
	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: var(--link-color);
	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 -------------------------------------------------------> */

#aboveContent
{
	position: relative;
	width: calc(100% + 32px);
	margin-left: -16px;
	background: var(--brand-dark-blue);
}

/*
#aboveContent::after
{
	content: '';
	position: absolute;
	z-index: 35;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 150px;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.7) 0px,
		rgba(0, 0, 0, 0) 140px
		);
}
*/

#content
{
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 1560px;
	min-height: 350px;
	margin: 3.5rem auto 2.5rem auto;
}

#tabLinks + #content
{
	margin-top: 1em;
}

/*
#tabLinks + #content section:first-child > h2:not(.sectionTitle)
{
	--max-margin-top: 8;
	--min-margin-top: 8;
}
*/

#upperContent
{
	position: relative;
	background: var(--brand-dark-blue);
}

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

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

@media (min-width: 920px)
{
	#aboveContent
	{
		width: calc(100% + 88px);
		margin-left: -44px;
	}
	
	#content
	{
		display: block;
	}

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

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

	#subContent
	{
		clear: right;
		float: right;
		width: 25%;
		border-top: none;
	}
}

@media (min-width: 1025px)
{
	#searchInfo #searchOptions
	{
		clear: left;
		float: left;
		width: 25%;
		border-top: none;
	}
}

@media (min-width: 1350px)
{
	#aboveContent
	{
		width: calc(100% + 160px);
		margin-left: -80px;
	}
}

.narrowContent,
body#page404 #mainContent
{
	position: relative;
	width: 100%;
	max-width: 1216px;
	margin: 0 auto;
	box-sizing: border-box;
}

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

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

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

ul.none
{
	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, industry, and office 'professionals' */
.expandableFullList .results_list > li
{
	display: none;
}

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

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

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

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

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

a#pdfLink,
#bioPDF
{
	font-weight: 700;
}

/* View More type links */

.view_more a
{
	display: inline-block;
	padding: 0.6rem 2rem;
	background: #fff;
	border: 1px solid var(--brand-light-blue);
	color: #323232;
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: inherit;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2em;
	transition: background 0.2s, border-color 0.2s, color 0.2s;

}

.view_more a:is(:hover,:focus)
{
	background: var(--brand-light-blue);
	color: #fff;
}

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


#buttons404
{
	display: flex;
	gap: 7px;
}

#buttons404 .view_more:last-child a
{
	padding-left: 50px;
	background-image: url('../i/icon-search-dark-blue.svg'); /* data-uri */
	background-position: 20px center;
	background-repeat: no-repeat;
	background-size: 18px;
}


/* Static News */

#belowContent ~ #footer
{
	margin-top: 0;
}

.staticNews:not(.featuredNews)
{
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin-top: 3rem;
	margin-left: auto;
	margin-right: auto;
	padding: 45px 0 25px 0;
	background: #f5f5f5;
}

.staticNews:not(.featuredNews) h2
{
	--max-font-size: 36;
	font-weight: 500;
}

.staticNews ul.results_list
{
	position: relative;
}

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

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

.staticNews ul.results_list > li a
{
	display: block;
	height: 100%;
	box-sizing: border-box;
}

.staticNews ul.results_list > li .info
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 3;
	height: 100%;
	padding: max(45px, 3vw) 57px;
	box-sizing: border-box;
}

.staticNews ul.results_list > li .info .title
{
	color: #fff;
	font-size: 1.6rem;
}

.staticNews ul.results_list > li .info .title:only-child
{
	margin-top: auto;
	justify-self: flex-end;
}

.staticNews ul.results_list > li .info .section
{
	position: relative;
	color: #DCF6FF;
	padding-left: 6px;
}

.staticNews ul.results_list > li .info .section:before
{
	content: '';
	position: absolute;
	top: 14px;
	left: -57px;
	width: 57px;
	height: 5px;
	background: #FCFFB3;
}

.staticNews ul.results_list > li .image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.staticNews ul.results_list > li .image:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(0, 0, 0, 0.5);
}

.staticNews ul.results_list > li:is(:hover,:focus) .image:before
{
	background: rgba(0, 0, 0, 0.75);
}

.staticNews ul.results_list > li .image img
{
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

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

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

	.staticNews ul.results_list > li a
	{
		min-height: 325px;
	}
}


#lowerPageSpotlight
{
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
	margin-top: 0;
	margin-bottom: 0;
	background: #000;
}

#lowerPageSpotlight .info
{
	display: flex;
	justify-content: flex-end;
	position: absolute;
	bottom: 0px;
	left: 16px;
	right: 16px;
	/*width: 100%;*/
	max-width: 1536px;
	margin: 0px auto;
	padding: 0 0 0 24px;
	box-sizing: border-box;
	color: #fff;
	text-align: right;
}

#lowerPageSpotlight .info h2
{
	--min-font-size: 40;
	--max-font-size: 48;
	--min-margin-top: 0;
	--max-margin-top: 0;
	--min-margin-bottom: 0;
	--max-margin-bottom: 0;
	color: #fff;
	font-weight: 600;
}

#lowerPageSpotlight .image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.5;
}

@media (min-width: 768px)
{
	#lowerPageSpotlight .info
	{
		bottom: 100px;
		left: 16px;
		right: 16px;
	}

	#lowerPageSpotlight .image img
	{
		opacity: 1;
	}
}

@media (min-width: 920px)
{
	#lowerPageSpotlight .info
	{
		left: 44px;
		right: 44px;
	}
}

@media (min-width: 1350px)
{
	#lowerPageSpotlight .info
	{
		left: 80px;
		right: 80px;
	}
}

.profileItemList .info
{
	font-size: 1.125rem;
	color: #306095;
}

.profileItemList .info:before
{
	content: '';
	display:inline-block;
	width: 31px;
	height: 4px;
	margin: 0 16px 3px 0;
	background: var(--brand-light-blue);
	vertical-align: middle;
}

.profileItemList .info .section
{
	font-size: 1.125rem;
}

.profileItemList .title
{
	color: #323232;
}

.profileItemList .title a:not(:hover,:focus)
{
	color: #323232;
}

.profileItemList .title a:is(:hover,:focus)
{
	color: var(--link-color);
}


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

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

form > div
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	grid-gap: 8px;
}

body.newsroom-signup #mainContent > div > form
{
	max-width: 1200px;
	margin: 0 auto;
}

form > div > div
{
	position: relative;
}

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

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

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

form > div > div.checkbox_wrapper > div
{
  	width: 100%;
}

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 > :is(.textarea_wrapper, .checkbox_wrapper, .radio_wrapper) label p
{
	font-size: 16px;
}

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

form > div > div.checkbox_wrapper > div > div > input
{
	align-self: flex-start;
	margin: 4px 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 > div > label
{
	display: inline-block;
	padding: 2px 0 0 4px;
}

form > div > div.radio_wrapper > div > div > input
{
	margin-left: 0px;
}

form > div > div.submit_wrapper
{
	display: flex;
	justify-content: space-between;
	gap: 10px;
	grid-column: 1 / -1;
	width: 100%;
}

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

#practiceSearch form > div
{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: 740px;
}

#practiceSearch form > div > div
{
	width: 100%;
}

#practiceSearch form > div > div:last-child
{
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

form > p
{
	width: 100%;
}

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

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

/* reset button appearance on iOS */
input[type=submit],
button,
::-webkit-file-upload-button
{
	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,
.fsComboBox [role="textbox"]
{
	width: 100%;
	height: 52px;
	margin: 0;
	padding: 10px 7px 10px 20px;
	background-color: #E6F5FA;
	border: 1px solid #E6F5FA;
	border-radius: 0;
	box-sizing: border-box;
	color: #306095;
	font-size: 16px;
	line-height: 1.8;
	vertical-align: top;
}

#banner input[type=text],
#banner select,
#banner .fsComboBox [role="textbox"]
{
	background-color: #154579;
	border-color: #306095;
	color: #fff;
}

.fsComboBox [role="textbox"]
{
	position: relative;
}

.fsComboBox [role="textbox"]:after
{
	border-color: #86ACB9;
}

.fsComboListBox
{
	border-color: #d6d6d6;
	border-color: #E6F5FA; /* Per swati 58124 */
}

#banner .fsComboListBox
{
	background-color: #154579;
	border-color: #306095;
}

.fsComboListBox.singleSelect > li > input
{
	display: none;
}

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: 10px 7px 10px 20px;
	color: #306095;
	font-size: 16px;
	line-height: 1.8;
	z-index: 1;
}

#banner .search_form form > div > div > label
{
	color: #fff;
}

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

#banner .search_form form > div > div.hasFocus > label
{
	color: #306095;
}

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

/* 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(var(--link-color), var(--link-color));
	background-color: var(--link-color) !important;
	color: white !important;
}
*/

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
.fsComboBox [role="textbox"]:focus-within,
.fsComboBox.open [role="textbox"]
{
	/* there must be a visual change on focus for accessibility */
	background-color: #eee;
	background-color: #E6F5FA; /* Per swati 58124 */
}

/* invalid styles - pink! */
.errors + div > form input:not([type=radio]):invalid,
.errors + div > form textarea:invalid,
.errors + div > form select[data-invalid],
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
{
	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,
.reviseButton a
{
	/* needed to normalize vertical text alignment across <a> and <button> elements */
	align-items: center;
	display: inline-flex;

	width: auto;
	height: 42px;
	margin: 0 0 10px 0;
	padding: 1px 18px 1px 18px;
	background: #154579;
	border-radius: 22px;
	border: 0 solid var(--button-color);
	border: 1px solid #306095;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
	cursor: pointer;
	vertical-align: top;
	text-transform: uppercase;
	letter-spacing: 1.92px;
}

.fsComboBox button
{
	background: var(--brand-dark-blue);
	color: #fff;
}

#banner .fsComboBox button
{
	background: #333;
	color: #fff;
}

/* 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
{
	text-transform: uppercase;
}

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

:is(
	input[type=submit],
	button[type=submit],
	.standardButton,
	.packet-button,
	.reviseButton
):is(:hover, :focus)
{
	background: #306095;
	color: #fff;
	text-decoration: none;
}


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

#emailField
{
	display: none;
}

@media (max-width: 500px)
{
	form > div
	{
		grid-template-columns: unset;
	}
}

@media (min-width: 768px)
{
	form > div > div.checkbox_wrapper > div
	{
		display: grid;
		grid-template-columns: 50% 50%;
		row-gap: min(5vw, 20px);
		writing-mode: vertical-lr;
	}

	form > div > div.checkbox_wrapper > div > div
	{
		writing-mode: horizontal-tb;
	}

	form > div > div.radio_wrapper > div
	{
		/* might want this if more than two radios
		display: grid;
		grid-template-columns: 50% 50%;
		row-gap: min(5vw, 20px);
		writing-mode: vertical-lr;
		*/

		display: flex;
		column-gap: min(5vw, 8px);
		width: 100%;
		box-sizing: border-box;
	}

	form > div > div.radio_wrapper > div > div
	{
		/*writing-mode: horizontal-tb; */
		padding-right: 10px;
		/*width: 50%;*/
		box-sizing: border-box;
	}
}

@media (min-width: 1025px)
{
	#banner .search_form
	{
		width: 100%;
		max-width: 740px;
	}

	#banner form > div 
	{
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	}

	body.professionals #mainContent form > div
	{
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	}
}


/* CAPTCHA */

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

#captcha_wrapper > label
{
	flex-basis: 100%;
	order: 1;
}

#captcha_wrapper > input
{
	flex-basis: calc(100% - 150px);
	order: 3;
}

#captcha_wrapper > img
{
	order: 2;
	display: inline-block;
	height: 52px !important;
	margin: 0 10px 0 0;
	padding: 10px;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
}

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


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


/* Job List */

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

#jobList .title
{
	margin: 0;
	font-weight: 700;
	--max-font-size: 24;
}

#jobList .experience p
{
	margin-top: 0;
}

#jobList ul.results_list li
{
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid #ccc;
}

#jobList ul.results_list li:last-child
{
	border-bottom: none;
}


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

#footer
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	max-width: 1560px;
    margin: 2.5rem auto 0 auto;
	padding: 2rem 0;
	background: #101010;
	box-sizing: border-box;
	color: #c5c4c4;
}

#footerLogo
{
	display: inline-flex;
	align-items: center;
}

#footerLogo svg
{
	display: block;
	width: 100%;
	height: auto;
	max-width: 70px;
	max-height: 35px;
	fill: #ffffff;
}

#footerLogo svg .st1
{
	fill: #a6a8ab;
}

#footer a
{
	color: #c5c4c4;
}

#footer a:is(:hover,:focus)
{
	color: #1BCAEA;
}

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

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

ul#footerLinks
{
	width: 100%;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #fafcc0;
}

ul#footerLinks li
{
	display: inline-flex;
	align-items: center;
	margin: 0 0.5rem 0 0.5rem;
	white-space: nowrap;
}

ul#footerLinks li.includeSeparator:after
{
	content: "|";
	display: block;
	margin: 0 0rem 0 1.25rem;
	color: #fafcc0;
}

#footer p
{
	margin: 0;
	padding: 0;
	font-size: 0.8rem;
}

.footerSocialLink
{
	display: inline-flex;
	align-items: center;
	margin-left: auto !important;
	margin-right: 0 !important;
}

.footerSocialLink a
{
	display: inline-block;
	padding: 4px;
}

.footerSocialLink a svg path
{
	fill: #ffffff;
}

.footerSocialLink a:is(:hover,:focus) svg path
{
	fill: #1BCAEA;
}

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

#footerOffices ul
{
	gap: 1rem;
}

#footerOffices ul li
{
	white-space: nowrap;
	font-size: 1.05rem;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

#footerOffices ul.results_list
{
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
}

#footerOffices .results_list > li
{
	
	text-align: center;
}

#footerOffices .results_list > li .title
{
	font-size: 1.2rem;
	line-height: 1.2;
}

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

#footerBadges ul
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2.5em 0 1em 0;
}

#footerBadges ul li
{
	display: inline-flex;
	align-items: center;
	margin: 0 0.5rem 0 0.5rem;
	white-space: nowrap;
}

#footerBadges ul li img
{
	width: auto;
	height: 100%;
	max-height: 115px;
	display: block;
}


@media (min-width: 1430px)
{
	ul#footerLinks li:first-child
	{
		margin-right: 1.25rem;
	}
	
	#footerSocial
	{
		margin: 0 0 1rem 0;
	}

	#footerSocial ul
	{
		flex-wrap: nowrap;
	}

	#footerSocial ul li
	{
		margin: 0 0 0 1.8rem;
	}
}

@media (max-width: 1429px)
{
	ul#footerLinks li
	{
		order: 5;
	}

	ul#footerLinks li#footerLogo
	{
		order: 1;
		flex-basis: 100%;
		width: 100%;
		text-align: center;
		display: inline-block;
		margin: 0 0 20px 0;
	}

	ul#footerLinks li#footerLogo svg
	{
		margin: 0px auto;
		text-align: center;
		display: block;
	}

	ul#footerLinks li.footerSocialLink
	{
		order: 10;
		flex-basis: 100%;
		display: inline-block;
		margin: 0px auto !important;
		padding: 20px 0 10px 0;
		text-align: center;
	}
}


/* 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: 80vw;
	height: auto;
	background: #000;
	border: 4px solid #fff;
	border-radius: 2px;
	box-sizing: border-box;
	color: #000;
	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: -22px;
	right: -15px;
}

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

.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: #000;
	color: #fff;
}

.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;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #000;
	box-sizing: border-box;
	color: #fff;
}

.popupPlayerWrapper.inlinePlayer .popupPlayerSidebar
{
	position: relative;
	width: 100% !important;
	height: auto !important;
	padding-top: 0;
	padding-bottom: 0;
}

.popupPlayerWrapper.inlinePlayer.playerWithSidebar .popupPlayerSidebar
{
	padding-top: 20px;
	padding-bottom: 20px;
}

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

.popupPlayerSidebar > div#item_title h1
{
	color: #fff;
	font-weight: 700;
	--min-font-size: 18;
    --max-font-size: 24;
    --min-margin-top: 20;
    --max-margin-top: 20;
}

.popupPlayerSidebar > div h2,
.popupPlayerSidebar > div h2.expandableHeading
{
	margin-left: 0px;
	margin-right: 0px;
	padding: 6px 0 2px 0;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}

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

.popupPlayerSidebar a
{
	color: var(--brand-light-blue);
}

.popupPlayerSidebar a:is(:hover, :focus)
{
	color: #fff;
}

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

.popupPlayerSidebar > div .photo img
{
	max-width: 180px;
}

.popupPlayerWrapper .position
{
	margin-top: -4px;
	color: #fff;
}

.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;
	font-size: 1.1rem;
}

.popupPlayerSidebar > div#item_bio ul li:not(:first-child)
{
	margin: 22px 0 4px 0;
}

.popupPlayerSidebar > div#item_bio ul li .title
{
	font-size: 1.1rem;
	--min-font-size: unset;
}

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


/* Mini Player */

.popupPlayerWrapper.miniPlayer
{
	top: unset;
	left: unset;
	bottom: 20px;
	right: 20px;
	width: 200px;
	border: 3px solid #cecece;
	border-radius: 2px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
	transform: none;
	transition: width 350ms ease-in-out;
}

.popupPlayerWrapper.miniPlayer .popupPlayerSidebar,
.popupPlayerWrapper.miniPlayer .popupPlayerPlaylist
{
	display: none !important;
}

.popupPlayerWrapper.miniPlayer .mediaPlayer
{
	width: 100% !important;
	height: 100% !important;
}

.popupPlayerWrapper button.miniPlayerButton
{
	z-index: 25;
	top: -22px;
	right: 107px;
}

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

	.popupPlayerWrapper.miniPlayer
	{
		top: unset;
		left: unset;
		bottom: 20px;
		right: 20px;
		width: 200px;
		border: 3px solid #fff;
		border-radius: 2px;
		transform: none;
		transition: width 350ms ease-in-out;
	}
}

@media (min-width: 768px)
{
	.popupPlayerWrapper.inlinePlayer
	{
		display: block;
		height: 100%;
		overflow: initial;
		padding-bottom: unset;
	}

	.popupPlayerWrapper.playerWithSidebar .mediaPlayer,
	.popupPlayerWrapper.inlinePlayer.playerWithSidebar .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: 0;
		--min-margin-top: 10;
		--max-margin-top: 10;
		--min-margin-bottom: 8;
		--max-margin-bottom: 8;
	}

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

	.popupPlayerWrapper.miniPlayer .mediaPlayer
	{
		width: 100% !important;
		height: 100% !important;
	}

	.popupPlayerWrapper.miniPlayer
	{
		top: 20px;
		bottom: unset;
		right: 20px;
		left: unset;
		width: 18vw;
		min-width: 200px;
	}
}

@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;
	float: left;
	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;
}

#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: 1280px)
{
	#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(--link-color);
}

#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 img
{
	height: 1.5em;
}

/* the widget container */
.toggleGroup
{
	position: relative;
	width: 85px;
	height: 28px;
	background: var(--link-color);
	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(--link-color);
	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;
}


/* Alternate Cookie Styles ---------------------------------------------> */
/* Comment this section out if you want the old cookie banner */

#cookieBanner
{
	padding: 1.5rem 0px;
	color: white;
}

#cookieBanner::before
{
	border-top: 1px solid #C1C1C1;
	background: rgba(0,0,0,1);
}

#cookieBanner div button
{
	align-items: center;
	position: relative;
	padding: 10px 18px 10px 18px;
	margin: 14px 0 10px;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,1);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
}

#cookieBanner div button:not(:last-child)
{
	margin-right: 42px;
}

#cookieBanner div button:is(:first-of-type):before
{
	content: '';
	display: inline-block;
	position: absolute;
	bottom: 1px;
	width: 20px;
	min-width: calc(100% - 36px);
	height: 1px;
	border-bottom: 1px solid white;
}

#cookieBanner button:not(:first-of-type)
{
	border: 1px solid currentColor;
	padding-right: 10px;
}

#cookieBanner div button:after
{
	position: relative;
	/*top: -5px;*/
	margin-left: 8px;
	font-size: 33px;
	font-weight: 200;
}

#cookieBanner button:first-of-type:after
{
	top: -3px;
}

#cookieBanner div button:not(:first-of-type:after)
{
	font-size: 40px;
}

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

	#cookieBanner > div > div
	{
		padding-right: max(40px,
            min(80px, 40px + (80 - 40) * ((100vw - 767px) / (1920 - 767))
		));
		margin-top: 10px;
	}

	#cookieBanner p
	{
		font-size: 13px;
		line-height: 1.5;
	}

	#cookieBanner div button
	{
		margin-top: 0;
		margin-bottom: 0;
	}
}

#cookieOptions button.closeButton
{
	top: 28px;
	right: 33px;
}

#cookieOptions h2#cookieTitle
{
	display: block;
	padding-top: 40px;
	padding-bottom: 28px;
}

#cookieOptions h2#cookieTitle span
{
	display: block;
	margin-bottom: 0;
}

#cookieOptions h2#cookieTitle svg
{
	margin-bottom: 10px;
}

#cookieOptions h2#cookieTitle::after
{
	display: block;
	width: 30px;
}

#cookieOptions h3
{
	margin: 0 0 .5em;
	clear: both;
	float: left;
}

#cookieOptions .cookieType h3
{
	margin-top: 0;
}

#cookieOptions .toggleGroup,
#cookieOptions .alwaysActive
{
	clear: right;
	float: right;
}

#cookieOptions #cookieConfirm
{
	display: block;
}

#cookieOptions #cookieConfirm
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

#cookieOptions #cookieConfirm div
{
	order: 2;
}

@media (min-width: 600px)
{
	#cookieOptions #cookieConfirm
	{
		flex-direction: row;
		justify-content: space-between;
	}

	#cookieOptions #cookieConfirm button.standardButton
	{
		order: 3;
	}

}

/* End Alternate Cookie Banner */

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

.closeButton,
.popupShareButton,
.miniPlayerButton
{
	position: absolute;
	top: 4px;
	right: 15px;
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 45px 45px 0 0;
	background-color: #ddd;
	border: none;
	border-radius: 45px;
	color: #999;
	font-size: 0;
	cursor: pointer;
}

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

.miniPlayerButton::after
{
	background: #ddd url('../i/icon-popup.svgz') center center no-repeat; /* data-uri */
	background-size: 22px;
}

.miniPlayer .miniPlayerButton::after
{
	background: #ddd url('../i/icon-popup-back.svgz') center center no-repeat; /* data-uri */
	background-size: 22px;
}

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

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

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

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

@media (min-width: 768px)
{
	.closeButton,
	.popupShareButton,
	.miniPlayerButton
	{
		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(--link-color);
	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;
	appearance: none;

	cursor: pointer;
}

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


/* SiteMap Object */


ul.SITE_MAP
{
	margin: 40px 0;
}

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

ul.SITE_MAP ul ul
{
	margin-left: 38px;
}

ul.SITE_MAP > li
{
	margin: 30px 0 0 0;
	font-size: 26px;
}

ul.SITE_MAP > li > a
{
	font-weight: 500;
}

ul.SITE_MAP > li > a:not(:is(:focus,:hover))
{
	color: inherit;
}

ul.SITE_MAP ul li
{
	margin: 10px 0 0 0;
}


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

#sp_class_search input[type=submit]
{
	background-image: url(../i/icon-search-white.svgz);
	background-repeat: no-repeat;
	background-size: 22px;
	background-position: calc(100% - 14px) 50%;
	padding-right: 48px;
}

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

#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 .search_result_date
{
	color: #606060;
}

.searchBioWrapper .excerpt
{
	margin-top: 1.3em;
}

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

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

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

.result-items p.link,
.searchBioWrapper .title
{
	margin-bottom: 0;
	padding-top: 5px;
	padding-bottom: 1em;
	border-bottom: none;
	font-weight: bolder;

	font-size: 1.375em;
}

.result-items p.link a,
.searchBioWrapper .title a
{
	color: inherit;
}

.result-items p.link a:is(:hover, :focus),
.searchBioWrapper .title a:is(:hover, :focus)
{
	color: var(--link-color);
}

.section-header h2
{
	margin-top: 2em;
	margin-bottom: .5em;
	padding: 2.5em 0 0;
	font-size: 1em;
	font-weight: inherit;
}

.results > .section-header:first-of-type h2
{
	margin-top: 0;
	padding-top: 0;
}

.section-header h2 .sectionLabel
{
	color: var(--link-color);
	text-transform: uppercase;
	font-weight: bolder;
}

.section-header h2 .resultsCount
{
	float: right;
	padding-left: 1em;
	text-transform: none;
}

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

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

#search #searchTabLinks,
#search #searchTabLinks a
{
	color: var(--link-color);
}

#search #searchTabLinks a span
{
	color: var(--link-color);
}

#searchInfo
{
	overflow: hidden; /* we got some floating happening in places */
}

#search #searchResultsFor
{
	float: right;
	margin: 1rem 0 0.5rem 0;
	padding: 0;
}

#searchResultsFor strong
{
	font-weight: inherit;
}

#search #searchResultsForAlt
{
	color: #4D4D4D;
	font-style: italic;
}

#search #searchOptions
{
	display: flex;
	column-gap: 0.8em;
	margin-bottom: 5px;
	white-space: nowrap;
}

#search #searchOptions a,
#search #advSearchLink a
{
	padding: 8px 0;
	border-bottom: 3px solid transparent;
	color: inherit;
}

#search #searchOptions a:is(.selected,:hover,:focus),
#search #advSearchLink a:is(.selected,:hover,:focus)
{
	border-color: var(--link-color);
}

#search #searchOptions a
{
	white-space: nowrap;
}

#search #advSearchLink
{
	padding-top: 1.8em; /* should line up with first search result (on live) */
}

#search #advSearchLink a
{
	background: url(../i/icon-toggle.svgz) no-repeat 0 50% / 26px;
	padding-left: 32px;
	padding-top: 8px;
}

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

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

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

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

.result-items
{
	border-top: 1px solid currentColor;
	padding: 32px 0 0;
}

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

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

@media (min-width: 1025px)
{
	#search #searchResultsFor
	{
		margin: 0 0 0.5rem 0;
	}
}


/* 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: var(--link-color);
	color: #fff;
	text-align: center;
}

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

/* buttons to look like links */
button.toggleExpand
{
	margin: 0 0 1.5em 0;
	padding: 0 !important;
	background: none !important;
	border: none;
	color: var(--button-color);
	font-size: 1.125rem;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

button.toggleExpand:is(:hover,:focus)
{
	color: var(--button-hover-color);
}

.expandableBioList button.toggleExpand
{
	margin-top: 20px;
}


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

p.footnote
{
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;

	margin-top: 3em;
	margin-bottom: 1em;

	border-top: 1px solid currentColor;
	padding-top: 1em;
}

p.footnote + p.footnote
{
	border-top: none;
	padding-top: 0;
	margin-top: 1em;
}

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