/*
TopBox is derived from Nivo Lightbox v1.3.1, created by Dev7studios:
http://dev7studios.com/nivo-lightbox

TopBox is updated for jQuery 3 and has additional features / content support.
Maintained by William Woodgate

TopBox homepage:
https://willwoodgate.com/projects/topbox/

Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php
*/
/* Core CSS to make the lightbox work */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99995;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.topbox_overlay,
.topbox_overlay *,
.topbox_overlay *:before,
.topbox_overlay *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.topbox_fill {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_overlay.topbox_open {
  visibility: visible;
  opacity: 1;
}

.topbox_wrapper {
  position: absolute;
  z-index: 99996;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.topbox_content {
  position: relative;
  z-index: 99998;
  height: 80vh;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbox_title_wrap {
  position: relative;
  z-index: 99998;
}

.topbox_nav {
  display: none;
}

.topbox_prev,
.topbox_next,
.topbox_close {
  position: absolute;
  z-index: 99999;
  background: none;
  border: none;
  cursor: pointer;
}

.topbox_prev {
  left: 0;
}

.topbox_next {
  right: 0;
}

.topbox_close {
  top: 0;
  right: 0;
}

.topbox_close_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
}

.topbox_image {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  margin: auto;
}

.topbox_html5_audio_wrap {
  width: 100%;
}

.topbox_html5audio {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

/* .topbox_html5_video_wrap {
  width: 100%;
} */

.topbox_html5video {
  margin: auto;
  max-width: 100%;
  height: auto;
}

.topbox_iframe_wrap,
.topbox_iframe,
.topbox_pdf_wrap,
.topbox_pdf {
  width: 100%;
  height: 100%;
  display: block;
}

.topbox_pdf_mobile_message {
  display: inline-block;
  margin: auto;
}

.topbox_embedded_web_video {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.topbox_embedded_web_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_video_iframe_wrap {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
}

iframe.topbox_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Fix for video sizing, if using the Plyr plugin for custom video controls
https://github.com/sampotts/plyr
*/
.topbox_content .plyr {
  min-width: 100%;
}

.plyr__video-wrapper {
  max-height: 80vh;
  max-width: 80vw;
}


.topbox_html5_video_wrap video {
  max-width: 100%; 
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.topbox_inline,
.topbox_ajax {
  max-height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

.topbox_error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.topbox_error p {
  display: table-cell;
  vertical-align: middle;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* slideLeft / slideRight / slideUp / slideDown */
.topbox_notouch .topbox_effect_slideLeft .topbox_content,
.topbox_notouch .topbox_effect_slideRight .topbox_content,
.topbox_notouch .topbox_effect_slideUp .topbox_content,
.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.topbox_notouch .topbox_effect_slideLeft .topbox_content {
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.topbox_notouch .topbox_effect_slideRight .topbox_content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.topbox_notouch .topbox_effect_slideLeft.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideRight.topbox_open .topbox_content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

.topbox_notouch .topbox_effect_slideUp .topbox_content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.topbox_notouch .topbox_effect_slideUp.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideDown.topbox_open .topbox_content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */



/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0 !important; list-style: none !important;}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
	font-family: 'flexslider-icon';
	src:url('../pregnancy-patient-gallery_files/flexslider-icon.eot');
	src:url('../pregnancy-patient-gallery_files/flexslider-icon.eot?#iefix') format('embedded-opentype'),
		url('../pregnancy-patient-gallery_files/flexslider-icon.woff') format('woff'),
		url('../pregnancy-patient-gallery_files/flexslider-icon.ttf') format('truetype'),
		url('../pregnancy-patient-gallery_files/flexslider-icon.svg#flexslider-icon') format('svg');
	font-weight: normal;
	font-style: normal;
}
#stacks_in_11354 .sf-loader{
	position: relative;
	text-align: center;
	font: normal 12px "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
	letter-spacing: 1px;
	padding-bottom: 15px;
	-webkit-text-stroke: 0.15px;
  top: 60%;
  -webkit-font-smoothing: antialiased;
  color: #999999;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sf-loader hr{
	height: 10px !important;
	background-color: transparent !important;
	border: none;
}
#stacks_in_11354 .sf-spinner {
  width: 80px;
  height: 50px;
  display: inline-block;
  background-color: #999999;
  border-radius: 1px;
  position: relative;
  z-index: 10;
  -webkit-backface-visibility: visible !important;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


/* FlexSlider Necessary Styles
*********************************/

#stacks_in_11354{
	position: relative;
	z-index: 20;
	text-shadow: none;
	height: 225px;
	max-height: ;
	max-width: ;
	max-height:none;max-width:none;
	overflow: hidden;
}
.sf-loaded #stacks_in_11354{height: auto;}

.flexslider {
	opacity: 0;
	-webkit-transition: opacity 1s ease-out;
	-moz-transition: opacity 1s ease-out;
	transition: opacity 1s ease-out;
}
.sf-loaded .flexslider{
	opacity: 1;
}
.sf-loaded .sf-loader{
	display: none;
}

.flexslider .slides{
	margin-bottom: 0 !important;
	padding-left: 0 !important;
}

.flexslider .slides:not(.lt-ie){
	margin-left: 0 !important;
}

.flexslider .slides a,
.flexslider .slides img{
	outline: none;
	border: none;
}
.flexslider .slides a{}
.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.flexslider .slides > li.anim {
	overflow: hidden;
  -webkit-transition: max-height 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: max-height 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: max-height 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.flexslider .slides img{width:100%;display: block;}
.flexslider .slides img.max {width: 100% !important; height: auto !important;}
.flexslider .slides img.limit {width: auto !important;}

.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider { position: relative; zoom: 1; }
#stacks_in_11354 *{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#extraContainer1 .flexslider { margin: 0;}
.flex-viewport { 
	max-height: 2000px; 
	-webkit-transition: all 1s ease; 
	-moz-transition: all 1s ease; 
	-o-transition: all 1s ease; 
	transition: all 1s ease; 
}

.flexslider .slides { zoom: 1;}

/* Direction Nav */
#stacks_in_11354 .flex-direction-nav {*height: 0;}

#stacks_in_11354 .flex-direction-nav a{ 
	text-decoration:none;
	display: block;
	background-color: transparent;
	border-radius: 3px;
	font-style: normal !important;
	position: absolute;
	top: 50%;
	height: 44px;
	width: 44px;
	margin-top: -22px;
	z-index: 10;
	opacity: 0;
	cursor: pointer;
	line-height: 0;
	margin-left: 30px;
	color: #111111 !important;
	-webkit-transition: all .7s cubic-bezier(0.770, 0.000, 0.175, 1.000);
	-moz-transition: all .7s cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	transition: all .7s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
#stacks_in_11354 .flex-direction-nav .flex-next{
	margin-left: 0px;
	margin-right: 30px;
}
#stacks_in_11354 .flex-direction-nav .flex-prev {
	-webkit-transform: translateX(-50px);
  -moz-transform:    translateX(-50px);
  -ms-transform:     translateX(-50px);
  -o-transform:      translateX(-50px);
  transform:         translateX(-50px);
	left: -10px;
}
#stacks_in_11354 .flex-direction-nav .flex-next { 
	-webkit-transform: translateX(50px);
  -moz-transform:    translateX(50px);
  -ms-transform:     translateX(50px);
  -o-transform:      translateX(50px);
  transform:         translateX(50px);
	text-align: right; 
	right: -10px;
}
#stacks_in_11354 .flexslider:hover .flex-prev,
#stacks_in_11354 .flexslider:hover .flex-next {
	-webkit-transform: translateX(0);
  -moz-transform:    translateX(0);
  -ms-transform:     translateX(0);
  -o-transform:      translateX(0);
  transform:         translateX(0);
	opacity: 0.4;
}

#stacks_in_11354 .flex-direction-nav .flex-prev:before,
#stacks_in_11354 .flex-direction-nav .flex-next:before{
	text-align: center;
	width: 45px;
	line-height: 46px;
	font-family: "flexslider-icon";
	-webkit-font-smoothing: subpixel-antialiased;
	font-size: 20px; 
	display: inline-block; 
	content: '\f001'; 
	z-index: 10;
	position: relative;
}
#stacks_in_11354 .flex-direction-nav .flex-next:before  { width: 45px;content: '\f002';}
#stacks_in_11354 .flexslider:hover .flex-next:hover, 
#stacks_in_11354 .flexslider:hover .flex-prev:hover { opacity: 1; color: #111111 !important;}
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }


