<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document - Responsive Base form and type styles NOT to be edited.*/


/* Reset*/ 
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin:0;
  padding:0;
 }


/*WP Logged in Admin Bar */
body.logged-in.admin-bar{
	padding-top:0;
	margin-top: -32px;
}
body.logged-in.admin-bar #wpadminbar{
	background: rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.13);
}
body.logged-in.admin-bar #wpadminbar:hover{
	background: #131313;
}


/*General UI*/
a{
	color: inherit;
	text-decoration:none;
}
a:hover,
button:focus {
	outline: none;
}
a:focus, a:active {
    outline: none;
    -moz-outline-style: none;
}

svg.icon {
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	margin:0;
	fill:currentColor;
}
svg.hidden{
	display: none;
}

img{
	display: inline-block;
	max-width:100%;
	border-radius: 0;
}
p:has(iframe) {
    display: block;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    border:1px solid #efefef;
}
p:has(iframe) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.innerframe {
	display:block;
	position:relative;
	width: calc(100% - 80px);
	margin: 0 auto;
	max-width: 1440px;
    z-index: 10;
}

/*structure*/

#wrapper {
	display:block;
	position:relative;
	overflow:hidden;
	min-height:100vh;
	height:100%;
	width:100%;
}
#main {
	margin:0;
	width:100%;
	position:relative;
	left:0;
    z-index: 1;
}

#masthead {
	display:block;
	z-index: 5000;
}

/*Menu Icon*/
#menu_icon {
	position:absolute;
	top:30px;
	right:20px;
	z-index:5000;
	display:none;
	height:26px;
	width:40px;
	padding:0;	
}
/*#wrapper.active .menu-icon span {
	background-color:#86D1CF;
}*/

.menu-icon span {
	position: absolute;
	height:2px;
	width: 100%;
	background-color:#00A8C1;
	transition: all 250ms ease-in-out;
	transform: rotate(0deg);
}

.menu-icon span:nth-child(1) {
	top:0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
	top: 48%;
}

.menu-icon span:nth-child(4) {
	bottom:0;
}

#wrapper.active .menu-icon span:nth-child(1),
#wrapper.active .menu-icon span:nth-child(4) {
	opacity: 0; 
}

#wrapper.active .menu-icon span:nth-child(2) {
	transform: rotate(45deg);
}

#wrapper.active .menu-icon span:nth-child(3) {
	transform: rotate(-45deg);
}

/*------------------------------------------------------------  Form Elements */
textarea,
input[type="date"],
input[type="search"],
input[type="email"], 
input[type="tel"],
input[type="text"], 
input[type="password"],
input[type="button"], 
input[type="submit"],
select{

	padding:8px;
	color:#262A2E;
	display:block;
	width:100%;
	border:1px solid var(--site-border);
	background:none;
	margin:0 0 8px 0;
	font-family:inherit;
	-webkit-appearance: none;
    border-radius: 0;
	height:45px;
}
select{
    background: url('../img/chevron-down.svg') 96% center / 14px auto no-repeat;
}
input{
	padding:14px 8px;
}

input:focus, textarea:focus {
	background-color:#fff;
	color:#262A2E;
	outline:none;
}
select:focus {
	outline:none;
}
textarea{
	min-height: 200px;
}
input[type="button"], input[type="submit"] {
	-webkit-appearance: none;
	background: #A4AEB6;
	border:none;
	color: #fff;
	cursor: pointer;
}
::-moz-placeholder {
  opacity: 1;
}
button:hover,
input[type="button"]:hover, 
input[type="submit"]:hover{
	background-color: #566575;
}

/* Placeholder color for FORM */
::-webkit-input-placeholder {
color: #A5ADB6;
}
::-moz-placeholder {
  color: #A5ADB6;
}
:-ms-input-placeholder {
  color:#A5ADB6;

}
:-moz-placeholder {
  color: #A5ADB6;
}
label.hidden{
	display:none;
}
input:focus::placeholder {
  color: transparent;
}

