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


/*
Roboto

100 Thin
300 Light
400 (normal) Normal
500 Medium
700 (bold) Bold
900 Black



Merriweather (merriweather)

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


*/


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

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

	font-family: 'Roboto', Arial, sans-serif;
	line-height: 1.57;
	color: #000;

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

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

h1, h2, h3, h4, h5, h6, p, .title, .info, .abstract, .itemdate, li, #sectionTitle,
ul.subNavList li, .bannerLink, #officeInfo, .hovertext, #homeDrawers .expandableContent
{
	/* fluid css - https://codepen.io/lowbatteries/full/qBEyXEP */
	font-size: calc(var(--max-font-size) * 1px); /* IE11 */
	font-size: max(
		var(--min-font-size) * 1px, min(
			var(--max-font-size) * 1px,
			var(--min-font-size) * 1px + (var(--max-font-size) - var(--min-font-size)) * ((100vw - var(--fluid-start) * 1px) / (var(--fluid-end) - var(--fluid-start)))
		));

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

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


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

.title
{
	--min-font-size: 17;
}

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

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

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


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

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

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

body
{
	position: relative;
	min-width: 320px;
	margin: 0 auto;
	padding: 0 16px 0 16px;
	background: #fff;
	box-sizing: border-box;
	background: #000000;
}

#siteBackground
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: auto;
	opacity: .6;
}

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

@media (min-width: 1350px)
{
	/*body
	{
		padding: 0 80px;
	}*/
}

@media (min-width: 1800px)
{
	body
	{
		padding: 0 103px;
	}
}

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

}

@media (min-width: 768px) and (max-width: 1023px)
{

	body.hasJumpNav
	{

		height: 100vh;  /* need this to keep the jumpnav sticky when overflow is set to hidden */
	}
}


p
{
	--max-margin-top: 15;
	--max-margin-bottom: 20;
	--min-font-size: 17;
}

li
{
	--min-font-size: 17;
}

p.introtext
{
	--min-font-size: 20;
	--max-font-size: 24;
	font-weight: 500;
	line-height: 1.5;
}

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

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


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

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

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

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

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

sup, sub
{
	line-height: 0;
}

sup
{
	font-size: 0.6rem; /* bug 50771 */
}

a
{
	color: #2B65A7;
	text-decoration: none;
}

a:hover,
a:focus
{
	color: #15457C;
}

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

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

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

h1, h2, h3, h4, h5, h6
{
	padding: 0;
	color: #000000;
	font-weight: 400;
	line-height: 1.25;
}

h1
{
	--max-margin-bottom: 15;
	/*--min-font-size: 28 !important;*/
	--max-font-size: 42;
	font-family: 'merriweather';
}

h2
{
	--max-font-size: 38;
	--max-margin-bottom: 23;
	font-family: 'merriweather';
}

#subContent h2
{
	text-transform: uppercase;

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

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

h3
{
	--min-font-size: 21;
	/*--max-font-size: 34;*/ /*Changed per janice*/
	--max-font-size: 24;
	/*--max-margin-bottom: 26;*/

	--max-margin-top: 20;
	--max-margin-bottom: 13; /*changed per janice*/

	font-family: 'merriweather';
}

h4
{
	--max-margin-bottom: 18;
	--max-font-size: 32;
}

h5
{
	--max-margin-bottom: 18;
	--max-font-size: 28;
	font-weight: 500;
}

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

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

ul, ol
{
	padding: 0;
	margin: 0 0 24px 0;
}

ol
{
	padding-left: 1em;
}

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

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

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

li::marker
{
	color: #676767;
	font-size: 20px;
}

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

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

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

img
{
	border: 0;
}

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

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

/*#content a svg path
{
	fill: #0a80ca;
}

#content a:hover svg path,
#content a: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: 479px)
{
	/* make wys images take up full width on smaller screens */
	p > img,
	p > a:not(sp_pencil) > img
	{
		float: none !important;
		width: 100% !important;
		height: auto !important;
		margin: 10px 0 18px 0 !important;
	}
}


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

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

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

#footer::before,
#homeNewsHeader::before,
#content::before,
/*#sectionTitle::before,*/
#siteBackground::after,
#tabLinks::before,
.staticNews::before,
#subNav::before,
#jumpNav::before,
#cookieBanner::before,
#How-We-Can-Help::before,
section#Newsroom::before
{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	/*
		we need to be left offset by the width of the left margin, which is half the
		difference between page width and viewport width

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


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

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

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

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

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

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

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

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

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

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

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

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

	table.results_list th
	{
		display: none;
	}
}

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


#resultPageLinks
{
	margin: 1em 0;
}

.expandableHeading
{
	position: relative;
	cursor: pointer;
	font-weight: 500;
	padding: 0;
	margin: 0;
	font-family: 'Roboto';
	--min-font-size: 17;
	--max-font-size: 22;
}

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

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

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

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

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

.expandButton.expanded
{
	display: none;
}

.expandableHeading button
{
	display: block;
	width: 100%;
	padding: 19px 0 19px !important;
	border-top: 1px solid #B1B1B1;
}

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

.expandableHeading button svg
{
	position: absolute;
	right: 0;
	top: 17px;
	display: block;
	width: 28px;
	height: 28px;
	/*fill: #D5D5D5;*/
	fill: currentColor;
	transition: transform 250ms ease;
	transform: rotate(180deg);
}

.expandableHeading.expanded button svg
{
	transform: rotate(0deg);
	fill: #2B65A7;
}

.expandableHeading.expanded button::before
{
	content: '';
	position: absolute;
	right: 0;
	top: 17px;
	display: block;
	width: 28px;
	height: 28px;
	background: #2B65A7;
	border-radius: 100%;
}

.expandableHeading.expanded button svg #Path_15
{
	fill: #ffffff;
}

.expandButton button,
button.toggleExpand
{
	position: relative;
	padding-left: 25px !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	color: #2B65A7;
}

button.toggleExpand
{
	margin-bottom: 30px !important;
}

.expandButton button svg
{
	position: absolute;
	left: -6px;
	top: calc(50% - 14px);
	display: block;
	width: 28px;
	height: auto;
	transform: rotate(90deg);
	fill: currentColor;
}

.expandButton button svg path:first-of-type
{
	display: none;
}

.expandableContent
{
	display: none;
	overflow: hidden; /*this makes it so margins don't collapse and you get extra spacing between elements, so need the > :first-child rule below */
}

.expandableContent > :first-child
{
	margin-top: 0;
}

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


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

/*
	how these content jumps should work on desktop:

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

.contentJump
{
	display: block;

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

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


/* make them transparent unless keyboard focused */

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


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

#header
{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
	width: 100%;
	height: 100px;
	padding: 0 20px;
	/*background: rgba(255,255,255,0.90);*/
	box-sizing: border-box;
	background: linear-gradient(to bottom, rgba(0,0,0,.66) 0%, rgba(0,0,0,0) 100%);
}

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

