/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* vars */

:root {
	--blue1: 200 30% 55%;	
}


/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	/*color:#4d575d;*/
	color: #000;
	font-family: 'Lato', sans-serif;
	background-color: rgba(217, 217, 217, 0.2);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration:none;
}
a:hover {
	color: inherit;
	text-decoration: none;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline: none;
	border: none;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */

main {
	padding-top: 60px;
}

.wrapper {
	position:relative;
	font-size: 2rem;
	line-height: 1.6;
}

section article, .def_width {
	max-width:1400px;
	width:95%;
	margin:0 auto;
}

/* header */
.header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	z-index: 20;
}


.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width:1400px;
	width:95%;
	margin:0 auto;
}

/* logo */
.logo {
	height: 100px;
	padding: 10px 0 10px 0;
	transition: all 0.5s;
}

.scrld .logo {
	height: 80px;
}

.logo-img {
	height: 100%;
	width: auto;
}
/* nav */
.nav {
	
}

.nav ul {
	padding: 0;
	margin: 0;
	display: flex;
	list-style: none;
	font-size: 1em;
}

.nav .menu-item {
	letter-spacing: 0.06em;
	position: relative;
}

.nav > ul > li.current-menu-item::after, .nav .current-menu-parent::after {
	content: '';
	position: absolute;
	width: 3em;
	height: 0.6em;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: hsl(var(--blue1));
	-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}




.nav .menu-item a {
	padding-bottom: 1.3em;
	display: inline-block;
}

.nav .menu-item:hover > a {
	/*color: #62C6E9;*/
	color: #000;
}


.nav .menu-item-type-post_type {
	margin-right: 2em;
}

.nav ul.sub-menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	padding-bottom: 0.5em;
	/*transform: translateX(-50%);*/
	left: -0.75em;
	opacity: 0;
	pointer-events: none;
	-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
	-webkit-box-shadow: 0 0.7em 1em -0.5em rgba(0,0,0,0.3);
	box-shadow: 0 0.7em 1em -0.5em rgba(0,0,0,0.3);
}

.nav li:hover .sub-menu {
	opacity: 1;
	pointer-events: auto;
}



.nav .sub-menu li {
	margin-right: 0;
}

.nav .sub-menu .current-menu-item {
	font-weight: 900;
}

.nav .sub-menu a {
	padding-bottom: 0;
	font-size: 0.9em;
	white-space: nowrap;
	display: flex;
	padding: 0.25em 1em;
	width: 100%;
	color: #000;
}

.nav .sub-menu a:hover {
	background-color: hsl(var(--blue1));
	color: #fff;
}


.nav .lang-item {
	margin-left: 0.5em;	
}

.nav .current-lang {
	font-weight: 900;
}




.menu_ico_ct {
	display: inline-block;
	position: relative;
	cursor: pointer;
	background-color: rgba(255,255,255,0);
	padding: 0px;
	z-index: 10;
	transition: all 0.5s;
	display: none;
}

.menuopen .menu_ico_ct {
	background-color: rgba(255,255,255,0);
}



.menu_icon {
	position: relative;
	width: 40px;
	display: flex;
	flex-direction: column;
	height: 40px;
}