/* Caption */
.slides > li{position: relative;}
.flex-caption { 
	height:50px; 
	background:none;
	-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); 
	background: rgba(0,0,0,.5);
	box-shadow: inset 0 1px 0 rgba(0,0,0,.1), inset 0 2px 0 rgba(255,255,255,.04);
	zoom: 1; 
	text-align: left; 
	width: 100%; 
	z-index: 10;
	display: block; 
	text-indent: 20px;
	position: absolute; 
	left: 0; 
	bottom: 0; 
	color: #fff;
	line-height: 50px;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke: 0.2px #999;
	font-size: 14px;
}

/* Control Nav */
body ol.flex-control-nav {
	list-style-type: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100%; 
	position: absolute; 
	bottom: -40px; 
	text-align: center;
	opacity: 0.2;
	line-height: 50px;
	bottom: 0; 
	width:100%;
	z-index:100;
	-webkit-transition: opacity .6s linear;
	-moz-transition: opacity .6s linear;
	transition: opacity .6s linear;
}
.flex-control-nav *{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.flexslider:hover .flex-control-nav {
	opacity: 0.5;
}
#stacks_in_11354 .flex-control-nav li {
	margin: 0 7px; 
	display: inline-block;
	zoom: 1;
	position: relative;
	*display: inline;
	list-style-type: none !important;
}
#stacks_in_11354 .flex-control-paging li a {
	color: transparent !important; 
	width: 11px; 
	height: 11px; 
	display: block;
	float: left;
	background: #000000; 
	cursor: pointer; 
	text-align: left;
	text-indent: -9999px;
	position: relative;
	top: 1px;
	-webkit-border-radius: 20px; 
	-moz-border-radius: 20px; 
	-o-border-radius: 20px; 
	border-radius: 20px;
	-webkit-transition: background .25s ease-out;
	-moz-transition: background .25s ease-out;
	transition: background .25s ease-out;
}
#stacks_in_11354 .flex-control-paging li a:hover { background:  #FFFFFF; }
#stacks_in_11354 .flex-control-paging li a.flex-active { background: #FFFFFF; cursor: default; }