#logo
{
	display: inline-block; /* inline-block to prevent logo from interfering with nav */
	position: relative;
	z-index: 9999;
	width: 189px;
}

#logo svg
{
	display: block;
	width: 100%;
	height: auto;
	margin-top: 25px;
	fill: #ffffff;
}

@media (min-width: 768px)
{
	#header
	{
		height: 150px;
	}

	#logo svg
	{
		margin-top: 45px;
	}
}

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

@media (min-width: 1350px)
{
	#logo
	{
		width: 20%;
		width: 270px;
	}
}

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

}

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

#searchJump
{
	display: block;
	position: absolute;
	width: 27px;
	z-index: 10000;
	top: calc(50% - 13px);
	right: 77px;
	line-height: 1;
	cursor: pointer;
	/*transition: top 0.25s;*/
}

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

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

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

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

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

body.mobileActive
{
	overflow: hidden !important;
	height: 100vh !important;
	position: fixed !important;
}

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

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

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

	opacity: 0;
	height: 0;
	overflow: hidden;

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

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

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

#siteSearch > div
{
	margin: auto;

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

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

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

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

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

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

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

	color: white;

	flex-grow: 1;
}

#searchClose
{
	display: none;
}

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

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

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

#searchPopup
{
	display: block;

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

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

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

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

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

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

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

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

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

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

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

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

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

	box-shadow: 0 0 1px black;

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

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

.searchPopup
{
	display: block;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	box-shadow: 0 0 1px black;

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

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

	top: 0;

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

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

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

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

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

.acBio a
{
	font-weight: bold;
}

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

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

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

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

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

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


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

#banner
{
	position: relative;
	width: 100%;
	height: 263px;
}

/*body.wideContentNoBackground #banner
{
	height: 270px;
}*/

#bannerImage
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100vw;
	height: 100vh;
}

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


#bannerImage img
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	z-index: 1;
}

#bannerContent
{
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
}

#bannerContent *:not(input):not(label):not(.customSelect):not(button):not(a):not(option):not(select):not(#sectionTitle):not(h1)
{
	color: inherit;
	--min-font-size: 16;
}

#bannerContent *:not(input):not(label):not(.customSelect):not(button):not(a):not(option):not(select)
{
	color: inherit;
}

#banner #pdfLink
{
	position: absolute;
	right: 0;
	bottom: 27px;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

#banner #pdfLink.inTitlePDFLink
{
	display: inline-block;
	position: relative;
	right: unset;
	bottom: unset;
	bottom: -5px; /* per J, although I gave her the disclaimer */
}

#banner a#pdfLink:hover svg,
#banner a#pdfLink:focus svg
{
	fill: #ffffff;
}

#bannerContent a,
#bannerContent button
{
	color: #BFE2FF;
}

#bannerContent a:hover,
#banner a#pdfLink:hover,
#bannerContent button:hover,
#bannerContent a:focus,
#banner a#pdfLink:focus,
#bannerContent button:focus
{
	color: #ffffff;
}

body.responsiveBanner #banner
{
	height: auto;
}

body.responsiveBanner #bannerContent
{
	position: relative;
	padding: 185px 0 50px;
}

.pdfLink a,
#bioAccessories a,
#areaShare a
{
	display: block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
}

#banner #pdfLink svg,
#subscribeLink svg,
#bioAccessories svg,
#areaShare svg
{
	display: block;
	width: 100%;
	height: auto;
	fill: #8ABAE3;
}

#banner #pdfLink svg path + path,
.pdfLink svg path + path,
#bioAccessories svg path + path,
#subscribeLink svg path + path,
{
	fill: #ffffff;
}

#banner #pdfLink:hover svg,
#banner #pdfLink:focus svg,
.pdfLink:hover svg,
.pdfLink:focus svg,
#bioAccessories a:hover svg,
#bioAccessories a:focus svg
{
	background: #8ABAE3;
}

#sectionTitle
{
	position: relative;
	/*--min-font-size: 28 !important;*/
	--max-font-size: 56;
	font-family: "merriweather";
}

/*#sectionTitle::before*/
#subNav::before
{
	height: 1px;
	background: #A5A5A5;
}

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


#subscribeLink a svg
{
	width: 58px;
	height: 58px;
}

#subscribeLink a
{
	position: relative;
	display: block;
	padding: 25px 20px 25px 100px;
	border: 1px solid #ffffff;
}

#subscribeLink h3,
#subscribeLink p
{
	margin: 0;
	color: #ffffff;
}

#subscribeLink h3
{
	font-size: 24px;
	color: #C0DDF5;
}

#subscribeLink svg
{
	position: absolute;
	left: 20px;
	top: 21px;
}


#subContent #subscribeLink a
{
	padding: 40px;
	background: #ffffff;
	color: #2B65A7;
	text-align: center;
}

#subContent #subscribeLink p
{
	color: #393939;
	max-width: 250px;
	margin: 0 auto;
}

#subContent #subscribeLink h3
{
	margin-bottom: 14px;
	color: inherit;
}

#subContent #subscribeLink a svg
{
	position: relative;
	top: auto;
	left: auto;
	display: block;
	margin: 0 auto 14px;
}

#subContent #subscribeLink a svg path
{
	fill: currentColor;
}

#subContent #subscribeLink a:hover svg path,
#subContent #subscribeLink a:focus svg path
{
	fill: #ffffff;
}

#subContent #subscribeLink a:hover::before,
#subContent #subscribeLink a:focus::before
{
	content: '';
	position: absolute;
	top: 40px;
	left: calc(50% - 29px);
	display: block;
	width: 58px;
	height: 58px;
	background: #8ABAE3;
	border-radius: 50%;
}

@media (min-width: 1280px)
{
	#subscribeLink a
	{
		position: relative;
		display: block;
		padding: 31px 34px 31px 130px;
		border: 1px solid #ffffff;
	}

	#subscribeLink svg
	{
		left: 34px;
		top: 30px;
	}
}

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

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

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

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

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

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

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

	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: 1350px)
{
	#mainNav
	{
		display: flex;
		position: absolute;
		z-index: 9999;
		top: 70px;

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

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

	#mainNav a
	{
		color: #ffffff;
	}

	#mainNav > ul > li > a
	{
		transition: opacity 250ms ease;
	}

	#mainNav:hover > ul > li > a
	{
		opacity: .45;
	}

	#mainNav:hover > ul > li:hover > a,
	#mainNav:hover > ul > li:focus > a
	{
		opacity: 1;
		color: #ffffff;
	}

	/* 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 li
	{
		background: none;
	}

	#mainNav > ul ul
	{
		/*** center the drops ***/
		left: calc(50% - 120px);
		min-width: 320px;
		height: 0px;

		visibility: hidden;
		/*background: #ffffff;*/
		background: rgba(255, 255, 255, .95);
		/*padding: 32px 32px 32px 89px;*/
		padding: 0 32px 0 89px;
		box-sizing: border-box;
		text-transform: uppercase;
		transition: height 250ms ease, padding 250ms ease;
	}

	/* 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;*/
		visibility: visible;
		/* height: 160px; */ /*  this doesn't make sense - removing */
		height: auto;
		padding: 22px 16px 32px 50px;
	}


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

	#mainNav > ul:first-of-type > li > a
	{
	}

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

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

		height: 2px;
		background: #000000;

		position: absolute;
		bottom: 0;

		z-index: 99999999;
	}*/

	/* second-level links */
	#mainNav li li > a
	{
		position: relative;
		color: #2B65A7;
	}


	#mainNav > ul > li.current > a:not(:hover):not(:focus)
	{

	}


	#mainNav li li:hover > a::before,
	#mainNav > ul > li > ul .current > a::before
	{
		position: absolute;
		left: -14px;
		top: calc(50% - 7px);
		content: '';
		display: block;
		width: 13px;
		height: 14px;
		background: url('../i/icon-arrow-blue.svgz') no-repeat; /* data-uri */
		transform: rotate(-90deg);
		background-size: 100%;
	}

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

	/* position the second nav above and make it smaller */
	#mainNav > ul + ul
	{
		position: absolute;
		right: 60px;
		top: -42px;
		width: auto;
		letter-spacing: 1px;
	}

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

	#mainNav #navButton-newsroom ul,
	#mainNav #navButton-careers ul,
	#mainNav #navButton-contact ul
	{
		display: none;
	}

	#mainNav > ul + ul > li > a
	{
		font-size: 16px;
		text-transform: uppercase;
	}

	/*#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: '– ';
	}
	*/

	#mainNav #navButton-services > ul
	{
		height: 130px;
		min-width: 310px;
	}

	#mainNav #navButton-about > ul
	{
		min-width: 260px;
	}

	#mainNav #navButton-social > ul
	{
		min-width: 365px;
	}
}