.menu_icon_line {
	width: 100%;
	height: 4px;
	background-color: hsl(var(--blue1));
	opacity: 1;
	transform-origin: center center;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

.menuopen .menu_icon_line {
	background-color: hsl(var(--blue1));
}

.menu_ico_ct:hover .menu_icon_line {
	background-color: hsl(200, 30%, 30%);
}

.menu_icon .line1 {
	top: 5px;
}

.menu_icon .line2 {
	top: 15px;
}

.menu_icon .line3 {
	top: 25px;
}

.menuopen .menu_icon .line1 {
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
	top: 50%;
}

.menuopen .menu_icon .line2 {
	opacity: 0;
}

.menuopen .menu_icon .line3 {
	-moz-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
	top: 50%;
}






/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

.footer_main {
	/*background-color: #4d575d;*/
	background-color: hsl(200, 30%, 30%);
	color: #fff;
	font-size: 0.8em;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

.footer_row.row1 {
	display: flex;
	padding: 1em 0;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	justify-content: space-between;
}

.logo_footer {
	height: 4.6em;
	width: auto;
}

.iso_footer {
	height: 4.6em;
	width: auto;
}

.vpm_footer {
	height: 2.8em;
	width: auto;
	margin-right: 2.4em;
}

.footer_row_right {
	display: flex;
	align-items: center;
}

.footer_row_right .footer_link_ln {
	display: inline-block;
	font-size: 2.4em;
	margin-right: 1em;
	border-bottom: none !important;
	opacity: 0.7;
}

.footer_row_right .footer_link_ln:hover {
	opacity: 1;
}

.footer_row.row2 {
	padding: 2em 0 2em 0;
	display: flex;
	justify-content: space-between;
	gap: 2em;
}

.footer_menu {
	width: 68%;
}



.footer_menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer_menu > ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1em 1em;
}

.footer_menu > ul > li:nth-child(1){
	order: 1;
}
.footer_menu > ul > li:nth-child(2){
	order: 2;
}
.footer_menu > ul > li:nth-child(3){
	order: 4;
}
.footer_menu > ul > li:nth-child(4){
	order: 3;
}
.footer_menu > ul > li:nth-child(5){
	order: 5;
}

.footer_menu > ul > li > a {
	font-weight: 900;
}

.footer_menu .menu-item a {
	padding-bottom: 0;
}

.footer_main a:hover {
	border-bottom: 0.15em solid;
	color: inherit;
}

.footer_menu ul.sub-menu {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	background-color: transparent;
	left: auto;
	display: flex;
	flex-direction: column;	
}

.footer_menu .sub-menu a {
	color: #fff;
	padding: 0;
}


.footer_menu .lang-item {
	display: none;
}

.footer_contact {
	padding-left: 30px;
	border-left: 1px solid rgba(255,255,255,0.5);
	width: 30%;
}

.footer_contact strong {
	font-weight: 900;
}



.footer_sub {
	background-color: hsl(200, 30%, 25%);
	color: #fff;
	padding: 0.75em 0;
	letter-spacing: 0.04em;
	font-size: 0.8em;
}

.footer_sub .footer_inner {
	display: flex;
	justify-content: space-between;
}

.footer_sub .copyright {
	font-weight: 700;
}

.footer_sub a:hover {
	border-bottom: 0.15em solid;
}

/*------------------------------------*\
    GENERAL ELEMENTS
\*------------------------------------*/


.news_box {
	cursor: pointer;
	border-radius: 5px;
	background-color: #fff;
	overflow: hidden;
	position: relative;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	transition: all 0.5s;
}

.wp-container-17 .news_box {
	height: 100%;
}

.news_box:hover {
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
}

.news_box p {
	display: inline-block;
	padding: 1em 1em 3em 1em;
	font-size: 0.9em;
	margin: 0;
}

.news_box figure {
	position: relative;
	width: 100%;
	padding-top: 50%;
}

.news_box figure img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
	border-radius: 0 !important;
}

.news_box::after {
	content: '\f061';
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	background-color: hsl(var(--blue1));
	color: #fff;
	width: 3em;
	height: 1.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: 0;
	pointer-events: none;
	border-radius: 5px 0 0 0;
	padding-left: 0;
	transition: all 0.5s;
}

.news_box:hover::after {
	background-color: hsl(200, 30%, 30%);
	padding-left: 1em;
}

.news_box.hlt {
	background-color: hsl(var(--blue1));
	color: #fff;
}

.news_box.hlt.ref:hover, .news_box.hlt:hover {
	background-color: hsl(200, 30%, 30%);
}

.news_box.hlt figure {
	/*padding-top: 50%;*/
}

.news_box.hlt::after {
	display: none;
}

.news_box.hlt p {
	padding: 1em;
}

.news_box.hlt.ref {
	/*background-color: #7AAB00;*/
	background-color: hsl(var(--blue1));
}

.news_box.hlt.ref figure {
	padding-top: 55%;
	filter: grayscale(0.5) brightness(1);
	transition: all 0.5s;
}

.news_box.hlt.ref:hover figure {
	filter: grayscale(0) brightness(1);
}

.news_box.cta_btn {
	border: 3px solid hsl(var(--blue1));
	display: inline-block;
}

.news_box.cta_btn:hover {
	border: 3px solid hsl(200, 30%, 30%);
}


.news_box.cta_btn p {
	font-size: 1.1em;
	padding: 0.5em 4em 0.5em 1em;
	line-height: 1.5;
}

.news_box.box_split figure img {
	
}

.news_box p a {
	border-bottom: none !important;
}

.news_box a {
	display: block;
}


.short_news {
	font-size: 0.9em;
	display: inline-block;
	width: 100%;
	padding-bottom: 1em;
	border-bottom: 1px solid #d9d9d9;
	margin-top: 0;
}

.short_news a:hover {
	color: hsl(200, 30%, 50%);
	cursor: pointer;
	display: inline-block;
}

.sub_teaser_wrapper .wp-block-columns {
	gap: 4em !important;
}

.link_box {
	/*background-color: rgba(98, 198, 233, 1);*/
	background-color: hsl(var(--blue1));
	color: #fff;
	padding: 1.5em 1em;
	border-radius: 5px;
	font-size: 1.2em;
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
	transition: all 0.5s;
	cursor: pointer;
	margin-bottom: 3em;
}

.link_box strong {
	font-weight: 900;
	font-size: 1.2em;
	letter-spacing: 0.05em;
}

.link_box a {
	display: contents;
}


.link_box:hover {
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
	background-color: hsl(200, 30%, 30%);
}

.link_box > div {
	display: flex;
}

