﻿body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #222;
}

/*@import "MWSTK-Nav-definitions.less";
@import "definitions.less";*/

:root {
	/* --MainNavTransition: 1075px; Not valid in media queries */
	--NavBackground: #274B5C /*#00245E*/;
	--NavForeground: #FFFFFF;
	--MenuWidth: 250px;
	--MenuLeft: -250px;
	--ContentWidth: 992px;
	--FooterBGColor: #52504D; /* Navy; */
	--NavHeight: 85px;
}

p {
	line-height: 1.35;
}

.PageDisabler {
	position: fixed;
	top: 0;
	left: 0;
	height: 1000px;
	width: 100%;
	background-color: black;
	opacity: .5;
	z-index: 100;
	display: none;
}

/*
//	Navigation
*/

.NavWrapper {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--NavBackground);
	z-index: 200;
	width: 100%;
	margin: auto;
	height: var(--NavHeight);
}

	.NavWrapper > .Branding {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		padding: 10px;
	}

		.NavWrapper > .Branding > .Logo {
			display: inline-block;
		}

.TitlesWrapper {
	padding-left: 15px;
	color: white;
}

@media only screen and (max-width: 1250px) {
	.TitlesWrapper {
		width: 250px;
	}
}

.SiteTitle {
	font-size: 125%;
}

@media only screen and (max-width: 475px) {
	.TitlesWrapper {
		margin-right: 50px;
	}

	.SiteTitle {
		font-size: 100%;
	}
}

.NavWrapper > .Branding > .Logo img {
	height: 65px;
}

.NavWrapperShim {
	height: var(--NavHeight);
}

.MainNav {
	max-width: var(--ContentWidth);
	z-index: 200;
	background-color: var(--NavBackground);
	color: var(--NavForeground);
	margin: auto;
	position: absolute;
	top: 20px;
	right: 10px;
}

	.MainNav .ToggleButton {
		z-index: 200;
		font-size: 150%;
		padding: 10px;
	}

	.MainNav .NavRoot {
		display: flex;
		z-index: 200;
		justify-content: flex-end;
	}

	.MainNav .NavItem {
		cursor: pointer;
		padding: 10px;
		margin-right: 10px;
	}

/*
	More Info button on home page
*/

.MoreInfoButton {
	border: solid 1px transparent;
	border-radius: 5px;
	padding: 10px;
	transition-property: all;
	transition-duration: 250ms;
	color: white;
	background-color: var(--NavBackground);
	text-decoration: none;
	font-weight: normal;
	cursor: pointer;
}
.MoreInfoButton:hover {
	background-color: white;
	color: var(--NavBackground);
}

/*
//	Navigation (Desktop)
*/
@media (min-width: 1075px) {
	.MainNav .ToggleButton {
		display: none;
	}

	.MainNav .MobileBranding {
		display: none;
	}

	.MainNav .NavRoot {
		flex-direction: row;
		text-align: left;
	}

		.MainNav .NavRoot .NavItem {
			border: solid 1px transparent;
			border-radius: 5px;
			transition-property: border;
			transition-duration: 250ms;
		}

			.MainNav .NavRoot .NavItem[active] {
				background-color: white;
				color: var(--NavBackground);
			}

				.MainNav .NavRoot .NavItem[active] a {
					color: var(--NavBackground);
				}

			.MainNav .NavRoot .NavItem:hover {
				background-color: white;
				color: var(--NavBackground);
				transition-duration: 500ms;
				transition-property: all;
			}

				.MainNav .NavRoot .NavItem:hover a {
					color: var(--NavBackground);
				}

			.MainNav .NavRoot .NavItem a {
				color: var(--NavForeground);
				text-decoration: none;
			}

		.MainNav .NavRoot .NavGroup {
			color: var(--NavForeground);
		}

			.MainNav .NavRoot .NavGroup .GroupTitle {
				padding: 10px;
				border: solid 1px transparent;
				border-radius: 5px;
				transition-duration: 200ms;
				cursor: pointer;
			}

			.MainNav .NavRoot .NavGroup:hover .GroupTitle {
				border: solid 1px var(--NavForeground);
			}

			.MainNav .NavRoot .NavGroup .GroupItems {
				position: fixed;
				display: none;
				background-color: var(--NavBackground);
			}

			.MainNav .NavRoot .NavGroup:hover .GroupItems {
				display: flex;
				flex-direction: column;
				padding: 10px;
				border-radius: 5px;
			}

			.MainNav .NavRoot .NavGroup .GroupItems .NavItem:hover {
				background-color: var(--NavForeground);
			}

				.MainNav .NavRoot .NavGroup .GroupItems .NavItem:hover a {
					color: black;
				}
}