/* Control Nav MOD */
#extraContainer1 .flex-control-nav {bottom: 0;}

.flex-control-nav.alignRight {
	opacity: 0.4;
	text-align: right; 
	right: 15px;
	width:auto;
	display: block;
	float: left;
}

.flexslider:hover .flex-control-nav.alignRight {
	opacity: 0.7;
}

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
#stacks_in_11354 .flexslider .flex-prev,
#stacks_in_11354 .flexslider .flex-next {
	-webkit-transform: translateX(0);
  -moz-transform:    translateX(0);
  -ms-transform:     translateX(0);
  -o-transform:      translateX(0);
  transform:         translateX(0);
	opacity: 0.6;
}
}
@media screen and (max-width: 480px) {
	#stacks_in_11354 .flex-direction-nav{display: none;}
}


/* Edit Mode UI  */




#stacks_in_1784 {
	margin: 0px 0px 32px 0px;
}
.topbox_content {
  width: 85vw;
  height: 85vh;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}


/* Stops the page scrolling when the lightbox is opened */
html.topbox_open,
html.topbox_open body {
overflow: hidden !important;
}


#topbox_trigger_region_stacks_in_11383 {
  position: relative;
}

#topbox_trigger_stacks_in_11383 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}












/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}





























































/* Playr custom video controls */
@keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{from{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:subpixel-antialiased;direction:ltr;font-family:Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-variant-numeric:tabular-nums;font-weight:500;line-height:1.7;max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease}.plyr audio,.plyr video{border-radius:inherit;height:auto;vertical-align:middle;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui ::after,.plyr--full-ui ::before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4a5764;border-radius:2px;color:#fff;font-size:9px;line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;color:#fff;display:none;font-size:14px;left:0;padding:10px;position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions .plyr__caption{background:rgba(0,0,0,.8);border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__captions .plyr__caption div{display:inline}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:16px;padding:20px}}@media (min-width:768px){.plyr__captions{font-size:18px}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(-40px)}.plyr__control{background:0 0;border:0;border-radius:3px;color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;position:relative;transition:all .3s ease}.plyr__control svg{display:block;fill:currentColor;height:18px;pointer-events:none;width:18px}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}a.plyr__control{text-decoration:none}a.plyr__control::after,a.plyr__control::before{display:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr__control--overlaid{background:rgba(0,179,255,.8);border:0;border-radius:100%;color:#fff;display:none;left:50%;padding:15px;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{background:#00b3ff}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:2.5px}.plyr__controls .plyr__controls__item:first-child{margin-left:0;margin-right:auto}.plyr__controls .plyr__controls__item.plyr__progress__container{padding-left:2.5px}.plyr__controls .plyr__controls__item.plyr__time{padding:0 5px}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0}.plyr__controls .plyr__controls__item.plyr__volume{padding-right:5px}.plyr__controls .plyr__controls__item.plyr__volume:first-child{padding-right:0}.plyr__controls:empty{display:none}.plyr--audio .plyr__controls{background:#fff;border-radius:inherit;color:#4a5764;padding:10px}.plyr--video .plyr__controls{background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.7));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;left:0;padding:20px 5px 5px;position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:35px 10px 10px}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip]{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:16px;margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container::after{border:4px solid transparent;border-top-color:rgba(255,255,255,.9);content:'';height:0;position:absolute;right:15px;top:100%;width:0}.plyr__menu__container [role=menu]{padding:7px}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4a5764;display:flex;font-size:14px;padding:4px 11px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control::after{border:4px solid transparent;content:'';position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px}.plyr__menu__container .plyr__control--forward::after{border-left-color:rgba(74,87,100,.8);right:5px}.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:500;margin:7px;margin-bottom:3px;padding-left:28px;position:relative;width:calc(100% - 14px)}.plyr__menu__container .plyr__control--back::after{border-right-color:rgba(74,87,100,.8);left:7px}.plyr__menu__container .plyr__control--back::before{background:#c1c9d1;box-shadow:0 1px 0 #fff;content:'';height:1px;left:0;margin-top:4px;overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:7px}.plyr__menu__container .plyr__control[role=menuitemradio]::after,.plyr__menu__container .plyr__control[role=menuitemradio]::before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]::before{background:rgba(0,0,0,.1);content:'';display:block;flex-shrink:0;height:16px;margin-right:10px;transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]::after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{background:#00b3ff}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before{background:rgba(0,0,0,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:-5px;overflow:hidden;padding-left:25px;pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:0 0;border:0;border-radius:26px;color:#00b3ff;display:block;height:19px;margin:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none;background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0))}.plyr--full-ui input[type=range]::-webkit-slider-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;-webkit-appearance:none;margin-top:-4px}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-moz-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;height:5px}.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;background:currentColor}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;margin-top:0}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:14px}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}.plyr--video .plyr__time{text-shadow:0 1px 1px rgba(0,0,0,.15)}.plyr__tooltip{background:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:14px;font-weight:500;left:50%;line-height:1.3;margin-bottom:10px;opacity:0;padding:5px 7.5px;pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;white-space:nowrap;z-index:2}.plyr__tooltip::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:16px}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{left:auto;right:16px;transform:translateX(50%)}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;border-radius:inherit;overflow:hidden;position:relative;z-index:0}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr__progress{left:6.5px;margin-right:13px;position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:-6.5px;margin-right:-6.5px;width:calc(100% + 13px)}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:14px;left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:5px;left:0;margin-top:-2.5px;padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--video .plyr__progress__buffer{box-shadow:0 1px 1px rgba(0,0,0,.15);color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress__buffer{color:rgba(193,201,209,.66)}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,41,47,.6) 25%,transparent 25%,transparent 50%,rgba(35,41,47,.6) 50%,rgba(35,41,47,.6) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,201,209,.66)}.plyr__volume{align-items:center;display:flex;flex:1;position:relative}.plyr__volume input[type=range]{margin-left:5px;position:relative;z-index:2}@media (min-width:480px){.plyr__volume{max-width:90px}}@media (min-width:768px){.plyr__volume{max-width:110px}}.plyr--is-ios .plyr__volume{display:none!important}.plyr--is-ios.plyr--vimeo [data-plyr=mute]{display:none!important}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}.plyr:-ms-fullscreen .plyr__captions{font-size:21px}.plyr:fullscreen .plyr__captions{font-size:21px}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;height:100%;margin:0;width:100%;bottom:0;left:0;position:fixed;right:0;top:0;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads::after{background:rgba(35,41,47,.8);border-radius:2px;bottom:10px;color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;z-index:3}.plyr__ads::after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;left:0;margin:-2.5px 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);margin-bottom:10px;opacity:0;padding:3px;pointer-events:none;position:absolute;transform:translate(0,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1)}.plyr__preview-thumb::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c9d1;border-radius:2px;overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;color:#fff;font-size:14px;padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;border:0!important;height:1px!important;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}

/* https://github.com/sampotts/plyr/issues/662 */

.plyr--full-ui input[type=range] {
  color: rgba(0, 179, 255, 1.00);
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.50);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: rgba(0, 179, 255, 1.00);
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.50);
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: rgba(0, 179, 255, 1.00);
}