/*buttons*/
button, .button {
	background: #435891;
	color: #fff;
	cursor: pointer;
	padding: 9px 16px;
	display: inline-block;
	text-align: center;
	min-width: 140px;
	font-weight: 500;
	font-size: 0.76em;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: background ease-in-out 0.4s, color ease-in-out 0.3s;
	transition: background ease-in-out 0.4s, color ease-in-out 0.3s;
	border: none;
}
.button:hover {
	background:#566575;
	color:#fff;
}

.button.line {
	border:1px solid #fff;
	background:none;
}
.button.line:hover {
	background:#fff;
	color:#484d54;
}
.button.line.black {
	border:1px solid #1A2128;
	color:#1A2128;
	background:none;
}

.button.line.black:hover{
	border:1px solid #222 ;
	background:#222 ;
	color:#fff;
}
/* ------------------------------------------------ Responsive Picture Images and Video */
picture{
    
}
img { 
	display: inline-block;
  	vertical-align: middle;
    max-width:100%;
    height: auto;
}

.v_iframe {
    display: block;
	width:100%;
	max-width: 100%;
  position:relative;
  padding-top: 56%;
}


.v_iframe video,
.v_iframe iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.v_iframe video{
	object-fit: cover;
	object-position:center;
}
.videobox .txtbox{
	padding: 30px 0 0;
}

/*&lt;picture&gt;
	&lt;!--&lt;source srcset="&lt;?php echo $desktopImage ?&gt;" media="(min-width: 1240px)"&gt;Desktop--&gt;
	&lt;source srcset="&lt;?php echo $tabletImage ?&gt;" media="(min-width: 480px)"&gt;&lt;!--Tablet--&gt;
	&lt;source srcset="&lt;?php echo $mobileImage ?&gt;"&gt;&lt;!--Mobile--&gt;
	&lt;img src="&lt;?php echo $desktopImage ?&gt;" alt=""&gt;&lt;!--IE Fallback--&gt;
&lt;/picture&gt;*/


#footer{
	display: block;
	padding: 30px 0 0;
	margin:0;
}
#footer .innerframe {
	display: flex;
	flex-wrap: wrap;
	max-width: 1440px;
	margin: 0 auto;
    z-index: 10;
}

#footer aside{
	width:33.33%;
}
#footer .copyright{
	display: block;
	width:100%;
	padding: 30px 0 10px;
	margin:0;
	font-size:0.9em;
    text-align:center;
}
#footer aside .widget-title{
	margin:0 0 15px;
	text-transform: none;
}
#footer aside ul li{
	display: block;
	margin: 0 0 5px;
}
#footer p{
	margin:5px 0;
}



/*Blog*/
#content{
	display: block;
	min-height: 40vh;
}
#content.innerframe {
	padding: 50px 0;
}
#blogframe{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:50px auto 0;
	width:100%;
}
#blogmain {
	display: block;
	width: 75%;
	padding-right: 4%;
}
#blogmain.fullwidth{
	width:100%;
    max-width:unset;
	padding:0;	
}
#blogside{
	display: block;
	width:25%;
	padding: 100px 0 0;
}
#blogside .widget{
	display: block;
	padding: 20px 0;
}
#blogside .widget ul,
#blogside .widget ol{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	list-style: none;
}
#blogside .widget ul li,
#blogside .widget ol li{
    display: flex;
    justify-content: space-between;
    width:calc(33.3% - 25px);
    
}

#blogside .widget ul li a,
#blogside .widget ol li a{
	display: block;
    width:100%;
	padding: 5px 0;
}
#blogside .widget a:hover{
	color:var(--brand-blue);
}
#blogside .widget_search form {
	display: flex;
    flex-wrap: wrap;
	align-items: flex-end;
}
#blogside .widget_search form label{
	width:100%;
}
#blogside .wp-block-search__button {
	border: none;
	padding: 10px;
	min-width: 100px;
	line-height: 25px;
	height: 45px;
	text-align: center;
	font-weight: 600;
}

#postframe {
	display: block;
	padding: 1px 0;
}
.postlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:40px auto;
}

