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

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

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

	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #555555;

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

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

html, h1, h2, h3, h4, h5, h6
{
	/* 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)))
		));
}

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

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

		/* need to hide bottom scrollbar if using the calc(50vw - 50%) method */
		/* note we use clip instead of hidden for the sticky cookie banner */
		overflow-x: hidden;
	}
}

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

	/* in mobile or tablet we do not want anything outside the body bounds scrollable */
	/* note we use clip instead of hidden for the sticky cookie banner */
	overflow-x: clip;
}

#bodyInner
{
	position: relative;
	padding: 0 68px 0 4.65vw;
	background: url('../i/grid-bg.svgz') right -480px top 23.5vw no-repeat; /* data-uri */
	background-size: 900px auto;
	box-sizing: border-box;
}

@media (max-width: 1349px)
{
	#bodyInner
	{
		padding: 0 20px 0 44px;
		background-position: right -480px top 317px;
	}
}

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

	/*
	body.fullScreen
	{
		overflow-x: unset;
	}
	*/
}

@media (max-width: 1049px)
{
	#bodyInner
	{
		margin: 0px auto;
		padding: 0 16px 0 16px;
		background: none;
	}
}

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

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

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


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

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

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

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

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

sup, sub
{
	line-height: 0;
}

a
{
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	text-decoration: none;
}

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

