/* 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 10px/1.6 'nunito', Arial, sans-serif;
	color: #4d4e56;
}

body
{
	position: relative;
	min-width: 320px;
	/*max-width: 1200px;*/
	margin: 0 auto;
	padding: 0 10px 0 10px;
	background: #ecebeb;
	box-sizing: border-box;
	font-size: 2.2rem;
	overflow-x: hidden; /* TESTING - might backfire */
}

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

/* try to ensure we never trigger Google's Mobile-Friendly-Test's "content too wide" error */
/* ssimmons - disabling for now until we see if Google's new mobile tester is affected  */
/*
@media (max-width: 767px)
{
	header, main, footer, body > div, body > div > div
	{
		overflow-x: hidden;
	}
}
*/

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

td p
{
	margin: 0.25em 0em 0.55em 0em;
}

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

/*td p:last-child*/
td p:last-of-type:not(:only-of-type)
{
	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
}

/* added via the tinymce.js 'formats' for upper call out text */
p.blockquote
{
	padding: 15px 0 20px 0;
	margin: 0;
	color: #010101;
	font-size: 2.8rem;
}

sup, sub
{
	line-height: 0;
}

a
{
	color: #d67d32;
	text-decoration: none;
}

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

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

/* not on this one
main p a,
main ul:not([class]):not([id]) li a,
main ol:not([class]):not([id]) li a
{
	background: linear-gradient(to top, transparent 50%, rgba(102,102,102, .3) 50%) bottom repeat-x;
	background-size: 100% 2px;
	text-shadow: -1px 0 0 white, 0 1px 0 white, 1px 0 0 white, 0 -1px 0 white, -1px -1px 0 white, 1px 1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
}
*/

/* 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: 0;
	padding: 0;
	color: #010101;
	font-weight: bolder; /* relative, works better if you have a light base font */
	line-height: normal;
}

h1
{
	padding: 5px 0 15px 0;
	font-size: 4.5rem;
	font-weight: 600;
}

h2
{
	padding: 12px 0 8px 0;
	color: #d67d32;
	font-size: 2.6rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* for profile pages ONLY */
.itemPage h2
{
	padding: 12px 0 8px 0;
	color: #010101;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: none;
}

.itemPage #subContent h2
{
	padding: 12px 0 4px 0;
	font-size: 2.10rem;
	text-transform: uppercase;
}

body#about-honors #mainContent h2
{
	clear: left;
}

h3
{
	padding: 12px 0 4px 0;
	font-size: 2.6rem;
	font-weight: 600;
}

h4
{
	padding: 12px 0 4px 0;
	color: #d67d32;
	font-size: 1.9rem;
	font-weight: 800;
	text-transform: uppercase;
}

h5
{
	padding: 12px 0 4px 0;
	color: #4d4e56;
	font-weight: 700;
	font-size: 2.1rem;
}

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

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.svgz'); /* data-uri */
}

ul li li
{
	list-style: none url('../i/bullet-nested-circle.svgz'); /* data-uri */
}

ul li li li
{
	list-style: none url('../i/bullet-nested-square.svgz'); /* data-uri */
}

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

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

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

img
{
	border: 0;
}

#mainContent p > a:not(sp_pencil) > img,
#mainContent p > img
{
	max-width: 100%;
	height: auto;
}

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

@media only screen and (max-width: 425px)
{
	/* make wys images take up full width on smaller screens */
	p > a:not(sp_pencil) > img
	{
		float: none !important;
		width: 100% !important;
		height: auto !important;
		margin: 10px 0 18px 0 !important;
	}
}

@media only screen and (max-width: 767px)
{
	h1
	{
		font-size: 3.2rem;
	}

	/* make wys tables take up full width on smaller screens */
	#mainContent table[style*=width]
	{
		width: 100% !important;
		height: auto !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
*/

#header::before,
#footer::before,
body.professionals-item #upperContent::before,
ul#eventJumpLinks::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;
}

#footer::before
{
	background: #4d4e56;
}

#header::before
{
	background-image: linear-gradient(rgba(0,0,0,0.70), transparent);
}

body#services #header::before
{
	background-image: linear-gradient(rgba(0,0,0,0.70), transparent);
}

/* need to make this shorter */
body.professionals-item #upperContent::before
{
	height: 50%;
	background-image: linear-gradient(rgba(0,0,0,0.70), transparent);
}


/* masks done in these locations custom */
body#index #header::before,
body.professionals-item #header::before
{
	display: none;
}


/* 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 + td
{
	padding-left: 1rem;
}

@media only screen and (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 1em 0em;
}

.expandableHeading,
.itemPage .expandableHeading
{
	position: relative;
	cursor: pointer;
	border-top: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
	margin-top: -1px;
	padding: 12px 0 8px 15px;
    color: #d67d32;
    font-size: 2.6rem;
    font-weight: 700;
	text-transform: uppercase;
}

.expandableHeading:not(.expanded):hover,
.itemPage .expandableHeading:not(.expanded):hover
{
	background: #ffffff;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

.expandableHeading:not(.expanded):focus-within,
.itemPage .expandableHeading:not(.expanded):focus-within
{
	background: #ffffff;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

.expandableHeading:not(.expanded):hover + * + .expandableHeading
.itemPage .expandableHeading:not(.expanded):hover + * + .expandableHeading
{
	border-top: 1px solid #ffffff;
}

.expandableHeading.expanded,
.itemPage .expandableHeading.expanded
{
	border-bottom: 1px solid transparent;
}

.expandableHeading.expanded:last-of-type + *,
.itemPage .expandableHeading.expanded:last-of-type + *
{
	border-bottom: 1px solid #cdcdcd;
}

/* buttons to look like links */
.expandableHeading button,
.itemPage .expandableHeading button
{
	position: relative;
	width: 100%;
	margin: 0 !important;
    padding: 0 50px 0 0 !important;
	background: none !important;

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

	/*white-space: nowrap; no good on phones */
	cursor: pointer;
	text-transform: inherit;
	text-align: inherit;
}

.expandableHeading button::after,
.itemPage .expandableHeading button::after
{
	content: '';
	display: inline-block;
	position: absolute;
	right: 5px;
	vertical-align: middle;

	width: 34px;
	height: 34px;
	background: url('../i/expandable.png') center center no-repeat; /* data-uri */
}

.expandableHeading.expanded button::after,
.itemPage .expandableHeading.expanded button::after
{
	background: url('../i/expandable-expanded.png') center center no-repeat; /* data-uri */
}

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


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

#header
{
	position: absolute;
	z-index: 50;
	top: 0;
	left: 10px;
	right: 10px;
	height: 230px;
	width: calc(100% - 20px);
    max-width: 1680px;
    margin: 0px auto;
	padding: 0px 0 0 0;
	box-sizing: border-box;
}

#logo
{
	float: left;
	margin: 30px 0 0 0;
}

#logo img
{
	display: block;
	width: 405px;
	height: 155px;
}

#topLinks
{
	position: absolute;
	top: 44px;
	right: 130px;
}

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

#topLinks li
{
	float: left;
	margin: 0 0px 0 50px;
	font-size: 2.0rem;
	font-weight: 600;
	text-transform: uppercase;
}

#topLinks li:first-child
{
	margin: 0 0px 0 0px;
}

#topLinks a
{
	display: block;
	padding: 3px 0px 3px 0px;
	color: #ffffff;
}

#topLinks li.current a
{
	border-bottom: 2px solid #d47a37;
}

#topLinks a:hover,
#topLinks a:focus
{
	color: #d67d32;
	text-decoration: none;
}

@media (max-width: 1250px)
{

	#topLinks li
	{
		margin: 0 0 0 30px;
		font-size: 1.8rem;
	}

	#topLinks li:first-child
	{
		margin: 0 0px 0 0px;
	}
}

@media (max-width: 1100px)
{

	#topLinks li
	{
		margin: 0 0 0 20px;
		font-size: 1.6rem;
	}

	#topLinks li:first-child
	{
		margin: 0 0px 0 0px;
	}
}

@media (max-width: 919px)
{
	#topLinks
	{
		display: none;
	}
}

@media only screen and (max-width: 767px)
{
	#header
	{
		/*
		position: absolute;
		z-index: 50;
		top: 0;
		left: 10px;
		right: 10px;
		height: 230px;
		width: calc(100% - 20px);
		max-width: 1680px;
		margin: 0px auto;
		padding: 0px 0 0 0;
		box-sizing: border-box;
		*/
	}

	#logo img
	{
		width: 300px;
		height: 115px;
	}
}

#searchJump
{
	position: absolute;
	top: 46px;
	right: 0px;
	width: 26px;
	height: 26px;
}

#searchJump > img
{
	width: 26px;
	height: 26px;
}


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

@media (max-width: 1119px)
{
	#searchJump
	{
		top: 40px;
		right: 3px;
	}
}

#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.5s, height 0 1s, visibility 0 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.5s, height 0;
	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
{
	float: left;
	width: calc(100% - 80px);
	border: 0px;
	color: #ccc;
	font-size: 2.2rem;
}

#searchClose
{
	display: none;
}

#searchClose
{
	border: none;
	font: inherit;
	color: inherit;
	background: none !important;

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

	display: block;
	position: absolute;
	top: 15px;
	right: 10px;
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 32px 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%;
	outline: 2.5px solid white;

	transform: rotate(-30deg);
}

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

#siteSearch label
{
	display: none !important;
}

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

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

	top: 0;
	background: #3874a8;
	color: white;
}

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

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

	bottom: 0;
	background: #3874a8;
}

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






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