.link_box_icon {
	width: 5em;
	display: flex;
	justify-content: center;
	padding-right: 1em;
	padding-top: 0.3em;
	flex-shrink: 0;
}

.link_box_icon i {
	font-size: 2.4em;
}

.link_box p {
	margin: 0;
}


.list_box {
	margin-bottom: 2em;
}


.list_box > div {
	display: flex;
}

.list_box_icon {
	width: 8em;
	display: flex;
	justify-content: center;
	padding-right: 1em;
	padding-top: 1em;
	flex-shrink: 0;
	color: #7AAB00;
}

.list_box_icon i {
	font-size: 4em;
}


.list_box.icon_top > div {
	flex-direction: column;
}

.list_box.icon_top .list_box_icon {
	width: 100%;
	justify-content: flex-start;
	padding-right: 0;
}

.list_box.icon_top .list_box_icon i {
	font-size: 3em;
}

.grid_box_wrapper > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em;
}

.simple_box {
	border-radius: 5px;
	padding: 0.5em 1.5em;
	margin-bottom: 1em;
	background-color: rgba(0,0,0,0.05);
}


.highlight_box {
	background-color: rgba(0,0,0,1);
	font-size: 1.2em;
	padding: 1em 12em 3em 1.5em;
	border-radius: 5px;
	text-shadow: 0.1em 0.1em 0.3em #000000;
	color: #fff;
	position: relative;
	overflow: hidden;
	
}

.highlight_box::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url(/wp-content/uploads/2023/05/Spence-2-scaled.jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(1);
	z-index: 1;
	opacity: 0.7;
}

.highlight_box::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(135,201,176);
background: -moz-linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
background: -webkit-linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
background: linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87c9b0",endColorstr="#008dbe",GradientType=1); 
	z-index: 3;
	mix-blend-mode: color;
}

.highlight_box strong {
	font-weight: 900;
	font-size: 1.4em;
	padding-bottom: 0.5em;
	display: inline-block;
	letter-spacing: 0.05em;
}

.highlight_box p {
	font-size: 1.2em;
	line-height: normal;
}

.highlight_box > div {
	position: relative;
	z-index: 5;
}

.highlight_box .wp-block-buttons {
	margin-top: 3em;
}

.highlight_box .wp-block-button a {
	text-shadow: none;
	border-radius: 5px;
	border: 0.2em solid #fff !important;
	font-weight: 900;
	letter-spacing: 0.08em;
	color: #fff;
	background-color: rgba(255,255,255,0);
	filter: drop-shadow(0.1em 0.1em 0.3em #000000);
	transition: all 0.5s;
}

.highlight_box .wp-block-button a:hover {
	background-color: rgba(255,255,255,1) !important;
	color: hsl(var(--blue1)) !important;
}

.portrait_grid .wp-block-image img {
	width: auto;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* Home */

.home_banner {
	background-image: url(/wp-content/uploads/2023/09/stm_ht4c.jpg);
	background-position: center 95%;
	background-repeat: no-repeat;
	background-size: 110% auto;
	height: 36em;
	color: #fff;	
	position: relative;
	overflow: hidden;
}

.home_banner::after {
	content: '';
background: unset;
	mix-blend-mode: unset;
	background-image: url(/wp-content/uploads/2023/09/stm_ht4c.jpg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	transform: scale(1.05);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 66%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 66%);
	filter: blur(12px) brightness(1);
}


.page-id-1016 .home_banner {
	background-image: url(/wp-content/uploads/2023/09/stm_ht4.jpg);
}

.page-id-1016 .home_banner::after {
	background-image: url(/wp-content/uploads/2023/09/stm_ht4c.jpg);
	-webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 70%);
  mask-image: linear-gradient(to right, black 0%, black 50%, transparent 70%);
}




.home_banner::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*background-color: rgba(0,0,0,0.3);*/
}








.home_banner > div {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	height: 100%;
	text-shadow: 0.1em 0.1em 0.0em #000;
}