/*
//	Navigation (Mobile)
*/

@media (max-width: 1075px) {

	.MainNav {
		text-align: right;
	}

		.MainNav .ToggleButton {
			display: inline-block;
			z-index: 200;
		}

		.MainNav .MobileBranding {
			display: block;
		}

		.MainNav .NavRoot {
			position: fixed;
			top: 0;
			left: var(--MenuLeft);
			background-color: var(--NavForeground);
			border-right: solid 1px var(--NavBackground);
			height: 100%;
			width: var(--MenuWidth);
			flex-direction: column;
			justify-content: flex-start;
		}

			.MainNav .NavRoot .NavItem {
				color: var(--NavBackground);
			}

				.MainNav .NavRoot .NavItem:hover {
					background-color: silver;
					color: black;
				}

				.MainNav .NavRoot .NavItem a {
					color: var(--NavBackground);
					text-decoration: none;
				}

				.MainNav .NavRoot .NavItem:hover a {
					color: black;
				}

			.MainNav .NavRoot .NavGroup .GroupTitle {
				padding: 10px;
				color: var(--NavBackground);
				cursor: pointer;
			}

			.MainNav .NavRoot .NavGroup:hover .GroupTitle {
				background-color: silver;
				color: black;
			}

			.MainNav .NavRoot .NavGroup .GroupItems {
				display: flex;
				flex-direction: column;
				background-color: var(--NavForeground);
				color: var(--NavBackground);
				margin-left: 10px;
				margin-right: 10px;
			}

			.MainNav .NavRoot .NavGroup .NavItem {
				background-color: var(--NavForeground);
				color: var(--NavBackground);
				border-bottom: solid 2px transparent;
			}

				.MainNav .NavRoot .NavGroup .NavItem:hover {
					border-bottom: solid 2px silver;
				}
}

/*
//	Home Page Stuff
*/

* {
}

.HeroSectionWrapper {
	background-image: url(../images/usgsatwork-mar2020_0-1600.jpg);
	background-size: cover;
	position: relative;
	width: 100%;
	/*z-index: -10;*/
	padding-top: 30px;
	padding-bottom: 30px;
}

.HeroSection {
	max-width: var(--ContentWidth);
	position: relative;
	margin: auto;
	/*margin-top: 30px;
	margin-bottom: 30px;*/
}

.HeroContentBG {
	position: relative;
	background-color: rgba(208, 208, 208, 0.7);
	margin-bottom: 35px;
}

.HeroContent {
	font-weight: bold;
	font-size: 120%;
	color: #464542;
	padding: 25px;
}

.HeroContentImageWrapper {
	float: left;
	margin-right: 25px;
	width: 50%;
	min-width: 300px;
}

@media only screen and (max-width: 650px) {
	.HeroContentImageWrapper {
		float: none;
		margin: 15px;
	}
}

.HeroContentImage {
	width: 100%;
	box-shadow: 0 0 5px 1px gray;
}

.HeroContentText {
	/*background-color: red;*/
}

.PageSectionsWrapper {
}

.PageSectionWrapper {
	padding: 20px;
}

	.PageSectionWrapper:nth-child(odd) {
		background-color: #DEDBD1;
		color: #464542;
	}

		.PageSectionWrapper:nth-child(odd) .Callout {
			background-color: #464542;
			color: #DEDBD1;
		}

		.PageSectionWrapper:nth-child(odd) a {
			color: #54b3d6;
			filter: brightness(.8);
			text-decoration: none;
		}

			.PageSectionWrapper:nth-child(odd) a:hover {
				filter: brightness(1.0);
				text-decoration: underline;
			}

	.PageSectionWrapper:nth-child(even) {
		background-color: #464542;
		color: #DEDBD1;
	}

		.PageSectionWrapper:nth-child(even) .Callout {
			background-color: #DEDBD1;
			color: #464542;
		}

		.PageSectionWrapper:nth-child(even) a {
			color: #54b3d6;
			/*transition: filter .3s linear;*/
			text-decoration: none;
		}

			.PageSectionWrapper:nth-child(even) a:hover {
				filter: brightness(2);
				text-decoration: underline;
			}

