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

/*-------------------------- SECTIONS ------------------------------*/
/* #1 General Layout */
/* #2 Header */
/* #3 Main Navigation (home and inside) */
/* #4 Sub Navigation (backlink) */
/* #5 Home Page */
/* #6 Content */
/* #7 Footer */
/*------------------------------------------------------------------*/

/*------------------------- FONT COLOR -----------------------------*/
/* Content text: #474747; */
/* Content link: #a70001; */
/* Footer text: #7586a2; */
/* Footer link: #7586a2; */
/*------------------------------------------------------------------*/

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

	font: normal 18px/1.64 metropolis, sans-serif;
	color: #474747;
}

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;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 44px 0 44px; /* top padding match fixed header height */
	background: #fff;
	box-sizing: border-box;
}

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

@media (max-width: 919px)
{
	body
	{
		padding: 0 16px;
	}

	#banner
	{
		margin: 0 -16px;
	}
}

p
{
	margin: 0 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: #a70001;
	text-decoration: none;
}

a:hover,
a:focus
{
	color: #a70001;
	text-decoration: underline;

	text-underline-offset: 5px;
}

u
{
	text-underline-offset: 5px;
}

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

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

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

h1, h2, h3, h4, h5, h6
{
	margin: 2.4rem 0 .8rem;
	padding: 0;
	color: #a70001;
	font-weight: 500;
	line-height: normal;
}

h1
{
	line-height: 1.3;
}

h1, .bioList h2
{
	margin: 0 0 24px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #eaeaea;
	color: black;
	font-size: 1.88rem;
	font-weight: normal;
}

h2 {
	margin: 3rem 0 1rem;
	font-size: 1.35rem;
}

h3 {
	margin: 2rem 0 1rem;
	font-size: 23px;
	color: black;
}

h4
{
	font-size: 1rem;
	text-transform: uppercase;
}

h4
{
	color: black;
	font-weight: 600;
}

#subContent h2
{
	font-size: 1.05rem;
	margin-top: 1.8rem;
}

#subContent h3
{
	font-size: .9rem;
}


h5 {
	padding: 8px 0 6px 0;
	font-size: 1.05rem;
}

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

h2 + h3
{
	margin-top: 0;
}

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

ol
{
	padding-left: 1em;
}

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

ul li
{
	margin-left: 15px;
}

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

ul
{
	list-style: none url('../i/bullet_default.svgz');
}

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

/* custom style */
blockquote.pullQuote
{
	padding: 2.7em 5.38%;
	margin: 2.7em 0;

	border: solid #eaeaea;
	border-width: 1px 0;

	font-size: calc(1rem + 1px);
	color: #222;
}

/* in case they put one after another, make them look like a single block */
blockquote.pullQuote + blockquote.pullQuote
{
	border-top: 0;
	padding-top: 0;
	margin-top: calc(-5.4em - 1px);
	padding-top: 1.25rem;

	background: white;
}

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

#homeAnimation::before,
#homeNewsHighlight::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;
}

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

#newsroom-knowledge h2,
.newsroom-knowledge .itemList h2 {
	margin: 36px 0 1rem 0;
	padding: 0 0 1rem 0;
	border-bottom: 1px solid #eaeaea;
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: normal;

	color: inherit;
}

.newsroom-knowledge .itemList h2
{
	padding-top: 0;

}

#resultPageLinks
{
	margin: 1em 0;
}

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

	color: black;

	margin: -1px 0 0 0;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;

	font-weight: normal;
}

/* fluid css (padding 12px to 30px) - https://codepen.io/lowbatteries/full/qBEyXEP */
/* fluid css (font-size 16px to 22px) - https://codepen.io/lowbatteries/full/qBEyXEP */
.expandableHeading
{
	padding: calc(12px + (30 - 12) * ((100vw - 320px) / (1440 - 320))) 0;
	font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1440 - 320)));
}

@media screen and (min-width: 1440px)
{
	.expandableHeading
	{
		padding: 30px 0;
		font-size: 22px;
	}
}

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

.expandableHeading.expanded button
{
	color: #666;
}

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

	display: block;
	width: 100%;

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

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

.expandableHeading button::after
{
	content: '';

	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;

	background: url(../i/home-arrow.svgz) no-repeat right;
	background-size: 30px 7px;
	width: 30px;

	transition: .3s;
}

.expandableHeading.expanded button::after
{
	transform: rotate(90deg);

	filter: brightness(0) invert(.6); /* make white */
}

div.expandableContent
{
	display: none;
	padding-bottom: 1rem;
	border-bottom: 1px solid #999999;
	margin-top: -1px !important;
	border-top: 1px solid white;

	position: relative;
}

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

div.expandableContent :last-child
{
	margin-bottom: 0;
}

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


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

/*
	how these content jumps should work on desktop:

	1. Initially completely hidden (display: none)
	2. On keyboard input, displayed but transparent (so they can be focused by tabbing)
	3. On focus, they are made fully visible
*/

.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),
html:not([data-whatintent="keyboard"]) .contentJump
{
	color: transparent !important;
	background: transparent !important;
	z-index: -1;
}


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

#header
{
	top: 0;
	left: 0;
	z-index: 98;
	width: 100%;
	background: white;
	padding: 0;
	box-sizing: border-box;
}

/* fluid css (height 74px to 137px) - https://codepen.io/lowbatteries/full/qBEyXEP */
/* fluid css (padding 15px to 43px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#header
{
	height: calc(74px + (137 - 74) * ((100vw - 320px) / (455 - 320)));
	padding-top: calc(15px + (43 - 15) * ((100vw - 320px) / (455 - 320)));
}

@media screen and (min-width: 455px)
{
	#header
	{
		height: 137px;
		padding-top: 43px;
	}
}

#logo
{
	padding: 0 0 0 0;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}

#logo img
{
	display: block;
	max-height: 60px;
	max-width: calc(100vw - 100px);
}

#header * a
{
	text-decoration: none;
}


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


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

.search1 #siteSearch:target,
.search1 #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;
}

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

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

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

.search1 #siteSearch div button img
{
	height: 25px;
	filter: brightness(0) invert(1); /* make white */
}

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

.search1 #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: 32px 28px 0 0;

	cursor: pointer;
	box-sizing: border-box;
}

.search1 #searchClose::after,
.search1 #searchClose::before
{
	content: '';
	display: block;

	position: absolute;
	top: -2px;
	bottom: -2px;
	width: 0;
	left: 50%;
	outline: 2.5px solid white;

	transform: rotate(-30deg);
}

.search1 #searchClose::before
{
	transform: rotate(30deg);
}

#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: 580px)
{
	#searchPopup
	{
		left: calc(50% - 145px);
	}
}

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

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

.searchPopup > :not(:last-child)
{
	border-bottom: 1px solid #ddd
}

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

.searchPopup .link
{
	font-weight: bold;
	margin-bottom: 10px;
}

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

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

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

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

.searchPopup > :not(:last-child)
{
	border-bottom: 1px solid #ddd
}

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

.searchPopup .link
{
	font-weight: bold;
	margin-bottom: 10px;
}

.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: black;
	color: white;
}

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

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

	bottom: 0;
}

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