.postlist .article{
	width:48%;
	margin: 0 0 30px;
	padding:0;
    border-bottom: 1px solid #e6e5e6;
}

.rte .postlist .article{
	width:30.33%;
	margin: 0 1.5% 40px;
}

.rte .postlist .article a{
    color: inherit;
    text-decoration: none;
}
.article .txtbox{
	display: block;
	margin: 15px 0 0;
}
.article .date{
	display: block;
	margin:5px 0 0;
	text-transform: uppercase;
	color: #A4AEB6;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.postlist .article h3,
.postlist .article h4{
	margin: 0 0 15px;
}
.postlist .article h4{
	/*font-weight: 600;*/
}

.post{
	display: block;
	margin:0 auto;
}
.articlePage{
    max-width: 850px;
    margin: 0 auto;
}
.articlePage .post h1{
	padding-bottom:20px;
	border-bottom:1px solid #A4AEB6;
	margin-bottom: 30px;
}
.articlePage .post{
	margin-bottom: 100px;
    position: relative;
    z-index: 0;
}
.articlePage .featimg{
	margin-bottom:30px;
}
.rte p.postmeta{
	display: block;
	margin: 50px 0;
	padding: 10px 0 0;
	border-top:1px solid #A4AEB6;
	text-align: center;
	color: #A4AEB6;
}
.rte p.postmeta a{
	color: inherit;
}
.paging {
	width:100%;
	display:flex;
    justify-content: space-between;
	margin:6px auto 0;
}
.paging a {
    display:block;
    vertical-align:top;
    margin:0;
    padding:4px 15px;
    line-height:30px;
    color:#A5ADB6;
    border:1px solid #A5ADB6;
    text-align: center;
    width:120px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.paging a:hover {
    color: #fff;
	background-color:#A5ADB6;
}
.paging div {
	display:inline-block;
	vertical-align:top;
}
.paging .navleft {
	float:left;
}

.paging .navright {
	float:right;
}

/*pages*/
.header{
	padding:20px;
	display:block;
	text-align: center;
	margin: 0;
}

.rte &gt; .widewidth{
    max-width: 1080px;
}
.rte &gt; .alignfull,
.rte &gt; .fullwidth{
    max-width: 100%;
}
.rte ol,
.rte ul{
    margin: 0 0 20px;
}
.rte ol li,
.rte ul li{
	margin-left:15px;
	padding-left:10px;
	margin-bottom: 10px;
}

.rte ol + h2,
.rte ol + h3,
.rte ol + h4,
.rte ul + h2,
.rte ul + h3,
.rte ul + h4,
.rte p + h2,
.rte p + h3,
.rte p + h4{
     margin-top: 40px;
}

.rte p + h5,
.rte p + h6{
    margin-top: 30px;
}

.rte .wp-block-button{
    margin-bottom:25px;
}

.rte .wp-block-media-text__media img,
.rte .wp-block-image img {
    max-width: 100%;
    height: auto !important;
}
.rte .wp-block-cover__inner-container {
	display: block;
	max-width: 850px;
}

.rte .wp-block-latest-posts,
.rte p{
	margin: 0 auto 20px;
    width:100%;
}
.rte figure{
	margin:0;
}
.rte figure img{
	height:auto;
}
.rte p + figure{
	margin: 30px auto;
}
.rte .wp-block-separator{
	margin: 30px auto 50px;
    border-color: #C8CFD8;
    width: 100%;
}
.rte .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	width: 100%;
}

.rte .wp-block-button.is-style-outline &gt; .wp-block-button__link:not(.has-background):hover, 
.rte .wp-block-button .wp-block-button__link.is-style-outline:not(.has-background):hover {
	border-color:#9CA9BA;
    color: #9CA9BA !important;
}

.rte div.has-background,
.rte p.has-background{
	position: relative;
	margin:30px auto;
	padding: 4em 2.5em;
}
.rte div.has-background *,
.rte p.has-background *{
	z-index: 0;
}

.rte div.has-background .wp-block-group__inner-container,
.rte p.has-background .wp-block-group__inner-container{
	max-width:850px;
    margin:0 auto;
}

.rte .wp-block-media-text.alignfull + p{
    margin-top:30px;
}

.rte .wp-block-button__link {
	border: none;
	border-radius: 2px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	margin: 20px 5px 0;
	padding: 12px 24px;
	text-align: center;
	text-decoration: none;
	overflow-wrap: break-word;
	min-width: 200px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.rte .wp-block-button__link:hover{
	background-color: #262A2E;
	color: #fff !important;
}
.rte .wp-block-button.is-style-outline &gt; .wp-block-button__link, 
.rte .wp-block-button .wp-block-button__link.is-style-outline {
	padding: 0.8em 1.333em;
}
/*.rte .wp-block-media-text.alignfull,
.rte .wp-block-cover-image.alignwide,
.rte .wp-block-cover-image.alignfull,
.rte .wp-block-cover.alignwide,
.rte .wp-block-cover.alignfull {
	min-width: 101vw;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	top: 0;
	margin: 0;
	padding: 50px 0;
	min-height: 450px;
}
.rte div.has-background.alignfull:before,
.rte p.has-background.alignfull:before{
	content: "";
	display: block;
	position: absolute;
	top:0;
	z-index: -1;
	background: inherit;
	width:100vw;
	height: 100%;
	left: 50%;
  	transform: translate(-50%,0);
}*/
.rte .wp-block-cover{
    padding: 20% 10%;
}
.rte .wp-block-cover + .wp-block-cover{
    margin-top:30px;
}
.rte .wp-block-cover div:not(.wp-block-button) a,
.rte .wp-block-cover .wp-block-cover__inner-container
 {
    color:#fff !important;
}
.rte .wp-block-cover .wp-block-pullquote{
	border:none;
	padding: 0;
	color:inherit;
    width:80%;
    max-width:850px;
}
.rte .wp-block-cover + p{
    margin-top:15px;
}
.rte .wp-block-cover .wp-block-pullquote blockquote p{
	color:inherit;
}
.rte .wp-block-cover .wp-block-pullquote cite{
	color:inherit;
	text-transform: none;
	font-weight: 400;
    font-size: 16px;
}

.rte .wp-block-cover__inner-container h2.has-text-align-center,
.rte .wp-block-cover__inner-container h3.has-text-align-center{
	max-width: 750px;
}
.rte .wp-block-quote.is-large, 
.rte .wp-block-quote.is-style-large{
	margin:20px auto;
}

.rte .wp-block-media-text.alignfull {
	position: relative;
	padding:0;
}
.rte .wp-block-media-text.alignfull .wp-block-media-text__content {
	padding:40px 20px;
	max-width: 600px;
	margin: 0 auto;
}
.rte .wp-block-media-text.alignfull .wp-block-media-text__media {
	height: 100%;
}
.rte .wp-block-media-text.alignfull .wp-block-media-text__media img {
	min-height: 100%;
	display: block;
	object-fit: cover;
}
.wp-block-media-text__content h3,
.wp-block-media-text__content h2{
	margin-top:0;
}
.wp-block-media-text__content p + h3,
.wp-block-media-text__content p + h2{
	margin-top: 40px;
}

/*.rte .wp-block-column h2,
.rte .wp-block-column h3,
.rte .wp-block-column h4{
    margin-bottom: 0;
}*/
.rte .wp-block-column h2 + p,
.rte .wp-block-column h3 + p,
.rte .wp-block-column h4 + p{
    margin-top:2em;
}
.rte .wp-block-column figure{
    margin-bottom: 15px;
}
.rte .wp-block-buttons{
    margin-bottom:1.5em;
}

/*Blog*/

#blogside {
	display: block;
	width: 90%;
	max-width: 850px;
	padding: 0 0 50px;
	margin: 0 auto;
}

#blogside .more{
	text-align: center;
}