.Callout {
	margin: 50px;
	border-radius: 20px 20px 20px 0;
	padding: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
}


.Callout_Left {
	flex: 0 0 30%;
	width: 30%;
	padding: 25px;
}

	.Callout_Left img {
		width: 100%;
	}

.Callout_Right {
	flex: 0 0 55%;
	width: 55%;
	padding: 25px;
}

	.Callout_Right img {
		width: 100%;
	}

@media only screen and (max-width: 800px) {
	.Callout {
		margin: 25px;
		flex-wrap: wrap;
	}

	.Callout_Left {
		flex: 0 0 100%;
		width: 100%;
		padding: 10px;
	}

		.Callout_Left img {
			width: 95%;
		}

	.Callout_Right {
		flex: 0 0 100%;
		width: 100%;
		padding: 10px;
	}

		.Callout_Right img {
			width: 95%;
		}
}

.PageSection {
	max-width: var(--ContentWidth);
	position: relative;
	margin: auto;
	/*padding: 0 10px 0 10px;*/
	padding: 10px 10px 0 10px;
}

.SectionHeader {
	font-size: 200%;
	font-weight: bold;
	margin-bottom: 25px;
}

.SectionEmphasis {
	font-size: 110%;
	font-weight: bold;
	line-height: 1.3;
}

.SectionContent {
}

.MineralUsesTable {
	margin: auto;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
	background-color: #5E5D59;
	width: 80%;
}

	.MineralUsesTable tr {
		height: 35px;
		margin: 0;
		padding: 0;
	}

	.MineralUsesTable th {
		padding: 25px;
		background-color: #5E5D59;
		color: white;
	}

	.MineralUsesTable tr td {
		padding: 10px 25px 10px 25px;
		background-color: #E0D4C2;
		border-bottom: solid 2px #5E5D59;
		color: #5E5D59;
	}

		.MineralUsesTable tr td:nth-child(1) {
			border-left: solid 2px #5E5D59;
			border-right: solid 2px #5E5D59;
			margin: 0 -2px -2px -2px;
		}

		.MineralUsesTable tr td:nth-child(2) {
			border-right: solid 2px #5E5D59;
			margin: 0 -2px -2px 0;
		}

	.MineralUsesTable tr:last-child td:nth-child(1) {
		border-bottom-left-radius: 10px;
	}

	.MineralUsesTable tr:last-child td:nth-child(2) {
		border-bottom-right-radius: 10px;
	}

@media only screen and (max-width: 550px) {
	.MineralUsesTable {
		width: 100%;
		border: solid 2px #5E5D59;
	}

		.MineralUsesTable th {
			padding: 10px;
			display: block;
			width: 100%;
			border: none;
		}

		.MineralUsesTable td {
			display: block;
			width: 100%;
			padding: 10px;
			border: none;
		}

			.MineralUsesTable td:nth-child(1) {
				font-weight: bold;
			}
}

.MUIcon {
	display: inline-block;
	width: 40px;
	background-image: url('../images/MineralUses-5e5d59.png');
	background-repeat: no-repeat;
	background-size: 35px;
}

	.MUIcon.Missile {
		background-position-y: -10px;
	}

	.MUIcon.Nuclear {
		background-position-y: -38px;
	}

	.MUIcon.Satellite {
		background-position-y: -69px;
	}

	.MUIcon.Goggles {
		background-position-y: -100px;
	}

	.MUIcon.LEDs {
		background-position-y: -130px;
	}

	.MUIcon.Microwaves {
		background-position-y: -162px;
	}

.CIWrapper {
	width: 50%;
	min-width: 450px;
	margin: auto;
	margin-top: 25px;
	text-align: center;
	border: solid 2px #5E5D59;
	border-radius: 10px;
	padding: 10px;
	background-color: #E0D4C2;
}

@media only screen and (max-width: 650px) {
	.CIWrapper {
		width: 100%;
		min-width: 100%;
	}
}

.CImage {
	width: 100%;
}

.Caption {
	text-align: center;
	font-size: 85%;
}

/*
	Footer
*/
.FooterSection {
	background-color: var(--FooterBGColor);
	color: white;
	padding: 30px;
	/*display: none;*/
}