/* alternate search setups */

.search2 #siteSearch,
.search3 #siteSearch
{
	position: absolute;
	top: 10px;
	right: 2vw;
}

@media (max-width: 1119px)
{
	.search2 #siteSearch,
	.search3 #siteSearch
	{
		top: 60px;
		right: 10px;
	}
}

.search2 #siteSearch
{
	max-height: 0;
	overflow: hidden;
	opacity: 0;

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

.search2 #siteSearch:target,
.search2 #siteSearch.target
{
	display: block;

	max-height: 500px;
	opacity: 1;

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

.search2 #siteSearch > div,
.search3 #siteSearch > div
{
	display: flex;
}

.search2 #siteSearch input,
.search3 #siteSearch input
{
	width: auto;
}

.search2 #siteSearch button,
.search3 #siteSearch button
{
	background: none;
	border: 0;
	margin: 0;
	padding: 0 10px;
}

.search2 #siteSearch button
{
	background: #0f334f;
}

.search2 #searchPopup,
.search3 #searchPopup
{
	top: 45px;
	right: 41px;
	left: auto;
}

.search3 #siteSearch input,
.search3 #siteSearch button
{
	background: none;
	border: 0;
	border-bottom: 1px solid white;
	color: white;
}

.search3 #searchJump
{
	display: none;
}


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

#banner
{
	background: #f2f2f2;

	display: flex;

	align-items: stretch;
	justify-content: flex-end;
}

/* fluid css (height 25px to 181px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#banner
{
	height: calc(53px + (181 - 53) * ((100vw - 320px) / (1239 - 320)));
}

@media screen and (min-width: 1239px)
{
	#banner
	{
		height: 181px;
	}
}

#bannerImage
{
	background: #F2F2F2;

	justify-content: flex-end;
}

#bannerImage img
{
	width: inherit;
}

/* fluid css (width 64px to 219px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#bannerImage
{
	width: calc(64px + (219 - 64) * ((100vw - 320px) / (1239 - 320)));
}

/* fluid css (width 219px to 361px) - https://codepen.io/lowbatteries/full/qBEyXEP */
@media screen and (min-width: 1240px)
{
	#bannerImage
	{
		width: calc(219px + (361 - 219) * ((100vw - 1240px) / (1440 - 1240)));
	}
}

@media screen and (min-width: 1440px)
{
	#bannerImage
	{
		width: 361px;
	}
}

#bannerTitle
{
	text-transform: uppercase;
	letter-spacing: -.06em;
	font-weight: 300;
	line-height: 1;
	height: .84em;

	overflow: hidden;

	color: #d6d5d5;

	margin: 0 10px;
	align-self: flex-end;

	flex-grow: 1;
	text-align: center;
}

/* fluid css (font-size 20px to 80px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#bannerTitle
{
	font-size: calc(22px + (80 - 22) * ((100vw - 320px) / (1440 - 320)));
}

@media screen and (min-width: 1240px)
{
	#bannerTitle
	{
		text-align: left;
		margin: 0 0.8em;
	}
}

@media screen and (min-width: 1440px)
{
	#bannerTitle
	{
		font-size: 80px;
		text-align: left;
		margin: 0 0.8em;
	}
}

#banner::after
{
	content: '';
	display: block;
	background: #a70007 url(../i/banner-logo.svgz) no-repeat left;
	background-size: contain;
}

#banner::after,
#bannerTools
{
	border-left: 1px solid white;
}

/* fluid css (width 65px to 222px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#banner::after,
#bannerTools
{
	width: calc(65px + (222 - 65) * ((100vw - 320px) / (1240 - 320)));
}

@media screen and (min-width: 1240px)
{
	#banner::after,
	#bannerTools
	{
		width: 222px;
	}
}

#bannerTools
{
	order: 1;
	background: #8a8178;

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

@media (max-width: 830px)
{
	#bannerTools button
	{
		display: none;
	}
}

@media (max-width: 450px)
{
	#bannerTools a
	{
		font-size: 3.125vw;
	}
}

/* some pages inexplicably have these background colors reversed */
.firm #banner::after,
.newsroom #banner::after
{
	background-color: #8a8178;
}

.firm #bannerTools,
.newsroom #bannerTools
{
	background-color: #a70007;
}

#bannerTools > *
{
	margin: 0 8px;
	padding: 0;
	padding-bottom: 8.55%;
	background: none;
	border: none;
	font: inherit;

	cursor: pointer;
	color: white;
	font-size: 14px;
	text-transform: uppercase;
}

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

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

	background: black;
}

#mainNav #searchJump
{
	position: relative;
	top: 8px;
	left: 15px;
}

#mainNav #searchJump:hover,
#mainNav #searchJump:focus
{
	filter: brightness(0) invert(.6);
}

#mainNav ul
{
	background: black;
}

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

#mainNav li > a
{
	display: block;
	padding: 10px 16px;
	line-height: 20px;
}

#mainNav li:hover > a
{
	/* make sure to repeat these styles in the block below */
	color: #a70001;
	text-decoration: none;
}

/* styles above, repeated, because some browsers don't understand focus-within */
html[data-whatintent="keyboard"] #mainNav li li:focus-within > a
{
	color: white;
	background: black;
}

/* main nav tab current page highlight */
#mainNav .current > a:not(:hover):not(:focus)
{
	color: #a70001;
}

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

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

#mainNav > ul > li > a,
.subNavHeader
{
	white-space: nowrap;
	text-transform: uppercase;
}

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

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

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

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

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


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

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

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

		background: none;
	}

	#mainNav ul
	{
		background: none;
	}

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

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

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

	#mainNav > ul li ul
	{
		background: rgba(0,0,0,.7);
	}

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

		padding: 0;
	}

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

	#mainNav li li:hover > a
	{
		color: white;
		background: black;
	}

	/* styles above, repeated, because some browsers don't understand focus-within */
	html[data-whatintent="keyboard"] #mainNav li:focus-within > a
	{
		color: white;
		background: black;
	}


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

	/* 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 doulbe drops by default */

		top: 0;
		left: 100%;
	}

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

	button#navToggle
	{
		display: none;
	}


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

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

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

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

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

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

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


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