@media (min-width: 1600px)
{

	#mainNav
	{
		display: flex;
		justify-content: space-between;
		width: calc(100% - 550px);
		right: 130px;
		top: 50px;
	}

	#mainNav > ul + ul
	{
		position: static;
		display: flex;
		align-items: center;
	}

	#mainNav > ul > li > a
	{

	}

	#searchJump
	{
		top: 60px;
	}
}

@media (min-width: 1800px)
{
	#mainNav
	{
		width: calc(100% - 690px);
	}
}


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

@media (max-width: 1349px)
{
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 9998;
		top: 0;
		right: -100vw;
		left: auto;
		width: 100%;
		height: 100vh;
		padding: 160px 0px 10px 20px;
		background: #0067AC;
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;
	}

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

	#mainNav::before
	{
		display: none;
	}

	#mainNav > ul,
	#mainNav li ul
	{
		padding-left: 0px;
		padding-right: 0px;
		width: 100%;
		max-width: 460px;
	}

	#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 li a
	{
		color: #ffffff;
		padding: 0 0 0 33px;
	}

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

	#mainNav > ul > li
	{
		font-size: 26px;
		margin: 0 0 20px;
		line-height: 1.3;
	}

	#mainNav > ul + ul
	{
		position: relative;
		padding-top: 34px;
		margin-top: 9px;
		text-transform: uppercase;
	}

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

	#mainNav > ul + ul::before
	{
		position: absolute;
		top: 0;
		left: 33px;
		content: '';
		display: block;
		width: 96px;
		height: 1px;
		background: #ffffff;
		z-index: 10;
	}

	#mainNav > ul + ul > li
	{
		font-size: 17px;
	}

	#mainNav ul li:hover:not(.subNavBack) > a::before,
	html[data-whatintent="keyboard"] #mainNav ul li:focus:not(.subNavBack)-within > a::before
	{
		content:'';
		position: absolute;
		left: 0;
		top: calc(50% - 4px);
		display: block;
		width: 10px;
		height: 10px;
		background: url('../i/icon-arrow.svg') no-repeat; /* data-uri */
		background-size: 100%;
		filter: invert(100%);
	}

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

	#mainNav li li:hover > a,
	html[data-whatintent="keyboard"] #mainNav li li:focus-within > a
	{
		background: none;
	}


	#mainNav #subNavBack
	{
		position: absolute;
		top: 130px;
	}

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

	#mainNav #subNavBack a::before
	{
		content: '‹';
		position: absolute;
		left: 0;
		top: -3px;
		font-weight: 300;
	}

	#mainNav ul ul li.subNavHeader
	{
		margin: 40px 0 14px;
		font-size: 24px;
		text-transform: uppercase;
	}

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


	/* Mobile Nav 'Hamburger' Button */

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

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

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

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

	.mobileNavBox span
	{
		position: absolute;
		top: 10px;
		width: 40px;
		height: 4px;
		background-color: #ffffff;
		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;
		/*display: inline-block;
		margin-left: 5px;
		color: #fff;
		font-weight: 600;
		vertical-align: middle;
		text-transform: uppercase;*/
	}


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

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

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

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

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

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

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


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

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

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

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

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

	#mainNav,
	#mainNav li ul
	{

	}

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


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


	button#navToggle
	{
		right: 12px;
	}

	button#navToggle.mobileNav.isActive
	{
		top: 62px;
	}
}

@media (max-width: 767px)
{
	button#navToggle.mobileNav.isActive
	{
		top: 38px;
	}
}


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

ul.subNavList
{
	display: flex;
	flex-wrap: wrap;
	padding: 28px 50px 25px 0;
	margin: 0;
	text-transform: uppercase;
}

ul.subNavList li
{
	list-style: none;
	margin: 0 30px 15px 0;
	padding: 0;
	line-height: 1;
	letter-spacing: 2px;
	--max-font-size: 20;
}

#beforeContent ul.subNavList li
{
	color: #ffffff !important;
}

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

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

#beforeContent ul.subNavList li.here,
#beforeContent ul.subNavList li.hereparent
{
	color: #F8E191 !important;
}

ul.subNavList li a
{
	color: inherit !important;
}

ul.subNavList li a:hover,
ul.subNavList li a:focus
{
	color: #C0DDF5 !important;
}

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

#tabLinks,
#jumpNav
{
	position: relative;
	padding: 20px 0;
	margin-top: 37px;
	color: #ffffff;
	text-transform: uppercase;
}

/*#jumpNav
{
	display: none;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}*/

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

#tabLinks::before,
#jumpNav::before
{
	background: #000000;
	opacity: .43;
}

body.scrolled #jumpNav::before
{
	opacity: .83;
}

#tabLinks a,
#jumpNav li
{
	display: inline-block;
	position: relative;
	letter-spacing: 1px;
	font-size: 16px;
}

#tabLinks a:not(:last-child),
#jumpNav li:not(:last-child)
{
	margin-right: max(25px,
	             min(59px, 25px + (59 - 25) * ((100vw - 1024px) / (1600 - 1024))
	));
}