.home_teaser {
	font-size: 1.3em;
	margin-top: 2em;
	padding-bottom: 3em;
	position: relative;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.home_teaser a {
	color: inherit;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.home_teaser a:hover {
	border-bottom: 0.1em solid;
}

.home_teaser::before {
	content: '';
	width: 2.5em;
	height: 0.15em;
	border-radius: 0.15em;
	background-color: #fff;
	left: 0;
	top: -0.4em;
	position: absolute;
}


.home_teaser_row {
	padding: 2em 0 1em 0;
	font-size: 1.3em;
	line-height: normal;
}

.home_teaser_row p em {
	font-size: 0.75em;
	font-style: normal;
	display: inline-block;
	padding-top: 0.5em;
	line-height: 1.4;
}

.teaser_icon {
	display: flex;
	justify-content: flex-start;
}

.teaser_icon i {
	font-size: 1.8em;
	display: flex;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	background-color: hsl(var(--blue1));
	justify-content: center;
	align-items: center;
	color: #fff;
}

.teaser_icon_box {
	padding: 1em;
	cursor: pointer;
	-webkit-box-shadow: 0 0 3em 0 hsl(var(--blue1) / 0);
	box-shadow: 0 0 3em 0 hsl(var(--blue1) / 0);
	opacity: 0.8;
	transition: all 1s;
}

.teaser_icon_box:hover {
	-webkit-box-shadow: 0 0 3em 0 hsl(var(--blue1) / 0.4);
	box-shadow: 0 0 3em 0 hsl(var(--blue1) / 0.4);
	opacity: 1;
}



.home_main_content, .main_content {
	padding: 4em 0;
}

.home_cols .col1 {
	padding-right: 30px;
}

.home_cols .col2 {
	padding-left: 30px;
	border-left: 1px solid #D9D9D9;
}



.page_banner {	
	height: calc(26vw + 20px);
	color: #fff;	
	position: relative;
	background-color: #000;
}

/*
.page-child .page_banner {
	height: 14em;
	padding-top: 2em;
	background: hsl(var(--blue1));
}
*/

.page_banner h1 {
	font-size: 2.1em;
	max-width: 60%;
}

.page_banner::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background-image: url(/wp-content/uploads/2023/05/20220913_112332-scaled.jpg);*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	filter: grayscale(1);
	opacity: 1;
	background-color: hsl(var(--blue1));
}


/*
.page-child .page_banner::before {
	display: none;
}
*/

.page_banner::after {
background: rgba(0,0,0,0.3);
	mix-blend-mode: unset;
	z-index: 3;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.page_banner_img img {
	filter: unset;
}

.page-child .page_banner::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: rgb(135,201,176);
background: -moz-linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
background: -webkit-linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
background: linear-gradient(125deg, rgba(135,201,176,1) 0%, rgba(0,141,190,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87c9b0",endColorstr="#008dbe",GradientType=1); */
	 background: rgb(139,175,193);
background: -moz-linear-gradient(90deg, rgba(139,175,193,1) 5%, rgba(139,175,193,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(139,175,193,1) 5%, rgba(139,175,193,1) 100%);
background: linear-gradient(90deg, rgba(139,175,193,1) 5%, rgba(139,175,193,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bafc1",endColorstr="#8bafc1",GradientType=1); 
	z-index: 3;
	mix-blend-mode: color;
}




/*
.page-id-239 .page_banner::after {
 background: rgb(27,136,191);
background: -moz-linear-gradient(90deg, rgba(27,136,191,1) 0%, rgba(139,175,193,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(27,136,191,1) 0%, rgba(139,175,193,1) 100%);
background: linear-gradient(90deg, rgba(27,136,191,1) 0%, rgba(139,175,193,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b88bf",endColorstr="#8bafc1",GradientType=1); 
}

.page-id-42 .page_banner::after {
 background: rgb(57,128,101);
background: -moz-linear-gradient(90deg, rgba(57,128,101,1) 0%, rgba(49,130,136,1) 50%, rgba(19,108,138,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(57,128,101,1) 0%, rgba(49,130,136,1) 50%, rgba(19,108,138,1) 100%);
background: linear-gradient(90deg, rgba(57,128,101,1) 0%, rgba(49,130,136,1) 50%, rgba(19,108,138,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#398065",endColorstr="#136c8a",GradientType=1);  
}

.page-id-40 .page_banner::after {
background: rgba(0,0,0,0.3);
	mix-blend-mode: unset;
}

.page-id-40 .page_banner_img img {
	filter: unset;
}

.page-id-46 .page_banner::after {
 background: rgb(0,0,0);
background: -moz-linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1); 
	mix-blend-mode: unset;
}

.page-id-46 .page_banner_img img {
	filter: unset;
}

.page-id-46 .page_banner article {
	padding-right: 700px;
}


.page-id-44 .page_banner::after {
 background: rgb(0,0,0);
background: -moz-linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1); 
	mix-blend-mode: unset;
}

.page-id-44 .page_banner_img img {
	filter: unset;
}

.page-id-44 .page_banner article {
	padding-right: 700px;
}



.page-id-48 .page_banner::after {
background: unset;
	mix-blend-mode: unset;
	background-image: url(https://stm-staging.qexyzovy.cyon.site/wp-content/uploads/2023/06/20220913_143435-scaled.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.05);
	-webkit-mask-image: linear-gradient(to right, transparent 40%, black 70%);
  mask-image: linear-gradient(to right, transparent 40%, black 70%);
}


.page-id-48 .page_banner_img, .page-id-48 .page_banner {
	overflow: hidden;
}

.page-id-48 .page_banner_img img {
	filter: blur(10px) brightness(1);
	transform: scale(1.05);
}



.page-id-242 .page_banner::after {
background: unset;
	mix-blend-mode: unset;
	background-image: url(https://stm-staging.qexyzovy.cyon.site/wp-content/uploads/2023/06/IMG_0461-scaled.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.05);
	-webkit-mask-image: linear-gradient(to right, transparent 40%, black 70%);
  mask-image: linear-gradient(to right, transparent 40%, black 70%);
}


.page-id-242 .page_banner_img, .page-id-242 .page_banner {
	overflow: hidden;
}

.page-id-242 .page_banner_img img {
	filter: blur(10px) brightness(1);
	transform: scale(1.05);
}

*/

/*
.page-id-44 .page_banner::after {
background: unset;
	mix-blend-mode: unset;
	background-image: url(https://stm-staging.qexyzovy.cyon.site/wp-content/uploads/2023/06/Sunrise-Dam-HIG-1-scaled.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.05);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 50% 0%, calc(50% - 720px) 0%, calc(50% - 720px) 100%, 0% 100%);
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
}

.page-id-44 .page_banner::before {
	content: '';
	background-color: transparent;
	position: absolute;
	width: 756px;
	left: auto;
	height: 100%;
	right: 50%;
	z-index: 5;
	filter: none;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.4);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.4);
}

.page-id-44 .page_banner_img, .page-id-44 .page_banner {
	overflow: hidden;
}

.page-id-44 .page_banner_img img {
	filter: blur(8px) brightness(1);
	transform: scale(1.05);
}
*/






/*
.page-id-242 .page_banner::after {
background: unset;
	mix-blend-mode: unset;
	background-image: url(https://stm-staging.qexyzovy.cyon.site/wp-content/uploads/2023/06/IMG_0461-scaled.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.05);
	clip-path: polygon(calc(50% - 10em) 0%, 100% 0%, 100% 100%, 50% 100%);
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
}

.page-id-242 .page_banner::before {
	content: '';
	background-color: transparent;
	position: absolute;
	width: 50%;
	left: auto;
	height: 100%;
	right: calc(50% + 5px);
	z-index: 5;
	filter: none;
	background-color: rgba(255,0,0,0);
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.4);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.4);
	transform-origin: right bottom;
	transform: scale(1.05) rotate(-23deg);
	clip-path: polygon(0% 0%, 120% 0%, 120% 100%, 0% 100%);
}

.page-id-242 .page_banner_img, .page-id-242 .page_banner {
	overflow: hidden;
}

.page-id-242 .page_banner_img img {
	filter: blur(8px) brightness(0.9) sepia(1) hue-rotate(526deg) saturate(1.3);
	transform: scale(1.05);
}

*/


/*.page-child .page_banner::after {
	display: none;
}*/



.page-id-13 .page_banner_img img {
	/*object-position: center 12%;*/
}



.page_banner > div {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	height: 100%;
	text-shadow: 0.1em 0.1em 0.0em #000;
}

.page_banner .page_banner_img {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;	
}

.page_banner_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.page-child .page_banner_img img {
	filter: grayscale(1) brightness(0.7);
}

/*.page-child .page_banner > div {
	text-shadow: none;
}*/


.main_content {
	min-height: 50vmin;
}






.paper_wrapper > div {
	display: flex;
	background-color: transparent;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	transition: all 0.5s;
	cursor: pointer;
}

.paper_wrapper > div:hover {
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	/*background-color: rgba(0,0,0,0.05);*/
}

.paper_wrapper > div > figure {
	flex-shrink: 0;
}

.paper_wrapper > div > figure img {
	height: 10em;
	width: auto;
}

.paper_wrapper > div > p {
	flex-grow: 1;
	margin: 0;
	padding: 1em 1.5em;
	font-size: 0.9em;
}


.cs_teaser_text {
	padding-top: 0 !important;
	font-size: 0.9em !important;
}





/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.wp-block-image img {
	width: 100%;
	height: auto;
}

figure img {
	border-radius: 5px;
}


/* world map */


#stm_map, #stm_map_locations, #stm_map_testmills {
	filter: drop-shadow(0 0 0.35em rgba(0,0,0,0.3));
	transform-box: fill-box;
}

#stm_map .reg_group * {
	transition: all 0.5s;
	cursor: pointer;
}

#stm_map .reg_group:hover * {
	fill: hsl(200, 80.1%, 53%);
}

#stm_map .reg_num {
	pointer-events: none;
	transition: all 0.5s;
	opacity: 1;	
	transform-box: fill-box;
	transform-origin: center center;
}

#stm_map .reg_num.hidden {
	opacity: 0;
	transform: scale(0.3);
}

#stm_map .reg_group.active * {
	fill: #345463 !important;
}