@media (max-width: 1399px)
{
	#mainNav,
	#mainNav li ul
	{
		position: fixed;
		display: block;
		visibility: hidden;
		z-index: 99;
		top: 0;
		right: -1000px;
		left: auto;
		min-width: 30vw;
		width: 100vw;
		max-width: 464px;
		height: 100vh;
		padding: 107px 40px 10px;
		box-sizing: border-box;
		box-shadow: 0 0 50px 15px rgba(0,0,0,.3);

		font-size: 22px;
	}

	#mainNav,
	#mainNav ul
	{
		overflow: auto;
	}

	#mainNav::before
	{
		display: none;
	}

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

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

	#mainNav a
	{
		color: white;
	}

	#mainNav li:hover > a
	{
		/* make sure to repeat these styles in the block below */
		color: #999;
		text-decoration: none;
	}

	#mainNav #subNavBack
	{
		position: absolute;
		top: 10px;
		font-weight: bold;
		text-transform: uppercase;
		font-size: .8em;
	}

	#mainNav li > a
	{
		padding: 10px 0;
	}

	#mainNav > ul > li > a,
	.subNavHeader a
	{
		padding: 16px 0;
		text-transform: none;
	}

	.subNavHeader a
	{
		text-transform: uppercase;
		margin-bottom: 10px;
		margin-top: 8px;
		font-weight: bold;
	}

	#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
	{
		padding: 0 10px;
	}

	#mainNav li > a
	{
		position: relative;
	}

	#mainNav li > a:first-child:not(:last-child)::after
	{
		content: '';
		background: url(../i/home-arrow.svgz) no-repeat right;
		width: 20px;
		height: .5em;
		font-size: 2em;
		position: absolute;
		right: 2px;

		background-size: auto 7px;
	}

	#mainNav li li > a:first-child:not(:last-child)::after
	{
		background-image: url(../i/bullet_default.svgz);
	}

	#mainNav #searchJump
	{
		filter: brightness(0) invert(1); /* make white */

		display: flex;
		justify-content: space-between;

		top: 60px;
		left: 10px;

		padding-right: 21px;
	}

	#mainNav #searchJump::before
	{
		content: 'Search';
		vertical-align: top;
		line-height: 1;
	}

	/* Mobile Nav 'Hamburger' Button */

	button#navToggle
	{
		display: block;
		position: absolute;
		z-index: 100;
		top: 48px;
		top: 12px;
		right: 40px;
	}

	#navToggle.isActive
	{
		position: fixed;
	}

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

	.mobileNav:hover .mobileNavInner,
	.mobileNav:focus .mobileNavInner
	{
		background: #8a8178;
	}

	.mobileNav.isActive .mobileNavInner,
	.mobileNav.isActive .mobileNavInner::after,
	.mobileNav.isActive .mobileNavInner::before
	{
		background-color: #8a8178;
	}

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

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

	.mobileNavInner,
	.mobileNavInner::after,
	.mobileNavInner::before
	{
		position: absolute;
		width: 40px;
		height: 4px;
		background-color: #a70001;
		border-radius: 4px;
		transition-timing-function: ease;
		transition-duration: .15s;
		transition-property: transform;
	}

	.mobileNavInner::after,
	.mobileNavInner::before
	{
		background-color: inherit;
		display: block;
		content: "";
	}

	.mobileNavInner::before
	{
		top: -10px;
	}

	.mobileNavInner::after
	{
		bottom: -10px;
	}


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

	.mobileNavLabel
	{
		display: none;
		/*display: inline-block;
		margin-left: 5px;
		color: #000;
		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 .mobileNavInner
	{
		top: -4px;
	}

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

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

	.mobileNavSpring.isActive .mobileNavInner
	{
		transition-delay: .22s;
		background-color: transparent !important;
	}

	.mobileNavSpring.isActive .mobileNavInner::before
	{
		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 .mobileNavInner::after
	{
		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);
	}


	/* BORING - optional mobile nav button style */
	/* change #navToggle class to .mobileNavBoring in Page/Local */
	/*
	.mobileNavBoring .mobileNavInner,
	.mobileNavBoring .mobileNavInner::after,
	.mobileNavBoring .mobileNavInner::before
	{
		transition-property: none
	}

	.mobileNavBoring.isActive .mobileNavInner
	{
		transform: rotate(45deg)
	}

	.mobileNavBoring.isActive .mobileNavInner::before
	{
		top: 0;
		opacity: 0
	}

	.mobileNavBoring.isActive .mobileNavInner::after
	{
		bottom: 0;
		transform: rotate(-90deg)
	}
	*/


	/* SQUEEZE - optional mobile nav button style */
	/* change #navToggle class to .mobileNavSqueeze in Page/Local */
	/*
	.mobileNavSqueeze .mobileNavInner
	{
		transition-timing-function: cubic-bezier(.55, .055, .675, .19);
		transition-duration: 75ms;
	}

	.mobileNavSqueeze .mobileNavInner::before
	{
		transition: top 75ms ease .12s, opacity 75ms ease;
	}

	.mobileNavSqueeze .mobileNavInner::after
	{
		transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavSqueeze.isActive .mobileNavInner
	{
		transition-delay: .12s;
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: rotate(45deg);
	}

	.mobileNavSqueeze.isActive .mobileNavInner::before
	{
		top: 0;
		transition: top 75ms ease, opacity 75ms ease .12s;
		opacity: 0;
	}

	.mobileNavSqueeze.isActive .mobileNavInner::after
	{
		bottom: 0;
		transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
		transform: rotate(-90deg);
	}
	*/


	/* ARROW - optional mobile nav button style */
	/* change #navToggle class to .mobileNavArrow in Page/Local */
	/*
	.mobileNavArrow.isActive .mobileNavInner::before
	{
		transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(.7);
	}

	.mobileNavArrow.isActive .mobileNavInner::after
	{
		transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(.7);
	}
	*/


	/* ARROW ALT - optional mobile nav button style */
	/* change #navToggle class to .mobileNavArrowAlt in Page/Local */
	/*
	.mobileNavArrowAlt .mobileNavInner::before
	{
    	transition: top .1s ease .1s, transform .1s cubic-bezier(.165, .84, .44, 1);
	}

	.mobileNavArrowAlt .mobileNavInner::after
	{
		transition: bottom .1s ease .1s, transform .1s cubic-bezier(.165, .84, .44, 1);
	}

	.mobileNavArrowAlt.isActive .mobileNavInner::before
	{
		top: 0;
		transition: top .1s ease, transform .1s cubic-bezier(.895, .03, .685, .22) .1s;
		transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(.7);
	}

	.mobileNavArrowAlt.isActive .mobileNavInner::after
	{
		bottom: 0;
		transition: bottom .1s ease, transform .1s cubic-bezier(.895, .03, .685, .22) .1s;
		transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(.7);
	}
	*/


	/* SPIN - optional mobile nav button style */
	/* change #navToggle class to .mobileNavSpin in Page/Local */
	/*
	.mobileNavSpin .mobileNavInner
	{
		transition-timing-function: cubic-bezier(.55, .055, .675, .19);
		transition-duration: .22s;
	}

	.mobileNavSpin .mobileNavInner::before
	{
		transition: top .1s ease-in .25s, opacity .1s ease-in;
	}

	.mobileNavSpin .mobileNavInner::after
	{
		transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavSpin.isActive .mobileNavInner
	{
		transition-delay: .12s;
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: rotate(225deg);
	}

	.mobileNavSpin.isActive .mobileNavInner::before
	{
		top: 0;
		transition: top .1s ease-out, opacity .1s ease-out .12s;
		opacity: 0;
	}

	.mobileNavSpin.isActive .mobileNavInner::after
	{
		bottom: 0;
		transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
		transform: rotate(-90deg);
	}
	*/


	/* COLLAPSE - optional mobile nav button style */
	/* change #navToggle class to .mobileNavCollapse in Page/Local */
	/*
	.mobileNavCollapse .mobileNavInner
	{
		top: 16px;
		transition-delay: .13s;
		transition-timing-function: cubic-bezier(.55, .055, .675, .19);
		transition-duration: .13s;
	}

	.mobileNavCollapse .mobileNavInner::after
	{
		top: -20px;
		transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, opacity .1s linear;
	}

	.mobileNavCollapse .mobileNavInner::before
	{
		transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
	}

	.mobileNavCollapse.isActive .mobileNavInner
	{
		transition-delay: .22s;
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translate3d(0, -10px, 0) rotate(-45deg);
	}

	.mobileNavCollapse.isActive .mobileNavInner::after
	{
		top: 0;
		transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .22s;
		opacity: 0;
	}

	.mobileNavCollapse.isActive .mobileNavInner::before
	{
		top: 0;
		transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s;
		transform: rotate(-90deg);
	}
	*/
}

/* fluid css (top 12px to 48px) - https://codepen.io/lowbatteries/full/qBEyXEP */
button#navToggle
{
	top: calc(12px + (48 - 12) * ((100vw - 320px) / (455 - 320)));
}

@media screen and (min-width: 455px)
{
	button#navToggle
	{
		top: 48px;
	}
}

@media (max-width: 919px)
{
	button#navToggle
	{
		right: 12px;
	}
}


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

ul.subNavList
{
	margin-bottom: 1em;
	list-style: none;

	font-size: 14px;

	border-bottom: 1px solid #f2f2f2;

	max-width: 251px;
}

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

ul.subNavList ul li:last-child
{
	padding-bottom: 0;
}

ul.subNavList li
{
	list-style: none;

	padding: 8px 5px 8px 0;
	margin: 0;

	border-top: 1px solid #f2f2f2;
}

ul.subNavList a
{
	padding-left: 12px;
	text-decoration: none;

	display: inline-block;
	background: url('../i/bullet_default.svgz') 0 3px no-repeat;
}

ul.subNavList a:not(:hover):not(:focus)
{
	color: #656565;
}

#subNav li.here > a,
#subNav li.hereParent > a
{
	color: black;
}

#topSubNav,
#bottomSubNav
{
	width: auto;
	max-width: none;

	list-style: none;
}

#topSubNav li,
#bottomSubNav li
{
	box-sizing: border-box;

	padding: 0 0 0 20px;
	margin: 0;
	font-size: .88rem;
	background: url('../i/bullet_practice.svgz') left no-repeat;
}

#topSubNav li
{
	display: inline-block;
	padding-right: 23px;
}

#topSubNav li:last-child
{
	padding-right: 0;
}

#topSubNav li a,
#bottomSubNav li a
{
	text-decoration: none;
}

#topSubNav li a:not(:hover):not(:focus),
#bottomSubNav li a:not(:hover):not(:focus)
{
	color: black;
}

@media (max-width: 800px)
{
	#topSubNav
	{
		display: flex;
		flex-wrap: wrap;
	}

	#topSubNav li
	{
		width: 33%;
	}
}

@media (max-width: 560px)
{
	#topSubNav li
	{
		flex-basis: 50%;
		margin-right: 0;
	}
}


@media (max-width: 380px)
{
	#topSubNav li
	{
		flex-basis: 100%;
	}
}

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

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

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

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

.contentSection
{
	display: none;
}

.sectionTitle
{
	display: none;
}

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

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

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

	h2.sectionTitle
	{
		display: block;
		position: relative;
		overflow: hidden;
		margin: 1px 0 0 0;
		padding: 13px 20px 13px 20px;
		background: #ddd;
		color: #666;
		font-size: 27px;
		box-sizing: border-box;
		text-decoration: none;
		cursor: pointer;
	}

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

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

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

	.contentSection
	{
		display: block !important;
	}

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

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


/* 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: #eaeaea;
	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: #a70001;
	font-weight: 700;
	font-size: 24px;
}

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

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


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

#content
{
	position: relative;
	min-height: 350px;
}

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

main
{
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 0 20px 0;
	box-sizing: border-box;
}

/* fluid css (margin-top 28px to 65px) - https://codepen.io/lowbatteries/full/qBEyXEP */
main
{
	margin-top: calc(28px + (65 - 28) * ((100vw - 320px) / (920 - 320)));
}

@media screen and (min-width: 920px)
{
	main
	{
		margin-top: 65px;
	}
}

#subNav,
#subContent
{
	position: relative;
	width: 100%;
	margin: 27px 0 1em 0;
	box-sizing: border-box;
}

#subContent
{
	font-size: 15px;
}

@media (min-width: 920px)
{
	/* if the main content is not an only child, or follows a banner, it floats right */
	#mainContent:not(:only-child),
	#banner ~ #content #mainContent
	{
		float: right;
		width: calc(68.1%);
	}

	#subNav,
	#subContent
	{
		float: left;
		clear: left;
		width: 26%;
		margin-top: 70px;
	}
}

/* fluid css (margin-top 70px to 163px) - https://codepen.io/lowbatteries/full/qBEyXEP */
@media screen and (min-width: 1240px)
{
	#subNav,
	#subContent
	{
		margin-top: calc(70px + (163 - 70) * ((100vw - 1240px) / (1440 - 1240)));
	}
}

@media screen and (min-width: 1440px)
{
	#subNav,
	#subContent
	{
		margin-top: 163px;
	}
}
@media (min-width: 920px)
{
	#subNav ~ #subContent
	{
		margin-top: 0;
	}
}

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

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
		margin-top: 1rem;
		padding-top: 2rem;
    	border-top: 1px solid #eaeaea;
	}

	#subNav
	{
		order: 3;
	}
}

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