.FooterNav {
	max-width: var(--ContentWidth);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: auto;
}

.FooterNavSection {
	flex: 0 1 auto;
	width: 50%;
	margin-top: 25px;
}

@media (max-width: 750px) {

	.FooterNavSection {
		flex: 0 1 auto;
		width: 100%;
	}
}

.FooterNavSectionHeader {
	margin-bottom: 30px;
}

.FooterNavItem {
	padding-bottom: 10px;
	font-size: 80%;
}

	.FooterNavItem a {
		font-weight: normal;
		color: white;
		text-decoration: none;
	}

		.FooterNavItem a:hover {
			color: yellow;
			text-decoration: underline;
		}

.FooterBottom {
	width: 100%;
	max-width: var(--ContentWidth);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: auto;
	font-size: 80%;
	justify-content: center;
	margin-top: 35px;
}

	.FooterBottom a {
		font-weight: normal;
		color: white;
		text-decoration: none;
	}

		.FooterBottom a:hover {
			color: yellow;
			text-decoration: underline;
		}

.FooterBottomSection {
	margin-bottom: 10px;
}

.SMIcons {
	display: flex;
	flex-direction: row;
}

	.SMIcons .FooterNavItem {
		padding: 10px;
	}

.FacebookNav a {
	color: #4267B2;
}

	.FacebookNav a:hover {
		color: #4267B2;
		filter: brightness(2);
	}

.YouTubeNav a {
	color: #800000;
}

	.YouTubeNav a:hover {
		color: #ff0000;
		filter: brightness(2);
	}

.LinkedInNav a {
	color: #0072B1;
}

	.LinkedInNav a:hover {
		color: #0072B1;
		filter: brightness(2);
	}

.InstagramNav a {
	color: #3F729B;
}

	.InstagramNav a:hover {
		color: #3F729B;
		filter: brightness(2);
	}

.TwitterNav a {
	color: #1DA1F2;
}

	.TwitterNav a:hover {
		color: #1DA1F2;
		filter: brightness(2);
	}

/*
	Cards on Home Page
*/

.BenefitCardsWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.BenefitCardWrapper {
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 25%;
	width: 25%;
}

.BenefitCard {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	border-radius: 10px;
	margin: 15px;
	align-content: stretch;
	height: 100%;
	background-color: #5E5D59;
	color: white;
	overflow: hidden;
	position: relative;
	transition: transform linear 200ms;
}

	.BenefitCard:hover {
		transform: scale(1.05);
	}

.CardImageWrapper {
	flex-shrink: 1;
	flex-grow: 1;
	flex-basis: 60px;
	border-bottom: solid 1px silver;
	font-size: 400%;
	text-align: center;
	padding: 20px;
	color: #DEDBD1;
}

.BenefitCard:hover .CardImageWrapper {
	color: #0D89AB;
	filter: brightness(2);
}

.CardHeaderWrapper {
	flex-shrink: 1;
	flex-grow: 2;
	flex-basis: 50px;
	border-bottom: solid 1px silver;
	font-size: 120%;
	text-align: center;
	padding: 20px;
}

.CardDetailsWrapper {
	flex-shrink: 1;
	flex-grow: 4;
	flex-basis: 120px;
	padding: 20px;
}

@media (max-width: 850px) {

	.BenefitCardWrapper {
		flex-shrink: 0;
		flex-grow: 0;
		flex-basis: 100%;
		width: 100%;
		max-width: 500px;
		margin: auto;
	}

	.BenefitCard {
		margin: 25px;
		height: auto;
	}

	.CardDetailsWrapper {
		flex-basis: 80px;
	}
}

/*
	Action Buttons
*/

.ActionButtons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 80%;
	margin: auto;
}

.ActionButtonWrapper {
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 50%;
	width: 50%;
}

.JuicyButton {
	display: inline-block;
	background-color: var(--NavBackground);
	color: white;
	border: solid 2px var(--NavBackground);
	border-radius: 8px;
	text-decoration: none;
	width: 300px;
	box-shadow: inset 0 0 0 0 var(--NavForeground);
	margin: 25px;
	padding: 25px;
	transition: color .5s linear, box-shadow .3s linear;
	/*transition: color 1s ease-in-out;*/
	font-size: 125%;
}

	.JuicyButton:hover {
		box-shadow: inset 400px 0 0 0 var(--NavForeground);
		color: var(--NavBackground) !important;
		text-decoration: none !important;
	}