.reg_title {
	display: none !important;
}

.ib_active .reg_title {
	display: none !important;
}

.ib_reg_info {
	background-color: hsl(var(--blue1));
	border-radius: 5px;
	padding: 1.5em 1em;
	color: #fff;
	display: none;
}

.ib_reg_info.active {
	display: block;
}

.ib_reg_info h3 {
	color: #fff;
	margin: 0;
	padding-bottom: 0.4em;
}

.ib_info_title {
	font-weight: 600;
}

.ib_info_title i {
	width: 2em;
	font-size: 1.2em;
}

.ib_info_wrapper span {
	padding-left: 2.6em;
	display: inline-block;
}

.ib_info_wrapper {
	padding: 0.5em 0;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.ib_cols {
	display: grid;
	grid-template-columns: 1.8em 1.2em auto;
	padding-left: 2.4em;
}

.ib_cols span {
	padding-left: unset;
}


.flt_select_wrapper {
	padding-bottom: 2em;
	font-size: 0.8em;
}

.flt_select_wrapper select {
	margin-right: 2em;
}


.stm_map_pin {
	transform-origin: bottom center;
	transition: all 0.5s;
	cursor: pointer;
	transform-box: fill-box;
}

.stm_map_pin .cls-stmg-1 {
	transition: all 0.5s;
}

.stm_map_pin:hover, .stm_map_pin.active {
	transform: scale(1.3);
}

.stm_map_pin:hover .cls-stmg-7, .stm_map_pin.active .cls-stmg-7 {
	fill: hsl(200, 80.1%, 53%);
}

.ib_info_wrapper ul {
	padding-left: 1em;
	margin-top: 0;
}

.blend_multiply {
	mix-blend-mode: multiply;
}

.btns_pdf {
	display: grid !important;
	grid-template-columns: 1fr;
	grid-gap: 1em 4em;
	font-size: 0.8em;
	line-height: 1.4;
}

.btns_pdf a {
	display: grid;
	text-align: left;
	width: 100%;
	grid-template-columns: min-content auto;
	border-radius: 0;
}

.btns_pdf strong {
	font-size: 1.2em;
}
	
.btns_pdf a::before {
	content: '\f1c1';
	font-family: "Font Awesome 6 Pro"; 
	font-weight: 400;
	margin-right: 0.6em;
	font-size: 1.6em;
	grid-row: span 2;
}

.btns_pdf .wp-block-button__link:hover {
	color: hsl(200, 100%, 35%);
	background-color: transparent;
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,);
}