#tabLinks a:not(:hover):not(:focus),
#jumpNav a:not(:hover):not(:focus)
{
	color: inherit;
}

#tabLinks a.current,
#jumpNav li.current a
{
	color: inherit;
	text-decoration: none;
	cursor: default;
	color: #F8E191 !important;
}

#tabLinks .current::before,
#jumpNav .current::before
{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: -20px;
	background: #ffffff;
}

#tabLinks a:hover,
#tabLinks a:focus,
#jumpNav a:hover,
#jumpNav a:focus
{
	color: #BFE2FF;
}

.contentSection
{
	display: none;
}

.sectionTitle
{
	cursor: pointer;
	display: none;
}

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

@media (min-width: 768px)
{
	#jumpNav
	{
		display: block;
	}
}

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

	h3.sectionTitle
	{
		display: block;
		position: relative;
		overflow: hidden;
		margin: 1px 0 0 0;
		padding: 15px 20px 13px 20px;
		background: #ffffff;
		color: #666;


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

	h3.sectionTitle:hover,
	h3.sectionTitle:focus,
	h3.sectionTitle.isOpen,
	h3.sectionTitle.isOpen
	{
		background: #0067AC;
		color: #ffffff;
	}

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

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

	.contentSection
	{
		display: block !important;
	}

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

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


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

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

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

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

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

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

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

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

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


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

#content
{
	position: relative;
	/*max-width: 1200px;*/
	min-height: 350px;
	padding: max(30px,
	             min(50px, 30px + (50 - 30) * ((100vw - 768px) / (1600 - 768))
	)) 0;
	margin: 0 auto;
}

#content::before
{
	background: #ffffff;
	opacity: .78;
}

body.wideContentNoBackground #content::before
{
	display: none;
}

/*body.wideContentNoBackground #sectionTitle::before
{
	display: none;
}*/

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

body.columnedLayout #content
{
	/*max-width: 1600px;*/ /*might end up putting this back*/
}

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

body.wideContentNoBackground #content
{
	padding-top: 0;
}

body.wideContentNoBackground main
{
	margin-top: 0;
}

#subNav
{
	position: relative;
	width: 100%;
}

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

@media (min-width: 920px)
{
	#mainContent:not(:only-child),
	#overviewMainContent:not(:only-child)
	{
		float: left;
		width: calc(100% - 28% - 128px);
	}

	#mainContent:only-child,
	#overviewMainContent:only-child
	{
		max-width: 1200px;
		margin: 0 auto;
	}

	#subContent,
	#overviewSubcontent
	{
		float: right;
		clear: right;
		width: 28%;
	}

	body.wideContentNoBackground #mainContent,
	body.wideContentNoBackground #content,
	body.searchResults #mainContent,
	body.searchResults #content
	{
		width: 100%;
		max-width: unset;
		float: none;
	}

	body.searchResults #mainContent
	{
		max-width: 1600px;
	}
}

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

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
	}

	#subNav
	{
		order: 3;
	}
}

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

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

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

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

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

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

/* if there are 8 or more, hide any items after first 6 */
.expandableList .results_list > li:nth-last-child(n+8) ~ li:nth-child(n+7)
{
	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;
}


/* Static News */

.staticNews
{
	position: relative;
	padding: 120px 0 50px;
	background: #000000;
}

.staticNews li
{
	position: relative;
	width: 80%;
	max-width: 672px;
	padding: 0 30px 45px;
	margin: 0 0 90px;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	color: #ffffff;
}

.staticNews .image
{
	margin: -50px 0 30px;
	width: 100%;
}

.staticNews .image img
{
	display: block;

	width: 130%;
}

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

.staticNews li a:hover,
.staticNews li a:focus,
.staticNews li a:hover .section,
.staticNews li a:focus .section
{
	color: #8ABAE3;
}

.staticNews .title
{
	--min-margin-bottom: 12;
	--max-margin-bottom: 19;
	--max-font-size: 21;
	--min-font-size: 18;
	line-height: 1.52;
}

.staticNews .section
{
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #BFE2FF;
}

.staticNews .section svg
{
	margin: 0 5px 0 0;
	fill: currentColor;
}

@media (min-width: 768px)
{

	.staticNews ul
	{
		display: flex;
		justify-content: space-between;
		grid-gap: 60px;
		margin-top: max(60px,
		             min(110px, 60px + (110 - 60) * ((100vw - 768px) / (1600 - 768))
		));
	}

	.staticNews li
	{

		padding-left: max(30px,
		             min(83px, 30px + (83 - 30) * ((100vw - 768px) / (1600 - 768))
		));
		padding-right: max(30px,
		             min(83px, 30px + (83 - 30) * ((100vw - 768px) / (1600 - 768))
		));

		margin: 0;

		margin-right: max(30px,
		             min(100px, 30px + (100 - 30) * ((100vw - 768px) / (1600 - 768))
		));

	}

	.staticNews .image
	{

		position: relative;
		margin: 0 0 30px;
		width: 105%;
		height: 14vw;
	}

	.staticNews .image img
	{
		position: absolute;
		bottom: 0;
	}

}


/* Alternating spotlights */

#alternatingSpotlights
{
	margin: 65px 0 40px;
}

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

#alternatingSpotlights li:not(:last-child)
{
	margin: 0 0 70px;
}

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

#alternatingSpotlights .image a
{
	display: block;
	height: 100%;
}

#alternatingSpotlights .content
{
	padding: 0 20px;
}

#alternatingSpotlights .linktext,
.view_more a
{
	margin-top: 30px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 16px;
}

#alternatingSpotlights .linktext a svg,
.view_more a svg
{
	position: relative;
	width: 10px;
	height: 9px;
	margin-right: 10px;
	fill: currentColor;
}

#alternatingSpotlights .image
{
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px)
{

	#alternatingSpotlights li
	{
		position: relative;
		display: flex;
		width: calc(100% + 10px);
		left: -10px;
	}

	#alternatingSpotlights .image
	{
		flex: 0 1 688px;
	}

	#alternatingSpotlights .content
	{
		display: flex;
		align-items: center;
		flex: 0 1 826px;

		padding-left: max(50px,
		             min(110px, 50px + (110 - 50) * ((100vw - 768px) / (1600 - 768))
		));

		padding-right: max(50px,
		             min(130px, 50px + (130 - 50) * ((100vw - 768px) / (1600 - 768))
		));

		border-right: 1px solid #3A64A2;
		box-sizing: border-box;
	}

	#alternatingSpotlights li:nth-child(even)
	{
		flex-direction: row-reverse;
	}

	#alternatingSpotlights li:nth-child(even) .content
	{
		border-right: none;
		border-left: 1px solid #3A64A2;
	}

	#alternatingSpotlights h2
	{
		margin-top: 0;
	}

}


@media (min-width: 920px)
{
	#alternatingSpotlights li
	{
		width: 94vw;
		left: calc(50% - 47vw);
	}
}