@media only screen and (max-width: 1000px) {
	.JuicyButton {
		font-size: 115%;
		width: 200px;
		margin: 10px;
		padding: 10px;
	}
}

@media only screen and (max-width: 800px) {
	.ActionButtonWrapper {
		flex-basis: 100%;
		width: 100%;
	}
}

.Footnote {
	font-size: 80%;
	margin: 5px;
}

.FAQList {
	/* Nothing to see here. */
}

	.FAQList > li {
		font-weight: bold;
		padding: 10px 0 0 10px;
	}

		.FAQList > li > ol {
			font-weight: normal;
			list-style-type: upper-alpha;
		}

			.FAQList > li > ol > li {
				padding: 10px;
			}

.DownloadLink {
	font-size: 150%;
	line-height: 150%;
}

	.DownloadLink a:hover {
		text-decoration: none !important;
	}

@media only screen and (max-width: 600px) {
	.DownloadLink {
		font-size: 120%;
		line-height: 125%;
	}
}

.ReferencesWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.ReferencesInner {
	flex: 1 1 40%;
	width: 40%;
	min-width: 300px;
	padding: 25px;
}

.ApproachWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.ApproachInner {
	flex: 1 1 50%;
	width: 50%;
	min-width: 300px;
}

.Timeline {
	background-color: rgba(0, 0, 0, 0.2); /*#E0D4C2;*/
	/*border-radius: 10px;*/
	overflow: hidden;
}

.TimelineHeader {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

	.TimelineHeader > div {
		flex: 1 1 35%;
		width: 35%;
		font-weight: bold;
		padding: 25px;
		background-color: #5E5D59;
		text-align: center;
	}

.TimelineLine {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-bottom: solid 1px #5E5D59;
	align-items: center;
}

	.TimelineLine > div {
		flex: 1 1 35%;
		width: 35%;
		padding: 10px;
		/*color: #FFD966;*/ /*#5E5D59;*/
		text-align: center;
	}

		.TimelineLine > div:first-child {
			font-weight: bold;
		}

	.TimelineLine:last-child > div {
		background-color: #5E5D59;
		color: white;
	}

.TimelineDetails {
	background-image: linear-gradient(#33150A, black);
	margin-top: -5px;
	padding: 35px;
}

@media only screen and (max-width: 700px) {

	.TimelineHeader {
		flex-wrap: wrap;
	}

		.TimelineHeader > div {
			flex: 1 1 100%;
			width: 100%;
			padding: 10px;
			border-bottom: solid 1px #808080;
		}

	.TimelineLine {
		flex-wrap: wrap;
	}

		.TimelineLine > div {
			flex: 1 1 100%;
			width: 100%;
		}
}

.Larger {
	font-size: 120%;
	font-weight: bold;
	line-height: 1.5;
}

#ChallengeSection1 .IntroImageContainer {
	float: right;
	margin: 0 0 25px 25px;
	width: 60%;
}

	#ChallengeSection1 .IntroImageContainer img {
		width: 100%;
	}

@media only screen and (max-width: 850px) {
	#ChallengeSection1 .IntroImageContainer {
		float: none;
		margin: 25px;
		width: 80%;
	}
}

/*
	Challenge Cards
*/

.ChallengeCardsWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.ChallengeCardWrapper {
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 50%;
	width: 50%;
}

.ChallengeCard {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	border-radius: 10px;
	margin: 15px;
	align-content: stretch;
	height: 100%;
	background-color: #5E5D59;
	color: white;
	overflow: hidden;
	position: relative;
	transition: transform linear 200ms;
}

.ChallengeTitle {
	font-size: 125%;
	font-weight: bold;
	padding: 15px;
	text-align: center;
	border-bottom: solid 1px #808080;
}

.ChallengeDates {
	padding: 15px;
	border-bottom: solid 1px #808080;
}

.ChallengeDate {
	margin-bottom: 0;
}

.DateTitle {
	display: inline-block;
	width: 150px;
}

.Date {
	display: inline-block;
}

.ChallengeDescription {
	padding: 15px;
}