/*----------------------------------------------------------------------------------------------------------------------- Begin Responsive Queries*/
/* ----------------------------------------------------------------------- Min Withs Smallest to largest */
@media only screen and (min-width: 768px) {

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

}
@media only screen and (min-width: 1180px) {
	
	
}
@media only screen and (min-width: 1280px) {
		
}
@media only screen and (min-width: 1680px) {

}

/* ----------------------------------------------------------------------- MAX Withs Largest to smallest */

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

}
@media only screen and (max-width: 1279px) {
    
}
@media only screen and (max-width: 1179px) {
	/*main nav*/
    #wrapper.active {
        overflow: hidden;
        height: 100vh;
    }
	#menu_icon{
		display: block;
		z-index: 9000;
	}
    
	
	.nav-menu li ul li,
	.nav-menu &gt; li{
		margin:0 0 10px;
		width:100%;
		padding: 0;
	}
	.nav-menu &gt; li &gt; ul ul,
	.nav-menu li ul {
		display: none;
		position: relative;
		top: auto;
		left: 0;
		width: 100%;
		background:none;
		border-left:none;
		border-right:none;
		margin: 0;
		padding: 20px 0;
	}
	.nav-menu li.active &gt; ul{
		display: block;
	}
    .nav-menu &gt; li  &gt; a{
        border-bottom:none;
    }
	
	.nav-menu li li a {
		padding:5px 0;
	}

	/*.nav-menu li.current-menu-item &gt; a, 
	.nav-menu li.current-page-ancestor &gt; a, 
	.nav-menu li.current_page_item &gt; a, 
	.nav-menu li.current_page_parent &gt; a {
		color: #435891;
		border: none;
	}*/
	.nav-menu .sub-menu .hasdrop &gt; a::after {
		transform: initial;
		right:0;
	}

	#content.page .post &gt; div &gt; div{
		padding-left:30px;
		padding-right: 30px;
	}
}
@media only screen and (max-width: 1023px) {
	#navframe,
	#navframe::before{
		max-width:100vw;
	}
	#wrapper.active #navframe:before{
		right:0;
	}
	#blogmain {
		display: block;
		width: 90%;
		padding-right: 0;
		margin: 0 auto;
	}
	
	
	/*mastehad*/
	#masthead{
		padding-top:0;
	}
		
	/*footer*/
	#footer aside {
		padding-right: 20px;
	}
	
	.rte .wp-block-button__link {
		margin: 20px 0 0;
		min-width:170px;
	}

	
}
@media only screen and (max-width: 767px) {
	/*masthead*/
	
	#footer .innerframe{
		width: 80%;
	}
	#footer aside {
		width:100%;
		margin: 0 auto 30px;
	}
    
		
	/*news*/
    #blogmain.fullwidth .postlist .article, 
	.rte .postlist .article {
		width: 80%;
		margin: 0 auto 40px;
	}
	#blogmain.fullwidth .postlist .article.news:nth-child(n){
		width: 47%;
		margin: 0 1.5% 40px;
	}
	.innerframe {
		max-width:100%;
	}
}
@media only screen and (max-width: 599px) {

}
/*iphone6 + regular android*/
@media only screen and (max-width: 479px) { 
	#navframe {
		
	}
	#blogframe{
		margin-top: 30px;
	}
	#blogmain {
		width: 100%;
		margin: 0;
	}
	#pageheader {
		height:80vh;
	}
	.rte .postlist .article,
	#blogmain.fullwidth .postlist .article.news:nth-child(n),
	#blogside,
	#blogmain,
	#footer .innerframe,
	#pageheader .innerframe {
		width: 100%;
	}

	#blogmain.fullwidth .postlist .article.news:nth-child(n),
	.rte .postlist .article {
		margin: 0 auto 30px;
	}

	.wp-block-column{
		margin-bottom:30px;
	}
	.innerframe {
		padding: 0 25px;
	}
	
}
/*Iphone 4&amp;5*/
@media only screen and (max-width: 359px) { 

}

/* Size and Orientation */
@media only screen and (max-width: 479px) and (orientation: portrait){ 

}
/* Landscape Orientation */
@media screen and (orientation: landscape) {

}

/* Portrait Orientation */
@media screen and (orientation: portrait) {

}

/*--------------------------------------------------------------------- End Responsive Queries*/




</pre></body></html>