/* search results highlight */
mark
{
	background: #3E915E;
	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
{
	margin: 0;
	padding: 0;
	color: #555555;
	font-weight: bolder; /* relative, works better if you have a light base font */
	line-height: normal;
}

h1
{
	padding: 5px 0 15px 0;
	color: #4B7483;
	font-weight: 300;

	--min-font-size: 24;
	--max-font-size: 32;
}

h2
{
	padding: 12px 0 8px 0;
	color: #4B7483;
	font-weight: 400;

	--min-font-size: 19;
	--max-font-size: 25;
}

#subContent h2
{
	padding: 12px 0 4px 0;
	text-transform: uppercase;
	letter-spacing: 2px;

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

#subContent p
{
	font-size: .95rem;
}

#subContent .itemSection h2
{
	padding-top: 22px;
}

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

h2.highlightText
{
	margin: 0 0 30px;
	color: #555555;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.4;

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


h3
{
	padding: 12px 0 4px 0;
	color: #3C3C3C;
	font-weight: 300;
	--min-font-size: 17;
	--max-font-size: 21;
}

h4
{
	padding: 12px 0 4px 0;
	color: #4B7483;
	font-weight: 400;

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

h5
{
	padding: 12px 0 4px 0;
	text-transform: uppercase;

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

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

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

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

ol
{
	padding-left: 1em;
}

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

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

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

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

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

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

img
{
	border: 0;
}

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

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

#content a svg path
{
	fill: #3E915E;
}

#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,
#cookieBanner::before
{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	/*
		we need to be left offset by the width of the left margin, which is half the
		difference between page width and viewport width

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


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

.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 ul li
{
	list-style: none;
	margin-left: 0;
}

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

#resultPageLinks
{
	margin: 1em 0;
}

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

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

.expandableHeading
{
	position: relative;
	/*margin-top: -1px;*/
	padding: 20px 0;
	/*border-top: 1px solid #BCCDD6;*/
	border-bottom: 1px solid #BCCDD6;
	cursor: pointer;
	color: #555555;

	font-weight: 300;

	--min-font-size: 19;
	--max-font-size: 21;
}

.expandableHeading.expanded
{
	border-bottom: 0px solid #BCCDD6;
}

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

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

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

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

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

.expandButton.expanded
{
	display: none;
}

.expandableHeading button
{
	display: inline-flex;
	gap: 6px;
	/*justify-content: space-between;*/
	padding-right: 35px !important;
	align-items: center;
	width: 100%;
}

.expandableHeading button::after
{
	content: '\002B';
	display: inline-block;
	position: absolute;
	right: 3px;
	vertical-align: middle;
	color: #555555;
	font-size: 1.8rem;
	font-weight: 100;
	text-align: center;
	margin: 0 0 0 10px;
}

.expandableHeading.expanded button::after
{
	content: '\2212'; /* minus sign, NOT hyphen or dash */
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-size: 1.8rem;
}

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

.expandableHeading + .expandableContent
{
	border-bottom: 1px solid #BCCDD6;
}

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

#relatedMaterials + .expandableContent :last-child
{
	margin-bottom: 20px;
}


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


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

#searchJump
{
	display: block;
	position: absolute;
	z-index: 10000;
	top: 38px;
	right: 68px;
	line-height: 1;
	cursor: pointer;
	/*transition: top 0.25s;*/
}

#searchJump svg
{
	display: block;
	width: 100%;
	height: auto;
	max-width: 27px;
	fill: #fff;
}

#searchJump:hover svg,
#searchJump:focus svg
{
	opacity: 0.8;
	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;
}

@media (max-width: 1349px)
{
	#searchJump
	{
		right: 20px;
	}
}

@media (max-width: 1049px)
{
	#searchJump
	{
		right: 68px;
	}
}

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


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

#header
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 2000;
	height: 130px;
	padding: 0 68px 0 5.74vw;
	/*background: rgba(255,255,255,0.90);*/
	box-sizing: border-box;
}

body.mobileActive #header
{
	position: fixed;
}

#logo
{
	display: inline-block; /* inline-block to prevent logo from interfering with nav */
	position: fixed;
	top: 80px;
	top: 46px;
	left: 5.74vw;
	z-index: 9999;
}

#logo a
{
	display: inline-block;
}

#logo svg
{
	display: block;
	position: relative;
	width: 18vw;
	max-width: 265px;
	height: auto;
	fill: #000;
	transition: fill 0.5s ease-out;
}


body.mobileActive #logo svg .st0,
body.mobileActive #logo svg .st2
{
	stroke: #FFFFFF;
}

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

#logo svg .st0
{
	fill:none;
	stroke:#000000;
	stroke-width:3;
	stroke-linecap:round;
	stroke-miterlimit:10;
}

#logo svg .st1
{
	fill:none;
	stroke:#547381;
	stroke-width:3;
	stroke-linecap:round;
	stroke-miterlimit:10;
}

#logo svg .st2
{
	fill:none;
	stroke:#454545;
	stroke-width:3;
	stroke-linecap:round;
	stroke-miterlimit:10;
}

#logo svg .st3
{
	fill:#020202;
}

#logo svg .st4
{
	fill:#547381;
}

@media (max-width: 1800px)
{
	#header
	{
		padding: 0 68px 0 4vw;
	}

	#logo
	{
		left: 4vw;
	}
}

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

	#logo
	{
		left: 3vw;
	}
}

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

	#logo
	{
		position: absolute;
		top: 12px;
		left: 16px;

		/*
		top: 0px;
		left: 0px;
		padding: 10px 16px 3px 10px;
		background: #ffffff;
		box-shadow: 3px 3px 7px rgba(0,0,0,0.4);
		*/
	}

	/*
	body.mobileActive #logo
	{
		background: none;
		box-shadow: none;
	}
	*/

	body.mobileActive #logo
	{
		position: fixed;
	}

	#logo svg
	{
		width: auto;
		height: 100px;
	}

	#logo svg .st0,
	#logo svg .st1,
	#logo svg .st2
	{
		stroke: #fff;
	}

	#logo svg .st3,
	#logo svg .st4
	{
		fill: #fff;
	}
}


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

#banner
{
	position: relative;
	z-index: 10;
	left: 25vw;
	width: 100%;
	margin: 0 0 0 0;
	box-sizing: border-box;
}

#bannerImage
{
	position: relative;
	/* 100% - fixed side margin + left and right padding, long form for readability */
	width: calc(100% - 25vw + 4.65vw + 68px);
	height: auto;
	margin-left: -4.65vw;
}

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

#bannerImage > picture > img
{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
}

body.fullScreen #banner
{
	position: absolute;
	height: 100vh;
	overflow: hidden;
}

body.fullScreen #bannerImage
{
	position: relative;
	width: 100%;
	height: 100vh;
	margin-left: 0;
}

body.fullScreen #bannerImage::after
{
	width: 50%;
	background-image: linear-gradient(to right, rgba(0,0,0,0.50) 8%, transparent);
}

body.fullScreen #bannerImage::before
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-image: linear-gradient(to left, rgba(0,0,0,0.50) 3%, transparent);
}

body.fullScreen #bannerImage > picture > img
{
	width: calc(100vw - 25vw);
	height: 100vh;
	object-fit: cover;
	/*object-position: top right;*/
}

#bannerContent
{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	position: absolute;
	z-index: 2;
	bottom: 60px;
	left: 0px;
	width: calc(100% - 25vw);
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
}

#bannerContent *
{
	color: inherit;
}

#sectionTitle,
#sectionTitleLikeH1
{
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 3.36rem;
	font-weight: 300;
	line-height: 1;
}

#pdfLink svg
{
	position: relative;
	width: 38px;
	height: 39px;
}

#pdfLink svg .st0
{
	fill: none;
}

#pdfLink svg .st1
{
	fill: none;
	stroke: #CAD5DB;
}

#pdfLink svg .st2
{
	fill: #ffffff;
}

#pdfLink:hover svg .st0,
#pdfLink:focus svg .st0
{
	fill: #ffffff;
}

#pdfLink:hover svg .st1,
#pdfLink:focus svg .st1
{
	fill: none;
	stroke: none;
}

#pdfLink:hover svg .st2,
#pdfLink:focus svg .st2
{
	fill: #3E915E;
}

@media (max-width: 1349px)
{
	#banner
	{
		height: 235px;
	}

	#bannerImage
	{
		/* 100% - fixed side margin + left and right padding, long form for readability */
		width: calc(100% - 25vw + 4.65vw + 68px);
		margin-left: -4.65vw;
	}

	body.fullScreen #bannerImage
	{
		margin-left: 0;
	}

	#bannerImage::after
	{
		height: 235px;
	}

	body.fullScreen #bannerImage::after
	{
		height: 100%;
	}

	#bannerImage > picture > img
	{
		position: absolute;
		width: 100%;
		height: 235px;
		object-fit: cover;
	}

	body.fullScreen #bannerImage > picture > img
	{
		width: calc(100vw - 25vw);
		height: 100vh;
	}

	#bannerContent
	{
		width: calc(100vw - 25vw - 80px);
	}
}

@media (max-width: 1024px)
{
	body.fullScreen #banner
	{
		height: 100%;
	}

	body.fullScreen #bannerImage
	{
		height: 100%;
	}

	body.fullScreen #bannerImage > picture > img
	{
		width: 100vw;
		height: 100%;
	}
}

@media (max-width: 1049px)
{
	#banner
	{
		left: 0px;
		width: 100%;
		margin: 0;
	}

	#bannerImage
	{
		width: 100vw;
		margin-left: -16px;
	}

	#bannerContent
	{
		bottom: 20px;
		width: 100%;
	}

	#sectionTitle,
	#sectionTitleLikeH1
	{
		font-size: 2.36rem;
	}
}


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

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

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

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

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

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

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

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

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


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

@media (min-width: 1050px)
{
	#mainNav
	{
		display: flex;
		position: fixed;
		z-index: 9999;
		top: 0px;
		top: -35px;
		left: 0;
		/*width: 30vw;
		max-width: 465px;*/
		width: 25vw;
		height: 100vh;
		padding-top: 258px;
		padding-top: 224px;
		padding-top: max(200px, 12vw);
		background: #fff;
		box-shadow: 3px 3px 21px rgba(0,0,0,0.2)
	}

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

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

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

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

	#mainNav > ul ul
	{
		/* word on the street, no flyouts */
		display: none !important;

		/*** center the drops ***/
		left: calc(50% - 120px);
		width: 240px;

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

	#mainNav li > a
	{
		display: block;

	}

	#mainNav > ul > li
	{
		position: relative;
		z-index: 1;
		margin: 0 0 0.8vw 0;
		padding: 0px 0px 0px 3vw;
	}

	#mainNav > ul > li > a
	{
		position: relative;
		z-index: 1;
		padding: 6px 10px 6px 10px;
		background: #ffffff;
		color: #555555;
		font-size: 0.9rem;
		font-size: 1.1rem;
		white-space: nowrap;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

	#mainNav > ul > li.current > a,
	#mainNav > ul > li > a:hover,
	#mainNav > ul > li > a:focus
	{
		/*color: #3E915E;*/
		color: #3B7D54; /* changed to meet ADA */
	}

	#mainNav > ul > li::before
	{
		content: '';
		position: absolute;
		z-index: -2;
		top: 0px;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #fff;
		margin: auto 0px;
	}

	#mainNav > ul > li.current::before
	{
		background: #558F62;
	}

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

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

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

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

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

		top: 0;
		left: 100%;
	}

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

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

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

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

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

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

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

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


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

	button#navToggle
	{
		display: none;
	}

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

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

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

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

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

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

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

@media (min-width: 1025px)
{
	#mainNav
	{
		top: 0px;
	}
}

@media (min-width: 1800px)
{
	#mainNav > ul > li
	{
		margin: 0 0 0.9vw 0;
	}

	#mainNav > ul > li > a
	{
		/*font-size: 1rem;*/
	}
}

@media (min-width: 1900px)
{
	#mainNav > ul > li
	{
		margin: 0 0 1vw 0;
	}

	#mainNav > ul > li > a
	{
		/*font-size: 1.1rem;*/
	}
}

@media (min-width: 1349px)
{
	#mainNav > ul > li
	{
		padding: 0px 0px 0px 4vw;
	}
}

@media (min-width: 1800px)
{
	#mainNav > ul > li
	{
		padding: 0px 0px 0px 5.74vw;
	}
}

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

@media (max-width: 1049px)
{
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 9998;
		top: 0;
		right: -100vw;
		left: auto;
		width: 100vw;
		height: 100vh;
		padding: 160px 0px 10px;
		border-top: 130px solid transparent;
		padding: 33px 16px 120px;
		background: #253c4a;
		box-sizing: border-box;
		box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
		transition: right 0.7s;

		overflow: auto;
	}

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

	#mainNav::before
	{
		display: none;
	}

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

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

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

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

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

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

	#mainNav a
	{
		color: #ffffff;
	}

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

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

	#mainNav > ul > li > a
	{
		letter-spacing: 2px;
	}

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

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

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

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

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

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

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

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

	#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: 38px;
		right: 40px;
		font-size: 0;
	}

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

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

	.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: 2px;
		background-color: #fff;
		border-radius: 4px;
		transition-timing-function: ease;
		transition-duration: .15s;
		transition-property: transform;
	}

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

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

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


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

	.mobileNavLabel
	{
		display: none;
		/*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: 1049px)
{
	#mainNav > ul,
	#mainNav li ul
	{
		width: 100%;
		margin-left: 0px;
	}

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

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

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

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

	#mainNav #subNavBack a
	{
		font-size: 1.3rem;
	}

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

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

	button#navToggle
	{
		right: 12px;
	}
}


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

#subContent ul.subNavList,
#subContent .dashList ul.results_list
{
	margin-bottom: 0;
	font-size: 0.88rem;
	text-transform: uppercase;
}

#subContent ul.subNavList li,
#subContent .dashList ul.results_list li
{
	list-style: none;
	position: relative;
	margin: 1.2rem 0 1.2rem 0;
	padding: 0;
	line-height: 1.1;
	color: #757575;
	letter-spacing: 2px;
}

#subContent ul.subNavList li a,
#subContent .dashList ul.results_list li a
{
	color: #757575;
	text-decoration: none;
}

#subContent ul.subNavList ul,
#subContent .dashList ul.results_list ul
{
	padding-left: 10px;
}

#subContent ul.subNavList li > a:hover,
#subContent ul.subNavList li > a:focus,
#subContent .dashList ul.results_list li > a:hover,
#subContent .dashList ul.results_list li > a:focus
{
	color: #398456;
}

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

#subContent ul.subNavList li.here:before,
#subContent ul.subNavList li.hereParent:before,
#subContent .dashList ul.results_list li:hover:before,
#subContent .dashList ul.results_list li:focus:before
{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: -3.15vw;
	width: calc(3.15vw - 14px);
	max-width: 46px;
	height: 1px;
	margin: auto 0px;
	background: #558F62;
}

@media (max-width: 1049px)
{
	#subContent ul.subNavList li.here:before,
	#subContent ul.subNavList li.hereParent:before,
	#subContent .dashList ul.results_list li:hover:before,
	#subContent .dashList ul.results_list li:focus:before
	{
		left: -16px;
		width: 10px;
	}
}


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

#tabLinks
{
	display: none;
}

h2.sectionTitle
{
	display: inline-flex;
	gap: 35px;
	align-items: center;
	width: 100%;
	position: relative;
	margin-top: -1px;
	padding: 20px 0;
	border-bottom: 1px solid #BCCDD6;
	cursor: pointer;
	color: #555555;
	font-weight: 300;

	--min-font-size: 19;
	--max-font-size: 24;
}

h2.sectionTitle.isOpen
{
	border-bottom: 0px solid #BCCDD6;
}

/*
h2.sectionTitle button
{
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-transform: inherit;
	text-align: inherit;
}
*/

h2.sectionTitle::after
{
	content: '\002B';
	display: inline-block;
	position: absolute;
	right: 3px;
	vertical-align: middle;
	color: #555555;
	font-size: 1.8rem;
	font-weight: 100;
	text-align: center;
	margin: 0 0 0 10px;
}

h2.sectionTitle.isOpen::after
{
	content: '\2212';
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-size: 1.8rem;
}

.contentSection
{
	display: block !important;
	margin-top: 2rem;
	overflow: hidden;
}

.contentSection.visibleTab
{
	border-bottom: 1px solid #BCCDD6;
}

.contentSection ~ .contentSection
{
	margin-top: 0px;
}

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



/* 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: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-weight: 700;
	font-size: 24px;
}

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

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


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

#content
{
	position: relative;
	z-index: 20;
	max-width: 1298px;
	min-height: 350px;
	margin: 2.5rem 0px;
}

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

body.fullScreen #content
{
	margin-top: 0;
	margin-bottom: 0;
	min-height: 100vh;
}

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

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

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

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

#belowContent
{
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 2001; /* need to be stacked above the fixed side main nav at >919 */
	left: calc(-25vw + 120px);
	left: -4.65vw;
	width: calc(100vw + 0px);
}

@media (min-width: 1050px)
{
	#content
	{
		margin: 2.5rem 0px 2.5rem 25vw;
	}

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

	#subContent
	{
		float: right;
		clear: right;
		width: 33.5%;
		margin-top: calc(-2.5rem + -35px);
		padding: 2vw 20px 1.8rem 3.15vw;
		background: #ffffff;
		box-shadow: 0px 1px 6px rgba(0,0,0,0.4);
	}
}

@media (max-width: 1049px)
{
	#belowContent
	{
		z-index: 1996;
	}
}

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

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
		display: flex;
		flex-direction: column;
		/* border-top: 1px solid #BCCDD6; /* this mandatory for mobile at least - no doesn't work out */
	}

	#subContent > *
	{
		order: 1;
	}

	#subContent > #subNav
	{
		order: 10;
	}
}

