/* =====================================
    CSS Custom Properties (Theming)
   ===================================== */

:root {
	--color-primary: #2a96ba;
	--color-primary-hover: #1d7a9a;
	--color-text: #707276;
	--color-text-dark: #333333;
	--color-text-heading: #2a96ba;
	--color-text-light: #565656;
	--color-link: #2a96ba;
	--color-link-hover: inherit;
	--color-bg: #eeeeee;
	--color-bg-white: #ffffff;
	--color-bg-footer: #666666;
	--color-bg-preheader: #7b7575;
	--color-border: #E0E0E0;
	--color-border-light: #e2e3e4;
	--color-error: #FF0000;
	--color-success: #4caf50;
	--color-warning: #ff9800;

	--font-family: Arial, Helvetica, sans-serif;
	--font-size-base: 16px;
	--font-size-small: 14px;
	--font-size-xs: 12px;
	--font-size-large: 1.2em;
	--line-height-base: 26px;
	--line-height-article: 1.4em;

	--spacing-xs: 5px;
	--spacing-sm: 10px;
	--spacing-md: 20px;
	--spacing-lg: 30px;

	--header-height: 150px;
	--wrapper-max-width: 1026px;
	--breakpoint-sm: 480px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 1024px;
	--breakpoint-xl: 1140px;

	--transition-speed: 0.25s;
	--transition-ease: ease-in-out;
}

/* =====================================
    ALL: Commonly Used Standard Elements
   ===================================== */

.Clear {
	clear:both;
}
.ClearLeft {
	clear:left;
}
.ClearRight {
	clear:both;
}
.Left {
	float:left;
	width:auto; /* floating elements need to have a width declared */
}
.Right {
	float:right;
	width:auto; /* floating elements need to have a width declared */
}
.PictureLeft {
	float:left;
	width:auto; /* floating elements need to have a width declared */
	margin:3px 15px 10px 0;
}
.PictureCenter {
	display:block;
	clear:both;
	margin:0 auto 15px auto;
}
.PictureRight {
	float:right;
	width:auto; /* floating elements need to have a width declared */
	margin:3px 0 10px 15px;
}
.PictureLeftBordered {
	border:1px solid #E0E0E0;
	float:left;
	width:auto; /* floating elements need to have a width declared */
	margin:3px 15px 10px 0;
}
.PictureCenterBordered {
	display:block;
	clear:both;
	margin:3px auto 15px auto;
	border:1px solid #E0E0E0;
}
.PictureRightBordered {
	border:1px solid #E0E0E0;
	float:right;
	width:auto; /* floating elements need to have a width declared */
	margin:3px 0 10px 15px;
}
.PictureBordered {
	border:1px solid #E0E0E0;
}
.TableLeft {
	float:left;
	width:40%;
	margin:3px 10px 5px 0;
}
.TableRight {
	float:right;
	width:40%;
	margin:3px 0 5px 10px;
}
.TextLeft {	text-align:left;
}
.TextRight {
	text-align:right;
}
.TextCenter {
	text-align:center;
}
#Container .TextLeft {	text-align:left;
}
#Container .TextRight {
	text-align:right;
}
#Container .TextCenter {
	text-align:center;
}
.First {
	margin-top:0;
}
.NoWrap {
	white-space:nowrap;
}
.Required {
	color:#FF0000;
	font-weight:bold;
}
.Bordered {
	border:1px solid #E0E0E0;
}


/* ===================
    ALL: Base Theme
   =================== */

body {
	background:#eeeeee;
	color:#707276;
	/*
	background: url(/images/backgrounds/background3.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
background-size: cover;
	*/
	word-wrap: break-word;
}

::-moz-selection {
	color:#000000;
    background: #ABFF8E;
    text-shadow: none;
}

::selection {
	color:#000000;
    background: #ABFF8E;
    text-shadow: none;
}

menu,
ol,
ul {
	margin: 0;
    padding: 0;
	box-sizing: border-box !important;	
}

a,
a:link,
a:visited,
a:active,
a:hover
{
	color:#2a96ba;
	text-decoration:none;
}

a:hover
{
	color:inherit;
}