.plyr__video-wrapper {
  max-width: 85vw;
  max-height: 85vh;
}

.topbox_content .plyr video {
  width: auto;
  max-width: 100%;
}




/* Smart4columns2 stack v2.4.2 */#stacks_in_11408 .s4c_stacks_in_11408_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11408 .s4c_stacks_in_11408_cw, #stacks_in_11408 .s4c_stacks_in_11408_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11408 .s4c_stacks_in_11408_cw div[class^="s4c_stacks_in_11408_col"] {*/#stacks_in_11408 .s4c_stacks_in_11408_cw [class^="s4c_stacks_in_11408_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11408 .s4c_stacks_in_11408_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11408 .s4c_stacks_in_11408_cw [class^="s4c_stacks_in_11408_col"] {		display: block;		width: 100%;	}		#stacks_in_11408 .s4c_stacks_in_11408_cw .s4c_stacks_in_11408_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11408 .s4c_stacks_in_11408_col1 {		order: 1;	}		#stacks_in_11408 .s4c_stacks_in_11408_col2 {		order: 3;	}		#stacks_in_11408 .s4c_stacks_in_11408_col3 {		order: 5;	}		#stacks_in_11408 .s4c_stacks_in_11408_col4 {		order: 7;	}		#stacks_in_11408 .s4c_stacks_in_11408_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11408 .s4c_stacks_in_11408_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11408 .s4c_stacks_in_11408_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11408 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11385 {
  position: relative;
}