#banner
{
	position: relative;
	height: 440px;
	left: -10px;
    width: calc(100% + 20px);
	overflow: hidden;
	text-align: center;
}

img#bannerImage
{
	display: inline-block;
	position: relative;
	z-index: 1;
	left: -50%;
	margin: 0 -100% 0 0;
	min-height: 100%;
}

#bannerContent
{
	position: absolute;
	z-index: 2;
	bottom: 80px;
	left: 10px;
	right: 10px;
	width: calc(100% - 20px);
	margin: 0px auto;
	color: #fff;
	font-size: 1.6rem;
	transition: bottom 150ms;
}

#bannerContent *
{
	color: inherit;
}

h1#pageTitle,
#sectionTitle
{
	position: relative;
	left: 0px;
	right: 0px;
	margin: 0px auto;
	padding: 0 0 0 0;
	color: #ffffff;
	font-size: 9.0rem;
	font-weight: 400;
	text-align: center;
	text-shadow: 3px 3px 12px rgba(0,0,0,0.80);
}

body.professionals-item #upperContent
{
	position: relative;
	z-index: 5;
	width: calc(100% + 20px);
	height: 640px;
	margin: 0px 0 0 -10px;
	background: url('../i/bio-banner.jpg') center center no-repeat; /* data-uri */
	background-size: cover;
}

@media (max-width: 1100px)
{
	#banner
	{
		max-height: 350px;
	}

	#bannerContent
	{
		bottom: 60px;
	}

	#sectionTitle
	{
		font-size: 6.0rem;
	}
}

@media only screen and (max-width: 919px)
{
	#bannerContent
	{
		bottom: 20px;
	}

	body.professionals-item #upperContent
	{
		height: 740px;
	}
}

@media only screen and (max-width: 767px)
{
	#banner
	{
		max-height: 230px;
		overflow: visible;
		margin: 0 0 50px 0;
	}
	
	img#bannerImage
	{
		max-height: 230px;
	}

	#bannerContent
	{
		position: relative;
		bottom: 0px;
		left: 0;
		color: inherit;
	}

	#sectionTitle
	{
		color: inherit;
		font-size: 3.8rem;
		text-shadow: none;
	}
}

@media only screen and (max-width: 480px)
{
	body.professionals-item #upperContent
	{
		height: 480px;
	}
}


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

#mainNav
{
	position: relative;
	background: #4d4e56;
	line-height: normal;
}

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

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

/* all menu links */
#mainNav a
{
	color: #575252;
}

#mainNav li > a
{
	display: inline-block;
	position: relative;
	padding: 14px 10px 14px 0px;
	font-size: 4rem;
	line-height: 22px;
}

/* top level links */
#mainNav > ul > li
{
	padding: 0 62px 0 0;
}

#mainNav > ul > li > a
{
	color: #ffffff;
}

#mainNav li:hover > a
{
	color: #d67d32;
	text-decoration: none;
}

#mainNav li:focus-within > a
{
	color: #d67d32;
	text-decoration: none;
}

#mainNav > ul > li:nth-last-child(-n+4) > a
{
	font-size: 3.0rem;
}

#mainNav > ul > li:nth-last-child(4)
{
	margin-top: 60px;
}

#mainNav > ul > li:nth-last-child(4):before
{
	content: '';
    position: absolute;
    top: -30px;
    left: 0px;
    right: 0px;
    height: 2px;
    margin: 0px 72px;
    padding: 20px 0 20px 0;
    border-top: 1px solid #d67d32;
    box-sizing: border-box;
}

/* main nav tab current page highlight */
/*#mainNav .current > a:not(:hover):not(:focus)*/
#mainNav > ul > li > ul > li
{
	padding: 0 62px 0 0;
}

#mainNav .current > a
{
	color: #d67d32;
}

#mainNav .touchOpen > a
{
	color: #d67d32;
}

#mainNav > ul > li > ul li > a,
#mainNav > ul > li > ul li > a
{
	color: #d67d32;
	font-size: 2.4rem;
	line-height: 26px;
}

#mainNav > ul > li > ul li:hover > a
{
	color: #ffffff;
}

#mainNav > ul > li > ul li:focus-within > a
{
	color: #ffffff;
}

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

/* main nav items */
#mainNav > ul ul
{
	display: none;
	position: fixed;
	z-index: 98;
	background: rgba(77,78,86,0.92);
	padding: 10px 72px 18px 72px;
	box-sizing: border-box;
}

#mainNav .subNavHeader
{
	display: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: .8em;
}

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

/* by default, hidden */
.contentJump
{
	display: none;

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

	padding: 5px 15px;
	background: inherit;
}

/* on desktop, these function as jump links, make them visible to keyboard users */
html[data-whatintent="keyboard"] .contentJump
{
	display: block;
}

/* make them transparent unless keyboard focused */
.contentJump:not(:focus)
{
	color: transparent;
	background: transparent;
	z-index: -1;
}

#mainNav #navButton-professionals ul,
#mainNav #navButton-services ul
{
	/*
	width: 100vw;
	max-width: 600px;
	*/
	box-sizing: border-box;

	color: white;
}

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

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

#mainNav .letterLinks
{
	margin-left: 0px;
	color: #ccc;
	font-weight: 300;
	font-size: 2.4rem;
}

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

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

#mainNav .letterLinks a
{
	color: #d67d32;
}

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

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

#navButton-services > ul ul
{
	display: none !important;
}

#mainNav,
#mainNav li ul
{
	position: fixed;
	display: block;
	z-index: 99;
	top: 0;
	right: -1000px !important;
	left: auto !important;
	width: 60vw;
	max-width: 430px;
	height: 100vh;
	padding: 120px 0px 10px 0px;
	box-sizing: border-box;
	box-shadow: 0 0 200px 15px rgba(0,0,0,.8);
	transition: right 0.5s;
}

#mainNav li ul
{
	transition: none;
}

#mainNav::before
{
	display: none;
}

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

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

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

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

#mainNav > ul > li.flyOutHover:hover > ul,
#mainNav > ul > li.flyOutHover.keepOpen > ul
{
	right: 430px !important;
	visibility: visible !important;
}

@media (max-width: 919px)
{
	#mainNav > ul > li.flyOutHover:hover > ul
	{
		right: 0px !important;
		visibility: hidden !important;
	}
}

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

#mainNav li.flyOutHover:hover > a:first-child:not(:last-child)::after
{
	content: '«';
	font-size: 3rem;
	position: absolute;
	left: -18px;
}

#mainNav > ul li ul
{
	padding: 120px 72px 10px 72px;
}

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

.contentJump.navJump
{
	display: block;
	position: absolute;
	z-index: 99;
	top: 48px;
	right: 42px;
  	padding-left: 0em;
  	cursor: pointer;
}

#pageJump.contentJump.navJump
{
	width: 12px;
	height: 12px;
	width: 0;
	height: 0;
	overflow: hidden;
}

#pageJump.contentJump.navJump:focus
{
	background: none;
}

#navJump.contentJump.navJump
{
	width: 16px;
	height: 12px;
}

#navJump.contentJump.navJump span
{
	position: absolute;
	top: -8px;
	right: 0px;
	color: #ffffff;
	font-size: 1.1rem;
	text-transform: uppercase;
}

#navJump.contentJump.navJump:after
{
	display: none !important;
}

#navJump.contentJump.navJump:before
{
	content: "";
	position: absolute;
	right: 0;
	top: 8px;
	width: 32px;
	height: 3px;
	background: white;
	box-shadow: 0 0.34em 0 0 white,
		0 0.67em 0 0 white;
	color: white !important;
}

#mainNav ~ #pageJump
{
	visibility: hidden;
  	opacity: 0;
  	padding: 22px 22px 0 0;
  	transition: visibility 0s, opacity 0.5s linear;
  	transition-delay: 500ms;
}

.navJump::after,
.navJump::before
{
	content: '';
	display: block;
	position: absolute;
	top: 20%;
	width: 100%;
	height: 12%;
}

.navJump::after
{
	top: 60%;
}

#mainNav ~ #pageJump
{
	position: relative;
	right: -5000px;
}