.btns_pdf .wp-block-button__link {
	background-color: transparent;
	border-bottom: 1px solid  hsl(var(--blue1));
	color: inherit;
	padding: 0.75em 0em;
	/*border-radius: 5px;*/
	/*transition: all 0.5s;*/
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
}

.btns_small .contact_us_button a {
	padding: 1.5em 1em;
	font-size: 1em;
}


/* Milestones */


.mst_item_ct {
	text-align: center;
	padding: 0.5em 0;
	color: hsl(200, 30%, 30%);
	position: relative;
}


.mst_item_ct.first_item {
	padding-top: 0;
}

.mst_item_ct::before {
	content: '';
	width: 4px;
	height: 2.4em;
	background-color: hsl(200, 30%, 30%);
	position: absolute;
	left: calc(50% - 2px);
	top: -0.5em;
	opacity: 0.25;
}

.mst_item_ct.first_item::before {
	display: none;
}

.mst_item_ct p {
	margin: 0;
}

.mst_year {
	font-weight: 900;
	letter-spacing: 0.06em;
	color: #fff;
	display: inline-block;
	padding: 0.25em 1.25em;
	border-radius: 2em;
	background-color: hsl(200, 30%, 30%);
	top: 1.05em;
	position: relative;
	font-size: 1.2em;
}

.mst_text {
	background-color: #fff;
	border-radius: 5px;
	border: 5px solid hsl(200, 30%, 30%);
	padding: 1.5em 0.5em 0.5em 0.5em;
}

.mst_hlt .mst_text {
	background-color:  hsl(200, 30%, 30%);
	color: #fff;
	font-weight: bold;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

h1 {
	line-height: normal;
	font-size: 2.4em;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin: 0.5em 0;
}

h2 {
	line-height: normal;
	font-size: 1.6em;
	font-weight: 400;
	margin: 0.5em 0;
	letter-spacing: 0.06em;
}

h3 {
	font-size: 1.4em;
	font-weight: 700;
	color: hsl(200, 30%, 30%);
	letter-spacing: 0.04em;
}


h4 {
	margin-top: 0;
	font-size: 1.4em;
	letter-spacing: 0.08em;
	font-weight: 400;
	text-transform: uppercase;
	color: hsl(200, 30%, 30%);
}

.page_teaser_text {
	font-size: 1.2em;
}

.stm_list {
	padding: 0;
	margin: 0;
	padding-left: 1em;
}

.stm_list li {
	margin-bottom: 0.75em;
	line-height: 1.5;
}

.foldbox_wrapper {
	border-bottom: 1px solid rgba(0,0,0,0.3);
}



.foldbox_head {
	cursor: pointer;
	position: relative;
	padding-right: 2.5em;
}

.foldbox_head h3 {
	margin: 0.75em 0;
	transition: all 0.5s;
}

.foldbox_head:hover h3 {
	/*color: rgba(98, 198, 233, 1);*/
}

.foldbox_head::after {
	content: '\f054';
	font-family: "Font Awesome 6 Pro"; 
	font-weight: 400;
	position: absolute;
	width: 2em;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 50%;
	margin-top: -1em;
	font-size: 1.5em;
	opacity: 0.5;
	transition: all 0.5s;
	transform: rotate(0deg);
}

.foldbox_head:hover::after {
	transform: rotate(90deg);
	opacity: 1;
}

.active .foldbox_head:hover::after, .active .foldbox_head::after {
	transform: rotate(-90deg);
}

.foldbox_content {
	display: none;
}

.foldbox_content > div {
	padding-bottom: 2em;
}

.foldbox_content p, .foldbox_content ul {
	margin-top: 0;
}



.is-style-fill .wp-block-button__link {
	background-color: hsl(var(--blue1));
	color: #fff;
	padding: 1em 1em;
	border-radius: 5px;
	transition: all 0.5s;
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0);
}