#topbox_trigger_stacks_in_11385 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11391 {
  position: relative;
}

#topbox_trigger_stacks_in_11391 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11404 {
  position: relative;
}

#topbox_trigger_stacks_in_11404 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11413 {
  position: relative;
}

#topbox_trigger_stacks_in_11413 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11417 .s4c_stacks_in_11417_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11417 .s4c_stacks_in_11417_cw, #stacks_in_11417 .s4c_stacks_in_11417_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11417 .s4c_stacks_in_11417_cw div[class^="s4c_stacks_in_11417_col"] {*/#stacks_in_11417 .s4c_stacks_in_11417_cw [class^="s4c_stacks_in_11417_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11417 .s4c_stacks_in_11417_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11417 .s4c_stacks_in_11417_cw [class^="s4c_stacks_in_11417_col"] {		display: block;		width: 100%;	}		#stacks_in_11417 .s4c_stacks_in_11417_cw .s4c_stacks_in_11417_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11417 .s4c_stacks_in_11417_col1 {		order: 1;	}		#stacks_in_11417 .s4c_stacks_in_11417_col2 {		order: 3;	}		#stacks_in_11417 .s4c_stacks_in_11417_col3 {		order: 5;	}		#stacks_in_11417 .s4c_stacks_in_11417_col4 {		order: 7;	}		#stacks_in_11417 .s4c_stacks_in_11417_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11417 .s4c_stacks_in_11417_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11417 .s4c_stacks_in_11417_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11417 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11424 {
  position: relative;
}