@keyframes alternatingSpotlightsTitle
{
	0%
	{
		opacity: 0;
	}

	100%
	{
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes alternatingSpotlightsContent
{
	0%
	{
		opacity: 0;
	}

	100%
	{
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 1024px)
{
	#alternatingSpotlights li:nth-child(odd) .title
	{
		transform: translateX(40px);
		opacity: 0;
	}

	#alternatingSpotlights li:nth-child(even) .title
	{
		transform: translateX(-40px);
		opacity: 0;
	}

	#alternatingSpotlights li.transitionNow .title
	{
		animation: alternatingSpotlightsTitle 500ms forwards 200ms;
	}


	#alternatingSpotlights li .abstract
	{
		transform: translateY(40px);
		opacity: 0;
	}

	#alternatingSpotlights li.transitionNow .abstract
	{
		animation: alternatingSpotlightsContent 500ms forwards 400ms;
	}




	#alternatingSpotlights .image::before
	{
		content: '';
		position: absolute;
		display: block;
		height: 100%;
		width: 100%;
		background: #8ABAE3;
		z-index: 10;
	}

	#alternatingSpotlights .image::before,
	#alternatingSpotlights .image img
	{
		transform: translateX(-100%);
	}

	#alternatingSpotlights li.transitionNow .image::before
	{
		transition: transform 1500ms ease;
		transform: translateX(100%);
	}

	#alternatingSpotlights li.transitionNow .image img
	{
		transition: transform 0ms linear 450ms;
		transform: translateX(0);
	}

}

@media (min-width: 1800px)
{
	#alternatingSpotlights li
	{
		width: 1670px;
		left: calc(50% - 835px);
	}
}

/* View More type links */

.view_more a
{
	display: inline-block;
	width: auto;

	padding: 0;
	color: #2B65A7;
	vertical-align: middle;
	letter-spacing: 2px;
}

.view_more a:hover,
.view_more a:focus
{
	text-decoration: none;
}

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


/* News lists */

.newsList ul.results_list,
.newsList li
{
	margin: 0;
	list-style: none;
	line-height: 1.47;
}

.newsList li
{
	margin: 0 0 30px;
}

.newsList .itemdate
{
	margin: 0 0 5px;
	font-size: 16px;
	letter-spacing: 2px;
}

.newsList .dateType
{
	display: flex;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
}

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

.newsList .title
{
	color: #2B65A7;
	--min-font-size: 16;
	--max-font-size: 19;
}

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

.newsList .view_more a
{
	margin-top: 10px;
}

@media (min-width: 1024px)
{
	.newsList:not(.newsGrid) ul.results_list
	{
		columns: 2;
		column-gap: max(60px,
		             min(180px, 60px + (180 - 60) * ((100vw - 1024px) / (1920 - 1024))
		));
	}

	.newsList:not(.newsGrid)  ul.results_list li
	{
		display: inline-block;
		width: 100%;
	}
	
	.newsList.newsGrid ul.results_list
	{
		display: grid;
		grid-template-columns: 1fr 1fr; /* two equal columns */
		column-gap: max(60px,
		             min(180px, 60px + (180 - 60) * ((100vw - 1024px) / (1920 - 1024))
		));
	}

	.newsList.newsGrid  ul.results_list li
	{
		
	}
}


p.animatedQuote
{
	padding: 0;
	margin: 40px 0;
	font-style: italic;
	font-weight: 300;
	--min-font-size: 22;
	--max-font-size: 26;
	color: #2B65A7;
	font-weight: 500;
}

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

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

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

form > div
{
	display: grid;
	grid-gap: 5px;
	grid-column-gap: 8px;
}

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

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

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

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

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

label
{
	display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

.submit_wrapper a.viewAll,
.submit_wrapper a
{
	display: inline-block;
	height: auto;
	padding: 0;
	margin: 0;
	background: none;
	color: #C0DDF5;
	vertical-align: unset;
	font-size: 16px;
}

form > p
{
	width: 100%;
}

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

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

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

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

input:not([type]),
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea,
select,
.customSelect
{
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 15px 24px;
	vertical-align: top;
	color: #3B3B3B;
	background-color: rgba(255,255,255,.75);
	border: 1px solid #d6d6d6;
	font-size: 18px;
	font-family: 'Roboto', Arial, sans-serif;;
	line-height: 1;
	box-sizing: border-box;
	border-radius: 0;
}

textarea
{
	min-height: 6.5em;
}

/***
	floating labels applied only to search forms, not other forms, for accessibility
	if you *must* do floating labels everywhere, remove the ".search_form" from
	the selector, and make sure to remove it in the inFieldLabels call in default.js
***/
.search_form form > div > div > label
{
	position: absolute;
	padding: 15px 24px 0;
	color: #3B3B3B;
	font-size: 18px;
	line-height: 1;

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

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

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

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

	position: relative;
}

.customSelect::after
{
	content: '';
	display: block;
	position: absolute;
	right: 18px;
	top: 20px;
	width: 10px;
	height: 9px;
	background: url('../i/icon-arrow-blue.svgz') no-repeat; /* data-uri */
	background-size: 10px 9px;

}

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

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

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

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

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

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

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

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

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

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

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

input[type=submit],
button[type=submit],
.standardButton,
::file-selector-button,
::-webkit-file-upload-button,
a.viewAll,
.reviseButton a
{
	box-sizing: border-box;
	width: auto;
	height: 34px;
	margin: 0 0 10px 0;
	padding: 1px 14px 1px 14px;
	border: 0 solid #d6d6d6;
	background: #969696;
	color: #fff;
	font: normal 16px/1.8 'Roboto', Arial, sans-serif;
	cursor: pointer;
	vertical-align: top;
}

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

a.clearAll
{
	float: right;
}

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

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


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

#emailField
{
	display: none;
}


.submit_wrapper button
{
	background: none;
	border: none;
	color: #C0DDF5;
	font-size: 21px;
}

.submit_wrapper button svg
{
	position: relative;
	top: 2px;
	margin-right: 10px;
	fill: currentColor;
}

/* auto complete js */

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

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

.autocomplete .selected
{
	background: #f0f0f0;
}

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

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

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

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


/* Banner image-subnav */

.bannerImageSubnav
{
	margin-top: 63px;
}

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

.bannerImageSubnav ul
{
	display: grid;
	grid-gap: 50px;
}

.bannerImageSubnav li
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 221px;
	padding: 20px;
	box-sizing: border-box;
	transition: transform 250ms ease;
}

#bannerContent .bannerImageSubnav .title
{
	position: relative;
	z-index: 1;
	--max-font-size: 34;
	font-family: 'merriweather';
	text-align: center;
	color: #ffffff;
}

#bannerContent .bannerImageSubnav .title a
{
	color: inherit;
}

.bannerImageSubnav .image
{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: #000000;
}

.bannerImageSubnav .image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
}

.bannerImageSubnav li:hover,
.bannerImageSubnav li:focus-within
{
	transform: scale(1.09);
}

@keyframes bannerTextFadeIn
{

	0%
	{
		top: 50px;
		opacity: 0;
	}

	100%
	{
		top: 0px;
		opacity: 1;
	}


}


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

	.bannerImageSubnav li
	{
		padding: 30px 40px;
	}
}

@media (min-width: 1024px)
{

	#bannerText,
	#practiceExtras
	{
		position: relative;
		top: 50px;
		opacity: 0;
		animation: bannerTextFadeIn 1000ms forwards 500ms;
	}
}

@media (min-width: 1280px)
{

	.bannerImageSubnav ul
	{
		grid-gap: 110px;
	}
}


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

#footer
{
	position: relative;
	width: 100%;
	padding: 50px 0;
	box-sizing: border-box;
	color: #c5c4c4;
	z-index: 10;
	background: #000000;
	font-size: 16px;
}

#footer li
{
	font-size: inherit;
}


#footer a
{
	color: #E5E5E5;
}

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

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


#footer p
{
	margin: 0;
	padding: 0;
}


#footerSocial
{
	margin: 0 0 30px;
}

#footerSocial ul
{
	display: flex;
}

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

#footerSocial svg
{
	display: block;
	width: 16px;
	height: auto;
	fill: #ffffff;
}

#footerSocial a
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: #0067AC;
	border-radius: 50%;
}