#subContent .sideStaticText h2
{
	color: #a70007;
	margin: 0;
	padding: 0;

	font-weight: 500;
}

/* fluid css (font-size 20px to 27px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#subContent .sideStaticText h2
{
	font-size: calc(20px + (27 - 20) * ((100vw - 320px) / (455 - 320)));
}

@media screen and (min-width: 455px)
{
	#subContent .sideStaticText h2
	{
		font-size: 27px;
	}
}

#subContent .sideStaticText h3
{
	padding: .5rem 0 0;
	color: #000000;

	font-weight: 500;
	font-size: 22px;
}

/* fluid css (font-size 18px to 22px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#subContent .sideStaticText h3
{
	font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (455 - 320)));
}

@media screen and (min-width: 455px)
{
	#subContent .sideStaticText h3
	{
		font-size: 22px;
	}
}

#subContent .sideStaticText h3 strong
{
	font-weight: inherit;
}

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

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

.expandableList a
{
	color: black;
}

/* hide all items for area, industry, and office 'professionals' */
#area_bio .results_list > li:nth-child(n+1),
#office_bio .results_list > li:nth-child(n+1)
{
	display: none;
}

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

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

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


/* Bio Directory */

.letterLinks
{
	margin: 10px 0 18px -9px;
	color: #999;
	font-weight: 300;
	font-size: 24px;
}

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

.letterLinks a,
.letterLinks span
{
	display: inline-block;
	float: left;
	width: calc(100% / 26);
	text-align: center;
}

.letterLinks > *:last-child
{
	width: calc(100% / 26 - 1px);
}