.is-style-fill .wp-block-button__link:hover {
	color: #fff;
	background-color: hsl(200, 30%, 30%);
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
}




.wp-block-button.is-style-outline a.wp-block-button__link {
	padding: 0.5em 4em 0.5em 1em;
	display: inline-block;
	border: 3px solid hsl(var(--blue1));
	border-radius: 5px;
	background-color: #fff !important;
	position: relative;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	transition: all 0.5s;
}

.wp-block-button.is-style-outline a.wp-block-button__link:hover {
	border: 3px solid hsl(200, 30%, 30%);
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
}



.wp-block-button.is-style-outline a.wp-block-button__link::after {
	content: '\f061';
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	background-color: hsl(var(--blue1));
	color: #fff;
	width: 3em;
	height: 1.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: 0;
	pointer-events: none;
	border-radius: 5px 0 0 0;
	padding-left: 0;
	transition: all 0.5s;
}


.wp-block-button.is-style-outline a.wp-block-button__link:hover::after {
	background-color: hsl(200, 30%, 30%);
	padding-left: 1em;
}




.foldbox_wrapper.press {
	transition: none;
	color: inherit;
}

.foldbox_wrapper.press:hover {
	color: hsl(200, 100%, 35%);
}



.foldbox_wrapper.press .foldbox_head em {
	font-style: normal;
	font-size: 0.8em;
	letter-spacing: 0.05em;
	display: inline-block;
	padding-bottom: 0.5em;
}


.foldbox_wrapper.more .foldbox_head::after {
	content: '\f08e';
	transform: rotate(0deg) !important;
	transition: none;
}

.foldbox_wrapper.pagepost .foldbox_head::after {
	content: '\f0fe';
	transform: rotate(0deg) !important;
	transition: none;
}

.cta_button .wp-block-button__link {
	font-size: 1.3em;
	text-align: center;
}

.contact_us_button a {
	padding: 1.5em 3em;
	font-size: 1.2em;
}

.contact_us_button strong {
	font-size: 1.25em;
	letter-spacing: 0.05em;
}

.board_details {
	margin-top: -0.5em;
}

.board_details p {
	margin: 0.5em 0;
	font-size: 0.9em;
}

article p a {
	border-bottom: 2px dotted;
}

article p a:hover {
	border-bottom: 2px solid;
}

article p.nobb a {
	border-bottom: none !important;
}

.profil-btn {
	font-weight: 600;
	font-size: 0.86em;
	cursor: pointer;
}

.profil-btn i {
	font-size: 1.2em;
	margin-right: 0.4em;
}

.profil-btn:hover {
	color: hsl(var(--blue1));
}

.fancybox__content {
	border-radius: 5px;
}

.fancybox__backdrop {
	background: rgba(0,0,0,0.65) !important;
}

.height100 {
	height: 100%;
}

/*------------------------------------*\
    Forms
\*------------------------------------*/

.contact_form_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1em 2em;
}

.contact_form_wrapper input, .contact_form_wrapper textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid hsl(200, 30%, 60%);
	padding: 0.4em 0.6em;
	background-color: #fff;
	font-weight: 700;
	color: hsl(200, 30%, 30%);
	outline: none !important;
}

.contact_form_wrapper input:focus, .contact_form_wrapper textarea:focus {
	border-bottom: 1px solid hsl(200, 30%, 30%);
}

.contact_form_wrapper label span:first-of-type {
	font-size: 0.9em;
	display: inline-block;
	padding-bottom: 0.4em;
}

.contact_form_wrapper p {
	display: contents;
}

.contact_form_wrapper .span2 {
	grid-column: span 2;
}

.contact_form_wrapper .wpcf7-submit {
	display: inline-block;
	border: none;
	background-color: hsl(var(--blue1));
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	width: min-content;
	padding-left: 2em;
	padding-right: 2em;
	
}