/* ===================
    ALL: Base Theme
   =================== */

.header-container {
	/*
	border-bottom: 9px solid #5C8A2B;
	*/
	border-bottom:none;
}

.preheader {
	background-color: #7b7575;
	color: #ffffff;
	/*
	min-height: 35px;
	*/
	max-height: 500px;
	padding: 6px 20px;
	font-size:14px;
	/*
	transition: all 0.25s ease-in-out;
	*/
}
.preheader.hide {
	height: 0;
	max-height: 0;
	min-height: 0;
	padding:0;
	opacity: 0;
	transition: all 0.25s ease-in-out;
}
.preheader a {
	color: #ffffff !important;
}
.preheader a:hover {
	text-decoration:underline !important;
}
.preheader a#preheader-close {
	float:right;
	cursor:pointer;
	text-decoration:none;
	font-size:16px;
}

.logo-container {
	width:auto;
	margin:5px;
}

.logo-container a {
	color:#5c5c5c;
}

.logo-container img#HeaderLogo {
	display:block;
	float:left;
	max-width:100%;
	height:auto;
	max-height:66px;
	margin:0;
}

.headerright-container {
	margin:10px;
	text-align:right;
	float:right;
}
.nav-container {
	display:block;
	left:0;
	bottom:0;
}
.headerright-container #ContactDetails {
	font-weight:bold;
	font-size:1.2em;
}
.headerright-container #ContactDetails a {
	text-decoration:none;
	color:#707276;
}
.headerright-container #SearchResultsContainer {
	position:absolute;
	background-color:#FFFFFF;
	top:35px;
	right:0;
	text-align:left;
	z-index:999;
	max-height:300px;
	overflow:auto;
	width:400px;
	max-width:100%;
box-shadow: 0 3px 12px #aaa;
}
.headerright-container #SearchResultsContainer p {
	font-size:14px;
	line-height:16px;
	margin:0;
	padding:4px 10px;
	color:#333333;
	background-color:#FFFFFF;
	border-bottom:1px solid #EEE;
}
.headerright-container #SearchResultsContainer a {
	display:block;
	font-size:14px;
	line-height:16px;
	padding:4px 10px;
	color:#333333;
	background-color:#FFFFFF;
	border-left:1px solid #EEE;
	border-right:1px solid #EEE;
	border-bottom:1px solid #EEE;
}
.headerright-container #SearchResultsContainer a:hover {
	display:block;
	color:#FFFFFF;
	background-color:#333333;
}
.headerright-container #SearchResultsContainer a:first-child {
	border-top:1px solid #EEE;
}
.headerright-container #SearchResultsContainer a:last-child {
	border-bottom:1px solid #EEE;
}
.main {
	background-color:#FFFFFF;
	background-color:rgba(255,255,255,0.9);
}

.main article {
	background-color:#ffffff;
	/*
	background-image:url(/images/page/PageContentBG.jpg);
	background-position:0 -1px;
	background-repeat:repeat-x;
	*/
	font-size:14px;
	line-height:1.4em;
	padding:5px 10px;
	margin-bottom:20px;
	text-align:left;
	max-width:100%;
	min-height:300px;
	overflow:auto;
	float: none;
	width: auto;
}
.main article a {
	text-decoration:underline;
}

#subheader {
	position:relative;
	font-size:0.8em;
	vertical-align:middle;
	margin-bottom:10px;
	flex: 1 1 100%;
}
#subheader a,
#subheader a:link,
#subheader a:visited,
#subheader a:active,
#subheader a:hover,
#subfooter a,
#subfooter a:link,
#subfooter a:visited,
#subfooter a:active,
#subfooter a:hover
{
	color:inherit;
	text-decoration:none;
}
#subheader a:hover,
#subfooter a:hover
{
	color:#2a96ba;
}
#subheader a.selected,
#subfooter a.selected
{
	color:#2a96ba;
	font-weight:bold;
}
#Breadcrumbs {
	float:left;
	margin-right:2em;
}
#Breadcrumbs ul {
	display:inline-block;
	margin:0;
}
#Breadcrumbs li {
	display:inline;
	list-style-type:none;
	margin:0;
}
#LocaleSetting {
	float:left;	text-align:left;
}
#subfooter {
	position:relative;
	clear:both;
	margin:1em 0 0 0;
	font-size:0.8em;
	padding:0 1em;
	border: 1px solid rgb(219, 221, 215);
	background: rgb(255,255,255); /* Old browsers */