#footerSocial a:hover,
#footerSocial a:focus
{
	background: #8ABAE3;
}

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

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

@media (max-width: 1550px)
{
	#footerLinks li:last-child
	{
		width: 100%;
		font-size: 12px;
		margin-top: 5px;
	}
}

@media (min-width: 768px)
{
	#footer
	{
		display: flex;
		padding: 30px 0;
		justify-content: space-between;
	}

	#footerLeft
	{
		flex: 0 1 700px;
	}

	#footerSocial
	{
		margin-bottom: 0;
	}

	#footerRight
	{
		flex: 1 1 1200px;
	}

	#footerLinks
	{
		justify-content: flex-end;
		text-align: right;
	}

	#footerLinks li
	{
		margin-right: 0 !important;
		margin-left: 30px !important;
	}
}


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

#backgroundPopup
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .35);
	border: 1px solid #cecece;
}

.popupPlayerWrapper
{
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	z-index: 99999999;
	top: 20vh;
	top: 176px !important;
	margin: auto;
	right: 7.5vw;
	width: 85vw;
	height: auto;
	background: #fff;
	border: 10px solid #cecece;
	border-radius: 2px;
	box-sizing: border-box;
}

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

.results_list .inlineMultimediaPlaceholder
{
	position: absolute;
	top: 0;
	left: 0;
	width: 101%;
	height: 101%;
	margin: 0;
	z-index: 100;
}

.results_list .inlinePlayer
{
	background: none;
}

.results_list .inlineMultimediaPlaceholder .mediaPlayer
{
	cursor: pointer;
}

.results_list .inlinePlayer .mediaPlayer:not(.playing)
{
	opacity: 0;
}

.results_list .inlinePlayer .mediaPlayer:not(.playing) iframe
{
	display: none;
}

.results_list .inlineMultimediaPlaceholder .triggerPopupPlayer
{
	display: none;
}

.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;
	border: 0;
}

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

.popupPlayerPlaylist
{
	display: none;
	flex-basis: 100%;
	position: relative;
	z-index: 9;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 25%;
	max-width: 100%;
	overflow: hidden;
	background: #f0f0f0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popupPlayerPlaylist.playlistHorizontalToggles a#playlistPrev,
.popupPlayerPlaylist.playlistHorizontalToggles a#playlistNext
{
	display: flex;
	justify-content: center;
	align-items: center;
}

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)
{
	text-decoration: none;
	background-color: #d1d1d1;
}

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

.popupPlayerSidebar
{
	padding: 1em 20px;
}

.popupPlayerSidebar #videoTitle
{
	line-height: normal;

	--min-font-size: 17;
	--max-font-size: 32;

	font-size: 1.2rem;
	font-weight: bold;
}

.popupPlayerSidebar #videoTitle::after
{
	content: '';
	display: block;

	width: 55px;
	margin: 25px 0;
}

.popupPlayerSidebar .publication
{
	position: static;
}

.popupPlayerSidebar .itemSection
{
	margin-bottom: 0 !important;
}

.popupPlayerSidebar h3
{
	margin-top: 1.3em;
}

.popupPlayerSidebar .bioList
{
	margin: 0;
}

.popupPlayerSidebar .results_list li
{
	margin-top: 0.8em;
	line-height: normal;
}

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

.popupPlayerSidebar > div
{
	padding: 0;
	margin: 0 0 1rem 0;
	font-size: 0.8rem;
}

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

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

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

.popupPlayerWrapper .position
{
	color: #333333;
}

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

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

.itemMultimediaList ul.results_list li,
.xrefMultimediaList ul li,
.itemMultimediaList ul.results_list::after,
.xrefMultimediaList ul::after
{
	flex-basis: calc(50% - 20px);
	margin: 20px 0;
}

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

.directEmbed ul li
{
	flex-basis: 100%;
}

.directEmbed .mediaPlayer
{
	/* this is set by the JS for some reason, remove it*/
	aspect-ratio: auto !important;
}

/* in mockup, but I guess it's just an "example"
#itemContent > .xrefMultimediaList.directEmbed:first-child
{
	float: left;
	width: 322px;
	margin: 12px 32px 0 0;
}
*/

#itemContent > .xrefMultimediaList ul
{
	display: block;
}

#mainContent #itemContent > .xrefMultimediaList ul li:last-child
{
	margin: 0;
}

#itemContent > .xrefMultimediaList ul .image,
#itemContent > .xrefMultimediaList ul .title
{
	aspect-ratio: 321/199;
}

.inlineembed
{
	width: 100%;
	height: 100%;
}

.xrefMultimediaList.embedded ul
{
	display: block;
}

.xrefMultimediaList.embedded ul li
{
	width: 100%;
	max-width: 880px;
}

#mainContent .xrefMultimediaList ul li,
.itemMultimediaList ul.results_list li
{
	position: relative;
	margin: 0 0 30px 0;

	max-width: 950px;
}

#mainContent .xrefMultimediaList.directEmbed ul li
{
	margin-bottom: 16px;
}

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

.xrefMultimediaList ul li .image
{
	background: var(--navy-blue);
}

.xrefMultimediaList ul li .imagebutton
{
	margin-bottom: 12px;
}

.xrefMultimediaList ul li .imagebutton .embed > p
{
	display: none;
}

.xrefMultimediaList ul li .image img
{
	display: block;
	width: 100%;
	height: auto;
	opacity: .5;

	transition: opacity 300ms;
}

.xrefMultimediaList li:hover .image img,
.xrefMultimediaList li:focus-within .image img
{
	opacity: .2;
}