@media (max-width: 1024px)
{
	.letterLinks a,
	.letterLinks span
	{
		width: calc(100% / 13);
	}

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

.bioList
{
	margin: 30px 0 20px 0;
}

.bioList h2
{
	color: black;
}

.bioList ul,
.bioList li
{
	display: block;
	padding: 0;
	margin: 0;

	list-style: none;
}

.bioList li
{
	display: flex;

	border-bottom: 1px solid #eaeaea;
	padding-bottom: 20px;
	margin-top: 20px;
}

.bioList li > div
{
	flex-grow: 2;
	box-sizing: border-box;
	padding-right: 30px;
}

.bioList li .nametitle
{
	max-width: 340px;
	flex-basis: 35.8%;
}

.bioList li > .phone
{
	flex-grow: 0;
}

.bioList li > .vcard
{
	padding-right: 0;
	flex-grow: 1;
}

@media (max-width: 500px)
{
	.bioList li
	{
		flex-wrap: wrap;
	}

	.bioList li > div
	{
		flex-basis: auto;
		flex-grow: 0;
	}

	.bioList li .nametitle
	{
		flex-basis: 100%;
		max-width: none;
	}

	.bioList li .title
	{
		font-weight :bold;
	}
}


/* Bio Profile */
@media (max-width: 919px)
{
	.professionals-item #subContent
	{
		order: 0;
		border: 0;
		padding: 0;

		/* match #mainContent defined above */
		margin-top: calc(28px + (65 - 28) * ((100vw - 320px) / (920 - 320)));
	}
}


#backLink
{
	display: none;
	position: absolute;
	right: 0;
	top: 16px;

	padding-left: 10px;
	font-size: 14px;
}

#backLink:not(:hover):not(:focus)
{
	color: #666;
}


@media (min-width: 580px)
{
	#backLink
	{
		display: block;
	}

	#backLink + div h1
	{
		padding-right: 180px;
	}
}

@media (max-width: 919px)
{

	#bioContact
	{
		float: left;
		margin-right: 30px !important;
		display: flex;
		flex-wrap: wrap;
	}

	#bioAccessories
	{
		overflow: hidden;
		min-width: 157px;
	}

	#bioAccessories:after
	{
		content: '';
		display: table;
		clear: both;
	}

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

	#backLink
	{
		display: none;
	}
}

#backLink::before
{
	content: '';
	display: inline-block;

	width: 10px;
	height: .8em;

	background: url(../i/bullet_default.svgz) right no-repeat;
	transform: rotate(180deg);
}

#bioInfoWrapper
{
	display: flex;
	margin: 0 0 30px 0;
}

#bioPhoto
{
	display: block;
	height: 330px;
	margin-right: 20px;
}

#bioInfo
{
	flex-grow: 1;
	max-width: 500px;
}

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

ul#bioContact li
{
	margin-bottom: 1rem;
}

#bioContact li > div:first-child > a
{
	display: inline-block;
	background: url(../i/bullet_default.svgz) 100% 3px no-repeat;
	padding-right: 10px;
	color: inherit;
}

#bioContact li > div:first-child > a:not(:hover):not(:focus),
#bioAccessories a:not(:hover):not(:focus)
{
	color: black;
}

ul#bioAccessories
{
	padding-top: 1em;
	margin-bottom: 1.8rem;
}

#bioAccessories a
{
	display: inline-block;
	background: url(../i/email.svgz) right no-repeat;
	padding: 2px 25px 2px 0;
}

#bioVcard a
{
	background-image: url(../i/vcard.svgz);
	padding-right: 27px;
}

#bioLinkedin a
{
	background-image: url(../i/linkedin.svgz);
	padding-right: 20px;
}


/* Practice List */

.listColumn
{
	margin: 3em 0 2em 0;
}

@media (min-width: 500px)
{
	.listColumn
	{
		columns: 350px;
	}
}

.listColumn ul,
.listColumn ul li
{
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	line-height: 1.1;
}

.listColumn ul
{
	padding-top: 1px;
}

.listColumn > ul > li
{
	padding: 12px 0 12px 23px;
	background: url('../i/bullet_practice.svgz') 0 13px no-repeat;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	margin-top: -1px;

	overflow: hidden;
	break-inside: avoid;
}

.listColumn a
{
	color: inherit;
}

.listColumn li li
{
	margin-top: 1rem;
	padding-left: 15px;
}

.listColumn li li li
{
	padding-left: 20px;
}

/* Practice Profile */

#subContent #area_hierarchy ul li li
{
	margin-left: 20px;
}


/* News/Pub/Event type Listing */

.view_more a
{
	display: inline-block;
	width: auto;
	margin: 0 0 28px 0;
	padding: 7px 14px 7px 14px;
	background: #969696;
	color: #fff;
	vertical-align: middle;
}

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

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


/* News/Pub/Event type Profile */

div.blog,
div.publication,
span.publication
{
	font-style: italic;
}

#itemContent
{
	margin: 20px 0 0 0;
}

.photoRight
{
	float: right;
	margin-left: 14px;
}


/* Contact Main Listing */

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

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

#officeList ul
{
	display: flex;
	justify-content: space-between;
}

#officeList ul li
{
	margin: 0 0 30px 0;
	padding: 0 20px 0 0;
	box-sizing: border-box;
}

#officeList ul li + li
{
	margin-right: 30px;
}

#officeList ul li .title
{
	font-weight: bold;
}

@media (max-width: 690px), (min-width: 920px) and (max-width: 1200px)
{
	#officeList ul
	{
		display: block;
	}
}


/* Office Profile Pages */

#officeAddress
{
	margin: 10px 0 20px 0;
}

#officeAddressPhone
{
	margin: 10px 0 10px 0;
}


/* attachments */
.attachment_item > div
{
	margin: 0 0 6px 0;
}

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

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

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

form > div
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

form > div > div
{
	position: relative;
	flex-basis: calc(50% - 0.5%);
	margin: 0 0 1% 0;
}

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

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

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

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

label
{
	display: block;
}

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
{
	flex-basis: 100%;
	padding: 10px 0 0 0;
}

.rsvp form > div > div.radio_wrapper > div
{
	display: block;
}

.rsvp input[type=submit]
{
	background: #a70001;
}

.rsvp h3
{
	margin: 0;
}
.rsvp h5
{
	margin: 0 0 2em 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
{
	/* flex-basis: 100%;  uncomment if you want this on its own line */
}

/* WebForm uses an id */
#submit_wrapper
{
	flex-basis: 100%;
}

form > p
{
	flex-basis: 100%;
}

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

/* 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]
{
	-webkit-appearance: none;
	border-radius: 0;
}

input:not([type]),
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea,
select,
.customSelect
{
	width: 100%;
	min-height: 33px; /* appease IE11 */
	margin: 0;
	padding: 1px 7px;
	vertical-align: top;
	color: #666766;
	background-color: #fff;
	border: 1px solid #d6d6d6;
	font: normal 16px/1.8 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: 2px 7px;
	color: #666766;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
}

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

    position: relative;
}

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

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

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

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

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