.contact_form_wrapper .wpcf7-submit:hover {
	background-color: hsl(200, 30%, 30%);
}

.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	background-color: hsl(200, 80.1%, 53%);
	color: #fff;
	font-weight: bold;
	padding: 1em;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #e88200;
	color: #fff;
	font-weight: bold;
	padding: 1em;
	border: none;
}




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width : 1760px)  {
	
	.home_banner {
		background-position: right bottom;
		background-size: cover;
	}
	
	.home_banner::after {
		background-position: right bottom;
	}
	
	.page_banner {
		height: calc(32vw + 20px);
	}
	
}

@media only screen and (max-width : 1160px)  {
	
	.wrapper {
		font-size: 1.8rem;
	}
	
	.home_banner {
		background-position: 65% bottom;
	}
	
	.home_banner::after {
		background-position: 65% bottom;
	}
	
	.page_banner {
		height: calc(36vw + 20px);
	}
	
	
}


@media only screen and (max-width : 940px)  {
	
	.wrapper {
		font-size: 1.6rem;
	}
	
	.home_cols .col1 {
		padding-right: 0;
	}
	
	.header_inner {
		align-items: center;
	}
	
	.menu_ico_ct {
		display: inline-block;
	}
	
	.nav > ul > li.current-menu-item::after, .nav .current-menu-parent::after {
		display: none;
	}
	
	.nav > ul > li.current-menu-item > a, .nav .current-menu-parent > a {
		font-weight: bold;
	}
	
	.nav {
		position: absolute;
		background-color: #fff;
		transform: translateX(0);
		right: 0;
		top: 100%;		
		padding-bottom: 1.5em;
		padding-top: 1.5em;
		opacity: 0;
		width: 50%;
		z-index: 12;
		pointer-events: none;
		transition: all 0.5s;
		overflow-y: scroll;
		padding-bottom: 150px;
		max-height: 100vh;
	}
	
	
	
	
	.nav ul {
		flex-direction: column;
		width: 95%;
		margin: 0 auto;
	}
	
	.nav ul li a {
		/*border-bottom: 2px solid #fff;*/
		margin: 0.25em 0.5em;
	}
	
	.menuopen .nav {
		width: 100%;
		opacity: 1;
		pointer-events: auto;			
	}
	
	.nav ul.sub-menu {
		position: relative;
		opacity: 1;
		background-color: transparent;
		pointer-events: unset;
		-webkit-box-shadow: 0 0.7em 1em -0.5em rgba(0,0,0,0) !important;
		box-shadow: 0 0.7em 1em -0.5em rgba(0,0,0,0) !important;
		padding-bottom: 1em;
		padding-left: 1em;
	}
	
	
	
	.nav .menu-item a {
		padding-bottom: 0.2em;
	}
	
	.page_banner {
		height: calc(42vw + 20px);
	}
	
}

@media only screen and (max-width : 760px)  {
	
	.home_cols .col2 {
		padding-left: 0;
		border-left: none;
	}
	
	.footer_row.row2 {
		flex-direction: column;
	}
	
	.footer_menu {
		width: 100%;
	}
	
	.footer_contact {
		padding-left: 0px;
		padding-top: 30px;
		border-left: none;
		border-top: 1px solid rgba(255,255,255,0.5);
		width: 100%;
	}
	
	
	.scrld .logo {
		height: 60px;
	}
	
	.home_banner {
		background-position: 78% bottom;
	}
	
	.home_banner::after {
		background-position: 78% bottom;
	}
	
	.home_teaser br {
		display: none;
	}
	
	.home_teaser strong {
		display: block;
	}
	
	.page_banner {
		height: calc(48vw + 20px);
	}
	
	
	.ib_reg_info {
		display: block;
		margin-bottom: 1em;
	}
	
	
	
}

@media only screen and (max-width : 540px)  {
	
	.footer_menu > ul {
		grid-template-columns: 1fr;
	}
	
	.logo {
		height: 80px;
	}
	
	.page_banner h1 {
		font-size: 1.6em;
	}
	
	h2 {
		font-size: 1.3em;
	}
	
	h3 {
		font-size: 1.2em;
	}
	
	.main_content {
		padding-top: 0;
	}
	
	.vpm_footer {
		height: 2.4em;
		margin-right: 2em;
	}
	
	.iso_footer {
		height: 3.6em;
	}
	
	.logo_footer {
		height: 3.6em;
	}
	
	.footer_row.row2 {
		font-size: 1.3em;
		line-height: 1.8;
	}
	
	.page_banner {
		height: calc(54vw + 20px);
	}
	
	.page_banner h1 {
		max-width: unset;
	}
	
	.contact_form_wrapper {
		grid-template-columns: 1fr;
	}
	
	.contact_form_wrapper .span2 {
		grid-column: span 1;
	}
	
}




/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
