/*<meta conditions="Default.ExternalOnly" />*/

.sidenav-wrapper
{
	display: none;
}

.body-container
{
	padding: 0px;
}

.off-canvas-wrapper-inner nav.title-bar .outer-row
{
	max-width: 100%;
	padding: 0;
	padding-left: 1em;
	padding-right: 12em;
}

div.topic-hero
{
	padding-top: 50px;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 75px;
	background: #000000;
}

div.topic-hero h1
{
	color: white;
	font-size: 24pt;
}

.search,
.search-bar
{
	width: 100%;
	position: relative;
	color: #DADADA;
	margin: 0 auto;
}

.search-bar._Skins_HomeSearchBar_24.mc-component
{
	display: block;
	width: 40em;
	height: 2em;
	margin-left: 0px;
	margin-top: 15px;
	margin-bottom: 0px;
}

.main-section > .outer-row
{
	padding-top: 0;
	padding-bottom: 0;
	max-width: 100%;
}

.off-canvas-wrapper-inner .outer-row	/*For the contours div to touch the sides*/
{
	padding-left: 0;
	padding-right: 0;
}

p.bold
{
	font-weight: bold;
	font-size: 16pt;
}

h1
{
	font-weight: normal;
}

div.footer
{
	width: 100%;
	margin: 0;
}

div.home-content
{
	padding-left: 20%;
	padding-right: 20%;
	margin-top: 2em;
}

div.HomeTiles	/*Used for the tiles on the Home page - 4 tiles per row*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	mc-hidden: hidden;
}

div.HomeTiles::before
{
	content: ' ';
	display: table;
	mc-hidden: hidden;
}

div.HomeTiles::after
{
	content: ' ';
	display: table;
	clear: both;
	mc-hidden: hidden;
}

div.HomeTiles > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 200px;
	margin-bottom: 40px;
	text-align: center;
	mc-hidden: hidden;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.HomeTiles > div:hover
{
	border: 3px solid #000000;
}

div.HomeTiles p
{
	color: #000000;
	padding-top: 2rem;
	padding-left: 10px;
	padding-right: 10px;
	mc-hidden: hidden;
	font-size: 18px;
}

div.HomeTiles a
{
	text-decoration: none;
	mc-hidden: hidden;
}

div.HomeTiles > div > a
{
	display: block;
	padding: 0px;
	height: 200px;
	mc-hidden: hidden;
}

div.HomeTiles > div:nth-child(1)
{
	width: 22%;
	margin-left: 0%;
	mc-hidden: hidden;
}

div.HomeTiles > div:nth-child(2)
{
	width: 22%;
	margin-left: 4%;
	mc-hidden: hidden;
}

div.HomeTiles > div:nth-child(3)
{
	width: 22%;
	margin-left: 4%;
	mc-hidden: hidden;
}

div.HomeTiles > div:nth-child(4)
{
	width: 22%;
	margin-left: 4%;
	mc-hidden: hidden;
}

div.space	/* This is used for the tiles on the home page */
{
	padding-top: 30px;
	mc-hidden: hidden;
	color: black;
}

img.icon_big
{
	border: none;
	width: 3.5em;
	height: 3.5em;
}

.nav-search-wrapper
{
	display: none;
}

form.search
{
	border: 0px solid !important;
	border-color: black !important;
}

/* NEWS BOX IMPLEMENTATION START */

:root
{
	--news-accent: #7f39f5;
}

/* change to match exact logo purple if you want */

#news-box.news-box
{
	/* width will be set from JS to match tiles; fallback value here */
	max-width: 1200px;
	margin: 2.5rem 0rem -1rem 0rem;
	padding: 0.5rem;
	background: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	overflow: hidden;
	box-sizing: border-box;
}

/* layout: title above slider, slider in middle, archive below-right */

#news-box .news-inner
{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
	gap: 0.75rem;
	align-items: start;
}

/* Title (top-left) */

#news-box .news-title
{
	margin: 0 0 0.25rem 0;
	font-size: 1.25rem;
	color: #222;
	font-weight: 600;
}

/* slider wrapper */

#news-box .news-slider-wrap
{
	position: relative;
	width: 100%;
	min-height: 120px;
}

/* slider track */

#news-box .news-slider
{
	display: flex;
	gap: 1rem;
	align-items: stretch;
	transition: transform 400ms ease;
	will-change: transform;
	padding: 0.25rem 0;
	min-height: 120px;
}

/* Each slide: 100% width of slider so exactly one visible */

#news-box .news-slide
{
	flex: 0 0 100%;
	min-width: 100%;
	box-sizing: border-box;
	background: #ededed;
	padding: 0.9rem 1rem;
	border: 1px solid #ececec;
	/* light border so it reads on off-white */
	box-shadow: 0 10px 22px rgba(0,0,0,0.04);
	/* modest shadow */
}

/* Inside slide: make title clickable but don't underline text */

#news-box .news-slide .news-title-link
{
	display: block;
	color: #111;
	font-weight: 600;
	text-decoration: none;
	/* NO underline */
}

#news-box .news-slide time
{
	display: block;
	font-size: 0.80rem;
	color: #777;
	margin-bottom: 0.35rem;
}

#news-box .news-slide p
{
	margin: 0.4rem 0 0 0;
	color: #4f4f4f;
	font-size: 0.93rem;
	line-height: 1.3;
}

/* pagination dots — centered below slider */

#news-box .news-dots
{
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	padding-top: 0.4rem;
}

#news-box .news-dots button
{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.12);
	cursor: pointer;
	padding: 0;
}

#news-box .news-dots button.active
{
	background: var(--news-accent);
	box-shadow: 0 0 0 6px rgba(127,57,245,0.12);
}

/* See all link bottom-right */

#news-box .news-archive
{
	color: var(--news-accent);
	text-decoration: none;
	justify-self: end;
	margin-top: 0.75rem;
	/* space above slider */
	font-weight: 500;
}

/* responsive tweaks */

@media (max-width: 900px)
{
	#news-box .news-slide
	{
		min-width: 90%;
	}

	#news-box .news-archive
	{
		justify-self: end;
	}

	#news-box .news-dots
	{
		padding-top: 0.25rem;
	}
}

/* NEWS BOX IMPLEMENTATION END */

@media only screen and (max-width: 1279px)
{
	div.HomeTiles > div:nth-child(1)
	{
		width: 48%;
		margin-left: 0%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(2)
	{
		width: 48%;
		margin-left: 4%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(3)
	{
		width: 48%;
		margin-left: 0%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(4)
	{
		width: 48%;
		margin-left: 4%;
		mc-hidden: hidden;
	}
}

@media only screen and (max-width: 767px)
{
	div.HomeTiles > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(3)
	{
		width: 100%;
		margin-left: 0%;
		mc-hidden: hidden;
	}

	div.HomeTiles > div:nth-child(4)
	{
		width: 100%;
		margin-left: 0%;
		mc-hidden: hidden;
	}
}