.customSelectInner
{
	display: inline !important;
	white-space: nowrap;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
.customSelectFocus
{
	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],
a.viewAll
{
	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 Helvetica, Arial, sans-serif;
	cursor: pointer;

	vertical-align: top;
}
a.clearAll
{
	float: right;
}

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

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


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

#emailField
{
	display: none;
}

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


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

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

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


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

#footer
{
	font-size: 13px;
	letter-spacing: .5px;
	text-transform: uppercase;

	color: #adadad;

	display: flex;
	justify-content: center;

	padding: 35px 0 15px 0;
}

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


#footer a:not(:hover):not(:focus)
{
	color: inherit;
}

#footer ul,
#footer ul li
{
	list-style: none;
	display: inline-block;
	margin: 0 0 20px 0;
	padding: 0;
}

#footer ul li
{
	margin-right: 15px;
	line-height: normal;
}

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

#footer ul li:last-child
{
	margin-right: 45px;
}

#footerOffices
{
	color: #6d6e72;
}

#footerOffices ul,
#footerOffices ul li
{
	list-style: none;
	background: 0;
}

#footerOffices .results_list > li
{
	display: inline-block;
	margin-right: 15px;
}

#footerOffices .results_list > li:last-child
{
	margin-right: 0;
}

#footerOffices .results_list .phone
{
	margin-top: 14px;
	color: #333;
}

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

	#footerLeft
	{
		order: 2;
		width: 100%;
	}

	#footerRight
	{
		order: 1;
		margin: 0;

	}

	#footer ul li
	{
		margin: 0 0.8em .8rem 0;
	}

	#footerLeft > ul,
	#footerLeft > ul li
	{
		display: inline-block;
		float: none;
		text-align: left;
	}

	#footerOffices .results_list > li
	{
		margin: 10px 0 0 30px;
		text-align: center;
	}

	#footerOffices .results_list > li:first-child
	{
		margin-left: 0;
	}

	#footerOffices .results_list > li
	{
		text-align: left;
		width: auto;
	}
}

@media (max-width: 479px)
{
	#footer
	{
		border-top: 1px solid #eaeaea;
		padding-top: 2rem;
		margin-top: 0;
	}

	#footerOffices .results_list > li
	{
		float: none;
		width: 100%;
		margin: 0 0 .8rem 0;
	}
}


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

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

.popupPlayerWrapper
{
	display: none;
	position: fixed;
	top: calc(50% - 40vh);
	left: calc(50% - 40vw);
	z-index: 99999999;
	height: 80vh;
	width: 80vw;
	background: #fff;
	border: 12px solid #cecece;
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
}

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

	/* make the player height the size of the iframe */
	height: 0;
  	padding-bottom: 56.25%; /* 16:9 */
}

.mediaPlayer
{
	position: absolute;
	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%;
	background-color: #ffffff;
	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
	{
		left: calc(50% - 45vw);
		top: calc(50% - 20vh);
		width: 90vw;
		height: 40vh;
	}
}

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

.popupPlayerPlaylist
{
	display: none;
	position: absolute;
	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;
	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
{
	font-size: 0.9rem;
}

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

body#careers-interviewing-at-ml .xrefMultimediaList ul li .title
{
	 display: none;
}


@media (min-width: 900px)
{
	.itemSection .itemMultimediaList ul.results_list,
	.itemSection .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: '';
}

.itemSection .itemMultimediaList ul.results_list li,
.itemSection .xrefMultimediaList ul li,
.itemSection .itemMultimediaList ul.results_list::after,
.itemSection .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;
}

.itemSection .itemMultimediaList ul.results_list li .photo img,
.itemSection #item_relatedsame ul li .photo img,
.itemSection .itemMultimediaList ul li .photo img,
.itemSection .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: '';
}

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

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

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

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

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


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

#cookiePopup
{
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	width: calc(100% - 30px);
	overflow: hidden;
	z-index: 9999;
	background: rgba(0,0,0,.85);
	padding: .25em 1em;
}

#cookiePopup p
{
	margin: 1em;
	padding: 0;
	color: #eaeaea;
	float: left;
	max-width: calc(100% - 100px);
}

#cookiePopup a
{
	color: #999;
}

.closeButton
{
	position: absolute;
	top: 10px;
	right: 15px;
	width: 0;
	height: 0;
	font-size: 0;
	padding: 20px 20px 0 0;
	overflow: hidden;

	border: 2px solid #fff;
	background-color: #ddd;
	border-radius: 50%;
	cursor: pointer;

	color: #999;
}

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

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


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

@media (max-width: 767px)
{
	.closeButton
	{
		top: 4px;
	}

	#cookiePopup p
	{
		margin: 0.4em 1em 0.2em .5em;
		max-width: calc(100% - 50px);
	}
}


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

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

#emailPopup
{
	display: none;
	position: fixed;
	z-index: 99999999;
	top: calc(50% - 30vh);
	left: calc(50% - 30vw);
	height: 60vh;
	width: 60vw;
	background: #fff;
	border: 12px solid #cecece;
}

#emailDisclaimerContentWrapper
{
	padding: 20px 20px 0 20px;
}

#emailDisclaimerButtons
{
	text-align: center;
}

#emailDisclaimerButtons a
{
	display: inline-block;
	margin: 10px;
	padding: 4px 6px;
	background: #a70001;
	color: #fff;
	text-align: center;
}

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

@media all and (orientation: portrait)
{
	#emailPopup
	{
		left: 5%;
		width: 90%;
		box-sizing: border-box;
	}

	#emailPopupContent
	{
		height: 100%;
		overflow: scroll;
	}
}

@media (max-width: 767px)
{
	#emailPopup
	{
		top: calc(50% - 40vh);
		height: 80vh;
	}
}


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

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 p.form-section-label
{
	margin: 1em 0 0 0;
	padding: 0;
	font-weight: bolder;
}

#search .search_text
{
	display: block;
	margin: 1em 0 1em 0;
}

#search #search_button
{
	margin-left: 8px;
}

#search main .search_form form div
{
	height: auto;
	width: 100%;
}

#search main .search_form input
{
	margin: 0;
	vertical-align: middle;
}

#search main .search_form br
{
	display: none;
}

#search main .search_form label
{
	display: block;
	position: relative;
	top: 0;
	left: 0;
	margin: -25px 0 0 0;
	padding: 0 0 0 20px;
	vertical-align: middle;
	font: normal 16px/1.4 Helvetica, Arial, sans-serif;
}

#search main .search_form input[type=radio],
#search main .search_form input[type=checkbox]
{
	margin: 0 4px 0 0;
	padding: 0;
}

#search main .search_form input#searchtext
{
	width: 60%;
	max-width: 100%;
	margin-right: 4px;
	box-sizing: border-box;
}