background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(253,253,253,1) 45%,rgba(245,245,243,1) 75%,rgba(245,245,243,1) 80%,rgba(239,239,237,1) 96%,rgba(241,241,239,1) 98%,rgba(254,254,252,1) 100%); /* W3C */
}
div#subfooter div.Left {
	margin:1em 0;
}
div#subfooter div#Share {
	height:32px;
	display:inline-block;
	vertical-align:middle;
	line-height:32px;
}
div#subfooter div#AddThis {
	height:16px;
	display:inline-block;
	vertical-align:middle;
	line-height:16px;
}
div#subfooter div#AddThis div.google_plusone_iframe_widget {
	width:25px !important;
}
div#subfooter div#AddThis img {
	vertical-align:middle;
}
div#subfooter ul {
	list-style:none;
	text-align:right;
}
div#subfooter ul li {
	display:inline;
	margin:0 0.3em;
}
div#subfooter ul li:last-child {
	margin-right:0;
}
/*
div#AssociatedSocialMediaLinks {
	position:absolute;
	top:10px;
	left:-40px;
	width:40px;
	height:auto;
	overflow:hidden;
	z-index:9999;
}
div#AssociatedSocialMediaLinks a {
	display:block;
	position:relative;
	width:40px;
	height:36px;
	overflow:hidden;
	margin-bottom:3px;
	right:-12px;
	opacity:0.40;
}
div#AssociatedSocialMediaLinks a img {
	width:40px;
	height:40px;
}
div#AssociatedSiteFlags {
	position:absolute;
	top:10px;
	right:-32px;
	width:32px;
	height:auto;
	overflow:hidden;
	z-index:9999;
}
div#AssociatedSiteFlags a {
	display:block;
	position:relative;
	width:32px;
	height:27px;
	overflow:hidden;
	margin-bottom:3px;
	left:-8px;
	opacity:0.40;
}
*/


.footer-container {
	/*
    border-top: 20px solid #5C8A2B;
	*/
	border-top:none;
}

.header-container,
.footer-container {
    background: inherit;
}

.footer-container {
	margin:0;
}

.footer-container footer {
	background: #666666;
	font-size: 12px;
	line-height:15px;
}
.footer-container footer a {
	color:#ffffff;
	text-decoration:none;
}
.footer-container footer a:hover {
	text-decoration:underline;
}
.footer-container footer .FooterLogo {
	float:left;
	text-align:left;
	width:70px;
	margin:0 0 20px 10px;
	box-sizing:border-box;
	position: relative;
}
.footer-container footer .FooterLogo img {
	width:70px;
	height:auto;
	float:left;
	margin-right:10px;
}
.footer-container footer .HexagonAttrib {
	float:right;
	font-size: 11px;
	text-align:center;
	width:auto;
	box-sizing:border-box;
	position: relative;
	margin:10px;
}
.footer-container footer .LinksFooter {
	text-align:center;
	width:auto;
	margin:10px;
	box-sizing:border-box;
	position: relative;
	clear: both;
}
.footer-container footer ul {
	display:inline-block;
	list-style-type:none;
	margin:0;
}
.footer-container footer ul li {
	display:inline-block;
}
.footer-container footer .LinksFooter li {
	display:inline;
	margin:0;
	font-weight:bold;
	border-left: 1px solid #fff;	
}
.footer-container footer .LinksFooter li:first-child {
	border-left: none;	
}
.footer-container footer .LinksFooter li a {
	display:inline-block;
	margin:0 7px 0 7px;
	color:#ffffff;
}
.footer-container footer .LinksFooter li a:hover {
	text-decoration:none;
	color:#7fc2d4;
}
.footer-container footer .Social {
	text-align:center;
	box-sizing:border-box;
	margin-right:10px;
	position: relative;
}
.footer-container footer .Social p {
	display:inline-block;
	padding:11px 0;
	vertical-align:middle;
}
.footer-container footer .Social ul {
	display:inline-block;
	vertical-align:middle;
}
.footer-container footer .Social ul li {
	padding: 0 4px;
}
.footer-container footer .Social a.socialv1 {
	display:inline-block;
    margin: 0 -2px;
}
.footer-container footer .Social a.socialv1 img {
	width:40px;
	height:40px;
    filter: grayscale(100%);
    transition: 0.3s ease-in-out;
}
.footer-container footer .Social a:hover.socialv1 img {
    filter: grayscale(0%);
}
.footer-container footer .Social a.social {
	width:30px;
	height:30px;
	display:inline-block;
	background-size:450px;
	background-image:url(../../images/page/social-sprite.png);
	text-indent: -99999px;
}
.footer-container footer .Social a.facebook {
	background-position:-90px 0;
}
.footer-container footer .Social a.linkedin {
	background-position:-120px 0;
}
.footer-container footer .Social a.twitter {
	background-position:-150px 0;
}
.footer-container footer .Social a.youtube {
	background-position:-180px 0;
}
.footer-container footer .Social a.facebook:hover {
	background-position:-210px 0;
}
.footer-container footer .Social a.linkedin:hover {
	background-position:-240px 0;
}
.footer-container footer .Social a.twitter:hover {
	background-position:-270px 0;
}
.footer-container footer .Social a.youtube:hover {
	background-position:-300px 0;
}