.sideStaticText
{
	padding-top: 20px;
}

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

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

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

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

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

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

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

.contentSection .itemList.newsList > ul li
{
	margin: 0.6em 0em 1.3em 0em;
}

.expandableContent + .careersApply,
.endExpandableHeading + .careersApply
{
	margin-top: 40px;
}

.careersApply h2
{
	margin-bottom: 20px;
}

/* View More type links */

.view_more a
{
	display: inline-block;
	width: auto;
	margin: 18px 0 32px 0;
	padding: 2px;
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-size: 0.8rem;
	text-transform: uppercase;
	vertical-align: middle;
}

.view_more a:hover,
.view_more a:focus
{
	color: #4B7483;
	text-decoration: none;
}

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


/* Static News */

.staticNews
{
	display: none;
	position: relative;
	width: 100vw;
	margin: 1.25rem 0px 1.75rem 0;
}

.staticNews ul.results_list
{
	position: relative;
	overflow: visible !important;
}

.staticNews ul.results_list > div
{
	position: relative;
	padding: 10px 0px 10px 0px !important;
}

.staticNews ul.results_list li
{
	display: inline-flex;
	justify-content: space-between;
	position: relative !important;
	width: calc(50vw - 98px);
	height: 16.5vw;
	max-height: 330px;
	min-height: 225px;
	margin: 0px 45px;
	background: #ffffff;
	box-shadow: 0px 1px 6px rgba(0,0,0,0.4);
	box-sizing: border-box;
}

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