#search div.search_section_wrapper
{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#search div.sections
{
	box-sizing: border-box;
	max-width: 30%;
}

#search div.search_type
{
	box-sizing: border-box;
}

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

#search #subContent div.sections
{
	max-width: 100%;
}

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

#search .search_result_date
{
	color: #888;
}


@media (max-width: 767px)
{
	#search div.search_section_wrapper
	{
		flex-direction: column;
	}

	#search div.sections
	{
		max-width: 100%;
	}

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

	#search main .search_form input#searchtext
	{
		width: 100%;
	}

	#search main .search_form input[type=submit]
	{
		margin-top: 9px;
		width: 100%;
	}
}

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

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

.searchfoundtext
{
	font-weight: bolder;
}

#search p
{
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 2px;
	margin-bottom: 18px;
}

#search p.link
{
	padding-top: 5px;
	padding-bottom: 0;
	margin-bottom: 0;
}

#search #mainContent h3
{
	margin-top: 1em;
	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 #a69e9d;
	margin: 0;
	padding: 6px 0;
}

#search #searchTabLinks a
{
	color: #666;
}
#search #searchTabLinks a span
{
	color: #a70001;
}

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

#search #searchResultsFor span
{
	font-weight: bold;
	color: #a70001;
	text-transform: uppercase;
}

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

/* Bio section search results */
.searchBioWrapper div.results_list > div
{
	display: flex;
	margin-bottom: 18px;
}

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

.searchBioWrapper .photo img
{
	padding: 0 27px 0 0;
	max-width: 100px;
}

.searchBioWrapper .divider
{
	border-top: 1px solid #a69e9d;
	margin: 18px 0;
	max-width: 250px;
}
.searchBioWrapper:not(:last-of-type)
{
	border-bottom: 1px solid #a69e9d;
	margin: 0 0 32px 0;
}


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

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


/* Newsletter Object Support */

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



/* often copy/pasted from elsewhere */


/* 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 #eaeaea;
	text-align: center;
}

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


/* Home Page ------------------------------------------------------> */

@media (min-width: 1400px)
{
	#index #mainNav
	{
		right: 407px;
		top: 135px;
	}

	#index #header
	{
		position: relative;
	}
}

/* fluid css (padding-top 16px to 77px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#index #header
{
	padding-top: calc(17px + (77 - 17) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#index #header
	{
		padding-top: 43px;
	}
}

/* fluid css (height 16px to 57px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#index #logo img
{
	height: calc(16px + (57 - 16) * ((100vw - 320px) / (1040 - 320)));
}

@media screen and (min-width: 1040px)
{
	#index #logo img
	{
		height: 57px;
	}
}

/* fluid css (height 50.5px to 213px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#index #header
{
	height: calc(50.5px + (213 - 50.5) * ((100vw - 320px) / (1440 - 320)));
}

@media screen and (min-width: 1440px)
{
	#index #header
	{
		height: 213px;
	}
}

#index #header::after
{
	content: '';

	position: absolute;
	top: 0;
	right: 0;

	background: #b5121b url(../i/banner-logo.svgz) no-repeat left;
	background-size: contain;

	z-index: 9;
}

/* fluid css (height 80px to 253px) - https://codepen.io/lowbatteries/full/qBEyXEP */
/* fluid css (width 97.4px to 308px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#index #header::after
{
	/* ratio is always 308/253 */
	height: calc(60px + (253 - 60) * ((100vw - 320px) / (1440 - 320)));
	width: calc(73px + (308 - 73) * ((100vw - 320px) / (1440 - 320)));
}

@media screen and (min-width: 1440px)
{
	#index #header::after
	{
		height: 253px;
		width: 308px;
	}
}

@media (max-width: 919px)
{
	#index #header::after
	{
		right: -16px;
	}
}

#index #navToggle:not(.isActive)
{
	right: calc(10px + 73px + (308 - 73) * ((100vw - 320px) / (1440 - 320)));

	/* the height of header above, divided by two, adjusted up by 27px */
	top: calc((60px + (253 - 60) * ((100vw - 320px) / (1440 - 320)))/2 - 22px);
}

@media (max-width: 919px)
{
	#index #navToggle:not(.isActive)
	{
		margin-right: -16px;
	}
}


#index #mainContent
{
	margin: 0;
}

#homeAnimation
{
	height: 23.33vw;
	position: relative;

	color: white;
}

#homeAnimation::before
{
	background: #ccc;
}

#homeAnimation .sp_pencil
{
	position: absolute;
	top: 15px;
	left: 15px;
}

#homeAnimation a
{
	text-decoration: none;

	color: white;

	transition: color 100ms;
	transition-delay: 0;
}

#homeAnimation a:hover,
#homeAnimation a:focus
{
	color: #a70001;

	transition-delay: 300ms;
}

#homeAnimation a *
{
	color: inherit;
}

#homeAnimation > div,
#homeAnimation > div > div
{
	height: 100%;
}

#homeAnimation .image img
{
	width: 100vw;
	position: absolute;
	z-index: -1;

	left: calc(50% - 50vw);
}

#homeAnimation .quote
{
	color: inherit;

	height: 100%;
	padding-bottom: 4.17vw;
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#homeAnimation .abstract
{
	font-weight: bold;
	font-size: 2vw;
}

#homeAnimation .abstract p
{
	margin-bottom: 0;
}

#homeAnimation .attribution
{
	font-size: 1.15vw;
	font-weight: 300;
	font-style: italic;
}

@media (max-width: 1439px)
{
	#homeAnimation
	{
		height: 31.11vw;
		position: relative;
	}

	#homeAnimation .image img
	{
		height: 100%;
		width: auto;
		left: -16.67vw;
	}

	#homeAnimation .abstract
	{
		font-size: 2.66vw;
	}

	#homeAnimation .attribution
	{
		font-size: 1.53vw;
	}
}

@media (max-width: 490px)
{
	#homeAnimation .abstract
	{
		font-size: 13px;
	}
}

@media (max-width: 650px)
{
	#homeAnimation .attribution
	{
		font-size: 10px;
	}
}

#homeAnimation .attribution em
{
	font-style: normal;
}

#homeNewsHighlight
{
	background: black;
	color: white;

	position: relative;

	padding: 15px 0;
}

#homeNewsHighlight a
{
	color: inherit;
}

/* fluid css (font-size 18px to 22px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeNews
{
	font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeNews
	{
		font-size: 22px;
	}
}

#homeNews ul,
#homeNews li
{
	display: block;
	list-style: none;
	background: none;
}

#homeNews a
{
	text-decoration: none;
}

#homeNews li a:not(:focus):not(:hover)
{
	color: inherit;
}

#homeNews li
{
	border-top: 1px solid #ebe7e3;
	margin: 0;

	position: relative;
}

/* fluid css (padding 10px to 26px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeNews li
{
	padding: calc(10px + (26 - 10) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeNews li
	{
		padding: 26px;
	}
}

#homeNews li a
{
	display: block;

	padding-right: 45px;

	background: url(../i/home-arrow.svgz) no-repeat right;
}

#homeNews ul
{
	margin: 0;
	padding: 0;

	border-bottom: 1px solid #999999;
}

/* fluid css (margin 40px to 75px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeNews ul
{
	margin-top: calc(40px + (75 - 40) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeNews ul
	{
		margin-top: 75px;
	}
}

#homeNews .view_more
{
	margin-top: -1px;
	text-align: right;
}

#homeNews .view_more a
{
	display: inline-block;
	background: #b5121b;
	vertical-align: top;

	font-size: 13px;
	text-transform: uppercase;

	padding: 3px 8px 1px 8px;
	margin: 0;
}

#homeBlurbs
{
	padding: 4.16vw 0 4.16vw;
	border-bottom: 1px solid #999999;
}

/* fluid css (padding-top 40px to 110px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBlurbs
{
	padding: calc(40px + (110 - 40) * ((100vw - 320px) / (1400 - 320))) 0;
}

@media screen and (min-width: 1400px)
{
	#homeBlurbs
	{
		padding: 110px 0;
	}
}

#homeBlurbs > div
{
	flex-basis: 50%;
	box-sizing: border-box;
}

#homeBlurbs > div:first-child
{
	font-weight: bold;
	padding-bottom: 35px;
}

@media (min-width: 800px)
{
	#homeBlurbs
	{
		display: flex;
		justify-content: space-between;
	}

	#homeBlurbs > div:first-child
	{
		padding: 0 85px 0 0;
	}

	#homeNews .view_more a
	{
		float: right; /* helps make the spacing around #homeBlurbs even */
		margin: 0;
	}
}