.title {
    color: white;
}

.header-container header {
	position:relative;
	background: #ffffff;
}

.SearchBox {
	margin:5px 5px !important;
	padding:10px 40px 10px 10px !important;
	border:1px solid silver !important;
	font-size:1.5em;
	width:calc(100% - 60px) !important;
	background: rgb(255,255,255); /* Old browsers */
background: url(../../images/icons/Magnifying_glass_icon.svg) no-repeat right center / 32px 32px, linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(233,235,234,1) 49%,rgba(229,233,234,1) 50%,rgba(221,225,226,1) 100%); /* W3C */
box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);	
}
.SearchBox:hover {
	border:1px solid silver !important;
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
transition: box-shadow .25s ease-in-out;
}
.SearchBoxSubmitIconLink {
	position:absolute;
	margin:6px 4px 0 0;
	top:0;
	right:0;
	display:block;
	height:47px;
	width:40px;
}

#HeaderSearchTerm {
	width:160px;
	color:#666666;
	text-align:right;
	padding:5px 24px 5px 8px;
	border:1px solid #ddd;
	border-radius:3px;
	background: url(../../images/icons/Magnifying_glass_icon.svg) no-repeat right 6px center / 14px 14px, #f5f7f8;
}

/* ==============
    MOBILE: Menu
   ============== */

.main article h1,
.main article h2,
.main article h3
{
    color: #2a96ba;
	line-height:1.1em;
    /*
    text-align:left;
    */
}
.main article > h1:first-child
{
	margin-top:10px;
}

.main article > h2:first-child,
.main article > h3:first-child
{
	margin-top:0;
}

.main article h1 a:hover,
.main article h2 a:hover,
.main article h3 a:hover
{
    color: #565656;
}

.main article img {
	max-width:100%;
	height:auto !important;
}

.main article iframe {
	max-width:100%;
}

header nav {
	display:none;
	float: right;
	width: 100%;
}
header nav a {
	text-align:inherit;
	background-color:inherit;
	padding:inherit;
	margin:inherit;
	font-size:inherit;
	font-weight:inherit;
}

header .NavIcon {
    display: block;
    float: left;
    margin: 10px 0px 5px 5px;
    width: 24px;
}

main nav {
	width:100%;
}
main nav ul {
	margin:0 2px;
	margin:0;
}
main nav ul li ul {
	margin:0;
}
main nav a {
	font-size:0.9em;
	width:92%;
	padding:0.3em 4%;
	margin:0;
	text-align:left;
	border-bottom:2px solid #FEFEFE;
}
main nav a,
main nav a:link,
main nav a:visited,
main nav a:active
{
	color:#747679;
	text-decoration:none;
	background-color: #f3f3f3;
}
main nav ul li ul a,
main nav ul li ul a:link,
main nav ul li ul a:visited,
main nav ul li ul a:active
{
	color:#747679;
	background-color:#FCFCFC;
}
main nav a:hover,
main nav a.selected,
main nav ul a.selected,
main nav ul li ul a.selected,
main nav ul li ul a:hover
{
	color:#FFFFFF;
	background-color: #c1c2bc;
}