.staticNews ul.results_list li a:not(.sp_pencil)
{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.staticNews ul.results_list li a:not(.sp_pencil):hover,
.staticNews ul.results_list li a:not(.sp_pencil):focus
{
	text-decoration: none;
}

.staticNews ul.results_list li .info
{
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: self-end;
	/*justify-content: space-between;*/
	position: relative;
	z-index: 5;
	width: 50%;
	height: 16.5vw;
	max-height: 330px;
	min-height: 225px;
	padding: 2.5vw 10px 2vw 2.5vw;
	box-sizing: border-box;
	color: #3C3C3C;
	font-size: 1.1rem;
	white-space: initial;
}

.staticNews ul.results_list li .info .title
{
	flex-basis: 100%;
	margin-bottom: auto;
	color: #3C3C3C;
	font-size: 1.1rem;
	font-weight: 300;
}

.staticNews ul.results_list li a:not(.sp_pencil):hover .title,
.staticNews ul.results_list li a:not(.sp_pencil):focus .title
{
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
}

.staticNews ul.results_list li .info .itemdate
{
	display: inline-block;
	vertical-align: middle;
	margin: 0 18px 0 0;
	color: #398456;
	font-size: 1.05rem;
	line-height: 1;
}

.staticNews ul.results_list li .info .section
{
	display: inline-block;
	vertical-align: middle;
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-size: 0.95rem;
	text-transform: uppercase;
	line-height: 1;
}

.staticNews ul.results_list li .image
{
	flex-grow: 1;
	position: relative;
	z-index: 5;
	width: 50%;
	height: 100%;
}

.staticNews ul.results_list li .image img
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	height: 16.5vw;
	max-height: 330px;
	min-height: 225px;
	object-fit: cover;
}