.xrefMultimediaList .title
{
	--min-font-size: 18;
	--max-font-size: 21;
	transition: all 750ms ease;

	font-weight: bold;

	/*cursor: pointer;*/ /* Not sure why this is here.	They don't link when clicked.  Can't tell if it's supposed to be this way or if something else is broken.  We shall see */
}

.xrefMultimediaList .title a
{
	color: inherit;
}

.xrefMultimediaList .videoMore
{
	margin-top: 14px;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.xrefMultimediaList .videoMore a
{
	color: inherit;
}

.xrefMultimediaList.embedded .title
{
	padding: 0;
}

.xrefMultimediaList.embedded .title a
{
	padding-bottom: 75px;
	padding-right: 22px;
	/*color: #ffffff;*/
	text-decoration: none;
}

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


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

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

.xrefMultimediaList a.sp_pencil
{
	position: absolute;
	left: 15px;
	top: 15px;
	z-index: 1000;
	height: auto !important;
}

#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 in this first block! */
.photo .triggerPopupPlayer::before,
.photo .triggerPopupPlayer::after,
.image .triggerPopupPlayer::before,
.image .triggerPopupPlayer::after
{
	/* font-size here is the full width/height of the icon */
	font-size: 70px;

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

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

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

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

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

.photo .triggerPopupPlayer::after,
.image .triggerPopupPlayer::after
{
	content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">\
      <polygon points="5,3 19,12 5,21" />\
    </svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(4px); /* Center the arrow slightly */

	margin-top: 12px;
}
/* end player icon*/


#alternatingSpotlights .image .triggerPopupPlayer::after,
#alternatingSpotlights .image .triggerPopupPlayer::before
{
	opacity: 0;
}

#alternatingSpotlights .transitionNow .image .triggerPopupPlayer::after,
#alternatingSpotlights .transitionNow .image .triggerPopupPlayer::before
{
	animation: playIconfadeIn  250ms ease-in 1000ms forwards;
}

@keyframes playIconfadeIn
{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#mainContent video
{
	max-width: 100%;
}

#index #mainContent video
{
	max-width: unset;
}

.xrefMultimediaList .sp_pencil
{
	position: absolute;
	left: 65px;
	z-index: 10;
}

/*
.popupPlayerPlaylist .photo .triggerPopupPlayer::before,
.popupPlayerPlaylist .photo .triggerPopupPlayer::after
{
	display: none;
}
*/

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

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

	.popupPlayerWrapper .mediaPlayer
	{
		width: 68% !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
	{
		max-width: 68%;
	}

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

	.popupPlayerSidebar
	{
		z-index: 10;
	}

	.popupPlayerWrapper .popupPlayerSidebar
	{
		position: absolute;

		z-index: 0;
		top: 60px;
		right: 0;
		width: calc(32% - 54px);
		height: calc(100% - 120px);
		overflow: hidden;
		overflow-y: auto;

		box-sizing: border-box;
		margin: 0 22px 0 42px;
		padding-right: 10px;

		/*border-bottom: 1px solid var(--rules);*/
	}

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

	.popupPlayerWrapper .photo .triggerPopupPlayer img
	{
		display: block;
	}

	.popupPlayerWrapper .xrefMultimediaList .title
	{
		height: 100%;
	}

	.popupPlayerWrapper .xrefMultimediaList a
	{
		position: relative;
		display: block;
	}

	.popupPlayerWrapper .xrefMultimediaList p a
	{
		display: inline;
	}
}

#video_bio ul.results_list
{
	display: block;
}

/* mini popup player */
.popupPlayerWrapper.miniPlayer
{
	position: fixed;
	top: 100px !important;
	left: auto !important;
	right: 0 !important;

	width: min(80vw, 428px);

	border: 0;
	padding: 0;

	box-shadow: 0 0 11px 0 rgba(0,0,0,0.35);

	border-radius: 7px 7px 0 0;
}

@media (max-width: 767px)
{
	.popupPlayerWrapper.miniPlayer
	{
		top: auto !important;
		bottom: 0 !important;
	}
}

.popupPlayerWrapper.miniPlayer,
.popupPlayerWrapper.miniPlayer iframe
{
	border-radius: 8px 8px 0 0;
	border: 0 !important;
}

.popupPlayerWrapper.miniPlayer iframe
{
	pointer-events: none;
}

.miniPlayer .popupShareButton
/*.miniPlayer .popupSubscribe*/
{
	display: none;
}

.miniPlayer .miniPlayerToggle
{
	right: auto;
	left: 21px;
	top: 22px;

	padding: 18px 18px 0 0;

	background-color: transparent;
	background-image: url(../i/maximize-popup.svgz);
	mix-blend-mode: difference;
}

.miniPlayer.paused .miniPlayerToggle
{
	mix-blend-mode: unset;
}

.miniPlayer .mediaPlayer::after
{
	content: '';
	position: absolute;
	opacity: 0;

	transition: opacity 200ms;

	top: calc(50% - 17px);
	left: calc(50% - 14px);

	width: 28px;
	height: 34px;
	background: linear-gradient(to right,
		white calc(50% - 3px),
		transparent calc(50% - 3px),
		transparent calc(50% + 3px),
		white calc(50% + 3px));

	z-index: 999999;

	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);

}

.miniPlayer .mediaPlayer:hover::after,
.miniPlayer.paused .mediaPlayer::after
{
	opacity: 1;
}

.miniPlayer.paused .mediaPlayer iframe
{
	opacity: .2;
}

.miniPlayer .closeButton
{
	top: 21px;
	right: 21px;
	background: transparent;
	color: white;
}

.miniPlayer .popupPlayerSidebar
{
	position: static;
	width: 100%;

	padding: 16px 22px;
	margin: 0;
	border: 0;
}

.miniPlayer #videoTitle
{
	font-size: 16px;
	font-weight: bold;
}

.miniPlayer .publication
{
	margin-bottom: 0;
}

.miniPlayer #videoTitle::after
{
	content: none;
}

.miniPlayer .popupPlayerPlaylist,
.miniPlayer .popupPlayerSidebar div:not(.publication, #videoTitle)
{
	display: none !important;
}

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

/* animation transitions */
.popupPlayerWrapper.miniPlayer,
.popupPlayerWrapper.miniPlayer .mediaPlayer
{
	transition: right 200ms, width 200ms ease-out;
}

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

	.xrefMultimediaList ul li .image
	{
		position: relative;
		width: 100%;
		aspect-ratio: 1.77;
	}

	.xrefMultimediaList ul li .image > a
	{
		position: absolute;
		height: 100%;
		width: 100%;
	}

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

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

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

@media (min-width: 1280px)
{

}

@media (max-width: 767px)
{


	.xrefMultimediaList ul li .image
	{
		max-width: 400px;
	}
}


/* 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;
	font-size: 16px;
	line-height: 1.5;
}

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

#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 p
{
	--min-font-size: 14px;
	font-size: 14px;
}

#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 min(7vw, 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 img
{
	height: 1.3em;
	aspect-ratio: 3.2;
	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: min(2vw, 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: #2B65A7;
}

#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: #2B65A7;
	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: #2B65A7;
	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;
}

#floatCookieManage
{
	/* button reset */
	border: none;
	margin: 0;
	padding: 0;
	width: auto;
	overflow: visible;
	background: transparent;
	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;
	/* end button reset */

	position: fixed;
	bottom: 129px;
	right: 23px;
}

#floatCookieManage.hidden
{
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}

@media (max-width: 767px)
{
	#floatCookieManage
	{
		bottom: 15px;
		right: 15px;

		transition: bottom 100ms;
	}

	#floatCookieManage.nearBottom
	{
		bottom: 80px;
	}
}

#floatCookieManage svg
{
	background: #2B65A7;
	border-radius: 50%;
	border: 4px solid transparent;
	transition: transform 400ms;
}

#floatCookieManage span
{
	position: absolute;
	z-index: -1;

	top: 10px;
	right: 40px;
	text-wrap: nowrap;
	visibility: hidden;
	overflow: hidden;

	max-width: 0;

	padding: 5px 17px 5px 10px;
	line-height: 18px;

	background: rgba(43, 101, 167, 0);
	border-radius: 5px;
	color: white;

	transition: background 400ms, max-width 400ms;
}

[data-whatintent="keyboard"] #floatCookieManage:focus svg,
#floatCookieManage:is(:hover, [aria-expanded='true']) svg
{
	transform: rotate(-90deg);
}

[data-whatintent="keyboard"] #floatCookieManage:focus span,
#floatCookieManage:is(:hover, [aria-expanded='true']) span
{
	visibility: visible;
	max-width: 300px;
	background: rgba(43, 101, 167, 0.8);
}

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

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

.popupShareButton
{
	right: 45px;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
}

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

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

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

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

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

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

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

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


/* Video buttons -------------------------------------------------> */

.popupPlayerWrapper .closeButton,
.popupPlayerWrapper .popupShareButton
{
	top: 15px;
}

.miniPlayerToggle
{
	position: absolute;
	top: unset;
	color: #999;
	right: 10px;
	bottom: 10px;
	z-index: 9999;
	width: 34px;
	height: 24px;
	overflow: hidden;
	width: 0;
	height: 0;
	padding: 24px 34px 0 0;
	background: url('../i/minify-popup.svgz') 0 0 / contain no-repeat;
	font-size: 0;
	cursor: pointer;
	border: unset;
	border-radius: unset;
}

.miniPlayerToggle:is(:hover, :focus)
{
	opacity: 0.7;
}

.miniPlayer .miniPlayerToggle:is(:hover, :focus)
{
	opacity: 1;
	background-color: black;
	mix-blend-mode: unset;
	outline: 3px solid black;
}

@media (max-width: 767px)
{
	.popupPlayerSidebar > div:not(#videoTitle),
	#video_multimedia_popup,
	.popupPlayerPlaylist
	{
		display: none !important;
	}

	.popupPlayerSidebar #videoTitle::after
	{
		content: none;
	}

	.popupPlayerSidebar
	{
		padding-bottom: 60px;
	}

	/*
	a.popupShareButton, .miniPlayerToggle
	{
		bottom: 23px;
	}
	*/

	.popupPlayerWrapper .closeButton
	{
		top: unset;
		bottom: 10px;
		/*right: 48px;*/
	}

	.popupPlayerWrapper .popupShareButton
	{
		top: unset;
		bottom: 10px;
		/*right: 70px;*/
	}

	.miniPlayerToggle
	{
		right: 80px;
	}
}


/* Spotlight slideIn */

@keyframes slideSideSpotlight
{

	0%
	{
		transform: translateX(100%);
		opacity: 0;
	}

	50%
	{
		opacity: 1;
	}

	100%
	{
		transform: translateX(0);
		opacity: 1;
	}

}

#sideSpotlight
{
	padding: 40px;
    background: #ffffff;
    text-align: center;
}

@media (min-width: 920px)
{
	#sideSpotlight
	{
		transform: translateX(100%);
		opacity: 0;
		animation: slideSideSpotlight 1000ms forwards 500ms;
	}
}


/* 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: #0a80ca;
	border: none;
	color: #fff;
	font: inherit;
	text-transform: inherit;
	text-align: center;
	line-height: inherit;

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

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

	cursor: pointer;
}

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


/*SiteMap object */

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

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

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

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

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

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

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

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

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


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

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

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

	align-items: stretch;

	margin: 1em 0 0;
}

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

	display: block;

	height: auto;
}

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

	margin-right: 1rem;
}

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

	font-weight: bolder;
}