#mainNav.target ~ #pageJump,
#mainNav:target ~ #pageJump
{
	position: fixed;
	right: 72px;
	pointer-events: auto;
	visibility: visible;
  	opacity: 1;
}

#pageJump::after,
#pageJump::before
{
	top: 40%;
	background: #919195;
	transform: rotate(130deg);
}

#pageJump::before
{
	transform: rotate(50deg);
}

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

/* deal with the social media icons in the menu */
#mainNav #footerSocial
{
	padding: 60px 62px 0 0;
}

#mainNav #footerSocial ul li
{
	display: inline-block;
}

#mainNav #footerSocial ul li:first-child,
#mainNav #footerSocial ul li:last-child
{
	display: none;
}

#mainNav #footerSocial ul li
{
	display: inline-block;
	margin: 0 0 0 20px;
}

@media (max-width: 767px)
{
	#mainNav
	{
		padding-top: 90px;
	}

	#mainNav li > a
	{
		padding: 6px 10px 6px 0px;
		font-size: 2.2rem;
	}

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

	#mainNav > ul > li:nth-last-child(-n+4) > a
	{
		font-size: 1.8rem;
	}

	#mainNav > ul > li:nth-last-child(4)
	{
		margin-top: 60px;
	}

	#mainNav > ul > li:nth-last-child(4):before
	{
		margin: 0px 10px;
	}

	#mainNav #footerSocial
	{
		padding: 30px 10px 0 0;
	}

	#mainNav #footerSocial ul li
	{
		margin: 0 0 0 8px;
	}

	#mainNav.target ~ #pageJump,
	#mainNav:target ~ #pageJump
	{
		right: 20px;
	}
}


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

#subNav
{
	position: relative;
    z-index: 50;
    width: 100%;
	max-width: 1200px;
	margin: -60px auto 30px auto !important;
	text-align: center;
}

ul.subNavList,
ul.subNavList li
{
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.subNavList
{
	margin: 0 -10px 0 -10px;
}

ul.subNavList li ul
{
	display: none;
}

ul.subNavList li a
{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 6px 0 6px;
	padding: 0px 8px;
	background: #b0b1bd;
	border-radius: 50%;
	box-sizing: border-box;
	color: #ffffff;
	font-family: 'Roboto-Condensed';
	font-size: 2.0rem;
	font-weight: 400;
	vertical-align: middle;
	text-align: center;
	line-height: 1.2;
}

ul.subNavList li.here > a,
ul.subNavList li.hereParent > a
{
	background: #d67d32 url('../i/ZD.svgz') center center no-repeat; /* data-uri */
	background-size: 65%;
	text-decoration: none;
	cursor: default;
}

ul.subNavList li:not(.here):not(.hereParent) > a:hover,
ul.subNavList li:not(.here):not(.hereParent) > a:focus
{
	background: #333333;
	text-decoration: none;
}

@media (max-width: 1100px)
{
	#subNav
	{
		margin: -50px auto 30px auto !important;
	}

	ul.subNavList li a
	{
		width: 98px;
		height: 98px;
		margin: 0 4px 0 4px;
		font-size: 1.6rem;
	}
}

#content #subNav
{
	margin-top: 40px !important;
}


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

#tabLinks
{
	position: relative;
    z-index: 50;
    width: 100%;
	max-width: 1200px;
	margin: -60px auto 30px auto !important;
	text-align: center;
}

#tabLinks a
{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 6px 0 6px;
	padding: 0px 8px;
	background: #b0b1bd;
	border-radius: 50%;
	box-sizing: border-box;
	color: #ffffff;
	font-family: 'Roboto-Condensed';
	font-size: 2.0rem;
	font-weight: 400;
	vertical-align: middle;
	text-align: center;
	line-height: 1.2;
}

#tabLinks a:not(.current):hover,
#tabLinks a:not(.current):focus
{
	background: #333333;
	text-decoration: none;
}

#tabLinks .current
{
	background: #d67d32 url('../i/ZD.svgz') center center no-repeat; /* data-uri */
	background-size: 65%;
	text-decoration: none;
	cursor: default;
}

.contentSection
{
	display: none;
}

.sectionTitle
{
	display: none;
}

@media (max-width: 1100px)
{
	#tabLinks a
	{
		width: 98px;
		height: 98px;
		margin: 0 4px 0 4px;
		font-size: 1.6rem;
	}
}

@media (max-width: 919px)
{
	#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: 2.0rem;
		box-sizing: border-box;
		text-decoration: none;
		cursor: pointer;
	}

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

	h2.sectionTitle::after
	{
		content: '+';
		position: absolute;
		/*top: -1px;*/
		right: 10px;
		font-weight: lighter;
		font-size: 2.0rem;
	}

	h2.sectionTitle.isOpen::after
	{
		content: '–';
	}

	.contentSection
	{
		display: block !important;
	}

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

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


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

#content
{
	position: relative;
	z-index: 40;
	min-height: 350px;
	width: 100%;
    max-width: 1200px;
    margin: 0px auto;
}

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

body#professionals #content,
body#services #content,
body.industryFocusPage #content,
body#newsroom #content
{
	 max-width: 1680px;
}

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

#subContent
{
	position: relative;
	width: 100%;
	margin: 46px 0 0 0;
	padding: 10px 0px 50px 0px;
	box-sizing: border-box;
}

@media (min-width: 920px)
{
	#mainContent:not(:only-child)
	{
		float: left;
		width: calc(100% - 23% - 40px);
	}

	#subContent
	{
		float: right;
		clear: right;
		width: 23%;
	}
}

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

	main
	{
		order: 1;
	}

	#subContent
	{
		order: 2;
	}
}

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

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

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

#pdfLink
{
	font-size: 1.8rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: right;
}


/* Bio Directory */

#content .letterLinks
{
	position: absolute;
	top: -72px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	color: #999;
	font-weight: 800;
	font-size: 1.8rem;
	text-align: center;
}

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

#content .letterLinks a,
#content .letterLinks span
{
	display: block;
	float: left;
	width: 44px;
	height: 44px;
	margin: 0 0 0 1px;
	background: #d67d32;
	border-radius: 50%;
	box-sizing: border-box;
	color: #cccccc;
	text-align: center;
	line-height: 2.5;
}

#content .letterLinks a
{
	color: #ffffff;
}

@media only screen and (max-width: 767px)
{
	#content .letterLinks
	{
		position: relative;
		top: inherit;
	}
}

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

.bioList > ul,
.bioList > ul > li
{
	position: relative;
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.bioList > ul
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.bioList > ul > li
{
	width: calc(25% - 9px);
	margin: 0 0 11px 11px;
	color: #333333;
	background: #ffffff;
}

.bioList > ul > li:nth-child(4n+1)
{
	margin: 0 0 11px 0px;
}

.bioList > ul > li .photo
{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 327px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #ffffff url('../i/bio-directory-bg.jpg') center center no-repeat; /* data-uri */
}

.bioList > ul > li .photo a:not(.sp_class)
{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	min-height: 327px;
}

.bioList > ul > li .photo a:not(.sp_class) img
{
	display: block;
	position: absolute;
    margin: auto;
    top: -100px;
    top: -20px;
    bottom: -100px;
    left: -100px;
    right: -100px;
    /*width: 100%;*/
	opacity: 1;
	transition: all 0.6s ease-out;
}

.bioList > ul > li:hover .photo a:not(.sp_class) img,
.bioList > ul > li .photo a:focus:not(.sp_class) img
{
	transform: scale(1.04);
	opacity: 0.8;
}

.bioList > ul > li:focus-within .photo a:not(.sp_class) img
{
	transform: scale(1.04);
	opacity: 0.8;
}

.bioList > ul > li .nametitle,
.bioList > ul > li .office,
.bioList > ul > li .phone,
.bioList > ul > li .contact
{
	padding: 0 30px 0 30px;
}

.bioList > ul > li .nametitle
{
	padding-top: 20px;
}

.bioList > ul > li .contact
{
	padding-bottom: 20px;
}

.bioList > ul > li .title,
.bioList > ul > li .title a
{
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.1;
}

.bioList > ul > li .position
{
	margin: 3px 0 3px 0;
	font-weight: 500;
	line-height: 1.1;
}

.bioList > ul > li .office
{
	margin: 18px 0 0 0;
	line-height: 1.2;
}

.bioList > ul > li .office a
{
	color: #333333;
}

.bioList > ul > li .contact > div
{
	display: inline-block;
}

.bioList > ul > li .contact > div:before
{
	content: '|';
	padding: 0 5px 0 5px;
}

.bioList > ul > li .contact > div:first-child:before
{
	content: '';
	padding: 0;
}

.bioList > ul > li .contact > div a
{
	color: #333333;
}

.bioList > ul.itemSearchCriteria
{
	display: block;
	padding: 0 0 30px 0;
}

.bioList > ul.itemSearchCriteria li
{
	display: block;
	width: 100%;
	background: none;
}

@media (max-width: 1200px)
{
	.bioList > ul > li,
	.bioList > ul > li:nth-child(4n+1)
	{
		width: calc(33.33% - 8px);
		margin: 0 0 11px 11px;
	}

	.bioList > ul > li:nth-child(3n+1)
	{
		margin: 0 0 11px 0px;
	}
}

@media only screen and (max-width: 919px)
{
	.bioList > ul > li,
	.bioList > ul > li:nth-child(4n+1),
	.bioList > ul > li:nth-child(3n+1)
	{
		width: calc(50% - 6px);
		margin: 0 0 11px 11px;
	}

	.bioList > ul > li:nth-child(odd)
	{
		margin: 0 0 11px 0px;
	}
}

@media only screen and (max-width: 479px)
{
	.bioList > ul > li,
	.bioList > ul > li:nth-child(4n+1),
	.bioList > ul > li:nth-child(3n+1),
	.bioList > ul > li:nth-child(odd)
	{
		width: 100%;
		margin: 0 0 11px 0px;
	}
}


/* Bio Profile */

#bioPhoto
{
	position: absolute;
	bottom: 0px;
	right: -120px;
	width: auto;
	height: 100%;
	max-height: 550px;
}

#bioInfo
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
    max-width: 1200px;
    margin: 0px auto;
    font-size: 2.0rem;
    line-height: 1.6;
}

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

