/*===========================================
	FONTS
===========================================*/
@font-face {
	font-family: 'Raleway-Thin';
		src: url('/wsm-fonts/Raleway-Thin.ttf') format('truetype');
}
@font-face {
	font-family: 'Raleway-Regular';
		src: url('/wsm-fonts/Raleway-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Raleway-ExtraBold';
		src: url('/wsm-fonts/Raleway-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Font-Awesome';
		src: url('/wsm-plugins/FontAwesomePro5.13.0/webfonts/fa-regular-400.ttf') format('truetype');
}


/*===========================================
	STANDARD ELEMENTS
===========================================*/
* {
	margin: 0; 
	padding: 0;
}

body {
	font-family: 'Raleway-Regular',sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
	color: #666;
	background-color: #FFF;
	padding: 0;
	margin: 0;	
}

html, body {
	height: 100%;
}


/*===========================================
	HEADERS
===========================================*/
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat-Bold',sans-serif;
	margin: 0;
	padding: 0;
}
	h1 {
		font-size: 36px;
		padding-bottom: 10px;
		line-height: 1em;
		font-weight: 500;
	}

	h2 {
		font-family: 'Raleway-ExtraBold';
		text-align: left;
		font-size: 28px;
		padding-bottom: 10px;
		line-height: 1.4em;
		font-weight: 700;
		color: #393939;
	}
		h2 span.ThinText{
			font-family: 'Raleway-Thin';
			font-weight: 700;
			/*color: #929292;*/
			color: #ffde00;
		}
		.Underline h2:after {
			content: "";
			display: block;
			position: relative;
			height: 4px;
			width: 60px;
			background-color: #393939;
			bottom: -20px;
			margin-bottom: 40px;
		}

	h3 {
		font-size: 14px;
		font-weight: 400;
		line-height: 1.33;
		
	}
	h4 {
		font-size: 1.1em;
		line-height: 1.5em;
	}
	

/*===========================================
	PARAGRAPHS & TEXT
===========================================*/
p {
	text-align: left;
    font-weight: 300;
    line-height: 1.57;
    padding-bottom: 20px;
}
	p:last-child {
		padding-bottom: 0;	
	}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

	.BulletList ul {
		margin: 0 0 0 30px;
		padding: 0;
		
	}
		.BulletList ul li {
			font-size: 14px;
			font-weight: 300;
			line-height: 1.57;
			padding-bottom: 10px;
			list-style-type: disc;
		}
	
	.SmallText{
		font-size: 0.8em;
		line-height: 1.4em;
		text-align: left
	}
	.BoldText {
		font-weight: 700;
	}
	.ItalicText {
		font-style: italic;
	}
	.StrikeThrough {
		text-decoration: line-through;
	}
	
	
/*===========================================
	LIST ITEM BOX
===========================================*/
.ListItemBox {
	width: 100%;
	margin-bottom: 10px;
}
	.ListItemBox .Icon {
		float: left;
		width: 40px;
		Margin-right: 20px;
		font-size: 32px;
		text-align: center;
	}
		.ListItemBox .Icon i {
			padding: 5px 0;
		}
	.ListItemBox .Content {
		float: left;
		width: calc(100% - 60px);
	}
		.ListItemBox .Content h2 {
			font-size: 1.25em;
			margin-bottom: 0px;
		}
		.ListItemBox .Content p {
			font-size: 1em;
		}
	
/*===========================================
	MARGINS & DISPLAY
===========================================*/
.HideContiner, .HideItem {
    display: none;
}


/*===========================================
	HYPERLINKS
===========================================*/
a:link, a:active, a:visited {
	text-decoration: none;
	color: #222;
	transition: color 0.3s linear;
	-webkit-transition: color 0.3s linear;
	-moz-transition: color 0.3s linear;
}
	a:hover {
		text-decoration: underline;
	}


/*===========================================
	BUTTONS
===========================================*/
a.ContentButton,
span.ContentButton {
	display: inline-block;
	margin-top: 20px;
	text-align: center;
	background: #ffde00;
	border: 1px solid #ffde00;
	padding: 8px 20px;
	color: #393939;
	font-weight: 400;
	transition: all .3s;
	text-decoration: none;
	cursor: pointer;
}
	a.ContentButton:hover,
	span.ContentButton:hover {
		background: #393939;
		border: 1px solid #393939;
		color: #FFF;
	}
	
	a.ContentButton.Alternate,
	span.ContentButton.Alternate {
		background: #720000;
		border: 1px solid #720000;
		color: #FFF;
		text-decoration: none;
	}
		a.ContentButton.Alternate:hover,
		span.ContentButton.Alternate:hover {
			background: #670101;
			border: 1px solid #670101;
		}


a.ContactButton,
span.ContactButton {
	display: inline-block;
    margin-top: 20px;
    text-align: center;
    background: none;
    border: 2px solid #ffde00;
    padding: 5px 20px;
    color: #ffde00;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .3s;
    text-decoration: none;
    cursor: pointer;
}
	a.ContactButton:hover,
	span.ContactButton:hover {
		background: #ffde00;
		color: #FFF;
		text-decoration: none;
	}

	
/*===========================================
	IMAGES
===========================================*/
img {
	max-width: 100%;
	height: auto;
}
div {
	outline: none;
}

/*===========================================
	CLEAR FIXES
===========================================*/
.ClearFix:before, .ClearFix:after { 
	content: ""; 
	display: table; 
}
.ClearFix:after {
	clear: both; 
}
.ClearFix { 
	*zoom: 1; 
}


/*===========================================
	TEXT STYLES
===========================================*/
.TextLeft {
	text-align: left;
}
.TextCenter {
	text-align: center;
}
.TextRight {
	text-align: right;
}
.TextJustify {
	text-align: justify;
}
.Uppercase {
	text-transform: uppercase;
}
.TextStrong {
	font-weight: bold;
}


/*===========================================
	MARGINS
===========================================*/
.MarginBottom_20 {
	margin-bottom: 20px;
}

.Padding_200 {
	padding: 200px 0;
}
.PaddingTopBottom_10 {
	padding: 10px 0;
}
.Padding_50 {
	padding: 50px;
}
.PaddingTop_50 {
	padding-top: 50px;
}
.PaddingBottom_50 {
	padding-bottom: 50px;
}
	.PaddingTopBottom_50 {
		padding: 50px 0;
	}
.PaddingBottom {
	padding: 0 0 20px 0;
}

.BorderTopBottom {
	border-top: 5px solid #fab73c;
	border-bottom: 5px solid #fab73c;
}

.BorderBottom {
	border-bottom: 5px solid #fab73c;
}


/*===========================================
	COLOR CHART
===========================================*/
.GreenText {color: #050e35}
.GreyText {color: #DEDEDE;}
.RedText {color: #720000;}
.WhiteText {color: #FFF;}
.YellowText {color: #FFBA00;}
.BlueText {color: #28406D;}
.LightGreenText {color: #B4DF6A;}


.WhiteBackground {background: #FFFFFF;}
.LightGreyBackground {background: #eeeeee;}
.GreyBackground {background: #F7F8FA;}
.GreenBackground {background: #050e35;}
.DarkGreyBackground {background: #CCC;}

	
	
/*===========================================
	COOKIE POLICY
===========================================*/
.CookieBackgroundPopup {
	z-index: 9999;
	position: fixed;
	left: 0;
	right: 0%;
	width: 100%;
	height: 100%;
	display: block;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}

	.CookieBackgroundPopup .CookieBannerPopup {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		padding: 30px 0;
		display: block;
		align-items: center;
		justify-content: space-between;
		background-color: #626262;
		font-size: 0.8em;
	}
		.CookieBackgroundPopup .FlexContainer .CookieContent_FlexItem {
			flex-basis: calc(100% - 450px);
		}
		.CookieBackgroundPopup .FlexContainer .CookieContentAction_FlexItem {
			flex-basis: 350px;
			margin-left: 50px;
		}
		
		.CookieBackgroundPopup .CookieBannerPopup p {
			color: #FFF;
		}
		.CookieBackgroundPopup .CookieBannerPopup a {
			float: left;
			padding: 10px 0;
			color: #FFF;
			text-decoration: underline;
			transition: all .3s;
			margin-right: 20px;
		}
			.CookieBackgroundPopup .CookieBannerPopup a:hover {
				color: #DEDEDE;
			}
		
			.CookieBackgroundPopup .CookieBannerPopup a.CookieButton {
				float: left;
				padding: 10px 20px;
				color: #212121;
				border: 0;
				background-color: #ffde00;
				transition: all .3s;
				text-decoration: none;
				width: 100px;
				text-align: center;
				margin-right: 20px;
			}
				.CookieBackgroundPopup .CookieBannerPopup a.CookieButton:hover {
					background-color: #393939;
					color: #FFF;
					margin-right: 0;
				}


/*===========================================
	UNDER CONSTRUCTION
===========================================*/
.UnderConstruction {
	margin: 0 auto;
	margin-top: 100px;
	width: 500px;
	color: #000;
	position: relative;
	text-align: left;
	overflow: auto;
	z-index: 2;	
}
.UnderConstruction img{
	margin-bottom: 50px;
}
.UnderConstruction h2 {
	text-align: center;
	margin-bottom: 10px;
}
.UnderConstruction p {
	text-align: center;
	margin-bottom: 10px;
}
	.UnderConstruction a:link, .UnderConstruction a:active, .UnderConstruction a:visited {
		text-decoration: none;
		color: #000;
	}
	.UnderConstruction a:hover {
		text-decoration: underline;
	}


/*===========================================
	FRAME CONTAINERS
===========================================*/
.FullWidthContainer {
	/*position: relative;*/
	max-width: 100%;
}
.CenterMaxContainer {
	position: relative;
	margin: 0 auto;
	max-width: calc(100% - 100px);
	padding: 0 50px;
}
.CenterContainer {
	position: relative;
	margin: 0 auto;
	max-width: 1176px;
	padding: 0 10px;
}

.ContentContainer_VMiddle {
	margin: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;			
	height: 100%;
	text-align: left;
	width: 100%;
}
	.ContentContainer_VMiddle.CenterContent {
		align-items: center;
	}

.HiddenSection {
	display: none;
}


/*===========================================
	CONTENT CONTAINERS
===========================================*/
.CenteredContentHolder {
	width: calc(100% - 40px);
	padding: 20px;
}
	.CenteredContentHolder .SubHeading p {
		color: #393939;	
		font-weight: 700;
		padding-bottom: 20px;
	}
	
	.CenteredContentHolder .CompanyLogoThumbs {
	
	}
		.CenteredContentHolder .CompanyLogoThumbs li {
			float: left;
			width: calc(25% - 20px);
			padding: 0 10px;
			text-align: centerl
		}
		
		
	.APIConnections {
	}	
		.APIConnections .DisplayImage {
			padding: 20px 50px 0 50px;
		}
	

/*===========================================
	FIXED SIZED CONTAINERS
===========================================*/
.OneHalf_Margin {
	float: left;
	width: 49%;
	margin-right: 2%;
}
	.OneHalf_Margin:nth-child(2n), .OneHalf_Margin:last-child {
		margin-right: 0%;
	}
.OneHalf_NoMargin {
	float: left;
	width: 50%;
}


.OneThird_Margin {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 10px;
}
	.OneThird_Margin:nth-child(3n) {
		float: left;
		margin-right: 0%;
	}
	
.OneQuarter_Margin {
	float: left;
	width: 24.25%;
	margin: 0 1% 0 0;
}
	.OneQuarter_Margin:nth-child(4n), .OneQuarter_Margin:last-child {
		margin: 0;
	}
	
.OneFifth_Margin {
	float: left;
	width: 19.2%;
	margin: 0 1% 10px 0;
}
	.OneFifth_Margin:nth-child(5n), .OneFifth_Margin:last-child {
		margin: 0 0 10px 0;
	}


/*===========================================
	FLEX CONTAINERS
===========================================*/
.FlexContainer {
	display: flex;
	flex-wrap: wrap;
}	
	
	/*	HALFS 	*/
	.FlexContainer .FullWidth_FlexItem {
		flex-basis: 100%;
	}
	
	/*	HALFS 	*/
	.FlexContainer .OneHalf_FlexItem {
		flex-basis: 50%;
	}
	
	.FlexContainer .OneHalfWideMargin_FlexItem {
		flex-basis: 49.5%;
		margin-right: 1%;
	}
		.FlexContainer .OneHalfWideMargin_FlexItem:nth-child(2n), 
		.FlexContainer .OneHalfWideMargin_FlexItem:last-child {
			margin-right: 0%;
		}


	/*	THIRDS 	*/	
	.FlexContainer .OneThird_FlexItem {
		flex-basis: 33.33%;
	}
		.FlexContainer .OneThird_FlexItem:nth-child(3n),
		.FlexContainer .OneThird_FlexItem:last-child {
			flex-basis: 33.34%;
		}
	
	.FlexContainer .OneThirdMargin_FlexItem {
		flex-basis: 32.66%;
		margin: 0 1% 10px 0;
	}
		.FlexContainer .OneThirdMargin_FlexItem:nth-child(3n),
		.FlexContainer .OneThirdMargin_FlexItem:last-child {
			flex-basis: 32.68%;
			margin: 0 0 10px 0;
		}
		
		
	/*	QUARTERS 	*/
	.FlexContainer .OneQuarter_FlexItem {
		flex-basis: 25%;
	}
	
	.FlexContainer .OneQuarterMargin_FlexItem {
		flex-basis: 24.25%;
		margin: 0 1% 0 0;
	}
		.FlexContainer .OneQuarterMargin_FlexItem:nth-child(4n),
		.FlexContainer .OneQuarterMargin_FlexItem:last-child {
			margin: 0 0 0 0;
		}
		
		
	/*	FIFTHS 	*/
	.FlexContainer .OneFifthMargin_FlexItem {
		flex-basis: 19.2%;
		margin: 0 1% 10px 0;
	}
		.FlexContainer .OneFifthMargin_FlexItem:nth-child(5n),
		.FlexContainer .OneFifthMargin_FlexItem:last-child {
			margin: 0 0 10px 0;
		}
			
		
/*===========================================
	PAGE HEADER
===========================================*/
.PageContentManagementContainer {

}
	.PageContentManagementContainer .PageContentManagement {
		background: #222222;
	}
		.PageContentManagementContainer .PageContentManagement ul {
			float: right
		}
			.PageContentManagementContainer .PageContentManagement ul li {
				float: left;
				padding: 5px 10px;
			}
				.PageContentManagementContainer .PageContentManagement ul li a {
					font-size: 0.9em;
					color: #FFF;
				}
				.PageContentManagementContainer .PageContentManagement ul li a:hover {
					text-decoration: none;
				}
					.PageContentManagementContainer .PageContentManagement ul li a i {
						margin-right: 8px;
					}
					
					
/*===========================================
	PAGE HEADER
===========================================*/
.PageHeaderContainer {
	/*background: #F7F8FA;	*/
}
	.PageHeaderContainer .HeaderBar {
		background: #393939;	
	}
		.PageHeaderContainer .HeaderBar .ContentLeft {
			float: left;	
		}
		.PageHeaderContainer .HeaderBar .ContentRight {
			float: right;
		}
		
		.PageHeaderContainer .HeaderBar p {
			color: #FFF;
			padding: 4px 0;			
			font-size: 0.9em;
		}
			.PageHeaderContainer .HeaderBar a {
				color: #FFF;
			}
		.PageHeaderContainer .HeaderBar ul {
			float: right
		}
			.PageHeaderContainer .HeaderBar ul li {
				float: left;
				padding: 5px 10px;
			}
				.PageHeaderContainer .HeaderBar ul li a {
					font-size: 0.9em;
					color: #FFF;
				}
				.PageHeaderContainer .HeaderBar ul li a:hover {
					text-decoration: none;
				}
					.PageHeaderContainer .HeaderBar ul li a i {
						margin-right: 8px;
					}
		
	
	.PageHeaderContainer .PageHeader {
	}
	.PageHeaderContainer .CompanyLogo {
		float: left;
		padding: 15px 0;
	}
		.PageHeaderContainer .CompanyLogo img {
			max-height: 60px;
		}
		
		.PageHeaderContainer .ContentRight {
			float: right;
		}
		
		
/*===========================================
	PAGE HEADER
===========================================*/
.PageImageContainer {
	position: relative;
}
	.PageImageColorOverlay {
		background-color: rgba(36,69,46, 0.3);
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}		
		
	/*	PAGE HEADER	*/
	.PageImageContainer .PageHeaderContainer {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: rgba(10,10,10,0.5)!important;
	}
		.PageImageContainer .PageHeaderContainer .PageHeader {
			height: 90px;
		}
			.PageImageContainer .PageHeaderContainer .PageHeader .LogoContainer {
				float: left;
				padding: 16px 0;
				margin-right: 20px;
			}
				.PageImageContainer .PageHeaderContainer .PageHeader .LogoContainer img {
					float: left;
					height: 58px
				}
	
	
	/*	PAGE HERO CONTENT	*/
	.PageImageContainer .HeroContent {
		height: 100%;
		text-align: center;
		max-width: 640px;
		background-color: rgba(255, 255, 255, 0.85);
		
	}	
		.PageImageContainer .HeroContentPadding {
			padding: 50px;
		}
		.PageImageContainer .HeroContent h2 {
			font-size: 3.5em;
			line-height: 1.2;
			margin: 0 0 20px 0;
		}
		.PageImageContainer .HeroContent h3 {
			font-size: 2em;
			line-height: 1.1em;
			margin: 0 0 50px 0;;
		}
		.PageImageContainer .HeroContent p {
			text-align: left;
			font-size: 1em;
			padding: 0 0 20px 0;
			margin: 0;
		}
			.PageImageContainer .HeroContent p:last-child {
				padding: 0;
			}
		.PageImageContainer .HeroContent a.HeroLink {
			display: block;
			padding: 15px 15px 15px 15px;
			color: #FFF;
			background-color: #3b72a8;
			transition: all .3s;
			text-decoration: none;
		}
			/*.PageImageContainer .HeroContent a.HeroLink:before {
				font-family: Font-Awesome;
				content: "\f724";
				margin-right: 10px;
				font-size: 1.2em;
				color: #FFF;
			}*/
			
			
			
			.PageImageContainer .HeroContent a:hover {
				opacity: 0.8;
				text-decoration: none;
			}
			
			
	/*	PAGE IMAGE DIV CONTENT	*/		
	.PageImageContainer .FullImageDivContent {
		margin: 0 auto;
		height: 100%;
		max-width: 800px;
	}
		
		.PageImageContainer .FullImageDivContent h2 {
			text-align: center;
			font-weight: 700;
			text-transform: uppercase;
			font-size: 40px;
			padding-bottom: 10px;
			line-height: 1em;
			color: #FFF;
			text-shadow: 5px 5px 16px rgb(0 0 0 / 60%);
		}
		.PageImageContainer .FullImageDivContent h3 {
			text-align: center;
			color: #FFF;
			font-size: 2.5em;
			line-height: 1.5em;
			margin: 0;
		}
		.PageImageContainer .FullImageDivContent p {
			text-align: center;
			color: #FFF;
			text-shadow: 5px 5px 16px rgb(0 0 0 / 60%);
			font-size: 1.25em;
			padding: 0 0 20px 0;
			margin: 0;
		}
			.PageImageContainer .FullImageDivContent a.ContentButton {
			display: inline-block;
				margin-top: 20px;
				text-align: center;
				font-size: 1em;
				letter-spacing: 1px;
				border: 2px solid #FFF;
				padding: 15px 15px;
				color: #FFF;
				text-transform: uppercase;
				font-weight: 700;
				transition: all .3s;
				text-decoration: none;
			}
				.PageImageContainer .FullImageDivContent a.ContentButton:hover {
					color: #FFF;
					border: 2px solid #8a6a2e;
					background: #fab73c;
					text-decoration: none;
				}
				

/*===========================================
	HEADER CONTROLS
===========================================*/
.HeaderControl {
	margin-bottom: 50px;
}

	.HeaderControl .HeaderTitle_FlexItem {
		height: 50px;
		line-height: 50px;
		flex-grow: 1;
	}
		.HeaderControl .HeaderTitle_FlexItem h2 {
			color: #050e35;
		}
		
	.HeaderControl .HeaderControl_FlexItem {
		margin: 0 0 0 20px;
		text-align: right;
	}
		.HeaderControl .HeaderControl_FlexItem ul {
			border-left: 1px solid #DEDEDE;
		}
			.HeaderControl .HeaderControl_FlexItem ul li {
				border-top: 1px solid #DEDEDE;
				border-right: 1px solid #DEDEDE;
				border-bottom: 1px solid #DEDEDE;
				height: 48px;
				width: 48px;
				text-align: center;
			}
				.HeaderControl .HeaderControl_FlexItem ul li a i {
					line-height: 48px;
					font-size: 2em;
					color: #050e35;
				}
				
				



/*===========================================
	CONTACT
===========================================*/
.Contact .OneHalfMargin_FlexItem {
	flex-basis: 46%;
	margin-right: 8%;
}
	.Contact .OneHalfMargin_FlexItem:nth-child(2n), 
	.Contact .OneHalfMargin_FlexItem:last-child {
		margin-right: 0%;
	}
.ContactInformation h3 {
	font-weight: 700;
	margin: 0 5px 0 0;
	font-size: 14px;
	line-height: 1.57;
}

.ContactInformation p {
	margin: 0 0 2em 0;
}
	
.ContactInformation .ContactForm .NameFields .OneHalf {
	float: left;
	width: 49%;
	margin-right: 2%;
}
	.ContactInformation .ContactForm .NameFields .OneHalf.Last {
		margin-right: 0%;
	}


.Contact h2{
	text-align: left;
}
.Contact h3 {
	padding-bottom: 10px;
}
.Contact label {
	color: #666;
	display: block;
	text-align: left;
	width: 100%;
	font-size: 0.9em;
	margin-bottom: 0px;
}
.Contact input, .Contact textarea {
	height: 50px;
	border: 1px solid #BFBFBF;
	background: #F9F9F9;
	width: 100%;
	font-size: 14px;
	padding: 0;
	padding-left: 15px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	margin: 5px 0 10px 0;
}
	.Contact input:focus, .Contact textarea:focus {
		border-color: #CCC;
		outline: 0;
	}
	.Contact textarea {
		height: 100px;
	}
	
	.Contact input.ValidateError, 
	.Contact textarea.ValidateError {
		border: 1px solid #d94948;
	}
	
	.Contact .LargeDisplayButton {
		margin-top: 10px;
	}
		.Contact .LargeDisplayButton span {
			padding: 15px 15px 15px 15px;
			color: #ffffff;
			background-color: #013a71;
			transition: all .3s;
			text-decoration: none;
			cursor: pointer;
		}
			.Contact .LargeDisplayButton span:hover {
				background-color: #F3761A;
			}

/*=========================================== 
	FOOTER
===========================================*/
.PageFooterContainer {
	color: #FFF;
	background: #393939;
	background-position: center; 
	background-size: cover;
}
	.PageFooterContainer .FooterInformation {
		margin: 30px 0;
	}
	.PageFooterContainer .FooterInformation p {
		color: #BBB;
		text-align: center;
		padding-bottom: 10px;
	}
		.PageFooterContainer .FooterInformation p.Copyright {
			font-size: 0.8em;
			color: #888;
		}
		.PageFooterContainer .FooterInformation p:last-child {
			padding-bottom: 0;
		}
	.PageFooterContainer .FooterInformation ul {
		text-align: center;
		padding-bottom: 20px;
	}
		.PageFooterContainer .FooterInformation ul li {
			display: inline-block;
			padding: 0 10px 0 0;
		}
			.PageFooterContainer .FooterInformation ul li a {
				font-size: 0.9em;
				color: #BBB;
			}
				.PageFooterContainer .FooterInformation ul li a:hover {
					color: #888;
				}