.staticNews ul.results_list li a.sp_pencil
{
	position: absolute;
	z-index: 10;
	top: -10px;
	left: -10px;
}

@media (max-width: 1024px)
{
	#belowContent
	{
		left: -20vw;
	}
}

@media (max-width: 500px)
{
	#belowContent
	{
		left: -45px;
		min-height: 518px;
	}

	/*.cycle-carousel-wrap*/
	/*.homeNews
	{
		left: 0px !important;
	}*/

	.staticNews ul.results_list
	{
		display: block;
		position: relative;
	}

	.staticNews ul.results_list li
	{
		width: calc(100vw - 64px) !important;
		height: auto;
		max-height: unset;
		margin-bottom: 1.25rem;
	}

	.staticNews ul.results_list li a
	{
		flex-direction: column;
		width: 100% !important;
		min-height: auto;
		box-sizing: border-box;
	}

	.staticNews ul.results_list li .info
	{
		order: 2;
		width: 100%;
		padding: 3.5vw 10px 3vw 3.5vw;
	}

	.staticNews ul.results_list li .image
	{
		order: 1;
		width: 100%;
	}
}


/* 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-template-columns: repeat(auto-fill, minmax(325px, 1fr));
	grid-gap: 13px; /*min(5vw, 20px);*/
	position: relative;
}