/* ==============
    MOBILE: Main
   ============== */

.main.wrapper,
footer.wrapper {
	position:relative;
    width: 88%;
    margin: 0 5%;
	padding: 0 1% 10px 1%;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 480px) {

/* ====================
    INTERMEDIATE: Main
   ==================== */

	.header-container header {
		min-height:auto;
	}
	
    nav a {
        float: inherit;
    }

	.logo-container {
		margin: 10px 20px;
	}

	.headerright-container {
		max-width: 400px;
		float:right;
	}

	.ResponsiveMenu {
		display:none;
	}

}

@media only screen and (min-width: 768px) {

/* ====================
    WIDE: CSS3 Effects
   ==================== */

    .header-container {
box-shadow: none;
    }
	
	.nav-container {
		flex: 1 1 auto;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.logo-container {
		margin: 10px 20px;
		flex: 0 0 auto;
	}

	.headerright-container {
		margin: 0 10px;
		flex: 0 0 auto;
		margin-left: auto;
	}

	.headerright-container #SearchResultsContainer {
box-shadow: 0 3px 12px #aaa;
	}


/* ============
    WIDE: Main
   ============ */

	.main.wrapper,
	footer.wrapper {
        margin: 0 auto;
	}
	
    .main article {
		margin-bottom:auto;
		/*
        width: 65%;
        width: 70%;
		*/
    }

	#LocaleSetting {
		margin-left:0;
		float:right;
		text-align:right;
		display: none;
	}
	
	.footer-container {
		margin:0 0 37px 0;
	}

}

@media only screen and (min-width: 1024px) {

/* =================
    MAX WIDTH: Menu
   ================= */

	header nav {
		display:block;
		flex: 1 1 auto;
		margin-left: 0;
	}

	header .NavIcon {
		display:none;
	}

	.nav-container {
		flex: 0 0 100%;
	}

	.MegaMenu .Level-1 {
		white-space: nowrap;
		padding-bottom: 0;
	}

    .header-container {
		position: fixed;
		width: 100%;
		top: 0;
		z-index:2;
    }

	.main.wrapper {
		margin-top:80px;
		z-index:1;
	}
	
	.footer-container footer {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		min-height: 60px;
		padding: 10px 0;
	}

	.footer-container footer .HexagonAttrib {
		flex: 0 1 auto;
		text-align: left;
		margin: 0 10px;
		white-space: nowrap;
	}

	.footer-container footer .LinksFooter {
		flex: 1 1 auto;
		text-align: center;
		margin: 0 10px;
		white-space: nowrap;
		clear: none;
	}

	.footer-container footer .Social {
		flex: 0 0 auto;
		text-align: right;
		margin: 0 10px;
	}
	
}


@media only screen and (min-width: 1140px) {

/* =================
    MAX WIDTH: Menu
   ================= */

	.header-container header {
		width:1006px;
		padding:0 10px;
	}

/* =================
    MAX WIDTH: Main
   ================= */

	.main.wrapper {
        width:1006px;
		padding:0 10px 10px 10px;
	}

	footer.wrapper {
        width:1006px;
		padding:0 10px;
	}
	
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
	
	body, main, article, section {
		width: 100%;
		margin: 0;
		float: none;
		background: #fff url(none);
		font-family: Helvetica, Arial, sans-serif;
	}	
	
	.header-container,
	#subheader,
	#LeftColumn,
	#subfooter,
	.footer-container,
	#AdminBox
	{
		display:none;
	}
	
	/* Table */
	table {
		margin: 1px;	text-align:left;
	}
	tr {
		page-break-inside: avoid;
	} 
	
	/*hide various parts from the site
	
	#header, #footer, #navigation, #rightSideBar, #leftSideBar 
	{display:none;}
	
	*/	
	
	

}