@media (max-width: 875px) {

	.ChallengeCardWrapper {
		flex-shrink: 0;
		flex-grow: 0;
		flex-basis: 100%;
		width: 100%;
		max-width: 500px;
		margin: auto;
	}

	.ChallengeCard {
		margin: 25px;
		height: auto;
	}

	.ChallengeCardDetailsWrapper {
		flex-basis: 80px;
	}
}

@media only screen and (max-width: 550px) {
	.ChallengeDate {
		margin-bottom: 15px;
	}

	.DateTitle {
		display: block;
		width: 150px;
	}

	.Date {
		display: block;
	}
}

.FootnoteIndicator {
	display: inline-block;
	position: relative;
	font-size: 80%;
	top: -4px;
}

.AwardsWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 25px;
	justify-content: space-evenly;
}

.AwardWrapper {
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 25%;
	width: 25%;
	background-color: #5E5D59;
	padding: 25px;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
	color: #e0e0e0;
	font-weight: bold;
	text-align: center;
	font-size: 2vw;
}

.AwardAmount {
	transition: all .3s linear;
}

@media only screen and (min-width: 800px) {
	.AwardWrapper {
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 500px) {
	.AwardWrapper {
		font-size: .7em;
		padding: 10px;
	}
}

.AwardWrapper:hover .AwardAmount {
	transform: scale(1.2);
	filter: brightness(2);
	color: white;
}

.AwardImage img {
	width: 100%;
}

.OurEffortImageWrapper {
	float: right;
	margin: 0 0 25px 25px;
	width: 50%;
}

	.OurEffortImageWrapper img {
		float: right;
		margin-left: 15px;
		width: 100%;
	}

@media only screen and (max-width: 800px) {
	.OurEffortImageWrapper {
		float: none;
		margin: 25px;
		width: 100%;
		max-width: 500px;
		margin: auto;
	}
}

.Leaderboard {
	background-color: rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.LeaderboardHeader {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

	.LeaderboardHeader > div {
		flex: 1 1 49%;
		width: 49%;
		font-weight: bold;
		padding: 15px;
		background-color: #5E5D59;
		text-align: left;
	}


.LeaderboardLine {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-bottom: solid 1px #5E5D59;
	align-items: center;
}

	.LeaderboardLine > div {
		flex: 1 1 49%;
		width: 49%;
		padding: 10px;
		/*color: #FFD966;*/ /*#5E5D59;*/
		text-align: left;
	}

.LeaderboardDetails {
	background-image: linear-gradient(#33150A, black);
	margin-top: -5px;
	padding: 35px;
}

@media only screen and (max-width: 700px) {

	.LeaderboardHeader {
		flex-wrap: wrap;
	}

		.LeaderboardHeader > div {
			flex: 1 1 100%;
			width: 100%;
			padding: 10px;
			border-bottom: solid 1px #808080;
			text-align: center;
		}

	.LeaderboardLine {
		flex-wrap: wrap;
	}

		.LeaderboardLine > div {
			flex: 1 1 100%;
			width: 100%;
			text-align: center;
			padding: 5px;
		}
}

.GoToHomeButton {
	display: inline-block;
	background-color: var(--NavBackground);
	color: white;
	border: solid 2px var(--NavBackground);
	border-radius: 8px;
	text-decoration: none;
	width: 200px;
	box-shadow: inset 0 0 0 0 var(--NavForeground);
	margin: 20px;
	padding: 20px;
	transition: color .2s linear;
	/*transition: color 1s ease-in-out;*/
	font-size: 125%;
}

	.GoToHomeButton:hover {
		color: white !important;
		text-decoration: none !important;
	}

.FAQQA {
	margin-top: 35px;
	margin-bottom: 35px;
}

.FAQQ {
	margin-top: 15px;
	margin-bottom: 15px;
}

.FAQA {
	margin-top: 15px;
	margin-bottom: 15px;
}





.YTVid {
	height: 473px;
	width: 840px;
}

@media only screen and (max-width: 1090px) {
	.YTVid {
		height: 394px;
		width: 700px;
	}
}
@media only screen and (max-width: 950px) {
	.YTVid {
		height: 315px;
		width: 560px;
	}
}
@media only screen and (max-width: 800px) {
	.YTVid {
		height: 252px;
		width: 448px;
	}
}
@media only screen and (max-width: 600px) {
	.YTVid {
		height: 158px;
		width: 280px;
	}
}