#topbox_trigger_stacks_in_11424 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11422 {
  position: relative;
}

#topbox_trigger_stacks_in_11422 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11420 {
  position: relative;
}

#topbox_trigger_stacks_in_11420 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11418 {
  position: relative;
}

#topbox_trigger_stacks_in_11418 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11438 .s4c_stacks_in_11438_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11438 .s4c_stacks_in_11438_cw, #stacks_in_11438 .s4c_stacks_in_11438_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11438 .s4c_stacks_in_11438_cw div[class^="s4c_stacks_in_11438_col"] {*/#stacks_in_11438 .s4c_stacks_in_11438_cw [class^="s4c_stacks_in_11438_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11438 .s4c_stacks_in_11438_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11438 .s4c_stacks_in_11438_cw [class^="s4c_stacks_in_11438_col"] {		display: block;		width: 100%;	}		#stacks_in_11438 .s4c_stacks_in_11438_cw .s4c_stacks_in_11438_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11438 .s4c_stacks_in_11438_col1 {		order: 1;	}		#stacks_in_11438 .s4c_stacks_in_11438_col2 {		order: 3;	}		#stacks_in_11438 .s4c_stacks_in_11438_col3 {		order: 5;	}		#stacks_in_11438 .s4c_stacks_in_11438_col4 {		order: 7;	}		#stacks_in_11438 .s4c_stacks_in_11438_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11438 .s4c_stacks_in_11438_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11438 .s4c_stacks_in_11438_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11438 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11445 {
  position: relative;
}

#topbox_trigger_stacks_in_11445 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11443 {
  position: relative;
}

#topbox_trigger_stacks_in_11443 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11441 {
  position: relative;
}

#topbox_trigger_stacks_in_11441 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11439 {
  position: relative;
}

#topbox_trigger_stacks_in_11439 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11459 .s4c_stacks_in_11459_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11459 .s4c_stacks_in_11459_cw, #stacks_in_11459 .s4c_stacks_in_11459_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11459 .s4c_stacks_in_11459_cw div[class^="s4c_stacks_in_11459_col"] {*/#stacks_in_11459 .s4c_stacks_in_11459_cw [class^="s4c_stacks_in_11459_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11459 .s4c_stacks_in_11459_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11459 .s4c_stacks_in_11459_cw [class^="s4c_stacks_in_11459_col"] {		display: block;		width: 100%;	}		#stacks_in_11459 .s4c_stacks_in_11459_cw .s4c_stacks_in_11459_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11459 .s4c_stacks_in_11459_col1 {		order: 1;	}		#stacks_in_11459 .s4c_stacks_in_11459_col2 {		order: 3;	}		#stacks_in_11459 .s4c_stacks_in_11459_col3 {		order: 5;	}		#stacks_in_11459 .s4c_stacks_in_11459_col4 {		order: 7;	}		#stacks_in_11459 .s4c_stacks_in_11459_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11459 .s4c_stacks_in_11459_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11459 .s4c_stacks_in_11459_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11459 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11466 {
  position: relative;
}

#topbox_trigger_stacks_in_11466 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11464 {
  position: relative;
}

#topbox_trigger_stacks_in_11464 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11462 {
  position: relative;
}

#topbox_trigger_stacks_in_11462 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11460 {
  position: relative;
}