/* fluid css (font-size 20px to 26px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBlurbs > div:first-child
{
	font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeBlurbs > div:first-child
	{
		font-size: 26px;
	}
}

#homeBlurbs div :last-child
{
	margin-bottom: 0;
}

/* fluid css (margin 45px to 80px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBoxes
{
	margin: 0 0 40px 0;
	margin-top: calc(45px + (80 - 45) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeBoxes
	{
		margin-top: 80px;
	}
}

#homeBoxes > div > div
{
	box-sizing: border-box;

	background: #b5121b;
}

/* fluid css (padding-top 18px/20px to 70px/63px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBoxes > div > div
{
	padding: calc(18px + (70 - 18) * ((100vw - 320px) / (1400 - 320)))
		calc(20px + (63 - 20) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeBoxes > div > div
	{
		padding: 70px 63px;
	}
}

@media (min-width: 800px)
{
	#homeBoxes
	{
		display: flex;
	}

	#homeBoxes > div
	{
		flex-basis: 50%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	#homeBoxes > div > div
	{
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

#homeBoxes .title
{
	text-transform: uppercase;
	font-weight: bold;
}

/* fluid css (font-size 18px to 24px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBoxes .title
{
	font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeBoxes .title
	{
		font-size: 24px;
	}
}

#homeBoxes .quote
{
	line-height: 1.46;

	font-weight: 300;

	margin: 1rem 0;
}

/* fluid css (font-size 18px to 26px) - https://codepen.io/lowbatteries/full/qBEyXEP */
#homeBoxes .quote
{
	font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1400 - 320)));
}

@media screen and (min-width: 1400px)
{
	#homeBoxes .quote
	{
		font-size: 26px;
	}
}

#homeBoxes .attribution
{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
}

#homeBoxes > :first-child > div
{
	height: calc(100% - 53px);
	color: white
}

#homeBoxes > :last-child > :first-child
{
	background: #8a8178;
	color: white
}

#homeBoxes > :last-child > :last-child
{
	background: #f2f2f2;
}

#homeBoxes > :last-child > :last-child .title
{
	color: #b5121b;
}

#homeBoxes p:last-child
{
	margin-bottom: 0;
}

/* Edit icons -----------------------------------------------> */

/* hopefully this makes it so edit icons don't keep getting messsed up  */

.sp_pencil,
.sp_pencil img
{
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	line-height: normal !important;

	background: none !important;
	border: none !important;

	align-self: flex-start !important;
	flex-grow: initial !important;
	flex-shrink: initial !important;
	flex-basis: initial !important;
}

.sp_pencil img
{
	display: inline-block !important;
}

.sp_pencil::before,
.sp_pencil::after
{
	content: none !important;
}

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

/* BEGIN PRINT CSS -----------------------------------------------> */

/* @media all and (max-width:8.5in) /* use while programming */

@media print
{
	*
	{
		background: none !important;
		color: black !important;
		text-shadow: none !important;
		transition: none !important;
		-moz-transition: none !important;
		-webkit-transition: none !important;
	}

	html
	{
		min-width: 0;
		width: 100% !important;
		max-width:none;
		padding: 0;
		margin: 0;
	}

	#mainNav,
	#footer,
	#subNavWrap,
	#nav,
	#sectionName,
	#pdfLink,
	#bottomContent,
	#jumpLinks,
	.view_more,
	.viewMore,
	.moreLink,
	.sp_map,
	#printMap,
	form,
	.sp_pencil,
	#cookiePopup,
	.rsvpButton,
	#jumpPage,
	#resultPageLinks,
	#homeAnimation,
	button#navToggle,
	#navToggle,
	#letterLinks,
	.cycle-pager,
	form,
	video,
	iframe,
	#bannerTools,
	#index #homeNews > div > h3 > span,
	#homeSearch,
	.view_more,
	#content::after,
	#homeNewsHighlight::before,
	.contentJump,
	#index #header::after
	{
		display: none !important;
		visibility: none !important;
	}

	body,
	#content
	{
		position: relative !important;
		width: 100% !important;
		background: none !important;
		background-color: none !important;

		/* cancel out flexbox and float */
		display: block;
		float: none;
		color: black !important;
	}

	body
	{
		padding: 0;
	}

	p,
	li
	{
		orphans: 3;
		widows: 2;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6
	{
		-webkit-column-break-after: avoid;
		   page-break-after: avoid;
				break-after: avoid-page;
	}

	#header
	{
		position: relative !important;
		width: 100% !important;
		clear: both !important;
		border-top: 104px solid #fff;
		padding-bottom: 0px;
		margin-bottom: 0px;
		padding-left: 0;
		left: 0;
		clear: both;
		padding-top: 20px !Important;
		height: auto !important;
	}

	#logo
	{
		position: absolute;
		top: -64px;
		left: 10px;
		z-index: 100;
		width: 349px !important;
	}

	#area_content
	{
		display: block !important;
		position: relative;
		width: 100% !important;
	}

	.listColumn > ul > li
	{
		padding-left: 2px;
	}

	/*main content two columns*/

	#mainContent
	{
		width: 100%;
	}

	#mainContent:not(:last-child)
	{
		width: 70%;
		float: right;
	}

	#subContent
	{
		display: block;
		padding: 0;
		padding-top: 20px;
		margin-top: 20px;
		width: 27%;
		float: left;
		margin-right: auto;
	}

	#subNav
	{
		display: none;
	}

	/*home page*/

	#homeNewsHighlight,
	#homeNews,
	#homeBlurbs,
	#homeBoxes
	{
		display: block;
		width: 100%;
		clear: both !important;
	}

	#homeBlurbs
	{
		display: block;
		width: 100%;
		height: 100%;
		clear: both;
		border-bottom: none;
	}

	#homeBlurbs div
	{
		width: 48%;
		float: left;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#homeBlurbs > div:first-child
	{
		margin-right: 10px;
	}

	#homeBlurbs div:nth-child(2)
	{
		clear: right;
	}

	/*banner*/

	body, #content
	{
		clear: both;
	}

	#banner
	{
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 30px !important;
		height: 240px !important;
		clear: both !important;
	}

	#bannerImage
	{
		width: 280px;
		float: left;
		height: auto;
	}

	#bannerTitle
	{
		padding-top: 70px;
		float: none;
	}

	/*careers*/

	#topSubNav,
	#backLink
	{
		display: none;
	}

	#bioAccessories
	{
		display: none;
	}

}

/* END PRINT CSS -------------------------------------------------> */