#bioInfoInner
{
	position: absolute;
	bottom: 80px;
	left: 0px;
	right: 0px;
	width: 50%;
	padding: 0 10px 0 10px;
	box-sizing: border-box;
	color: #000000;
}

#bioInfoInner a
{
	color: inherit;
}

h1#pageBioTitle
{
	margin: 0;
	padding: 0;
	font-size: 4.5rem;
	font-weight: 600;
	line-height: 1;
}

#bioTitle
{
	padding: 8px 0 28px 0;
	color: #666666;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

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

ul#bioContact,
ul#bioAccessories
{
	float: left;
	width: 50%;
	padding: 0 20px 0 0;
	box-sizing: border-box;
}

ul#bioAccessories li > span.type
{
	color: #d67d32;
}

#bioSocial
{
	clear: left;
}

#bioSocial a
{
	display: inline-block;
	margin: 0 20px 0 0;
	color: #d67d32;
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
	vertical-align: middle;
}

#bioSocial a:hover,
#bioSocial a:focus
{
	opacity: 0.8;
	text-decoration: none;
}

#bioSocial a#bioLinkedinIcon
{
	margin: 0 0 0 0;
}

#bioSocial img
{
	display: block;
	width: auto;
	height: 18px;
}

#bioSocial a:first-child img
{
	width: 35px;
	height: 21px;
}

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

@media (max-width: 1200px)
{
	#bioInfo
	{
		font-size: 1.7rem;
		line-height: 1.4;
	}

	h1#pageBioTitle
	{
		font-size: 3.5rem;
	}

	#bioTitle
	{
		padding: 6px 0 8px 0;
		font-size: 2.0rem;
	}
}

@media only screen and (max-width: 919px)
{
	#bioInfoInner
	{
		left: 0px;
		bottom: 0px;
		width: 40%;
		padding: 10px 10px 20px 20px;
	}

	ul#bioContact,
	ul#bioAccessories
	{
		float: none;
		width: 100%;
		margin: 8px 0 18px 0;
	}
}

@media only screen and (max-width: 767px)
{

	#bioPhoto
	{
		left: 0;
		right: 0;
		margin: 0px auto;
	}

	#bioInfo
	{
		font-size: 1.3rem;
	}

	#bioInfoInner
	{
		width: 100%;
		padding: 10px 10px 10px 10px;
		background: rgba(255,255,255,.65);
	}

	#bioInfoInnerLower
	{
		line-height: 1.3;
	}

	#bioTitle
	{
		padding: 6px 0 8px 0;
	}

	ul#bioContact,
	ul#bioAccessories
	{
		float: left;
		width: 50%;
		margin: 0 0 25px 0;
	}

	#bioSocial
	{
		clear: both;
		margin: 15px 0px 15px 0px;
		text-align: center;
	}

	#bioSocial a
	{
		margin: 0px 15px 0px 15px;
	}
}



@media only screen and (max-width: 480px)
{
	#bioInfoInnerLower
	{
		line-height: 1.2;
	}

	#bioPhoto
	{
		width: 100%;
		height: auto;
	}

	h1#pageBioTitle
	{
		font-size: 3.0rem;
	}

	#bioTitle
	{
		padding: 4px 0 0px 0;
		font-size: 1.8rem;
	}

	ul#bioContact,
	ul#bioAccessories
	{
		float: none;
		width: 100%;
		margin: 10px 0 10px 0;
	}
}


/* Practice List */

div.listColumn ul,
div.listColumn ul li
{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

div.listColumn ul
{
	display: flex;
	flex-wrap: wrap;
}

div.listColumn ul li
{
	display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
	position: relative;
	width: calc(25% - 9px);
	/*min-height: 326px;*/
	margin: 0 0 11px 11px;
	background: #4d4e56;
	box-sizing: border-box;
	text-align: center;
}

div.listColumn ul li:nth-child(4n+1)
{
	margin: 0 0 11px 0px;
}

div.listColumn ul li .image
{
	position: relative;
   	left: 0px;
   	right: 0px;
   	width: 100%;
   	height: 100%;
   	overflow: hidden;
}


div.listColumn ul li .image > img,
div.listColumn ul li .image a:not(.sp_pencil),
div.listColumn ul li .image a:not(.sp_pencil) img
{
	display: block;
	width: 100%;
}

div.listColumn ul li .image > img,
div.listColumn ul li .image a:not(.sp_pencil) img
{
	opacity: 0.6;
}

div.listColumn ul li:hover .image > img,
div.listColumn ul li:hover .image a:not(.sp_pencil) img
{
	opacity: 1;
}

div.listColumn ul li:focus-within .image > img,
div.listColumn ul li:focus-within .image a:not(.sp_pencil) img
{
	opacity: 1;
}

div.listColumn ul li .title
{
	position: absolute;
	z-index: 10;
	left: 50%;
	top: 50%;
 	transform: translate(-50%,-50%);
 	width: 100%;
	margin: 0 0 0 0;
	padding: 20px;
	box-sizing: border-box;
	color: #ffffff;
	font-size: 2.6rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.3;
}

div.listColumn ul li .title a
{
	color: #ffffff;
}

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

div.listColumn ul li:hover .title,
div.listColumn ul li:focus .title
{
	text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

div.listColumn ul li a.sp_pencil
{
	position: absolute;
	z-index: 10000;
	top: -5px;
	right: 2px;
	cursor: pointer;
}

@media (max-width: 1200px)
{
	div.listColumn ul li,
	div.listColumn ul li:nth-child(4n+1)
	{
		width: calc(33.33% - 8px);
		margin: 0 0 11px 11px;
	}

	div.listColumn ul li:nth-child(3n+1)
	{
		margin: 0 0 11px 0px;
	}
}

@media only screen and (max-width: 919px)
{
	div.listColumn ul li,
	div.listColumn ul li:nth-child(4n+1),
	div.listColumn ul li:nth-child(3n+1)
	{
		width: calc(50% - 6px);
		margin: 0 0 11px 11px;
	}

	div.listColumn ul li:nth-child(odd)
	{
		margin: 0 0 11px 0px;
	}

	div.listColumn ul li .title
	{
		font-size: 1.8rem;
		line-height: 1.4;
	}
}

@media only screen and (max-width: 479px)
{
	div.listColumn ul li,
	div.listColumn ul li:nth-child(4n+1),
	div.listColumn ul li:nth-child(3n+1),
	div.listColumn ul li:nth-child(odd)
	{
		width: 100%;
		min-height: auto;
		margin: 0 0 11px 0px;
	}
}


/* Practice Profile */

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


/* News/Pub/Event type Listing */

.itemNewsList > ul > li
{
	display: flex;
	margin: 44px 0 0 0;
	padding: 0 0 44px 0;
	border-bottom: 1px solid #bfbfbf;
}

.itemMatterList.itemNewsList > ul > li
{
	display: block; /* similar styles, no icons */
}

.itemNewsList > ul > li .info
{
	width: calc(100% - 172px);
}

.itemNewsList > ul > li .section
{
	position: relative;
	margin: 8px 34px 0 0;
	width: 138px;
	height: 138px;
}

.itemNewsList > ul > li .section img
{
	display: block;
}

.itemMultimediaList.itemNewsList > ul > li .section
{
	overflow:hidden;
	border-radius: 50%;
}

.itemMultimediaList.itemNewsList > ul > li .section a
{
	display: block;
}

.itemMultimediaList.itemNewsList > ul > li .section a:before
{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 138px;
	height: 138px;
	background: url('../i/play.png') center center no-repeat; /* data-uri */
	background-size: 70px;
	border-radius: 50%;
}

.itemMultimediaList.itemNewsList > ul > li .section img
{
	width: 180px;
	height: auto;
}

.itemNewsList > ul > li .itemdate
{
	font-size: 1.8rem;
	font-weight: 600;
	color: #a0a1ab;
	text-transform: uppercase;
}

.itemNewsList > ul > li .itemtime
{
	font-size: 1.4rem;
	font-weight: 400;
	color: #a0a1ab;
	line-height: 1;
}

.itemNewsList > ul > li .title
{
	margin: 10px 0 0 0;
}

.itemNewsList > ul > li .title,
.itemNewsList > ul > li .title a
{
	font-size: 3.0rem;
	font-weight: 600;
	color: #010101;
	line-height: 1.3;
}

.itemNewsList > ul > li .abstract
{
	margin: 10px 0 0 0;
	font-size: 2.1rem;
	font-weight: 400;
	color: #4d4e56;
	line-height: 1.4;
}

.itemNewsList > ul > li .abstract p:first-child
{
	margin-top: 0;
	padding-top: 0;
}

.itemNewsList > ul > li .abstract p:last-child
{
	margin-bottom: 0;
	padding-bottom: 0;
}

.itemNewsList > ul > li .morelink,
.itemMultimediaList.itemNewsList > ul > li .videoMore
{
	display: block;
	margin: 10px 0 0 0;
}

.itemNewsList > ul > li .morelink a,
.itemMultimediaList.itemNewsList > ul > li a.videoMore
{
	font-size: 1.8rem;
	font-weight: 400;
	color: #d67d32;
	text-transform: uppercase;
}

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

.itemNewsList ul li .type > ul li
{
	display: inline-block;
	margin: 0;
	padding: 0;
	color: #666666;
	font-size: 1.7rem;
}

.itemNewsList ul li .type > ul li:before
{
	content: ', ';
}

.itemNewsList ul li .type > ul li:first-child:before
{
	display: none;
}

.itemNewsList .speaker
{
	font-weight: 700;
}

.view_more a
{
	display: inline-block;
	width: auto;
	margin: 20px 0 28px 0;
	padding: 5px 15px 5px 15px;
	background: #d67d32;
	color: #fff;
	vertical-align: middle;
}

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

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

@media only screen and (max-width: 479px)
{
	.itemNewsList > ul > li .section
	{
		display: none;
	}

	.itemNewsList > ul > li .info
	{
		width: calc(100% - 0px);
	}
}


/* News/Pub/Event type Profile */

#itemSection
{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	color: #a0a1ab;
	font-size: 1.8rem;
	text-transform: uppercase;
}

#itemUpperField
{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 20px 0 46px 0;
	border-bottom: 1px solid #bfbfbf;
	color: #010101;
	font-size: 2.1rem;
}

#itemUpperField #itemUpperFieldRight
{
	padding: 0 0 0 30px;
	box-sizing: border-box;
}

#itemUpperField #itemUpperFieldRight > div
{
	display: inline-block;
}

#itemUpperField #itemUpperFieldRight > div a
{
	display: block;
	margin: 0 0 0 7px;
	padding: 7px 24px 7px 24px;
	font-weight: 700;
	font-size: 1.6rem;
	border: 1px solid #d67d32;
	text-transform: uppercase;
	line-height: 1;
}

#itemUpperField #itemUpperFieldRight > div a:hover,
#itemUpperField #itemUpperFieldRight > div a:focus
{
	color: #ffffff;
	background: #d67d32;
	text-decoration: none;
}

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

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

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

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

@media only screen and (max-width: 919px)
{
	#itemUpperField
	{
		display: block;
		padding: 20px 0 46px 0;
		font-size: 2.1rem;
	}

	#itemUpperField #itemUpperFieldRight
	{
		padding: 0 0 0 0px;
	}

	#itemUpperField #itemUpperFieldRight > div a
	{
		margin: 0 7px 0 0px;
		padding: 4px 14px 4px 14px;
		font-size: 1.4rem;
	}
}


/* Contact Main Listing */

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

#officeList ul
{
	display: flex;
	flex-wrap: wrap;
}

#officeList ul li
{
	width: calc(33.33% - 8px);
	margin: 0 0 11px 11px;
	background: #ffffff;
	box-sizing: border-box;
}

#officeList ul li:nth-child(3n+1)
{
	margin: 0 0 11px 0px;
}

#officeList ul li .photo
{
	position: relative;
	width: 100%;
}

#officeList ul li .photo a:not(.sp_pencil),
#officeList ul li .photo a:not(.sp_pencil) img,
#officeList ul li .photo img
{
	display: block;
	position: relative;
	width: 100%;
}

#officeList ul li .contactdetails
{
	padding: 30px;
	box-sizing: border-box;
	color: #333333;
}

#officeList ul li .title
{
	padding: 0 0 5px 0;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.2;
}

@media (max-width: 1100px)
{
	#officeList ul li,
	#officeList ul li:nth-child(3n+1)
	{
		width: calc(50% - 6px);
		margin: 0 0 11px 11px;
	}

	#officeList ul li:nth-child(odd)
	{
		margin: 0 0 11px 0px;
	}
}

@media only screen and (max-width: 767px)
{
	#officeList ul li,
	#officeList ul li:nth-child(3n+1),
	#officeList ul li:nth-child(odd)
	{
		width: 100%;
		margin: 0 0 11px 0;
	}
}


/* Office Profile Pages */

#officeAddress
{
	margin: 0px 0 18px 0;
	line-height: 1.4;
}

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


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

#itemSubtitle
{
	padding: 12px 0 4px 0;
	color: #00446a;
	font-size: 1.35rem;
	line-height: normal;
}

/* experience */
.category span,
.type span
{
	font-weight: 500;
}


/* event industry experts */

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

ul#eventJumpLinks
{
	display: inline-block;
	width: 100%;
	background: #D37C32;
	text-align: center;
}

ul#eventJumpLinks li
{
	display: inline-block;
	text-align: center;
}

ul#eventJumpLinks a
{
	display: block;
	padding: 0 20px 0 20px;
	color: #ffffff;
	line-height: 54px;
	text-transform: uppercase;
}

ul#eventJumpLinks a:hover
ul#eventJumpLinks a:focus
{
	color: #333333;
	text-decoration: none;
}

#item_speaker .itemList
{
	/*display: flex;
	flex-wrap: wrap;*/
}

#item_speaker .itemList h3
{
	text-align: center;
}

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

#item_speaker ul
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-around;
}

#item_speaker ul li
{
	margin: 0 20px 30px 20px;
}

#item_speaker li .speakerInfo
{
	width: 200px;
	/*height: 250px;*/
	text-align: center;
	padding: 9px;
}

#item_speaker ul li .title
{
	color: #333333;
	font-size: 1.6rem;
	font-weight: 500;
}

#item_speaker ul li .position,
#item_speaker ul li .company
{
	font-size: 1.3rem;
	font-weight: 400;
	font-style: italic;
}


/* Lower Spots ---------------------------------------------------> */

#highlightContent
{
	position: relative;
	width: 100%;
    max-width: 1680px;
    margin: 0px auto;
	padding: 0px 0 0 0;
	box-sizing: border-box;
}

#content > #mainContent > #spotRows
{
	position: relative;
	width: 100%;
	margin: 24px 0 0 0;
}

#spotRows .spotRow
{
	display: flex;
	position: relative;
	width: 100%;
	margin: 0 0 10px 0;
}

#spotRows #spotRow_First.spotRow > div,
#spotRows #spotRow_Third.spotRow > div
{
	position: relative;
	width: calc(25% - 5px);
	height: 1px;
	min-height: 326px;
	margin: 0 10px 0 0;
	padding: 30px;
	background: #ffffff;
	box-sizing: border-box;
	overflow: hidden;

	/*
	position: relative;
    width: calc(25vw - 10px);
    margin: 0 10px 0 0;
    background: #ffffff;
    height: calc(25vw - 10px);
    flex-grow: 0;
    flex-shrink: 0;
    */
}

#spotRows #spotRow_First.spotRow > div:last-child,
#spotRows #spotRow_Third.spotRow > div:last-child
{
	/*flex: 1 1 auto;*/
	width: calc(50% + 0px);
	margin: 0 0px 0 0;
	padding: 0px;
	background: #cccccc;
}

#spotRows #spotRow_Second.spotRow > div
{
	position: relative;
	width: calc(25% - 5px);
	height: 1px;
	min-height: 326px;
	margin: 0 0px 0 10px;
	padding: 30px;
	background: #ffffff;
	box-sizing: border-box;
	overflow: hidden;
}

#spotRows #spotRow_Second.spotRow > div:first-child
{
	width: calc(50% + 0px);
	margin: 0 0px 0 0;
	padding: 0px;
	background: #cccccc;
}

.spotRow ul.results_list,
.spotRow ul.results_list li
{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.spotRow ul.results_list li .section a
{
	color: #d67d32;
	font-size: 1.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.spotRow ul.results_list li .section a:hover,
.spotRow ul.results_list li .section a:focus
{
	color: #333333;
	text-decoration: none;
}

.spotRow ul.results_list li .title,
.spotRow ul.results_list li .title a:not(.sp_pencil)
{
	color: #333333;
	font-size: 2.4rem;
	line-height: 1.4;
}

.spotRow ul.results_list li .title a:hover,
.spotRow ul.results_list li .title a:focus
{
	color: #d67d32;
	text-decoration: none;
}

.spotRow ul.results_list li .frontInfo
{
	opacity: 1;
	transition: 0.2s;
}

.spotRow ul.results_list li .backInfo
{
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	color: #ffffff;
	font-size: 1.7rem;
	line-height: 1.4;
	transition: 0.2s;
}

.spotRow ul.results_list li .backInfo a
{
	background: none;
	color: #ffffff;
	text-shadow: none;
}

.spotRow ul.results_list li .backInfo a:hover,
.spotRow ul.results_list li .backInfo a:focus
{
	text-decoration: none;
}

.spotRow ul.results_list li .backInfo p
{
	margin: 0 0 10px 0;
}

.spotRow .spotBoxItem
{
	transition: 0.2s;
	cursor: pointer;
}

.spotBoxItem ul,
.spotBoxItem li,
.spotBoxItem li > a
{
	display: block;
	height: 100%;

}

.spotRow a:hover
{
	text-decoration: none !important;
}

#spotRows #spotRow_First.spotRow > div.spotBoxItem:hover,
#spotRows #spotRow_Second.spotRow > div.spotBoxItem:hover,
#spotRows #spotRow_Third.spotRow > div.spotBoxItem:hover
{
	background: #d67d32;
}

.spotRow .spotBoxItem:hover .frontInfo
{
  	opacity: 0;
}

.spotRow .spotBoxItem:hover .backInfo
{
  	opacity: 1;
}

.spotRow .spotFeatureItem,
.spotRow .spotFeatureItem ul.results_list,
.spotRow .spotFeatureItem ul.results_list li
{
	/*display: table;*/
	position: relative;
	width: 100%;
	height: 100%;
}

.spotRow .spotFeatureItem ul.results_list li
{
	padding: 25px 30px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	cursor: pointer;
	box-sizing: border-box;
}

.spotRow .spotFeatureItem ul.results_list li .gradientMask
{
	opacity: 0;
	position: absolute;
	z-index: 1;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    transition: 0.2s;
}

.spotRow .spotFeatureItem:hover ul.results_list li .gradientMask
{
	opacity: 1;
}

.spotRow .spotFeatureItem:focus-within ul.results_list li .gradientMask
{
	opacity: 1;
}

.spotRow .spotFeatureItem  ul.results_list li .title
{
	position: relative;
	z-index: 5;
	height: 100%;
	width: 100%;
	color: #ffffff;
	font-size: 2.8rem;
}

@media (max-width: 1300px)
{
	#spotRows #spotRow_First.spotRow > div,
	#spotRows #spotRow_Second.spotRow > div,
	#spotRows #spotRow_Third.spotRow > div
	{
		padding: 20px;
	}

	.spotRow ul.results_list li .section
	{
		margin: 0 0 6px 0;
	}

	.spotRow ul.results_list li .title,
	.spotRow ul.results_list li .title a:not(.sp_pencil)
	{
		font-size: 1.8rem;
	}

	.spotRow ul.results_list li .backInfo
	{
		font-size: 1.5rem;
	}
}

@media (max-width: 1024px)
{
	#spotRows .spotRow
	{
		display: flex;
		flex-wrap: wrap;
	}

	#spotRows #spotRow_First.spotRow > div,
	#spotRows #spotRow_Second.spotRow > div,
	#spotRows #spotRow_Third.spotRow > div
	{
		width: calc(50% - 5px);
		min-height: 226px;
		margin: 0 10px 0 0;
		padding: 30px;
	}

	#spotRows #spotRow_First.spotRow > div:nth-child(2),
	#spotRows #spotRow_Second.spotRow > div:nth-child(3),
	#spotRows #spotRow_Third.spotRow > div:nth-child(2)
	{
		margin: 0 0 0 0;
	}

	#spotRows #spotRow_First.spotRow > div:last-child,
	#spotRows #spotRow_Second.spotRow > div:first-child,
	#spotRows #spotRow_Third.spotRow > div:last-child
	{
		width: 100%;
		margin: 10px 0 0px 0;
	}


	#spotRows #spotRow_Second.spotRow > div:first-child
	{
		order: 3;
	}

	.spotRow ul.results_list li .title,
	.spotRow ul.results_list li .title a:not(.sp_pencil)
	{
		font-size: 2.4rem;
	}

	.spotRow ul.results_list li .backInfo
	{
		font-size: 1.7rem;
	}
}

@media only screen and (max-width: 767px)
{
	#spotRows #spotRow_First.spotRow > div,
	#spotRows #spotRow_Second.spotRow > div,
	#spotRows #spotRow_Third.spotRow > div
	{
		width: 100%;
		min-height: auto;
		min-height: 150px;
		margin: 0 0px 10px 0;
		padding: 10px;
	}

	.spotRow .spotFeatureItem  ul.results_list li .title
	{
		font-size: 2.2rem;
	}
}


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

form > div > div
{
	position: relative;
	float: left;
	flex-basis: calc(33.33% - 7px);
	margin: 0 0 10px 10px;
}

form > div > div:nth-of-type(3n+1)
{
	margin: 0 0 10px 0px;
}

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

form > div > div.textarea_wrapper
{
	flex-basis: 100%;
	width: calc(100% - 10px);
	margin: 0 0 10px 0;
}

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

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
{
	flex: 0 0 auto;
	align-self: flex-start;
	margin: 9px 6px 0 0;
	padding: 0;
}

form > div > div.radio_wrapper
{
	flex-basis: 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
{
	/* flex-basis: 100%;  uncomment if you want this on its own line */
}

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: 44px; /* appease IE11 */
	margin: 0;
	padding: 1px 7px;
	color: #4d4e56;
	border: 1px solid #d7d7d7;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

textarea
{
	min-height: 6.5em;
}

form > div > div > label
{
	position: absolute;
	padding: 9px 7px;
	color: #4d4e56;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
}

.customSelect
{
    display: block !important;
    overflow: hidden;
    padding-right: 40px;  /* make room for the arrow */
    padding: 9px 40px 9px 7px;
    background-color: #ffffff;
}

.customSelect::after
{
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	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;
}

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

form > div > div#submit_wrapper
{
	margin-left: 0px;
}

input[type=submit]
{
	width: auto;
	height: 44px;
	margin: 0 0 10px 0;
	padding: 1px 18px 1px 18px;
	background: #4d4e56;
	border: 0 solid #d6d6d6;
	color: #fff;
	font: normal 16px/1.8 Helvetica, Arial, sans-serif;
	cursor: pointer;
}

a.clearAll
{
	float: right;
}

a.viewAll
{
	display: inline-block;
	width: auto;
	margin: 0 0 10px 0;
	padding: 4px 14px 5px 14px;
	background: #969696;
	color: #fff;
}

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

body#professionals #content form,
#industryFocusForm form
{
	max-width: 1200px;
	margin: 0px auto;
}

#industryFocusForm form
{
	padding-bottom: 40px;
}

body#professionals #content form > div,
#industryFocusForm form > div
{
	position: relative;
	width: 100%;
}

body#professionals #content form > div > div
{
	flex-basis: calc(50% - 70px);
}

#industryFocusForm form > div > div
{
	flex-basis: calc(100% - 140px);
}

body#professionals #content form > div > div.submit_wrapper,
#industryFocusForm form > div > div:last-of-type
{
	flex-basis: 90px;
}

@media (max-width: 1240px)
{
	body#professionals #content form
	{
		padding: 50px 0 0 0;
	}
}

@media only screen and (max-width: 767px)
{
	form > div > div,
	form > div > div:nth-of-type(3n+1),
	body#professionals #content form > div > div,
	body#professionals #content form > div > div.submit_wrapper
	{
		flex-basis: 100%;
		margin: 0 0 10px 0;
	}
}


/* 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: #3874a8;
	font-size: 1.1rem;
}

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

.autocomplete strong
{
	font-weight: bolder;
	color: #3874a8;
}

/* custom autocomplete suggestion: bio */
.autocomplete .acBio div
{
	display: flex;
}
.autocomplete .acBio div div
{
	display: block;
	padding: 0 5px 2px 5px;
}

.autocomplete .acBioPic img
{
	max-width: 70px;
	max-height: 50px;
}


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

#footer
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	height: 1px;
	min-height: 115px;
    max-width: 1680px;
    margin: 24px auto 0 auto;
	padding: 0;
	background: #4d4e56;
	box-sizing: border-box;
	color: #cccccc;
	font-size: 1.7rem;
	font-weight: 300;
}

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

#footer a
{
	color: inherit;
}

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

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

#footer ul li
{
	display: inline-block;
	margin: 0 0 0 30px;
}

#footer ul li:first-child
{
	margin: 0 0 0 0px;
}

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

#footerLinks
{
	order: 1;
	flex-grow: 1;
}

#footerSocial
{
	order: 2;
}

#footerSocial ul li a
{
	display: block;
	width: 27px;
	height: 27px;
	color: #d47a37;
}

#footerSocial ul li:last-child a
{
	width: auto;
	height: auto;
}

#footerSocial ul li a:hover,
#footerSocial ul li a:focus
{
	color: #ffffff;
}

#footerSocial li img
{
	display: inline-block;
	width: 27px;
	height: 27px;
	height: auto;
	vertical-align: middle;
}

#footerSocial li:hover img
{
	opacity: 0.8;
}

#footerSocial li:focus-within img
{
	opacity: 0.8;
}

@media (max-width: 1270px)
{
	#footer
	{
		font-size: 1.4rem;
	}

	#footer ul li
	{
		margin: 0 0 0 20px;
	}
}

@media (max-width: 1024px)
{
	#footer
	{
		flex-wrap: wrap;
		justify-content: center;
		height: auto;
		text-align: center;
		padding: 30px 0 30px;
	}

	#footerLinks
	{
		order: 2;
		flex-basis: 100%;
	}

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

	#footerSocial
	{
		order: 1;
		flex-basis: 100%;
	}

	#footerSocial li:last-child
	{
		display: block;
		margin: 28px 0 28px 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;
	color: #fff;
	font-size: 1.3rem;
}

.jwplayer
{
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	box-sizing: border-box;
}

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

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

@media all and (orientation: portrait)
{
	.popupPlayerWrapper
	{
		left: calc(50% - 45vw);
		top: calc(50% - 20vh);
		width: 90vw;
		height: 40vh;
	}
}

span.popupPlayerClose
{
	display: block;
	position: absolute;
	z-index: 25;
	top: -15px;
	right: -15px;
	padding-left: 1px;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	background: #333;
	color: #f1f1f1;
	font-size: 1.4rem;
	line-height: 15px;
	text-align: center;
	cursor: pointer;
}

span.popupPlayerClose:hover,
span.popupPlayerClose:focus
{
	background: #000;
	color: #fff;
}

.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%;
	max-width: 987px;
	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;
	min-width: 100000px;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

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

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

.popupPlayerPlaylist ul li a
{
	display: block;
	width: 100%;
}

.popupPlayerPlaylist ul li a img
{
	display: block;
	position: relative;
	z-index: 1;
	width: 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;
	box-sizing: border-box;
}

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

.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: 1.8rem;
}

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

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

#item_relatedsame ul li .photo img,
.xrefMultimediaList ul li .photo img
{
	width: 130px;
}

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

.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 0 0 150px;
}

#item_relatedsame .results_list > li:nth-child(n+1)
{
	display: none;
}

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

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


/* 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: #3874a8;
	color: #fff;
	text-align: center;
}

span#emailPopupClose
{
	display: block;
	position: absolute;
	top: -15px;
	right: -15px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	background: #333;
	color: #f1f1f1;
	font-size: 1.4rem;
	line-height: 13px;
	text-align: center;
	text-indent: 1px;
	cursor: pointer;
}

span#emailPopupClose:hover,
span#emailPopupClose:focus
{
	background: #000;
	color: #fff;
}

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

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

@media only screen and (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: 1rem;
	}

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

	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 .search_form form div
{
	height: auto;
	width: 100%;
}

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

#search .search_form br
{
	display: none;
}

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

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

#search .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 only screen and (max-width: 767px)
{
	#search div.search_section_wrapper
	{
		flex-direction: column;
	}

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

	#search .searchBioWrapper
	{
		flex-direction: column;
	}
}

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

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

#search .searchBioPic
{
	padding: 0 0 9px 0;
	margin: 0;
}

#search .searchBioPic img
{
	padding: 0 27px 0 0;
}


/* Map Object Support */

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

.printMap
{
	display: inline-block;
	padding: 4px;
	background: #3874a8;
	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;
	white-space: nowrap;
	cursor: pointer;

	color: #3874a8;
}


/* Newsletter Object Support */

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


/* Blogs ----------------------------------------------------------> */

/* IF-BLOG
.blog .search_form div
{
	float: none;
}

.blog #bannerText
{
	padding: 20px;
	background: #ddd;
	border-radius: 10px;
}

.blog #searchMessage
{
	padding-bottom: .8rem;
	margin-bottom: 1.3rem;
	border-bottom: 1px solid currentColor;
	background-size: 12px 1px;
}

.blogPosts div.title
{
	margin-bottom: .3em;
	font-size: 1.3em;
}

.blogPosts img
{
	height: auto;
	max-width: 100%;
}


.blogPosts .socialshare
{
	padding: .5em 0;
	border-bottom: 1px solid currentColor;
	text-align: right;
}

.blogPosts .image:not(:empty)
{
	float: left;
	margin-right: 1em;
}

/* in listing, make image a max height */
/* IF-BLOG
.blogPosts > div > div:not(.postDetail) img
{
	display: block;
	width: auto;
	max-height: 9.5em;
}

.blogPosts .sp_pencil img
{
	display: inline !important;
}

/* in listing, make sure the read more shows inline with the intro */
/* IF-BLOG
.blogPosts > div > div:not(:only-child) .intro p:last-child
{
	display: inline;
}

.blogPosts > div > div
{
	clear: both;
	margin-bottom: 2.5em;
}

/* fields within each blog post */
/* IF-BLOG
.blogPosts > div > div > div + div
{
	margin-top: .5em;
}

.blogPosts .blogComments
{
	margin-bottom: 0;
}

.blogPosts .blogComments > div > div
{
	padding: 1rem 0;
	border: 1px solid currentColor;
	border-width: 1px 0 0 0;
}

.blogPosts .blogComments > div > div > div
{
	margin: 0 1rem;
}

.blogPosts .blogComments .comment
{
	margin-top: 1rem;
}

#addComment
{
	border-top: 1px solid currentColor;
}

.blog #historyLinks a
{
	float: left;
}

.blog #historyLinks a:last-child
{
	float: right;
}

.blogtag
{
	line-height: 1.5;
	margin: 1em 0;
}

.blogFilters ul,
.blogFilters li
{
	list-style: none;
	margin: 0 0 .5em 0;
}

#subContent .blogFilters .results_list > li:nth-child(n+6)
{
	display: none;
}

#mainContent #blogArchives .results_list
{
	column-count: 2;
}

@media (min-width: 480px)
{
	#mainContent #blogArchives .results_list
	{
		column-count: 3;
	}
}

#mainContent #blogArchives .results_list,
#mainContent #blogArchives .results_list > li
{
	display: block;
	list-style: none;
	margin: 0 0 1.5rem 0;
}

#mainContent #blogArchives .results_list > li
{
	margin: 0;
	padding: 0;
}

.blogAuthors .title
{
	margin: 0 0 .3em 0;
	font-size: 1.3rem;
}

.blogAuthors .photo
{
	float: left;
	margin-right: 1em;
}

.blogAuthors ul,
.blogAuthors li
{
	list-style: none;
	margin: 0 0 1rem 0;
}

.blogAuthors li
{
	overflow: hidden;
	padding-bottom: 1rem;
	border-bottom: 1px solid currentColor;
}

#searchMessage.blogAuthors li
{
	padding-bottom: 0;
	border-bottom: 0;
}

.blogAuthors .abstract
{
	margin: .5rem 0;
}

.vlog .image
{
	position: relative;
}

.vlog .image a::before,
.vlog .image a::after
{
	content: '';
	display: block;
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 0 25px 43.3px;
	border-color: transparent transparent transparent white;
}

.vlog .image a::before
{
	border-left-color: #808080;
	filter: blur(8px);
}

/**/

/* often copy/pasted from elsewhere */


/* Alignment */

figure
{
	margin: .5rem 0;
}

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

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

.aligncenter,
.align-center,
.alignnone
{
	clear: both;
	display: block;
	margin: .5rem 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: 1.2rem;
}


/* Gallery */

#galleryContainer
{
	clear: both;
	padding-left: 376px;
}

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

#gallerySelect
{
	display: none;
	width: 100%;
	height: 52px;
	margin: 30px 0 20px;
	background: #ffffff;
	box-sizing: border-box;

}

#gallerySelect button
{
	/* button reset */
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	font: inherit;
	color: inherit !important;
	text-align: left;
	box-sizing: border-box;
	display: block;
	width: 100%;
	position: relative;
	height: 100%;
	padding: 10px 5px 10px 10px;
	border: 1px solid #999999;
	box-sizing: border-box;
	cursor: pointer;
}

#gallerySelect button:after
{
	content: '';
	position: absolute;
	right: 20px;
	top: 18px;
	width: 23px;
	height: 13px;
	/*background: url('../i/select-arrow.png') no-repeat; /* data-uri */
	background-size: 23px 13px;
}

#gallerySelect > div
{
	display: none;
	position: relative;
	top: -1px;
	z-index: 10;
	background: #ffffff;
	border: 1px solid #999999;
}

#gallerySelect > div.open
{
	display: block;
}

#gallerySelect li
{
	padding: 10px;
	box-sizing: border-box;
	cursor: pointer;
}

#gallerySelect li:hover
{
	background: rgba(0,0,0, .25);
}

#gallerySelect ul
{
	margin: 0;
	padding: 5px 0 0;
}

#gallerySelect li.current
{
	font-weight: bold;
}

#galleryContent li
{
	position: relative;
	transition: all 250ms ease;
}

#galleryThumbnail li
{
	cursor: pointer;
}

#galleryImage li:not(.current)
{
	opacity: 0;
	display: none;
}

#galleryImage li .sp_pencil
{
	position: absolute;
	top: 0;
	left: 0;
}

#galleryImage img
{
	display: block;
	height: auto;
	width: 100%;
	margin: 0 auto;
}

#galleryImage .galleryImageCaption
{
	width: 100%;
	background: rgba(0,0,0, .75);
	color: #ffffff;
	padding: 10px;
	font-size: 1.6rem;
	box-sizing: border-box;
}

#gallery
{
	margin-bottom: 50px;
}

#galleryContent #galleryThumbnail
{
	margin-top: 10px;
	white-space: nowrap;
	overflow-x: scroll;
}

#galleryContent #galleryThumbnail li
{
	display: inline-block;
	width: 130px;
	height: 96px;
	border: 1px solid #707070;
	background: #000000;
}

#gallerContent #galleryThumbnail li.current
{
	border-color: #7b7b7b;
}

#galleryContent #galleryThumbnail li img
{
	display: block;
	width: 100%;
	height: auto;
	opacity: .3;
	transition: all 250ms ease;
}

#galleryContent #galleryThumbnail li.current img
{
	opacity: 1;
}

@media (min-width: 1280px )
{
	#galleryContainer
	{
		width: calc(90% - 400px);
		max-width: 1080px;
	}

	#gallerySelect
	{
		width: 80%;
	}

	#galleryContent
	{
		display: flex;
		justify-content: space-between;
		position: relative;
		padding-right: 20%;
	}

	#galleryImage img
	{
		height: 100%;
	}

	#galleryContent #galleryThumbnail
	{
		position: absolute;
		top: 0;
		right: -17px;
		height: 60vw;
		width: 19%;
		overflow-x: hidden !important;
		margin-top: 0;
		white-space: normal;
		height: 100%;
		box-sizing: content-box;
	}

	#galleryContent #galleryThumbnail li
	{
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10px;
	}

	#galleryContent #galleryThumbnail li img
	{
		height: auto;
		width: 100%;
	}

	#galleryImage .galleryImageCaption
	{
		padding: 0;
	}

	#galleryImage .galleryImageCaption:not(:empty)
	{
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 15px 30px;
		font-size: 18px;
		line-height: 24px;
		color: #ffffff;
	}
}


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

body#index
{
	max-width: none;
}

#index #header
{
	background: none;
}

#index #content
{
    height: auto;
    min-height: auto;
    max-width: 1680px;
    padding: 0px 0 0px 0;
}

#index #mainContent
{
	width: 100%;
    margin: 0;
    padding: 0;
}

#index #homeAnimation
{
    /*display: none;*/
    position: relative;
    top: 0px;
    left: -10px;
    width: calc(100% + 20px);
    height: auto;
    height: 68vh;
    overflow: hidden;
}

#index video#homeHeroVideo
{
    display: none;
	position: absolute;
	z-index: 1;
	top: -100%;
	bottom: -100%;
	left: -100%;
	right: -100%;
	height: auto;
	width: auto;
	min-height: 100%;
	min-width: 100%;
	margin: auto;
}

#index #homeAnimation #animationMask
{
	position: absolute;
	z-index: 10;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0,0,0,0.70), 40%, rgba(0,0,0,0.01));
}

#index #homeAnimation #homeHeroAbstract
{
	position: absolute;
	z-index: 15;
	bottom: 6%;
	right: 10%;
	width: 40%;
	color: #ffffff;
	font-size: 3.0rem;
	line-height: 1.4;
	padding: 0 10px 0 10px;
}

#index #homeAnimation #homeHeroAbstract p
{
	text-shadow: 2px 2px 5px #000000;
}

#index #homeAnimation #homeHeroAbstract .sp_pencil
{
	position: absolute;
    top: -10px;
    left: 8px;
}

#index #mobileViewProfessionals
{
	display: none;
	margin: 10px 0 0 0;
	padding: 10px 10px 10px 10px;
	background: #ffffff;
	text-align: center;
}

@media (max-width: 1500px)
{
	#index #homeAnimation #homeHeroAbstract
	{
		font-size: 2.4rem;
	}
}

@media (max-width: 1024px)
{
	#index #homeAnimation #homeHeroAbstract
	{
		bottom: 4%;
		right: 6%;
		width: 60%;
		font-size: 2.2rem;
	}
}

/* 840 necessary for Galaxy S10+ */
@media only screen and (max-width: 840px)
{
	#index #mobileViewProfessionals
	{
		display: block;
	}
	
	#index #homeAnimation
	{
		height: auto;
	}
	
	#index video#homeHeroVideo
	{
		position: relative;
		top: auto;
		bottom: auto;
		left: 0px;
		right: 0px;
		max-height: 100%;
		width: 100%;
	}

	#index #homeAnimation #homeHeroAbstract
	{
		bottom: 0px;
		right: 0px;
		width: 100%;
		font-size: 2.0rem;
		padding: 20px 30px 30px 30px;
		box-sizing: border-box;
		background: rgba(0,0,0,0.50);
	}
}

@media (max-width: 767px)
{

	#index #homeAnimation video
	{
		display: block !important;
	}

	#index #homeAnimation #homeHeroAbstract
	{
		position: relative;
		padding-bottom: 10px;
		text-align: center;
		background: rgba(0,0,0,0.70);
	}

	#index #homeAnimation #homeHeroAbstract p
	{
		text-shadow: none;
	}
}

body#index #footer
{
	margin-top: 24px;
}


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


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

/* remember to add "only screen and " rules to the break points of <=919 above this line */
/*@media all and (max-width:8.5in) /* use while programming */
@media print
{
	html
	{
		font-size: 8px;
	}

	*,
	*::before,
	*::after
	{
		content: '' !important;
		background: none !important;
		color: #333;
	}

	.mobile,
	#siteSearch,
	.view_more,
	.sp_map,
	.printMap,
	.letterLinks,
	#pdfLink,
	#subNav,
	#navJump,
	#contentJump,
	#searchJump,
	#pageJump,
	#mainNav,
	#footer ul li,
	#footerSocial,
	.moreLink,
	#bioSocial,
	.search_form,
	#index #mobileViewProfessionals
	{
		display: none !important;
	}

	.extraItems,
	.contentSection,
	.sectionTitle,
	.expandableHeading + *,
	.contentSection > *,
	#footer ul li#footerCopyRight
	{
		display: block !important;
	}

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

		/* cancel out flexbox and float */
		display: block;
		float: none;
	}

	img
	{
		max-width: 100%;
		height: auto;
	}

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


	h1#pageTitle,
	#sectionTitle
	{
		text-align: left;
	}

	h2.sectionTitle
	{
		padding-left: 0px;
		margin-left: 0px;
		font-size: 4rem;
	}

	#header
	{
		position: relative;
		left: -10px;
		right: -10px;
		top: 0px;
		height: 0px;
		width: calc(100% + 20px);
		border-top: 80px solid #333333;
	}

	#logo
	{
		margin: -70px 0 0 18px;
	}

	#logo img
	{
		height: 60px;
		width: auto;
	}

	#banner
	{
    	display: none;
    }

    #banner img
	{
    	display: none;
    }

    div.listColumn ul li .title,
    div.listColumn ul li .title a
    {
    	color: #333333;
    }

	.spotBoxItem
	{
		padding: 0px !important;
	}

	.spotRow .spotFeatureItem ul.results_list li
	{
		padding: 0px;
	}

	.spotRow .spotFeatureItem ul.results_list li .title
	{
		color: inherit;
	}

	body.professionals-item #upperContent
	{
		height: 400px;
	}

	#bioPhoto
	{
		max-height: 400px;
	}

	#footer
	{
		min-height: 1px;
		padding: 0;
	}
}

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