#topbox_trigger_stacks_in_11460 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11480 .s4c_stacks_in_11480_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11480 .s4c_stacks_in_11480_cw, #stacks_in_11480 .s4c_stacks_in_11480_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11480 .s4c_stacks_in_11480_cw div[class^="s4c_stacks_in_11480_col"] {*/#stacks_in_11480 .s4c_stacks_in_11480_cw [class^="s4c_stacks_in_11480_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11480 .s4c_stacks_in_11480_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11480 .s4c_stacks_in_11480_cw [class^="s4c_stacks_in_11480_col"] {		display: block;		width: 100%;	}		#stacks_in_11480 .s4c_stacks_in_11480_cw .s4c_stacks_in_11480_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11480 .s4c_stacks_in_11480_col1 {		order: 1;	}		#stacks_in_11480 .s4c_stacks_in_11480_col2 {		order: 3;	}		#stacks_in_11480 .s4c_stacks_in_11480_col3 {		order: 5;	}		#stacks_in_11480 .s4c_stacks_in_11480_col4 {		order: 7;	}		#stacks_in_11480 .s4c_stacks_in_11480_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11480 .s4c_stacks_in_11480_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11480 .s4c_stacks_in_11480_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11480 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11487 {
  position: relative;
}

#topbox_trigger_stacks_in_11487 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11485 {
  position: relative;
}

#topbox_trigger_stacks_in_11485 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11483 {
  position: relative;
}

#topbox_trigger_stacks_in_11483 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11481 {
  position: relative;
}

#topbox_trigger_stacks_in_11481 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11501 .s4c_stacks_in_11501_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11501 .s4c_stacks_in_11501_cw, #stacks_in_11501 .s4c_stacks_in_11501_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11501 .s4c_stacks_in_11501_cw div[class^="s4c_stacks_in_11501_col"] {*/#stacks_in_11501 .s4c_stacks_in_11501_cw [class^="s4c_stacks_in_11501_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11501 .s4c_stacks_in_11501_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11501 .s4c_stacks_in_11501_cw [class^="s4c_stacks_in_11501_col"] {		display: block;		width: 100%;	}		#stacks_in_11501 .s4c_stacks_in_11501_cw .s4c_stacks_in_11501_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11501 .s4c_stacks_in_11501_col1 {		order: 1;	}		#stacks_in_11501 .s4c_stacks_in_11501_col2 {		order: 3;	}		#stacks_in_11501 .s4c_stacks_in_11501_col3 {		order: 5;	}		#stacks_in_11501 .s4c_stacks_in_11501_col4 {		order: 7;	}		#stacks_in_11501 .s4c_stacks_in_11501_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11501 .s4c_stacks_in_11501_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11501 .s4c_stacks_in_11501_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11501 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11508 {
  position: relative;
}

#topbox_trigger_stacks_in_11508 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11506 {
  position: relative;
}

#topbox_trigger_stacks_in_11506 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11504 {
  position: relative;
}

#topbox_trigger_stacks_in_11504 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11502 {
  position: relative;
}

#topbox_trigger_stacks_in_11502 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11522 .s4c_stacks_in_11522_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11522 .s4c_stacks_in_11522_cw, #stacks_in_11522 .s4c_stacks_in_11522_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11522 .s4c_stacks_in_11522_cw div[class^="s4c_stacks_in_11522_col"] {*/#stacks_in_11522 .s4c_stacks_in_11522_cw [class^="s4c_stacks_in_11522_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11522 .s4c_stacks_in_11522_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11522 .s4c_stacks_in_11522_cw [class^="s4c_stacks_in_11522_col"] {		display: block;		width: 100%;	}		#stacks_in_11522 .s4c_stacks_in_11522_cw .s4c_stacks_in_11522_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11522 .s4c_stacks_in_11522_col1 {		order: 1;	}		#stacks_in_11522 .s4c_stacks_in_11522_col2 {		order: 3;	}		#stacks_in_11522 .s4c_stacks_in_11522_col3 {		order: 5;	}		#stacks_in_11522 .s4c_stacks_in_11522_col4 {		order: 7;	}		#stacks_in_11522 .s4c_stacks_in_11522_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11522 .s4c_stacks_in_11522_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11522 .s4c_stacks_in_11522_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11522 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11529 {
  position: relative;
}