form > div > div
{
	position: relative;
}

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

form > div > div.textarea_wrapper
{
	grid-column: 1 / -1;
	width: 100%;
}

form > div > div.checkbox_wrapper
{
	grid-column: 1 / -1;
	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
{
	grid-column: 1 / -1;
	width: 100%;
}

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
{
	grid-column: 1 / -1;
	width: 100%;
}

form > p
{
	width: 100%;
}

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

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

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

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

input:not([type]),
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea,
select,
.customSelect
{
	width: 100%;
	min-height: 55px; /* appease IE11 */
	margin: 0;
	padding: 10px 4px 10px 20px;
	vertical-align: top;
	color: #4B7483;
	background-color: #fff;
	border: 1px solid #BCCDD6;
	font: 300 19px/1.8 'Roboto', Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	border-radius: 0;
}

textarea
{
	min-height: 6.5em;
}

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

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

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

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

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

    position: relative;
}

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

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

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

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

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

	/* we made this white to be camouflaged on load, but now must return to prev color */
	color: #666766;
	padding: 5px 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(#3E915E, #3E915E);
	background-color: #3E915E !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,
.packetButton,
::file-selector-button,
::-webkit-file-upload-button,
.reviseButton a
{
	/* needed to normalize vertical text alignment across <a> and <button> elements */
	display: inline-flex;
	align-items: center;

	box-sizing: border-box;
	width: auto;
	height: 55px;
	margin: 0 0 10px 0;
	padding: 1px 24px 1px 24px;
	border: 0 solid #d6d6d6;
	/*background: #3E915E;*/
	background: #707070; /* changed to meet ADA */
	color: #fff;
	font: 300 19px/1.8 'Roboto', Helvetica, Arial, sans-serif;
	cursor: pointer;
	vertical-align: top;
	text-transform: uppercase;
}

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

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

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

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


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

#emailField
{
	display: none;
}

body.team-directory form > div > div.keywordField,
body.practices form > div > div.keywordField,
body.experience form > div > div.keywordField,
body.newsroom form > div > div.keywordField
{
	grid-column: 1 / -1;
}

body.team .keywordField input[type=text],
body.practices .keywordField input[type=text],
body.experience .keywordField input[type=text],
body.newsroom .keywordField input[type=text]
{
	padding-right: 64px;
}

body.team .submit_wrapper,
body.practices .submit_wrapper,
body.experience .submit_wrapper,
body.newsroom .submit_wrapper
{
	grid-column: 1 / -1;
	justify-self: flex-end;
	position: absolute;
	bottom: 1px;
	right: 0px;
	width: 60px;
	height: 55px;
	border: 0px solid #BCCDD6;
}

body.team .submit_wrapper button,
body.practices .submit_wrapper button,
body.experience .submit_wrapper button,
body.newsroom .submit_wrapper button
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 55px;
	margin: 0;
	padding: 0;
	background: #BCCDD6;
	border: 1px solid #BCCDD6;
}

body.team-directory .submit_wrapper button,
body.practices .submit_wrapper button,
body.experience .submit_wrapper button,
body.newsroom .submit_wrapper button
{
	background: #3E915E;
	border: 1px solid #3E915E;
}

body.team .submit_wrapper button svg,
body.practices .submit_wrapper button svg,
body.experience .submit_wrapper button svg,
body.newsroom .submit_wrapper button svg
{
	fill: #fff;
}