.search_section_wrapper
{
	display: flex;
}

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

/* list of categories can expand as needed */
.search_section_wrapper .sections
{
	padding-right: 50px;
}

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

	display: flex;
	align-items: center;
}

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

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

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

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

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

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

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

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

#search .search_result_date
{
	color: #888;
}


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

		align-items: flex-start;
	}

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

	#sp_class_search #searchtext
	{
		width: 100%;
	}

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

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

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

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

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

.searchfoundtext
{
	font-weight: bolder;
}

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

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

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

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

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

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

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

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

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

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

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

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

#search .searchOptionsWrapper
{
	position: relative;
	border: 1px solid #a69e9d;
	width: 400px;
	min-height: 50px;
}

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

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

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

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

#search select:hover
{
	cursor: pointer;
}


/* Bio section search results */
.searchBioWrapper div.results_list > div
{
	display: flex;
	gap: 40px;
}

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

	order: 2;
}

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

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

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


/* Example Styles Support */

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

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


/* Map Object Support */

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

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

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

/* buttons to look like links */
button.toggleExpand
{
	margin: 0 0 1.5em 0;
	padding: 0 !important;
	background: none !important;
	border: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
	color: #0a80ca;

	font-weight: 700;
	overflow: hidden;
}

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


.expandableList button.toggleExpand
{
	margin-bottom: 20px !important; /* client request */
}

.linktext
{
	overflow: hidden;
}

.expandableList button.toggleExpand span,
/*.linktext a,*/
p.animatedQuote
{
	display: block;
	transition: transform 450ms ease, opacity 450ms ease;
	transform: translateX(-100%);
}

p.animatedQuote
{
	transition-duration: 700ms;
	transform: translateX(100%);
}

p.animatedQuote
{
	opacity: 0;
}

.expandableList.transitionNow button.toggleExpand span,
.linktext.transitionNow a,
p.animatedQuote.transitionNow
{
	transform: translateX(0);
	opacity: 1;
}


/* Janice said this was ok because the page it was being used on (about/recognition) was finalized and would not change */
p.animatedQuote + p.animatedQuote
{
	transition-delay: 100ms;
}

p.animatedQuote + p.animatedQuote + p.animatedQuote
{
	transition-delay: 200ms;
}

/* Newsletter Object Support */

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


/* Alignment */

figure
{
	margin: .5em 0;
}

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

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

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

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

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

.nowrap
{
	white-space: nowrap;
}

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