#topbox_trigger_stacks_in_11529 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11527 {
  position: relative;
}

#topbox_trigger_stacks_in_11527 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11525 {
  position: relative;
}

#topbox_trigger_stacks_in_11525 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11523 {
  position: relative;
}

#topbox_trigger_stacks_in_11523 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11543 .s4c_stacks_in_11543_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11543 .s4c_stacks_in_11543_cw, #stacks_in_11543 .s4c_stacks_in_11543_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11543 .s4c_stacks_in_11543_cw div[class^="s4c_stacks_in_11543_col"] {*/#stacks_in_11543 .s4c_stacks_in_11543_cw [class^="s4c_stacks_in_11543_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11543 .s4c_stacks_in_11543_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11543 .s4c_stacks_in_11543_cw [class^="s4c_stacks_in_11543_col"] {		display: block;		width: 100%;	}		#stacks_in_11543 .s4c_stacks_in_11543_cw .s4c_stacks_in_11543_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11543 .s4c_stacks_in_11543_col1 {		order: 1;	}		#stacks_in_11543 .s4c_stacks_in_11543_col2 {		order: 3;	}		#stacks_in_11543 .s4c_stacks_in_11543_col3 {		order: 5;	}		#stacks_in_11543 .s4c_stacks_in_11543_col4 {		order: 7;	}		#stacks_in_11543 .s4c_stacks_in_11543_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11543 .s4c_stacks_in_11543_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11543 .s4c_stacks_in_11543_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11543 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11550 {
  position: relative;
}

#topbox_trigger_stacks_in_11550 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11548 {
  position: relative;
}

#topbox_trigger_stacks_in_11548 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11546 {
  position: relative;
}

#topbox_trigger_stacks_in_11546 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11544 {
  position: relative;
}

#topbox_trigger_stacks_in_11544 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/* Smart4columns2 stack v2.4.2 */#stacks_in_11564 .s4c_stacks_in_11564_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_11564 .s4c_stacks_in_11564_cw, #stacks_in_11564 .s4c_stacks_in_11564_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_11564 .s4c_stacks_in_11564_cw div[class^="s4c_stacks_in_11564_col"] {*/#stacks_in_11564 .s4c_stacks_in_11564_cw [class^="s4c_stacks_in_11564_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_col1 {												vertical-align: top;  		border-radius: 0px;		}#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_col2 {											vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_col3 {									vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_col4 {					vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_spacer {	display: table-cell;	width: 2%;}/*@media only screen and (max-width: 768px) {*/@media only screen and (max-width: 768px) {	#stacks_in_11564 .s4c_stacks_in_11564_cw {		table-layout: auto;		display: flex;		flex-direction: column;	}		#stacks_in_11564 .s4c_stacks_in_11564_cw [class^="s4c_stacks_in_11564_col"] {		display: block;		width: 100%;	}		#stacks_in_11564 .s4c_stacks_in_11564_cw .s4c_stacks_in_11564_spacer {		display: block;		height: 15px;		width: 100%;	}	#stacks_in_11564 .s4c_stacks_in_11564_col1 {		order: 1;	}		#stacks_in_11564 .s4c_stacks_in_11564_col2 {		order: 3;	}		#stacks_in_11564 .s4c_stacks_in_11564_col3 {		order: 5;	}		#stacks_in_11564 .s4c_stacks_in_11564_col4 {		order: 7;	}		#stacks_in_11564 .s4c_stacks_in_11564_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_11564 .s4c_stacks_in_11564_spacer:nth-of-type(3n-1) {		order: 4;	}		#stacks_in_11564 .s4c_stacks_in_11564_spacer:nth-of-type(3n) {		order: 6;	}													}/* End of Smart4columns2 stack */
#stacks_in_11564 {
	margin: 0px 0px 15px 0px;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_11571 {
  position: relative;
}

#topbox_trigger_stacks_in_11571 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