body.team .submit_wrapper button:hover,
body.team .submit_wrapper button:focus,
body.practices .submit_wrapper button:hover,
body.practices .submit_wrapper button:focus,
body.experience .submit_wrapper button:hover,
body.experience .submit_wrapper button:focus,
body.newsroom .submit_wrapper button:hover,
body.newsroom .submit_wrapper button:focus
{
	background: #3E915E;
}

body.team-directory .submit_wrapper button:hover,
body.team-directory .submit_wrapper button:focus,
body.practices .submit_wrapper button:hover,
body.practices .submit_wrapper button:focus,
body.experience .submit_wrapper button:hover,
body.experience .submit_wrapper button:focus,
body.newsroom .submit_wrapper button:hover,
body.newsroom .submit_wrapper button:focus
{
	background: #BCCDD6;
	border: 1px solid #BCCDD6;
}

body.team #formOptions,
body.practices #formOptions,
body.experience #formOptions,
body.newsroom #formOptions
{
	display: flex;
	justify-content: flex-end;
	margin: 26px 0 0 0;
	color: #707070;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}

body.team #formOptions a,
body.practices #formOptions a
{
	color: #BCCDD6;
}

body.team #formOptions a:hover,
body.team #formOptions a:focus,
body.practices #formOptions a:hover,
body.practices #formOptions a:focus
{
	color: #fff;
	text-decoration: none;
}

body.team-directory #formOptions a,
body.experience #formOptions a,
body.newsroom #formOptions a
{
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
}

body.team-directory #formOptions a:hover,
body.team-directory #formOptions a:focus,
body.experience #formOptions a:hover,
body.experience #formOptions a:focus,
body.newsroom #formOptions a:hover,
body.newsroom #formOptions a:focus
{
	color: #BCCDD6;
	text-decoration: none;
}


/* auto complete js */

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

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

.autocomplete .selected
{
	background: #f0f0f0;
}

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

.autocomplete div span.autoCompleteMore
{
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
	font-size: 11px;
}

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

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


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

#footer
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2002;
	height: 82px;
	margin: 1rem 0 0 25vw;
	padding: 1rem 0;
	background: #253c4a;
	box-sizing: border-box;
	color: #CAD5DB;
	font-size: 0.9rem;
}

body.fullScreen #footer
{
	position: fixed;
	bottom: 0;
	left: 68px;
	right: 0px;
	padding: 1rem 68px 1rem 0;
}

#footerRight
{
	margin-left: auto;
}

#footer a
{
	color: #CAD5DB;
}

#footer a:hover,
#footer a:focus
{
	color: #fff;
	text-decoration: none;
}

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

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

ul#footerLinks li
{
	margin: 0 0 0 1rem;
	padding: 4px 0 4px 0;
	white-space: nowrap;
}

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

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

#footerSocial li a
{
	display: block;
	padding: 4px;
}

#footerSocial li#footerIcon_linkedin a svg .st0
{
	fill: none;
}

#footerSocial li#footerIcon_linkedin a svg .st1
{
	fill: none;
	stroke: #CAD5DB;
}

#footerSocial li#footerIcon_linkedin a svg .st2
{
	fill: #ffffff;
}

#footerSocial li#footerIcon_linkedin a:hover svg .st0,
#footerSocial li#footerIcon_linkedin a:focus svg .st0
{
	fill: none;
}

#footerSocial li#footerIcon_linkedin a:hover svg .st1,
#footerSocial li#footerIcon_linkedin a:focus svg .st1
{
	fill: #fff;
	stroke: none;
}

#footerSocial li#footerIcon_linkedin a:hover svg .st2,
#footerSocial li#footerIcon_linkedin a:focus svg .st2
{
	fill: #3E915E;
}

@media (max-width: 1349px)
{
	body.fullScreen #footer
	{
		left: 44px;
		padding: 1rem 20px 1rem 0;
	}
}

@media (max-width: 1049px)
{
	#footer
	{
		margin-left: 0px;
	}

	body.fullScreen #footer
	{
		position: relative;
		bottom: unset;
		left: 0px;
		right: unset;
		padding: 1rem 0;
	}
}

@media (max-width: 769px)
{
	#footer
	{
		align-items: center;
		justify-content: center;
		flex-direction: column;
		height: auto;
	}

	#footerLeft,
	#footerRight
	{
		width: 100%;
		margin: 0;
	}

	#footer ul
	{
		justify-content: center;
	}

	#footerSocial
	{
		margin: 1rem 0 1rem 0;
	}

	ul#footerLinks li,
	#footerSocial ul li
	{
		margin: 0 0.5rem 0 0.5rem;
	}

	ul#footerLinks li
	{
		white-space: unset;
		text-align: center;
		line-height: 1.2;
	}
}


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

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

.popupPlayerWrapper
{
	display: flex;
	flex-wrap: wrap;
	position: fixed;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	z-index: 99999999;
	width: 60vw;
	height: auto;
	background: #fff;
	border: 12px solid #cecece;
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
}

.popupPlayerWrapper .position
{
	color: #333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

.videomore
{
	font-size: 0.8rem;
}

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

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

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

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

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

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

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

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

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

.photo .triggerPopupPlayer,
.photo .triggerPopupPlayer img
{
	display: inline-block;
	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
{
	/* font-size here is the full width/height of the icon */
	font-size: 70px;

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

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

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

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

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

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

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

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

@media (max-width: 1024px)
{
	.inlineMultimediaPlaceholder
	{
		max-width: none;
		margin: 0px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#floatCookieManage
{
	border: none;
	margin: 0;
	padding: 10px;
	width: auto;
	overflow: visible;
	background: transparent;
	color: inherit;
	font: inherit;
	text-transform: inherit;
	text-align: inherit;
	line-height: inherit;

	-webkit-font-smoothing: inherit;
	-webkit-appearance: none;
  	appearance: none;

	position: fixed;
  	z-index: 100;
	bottom: 23px;
	right: 23px;
	z-index: 9999;
  	cursor: pointer;
}

#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 img
{
	background: #000000;
	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(82, 150, 209, 0);
	border-radius: 5px;
	color: white;

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

	transition: all 350ms;
}

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

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

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

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

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

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

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

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

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

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

#cookieOptions button.closeButton
{
	top: 22px;
	right: 22px;
	background: none;
	padding: 0 24px 24px 0;
	background: none;
	border-radius: 0;

	color: black;
}

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

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

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

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

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

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

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

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

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

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

	position: sticky;
}

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

#cookieOptions h2#cookieTitle :is(svg, img)
{
	max-height: 6em;
	width: auto;
}

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

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

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

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

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

	margin-bottom: 0.8em;

	align-items: center;
}

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

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

	font-weight: bolder;
	color: #3B7D54;
}

#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: 2em;
	padding-bottom: 2em;
	margin: 2em 0 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: #3B7D54;
	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: #3B7D54;
	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;
}


.closeButton
{
	position: absolute;
	top: 4px;
	right: 15px;
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 45px 45px 0 0;
	background-color: #ddd;
	border: none;
	border-radius: 45px;
	color: #999;
	font-size: 0;
	cursor: pointer;
}
.closeButton::before,
.closeButton::after
{
	content: "";
	position: absolute;
	top: 21px;
	left: 9px;
	width: 26px;
	height: 2px;
	background-color: currentColor;
	transform: rotate(-45deg);
}

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

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

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


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

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

#cookieBanner::before
{
	border-top: 1px solid #C1C1C1;
	background: #253c4a;
}

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

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

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

#cookieBanner button:last-of-type, 
#cookieBanner div button#cookieReject
{
	border: 1px solid currentColor;
}

#cookieBanner button:last-of-type
{
	padding-right: 10px;
}

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

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


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

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

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

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

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

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

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

#cookieOptions h2#cookieTitle :is(svg, img)
{
	margin-bottom: 10px;
}

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

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

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

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

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

#cookieOptions #cookieConfirm div
{
	order: 2;
}

@media (min-width: 600px)
{
	#cookieOptions #cookieConfirm
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

}

/* End Alternate Cookie Banner */

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

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

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

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

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

	transition: opacity .3s;
}

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

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

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

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

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

	overflow: auto;
}

#emailDisclaimerButtons
{
	text-align: center;
}

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

	display: inline-block;
	margin: 10px;
	padding: 4px 10px;
	background: #3E915E;
	color: #fff;
	text-align: center;
	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;
}

/* 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: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
}

#search #searchTabLinks a span
{
	/*color: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
}

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

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

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

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

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

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

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

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

#search select:hover
{
	cursor: pointer;
}


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

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

	order: 2;
}

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

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

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


/* Example Styles Support */

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

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


/* Map Object Support */

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

.printMap
{
	display: inline-block;
	padding: 4px;
	background: #3E915E;
	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: #3E915E;*/
	color: #3B7D54; /* changed to meet ADA */
}

button.toggleExpand:hover,
button.toggleExpand:focus
{
	color: #4B7483;
}


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