/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	align-items: flex-end;
	justify-content: flex-end;
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	align-items: center;
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

/* Module Templates
------------------------------------------------------ */

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-col-content {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





/* Full Height Rows */
.fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap,
.fl-node-mljz16a4soqu.fl-row-custom-height > .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap {
	min-height: 100vh;
}
.fl-node-mljz16a4soqu.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 0;
}

.fl-builder-edit .fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (aspect-ratio: 40/71) {
	.fl-node-mljz16a4soqu.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-mljz16a4soqu > .fl-row-content-wrap {
	background-image: url(https://legacy.nhsa.org/wp-content/uploads/2022/09/NHSA_1EL_2974-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-mljz16a4soqu.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 310px;
}






.fl-node-7ebvtuos15mz > .fl-row-content-wrap {
	background-color: #0083bb;
}
.fl-node-7ebvtuos15mz .fl-row-content {
	max-width: 1048px;
}
 .fl-node-7ebvtuos15mz > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:10px;
}






/* Full Height Rows */
.fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap,
.fl-node-xibnvdelkz72.fl-row-custom-height > .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap {
	min-height: 100vh;
}
.fl-node-xibnvdelkz72.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 0;
}

.fl-builder-edit .fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (aspect-ratio: 40/71) {
	.fl-node-xibnvdelkz72.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-xibnvdelkz72 > .fl-row-content-wrap {
	background-color: #0083bb;
}
.fl-node-xibnvdelkz72.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 20px;
}
.fl-node-xibnvdelkz72.fl-row-fixed-width, .fl-node-xibnvdelkz72 .fl-row-fixed-width {
	max-width: 1306px;
}
 .fl-node-xibnvdelkz72 > .fl-row-content-wrap {
	margin-right:-500px;
	margin-left:200px;
}
 .fl-node-xibnvdelkz72 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:10px;
}






.fl-node-1l4tgkyjq36h.fl-row-fixed-width, .fl-node-1l4tgkyjq36h .fl-row-fixed-width {
	max-width: 1078px;
}






 .fl-node-gnz78lufcdv9 > .fl-row-content-wrap {
	margin-top:-20px;
}






.fl-node-hjrfseoai201 > .fl-row-content-wrap {
	background-color: rgba(0,131,187,0.1);
}












.fl-node-y5h9voa1w4ub > .fl-row-content-wrap {
	background-color: rgba(0,131,187,0.09);
}












.fl-node-8z6y9jtlck2p > .fl-row-content-wrap {
	background-color: rgba(0,131,187,0.08);
}






.fl-node-z6r3w95pbvq8 .fl-row-content {
	max-width: 1048px;
}
 .fl-node-z6r3w95pbvq8 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:10px;
}




.fl-node-xmu3d7zlfk20 {
	width: 100%;
}




.fl-node-1jp5rs7oyadl {
	width: 100%;
}




.fl-node-nx4jvpeuq1g7 {
	width: 31%;
}




.fl-node-t9ejb1o2g76w {
	width: 45%;
}




.fl-node-w62aq8z5ohur {
	width: 89%;
}




.fl-node-js2px3tiqawe {
	width: 31%;
}




.fl-node-guh1yxer60a2 {
	width: 65%;
}




.fl-node-89pm2xdy5tkc {
	width: 31%;
}




.fl-node-j6hv02t9reyi {
	width: 31%;
}




.fl-node-wotdjemxakl6 {
	width: 100%;
}




.fl-node-kbx59rydpc7j {
	width: 31%;
}




.fl-node-0ntsjbfdrmcy {
	width: 11%;
}




.fl-node-o18xskhq4rey {
	width: 100%;
}




.fl-node-q9r80usncba6 {
	width: 100%;
}




.fl-node-dsu0mvhw34jo {
	width: 100%;
}




.fl-node-hyj45tu9m2xn {
	width: 11%;
}




.fl-node-xcrwau19niqb {
	width: 100%;
}




.fl-node-g72ncpqk63ro {
	width: 51%;
}




.fl-node-umpc8gaiv6l5 {
	width: 100%;
}




.fl-node-alz96fyh32v8 {
	width: 32%;
}




.fl-node-oui8fank0yqd {
	width: 88%;
}




.fl-node-wmkvea35rdjl {
	width: 78%;
}




.fl-node-93j06fdvwasq {
	width: 9%;
}




.fl-node-74boek8z95d2 {
	width: 10%;
}




.fl-node-batfe317us2y {
	width: 68%;
}




.fl-node-yvj1m3wilfc7 {
	width: 68%;
}




.fl-node-vfnk76gtbquj {
	width: 68%;
}




.fl-node-y7prgzshvkuq {
	width: 34%;
}




.fl-node-n71f2dwl5aiz {
	width: 48%;
}




.fl-node-k2h9no6tqd4m {
	width: 34%;
}




.fl-node-oi9rl38z1hpq {
	width: 68%;
}




.fl-node-4xeg6c7fd3b8 {
	width: 68%;
}




.fl-node-rz6injyoklvg {
	width: 9%;
}




.fl-node-gp6xmn5i81ch {
	width: 32%;
}




.fl-node-30yjbplkoxw4 {
	width: 44%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-9oy3fbpgsr6d h4.fl-heading a,
.fl-row .fl-col .fl-node-9oy3fbpgsr6d h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-9oy3fbpgsr6d h4.fl-heading .fl-heading-text *,
.fl-node-9oy3fbpgsr6d h4.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-9oy3fbpgsr6d.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
}
 .fl-node-9oy3fbpgsr6d > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-e9nf2zhvtcax.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
	line-height: 1.5;
}
 .fl-node-e9nf2zhvtcax > .fl-module-content {
	margin-top:20px;
	margin-bottom:30px;
}
@media (max-width: 768px) { .fl-node-e9nf2zhvtcax > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.fl-builder-content .fl-node-5nedz4cb3mga .fl-rich-text, .fl-builder-content .fl-node-5nedz4cb3mga .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-5nedz4cb3mga > .fl-module-content {
	margin-top:20px;
	margin-bottom:10px;
}
.fl-builder-content .fl-node-3g5onaw1kmj7 .fl-rich-text, .fl-builder-content .fl-node-3g5onaw1kmj7 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-3g5onaw1kmj7 > .fl-module-content {
	margin-top:20px;
	margin-bottom:-20px;
}
@media (max-width: 768px) { .fl-node-3g5onaw1kmj7 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-423xcgwdk8jo .fl-rich-text, .fl-builder-content .fl-node-423xcgwdk8jo .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-423xcgwdk8jo > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-builder-content .fl-node-hdgfbrwskpz7 .fl-rich-text, .fl-builder-content .fl-node-hdgfbrwskpz7 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-hdgfbrwskpz7 > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-01pkjmwhdv59 h4.fl-heading a,
.fl-row .fl-col .fl-node-01pkjmwhdv59 h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-01pkjmwhdv59 h4.fl-heading .fl-heading-text *,
.fl-node-01pkjmwhdv59 h4.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-01pkjmwhdv59.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
}
 .fl-node-01pkjmwhdv59 > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-d27yp90v85fn .fl-rich-text, .fl-builder-content .fl-node-d27yp90v85fn .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-d27yp90v85fn > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-w4i7pchg1f93 h4.fl-heading a,
.fl-row .fl-col .fl-node-w4i7pchg1f93 h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-w4i7pchg1f93 h4.fl-heading .fl-heading-text *,
.fl-node-w4i7pchg1f93 h4.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-w4i7pchg1f93.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
}
 .fl-node-w4i7pchg1f93 > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-3fvtkiaqrew4 .fl-rich-text, .fl-builder-content .fl-node-3fvtkiaqrew4 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-3fvtkiaqrew4 > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-nrfdv4a6isqk h4.fl-heading a,
.fl-row .fl-col .fl-node-nrfdv4a6isqk h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-nrfdv4a6isqk h4.fl-heading .fl-heading-text *,
.fl-node-nrfdv4a6isqk h4.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-nrfdv4a6isqk.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
}
 .fl-node-nrfdv4a6isqk > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-ifkdwl164job h4.fl-heading a,
.fl-row .fl-col .fl-node-ifkdwl164job h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ifkdwl164job h4.fl-heading .fl-heading-text *,
.fl-node-ifkdwl164job h4.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-ifkdwl164job.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 23px;
}
 .fl-node-ifkdwl164job > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-r16swfd9utjo .fl-rich-text, .fl-builder-content .fl-node-r16swfd9utjo .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-r16swfd9utjo > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }


.fl-node-o1st0aygd2fi .pp-spacer-module {
    height: 5px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-o1st0aygd2fi .pp-spacer-module {
        height: 5px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-o1st0aygd2fi .pp-spacer-module {
        height: 5px;
    }
}
 .fl-node-o1st0aygd2fi > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

/* Post Columns */
body.rtl .fl-post-column {
	float: right;
}
.fl-post-column {
	float: left;
}
.fl-post-column .fl-post-grid-post {
	visibility: visible;
}

/* Post Grid */
.fl-post-grid {
	margin: 0 auto;
	position: relative;
}
.fl-post-grid:before,
.fl-post-grid:after {
	display: table;
	content: " ";
}
.fl-post-grid:after {
	clear: both;
}
.fl-post-grid-post {
	background: #fff;
	border: 1px solid #e6e6e6;
	visibility: hidden;
}
.fl-post-grid-post,
.fl-post-feed-post {
	overflow: hidden;
}

.fl-post-grid-image {
	position: relative;
}
.fl-post-grid-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-grid-text {
	padding: 20px;
}
.fl-post-grid-title {
	padding-bottom: 7px;
}
body .fl-post-grid-text,
body .fl-post-grid-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-post-grid-text > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-text a {
	text-decoration: none;
}
body .fl-post-grid-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-post-grid-meta {
	font-size: 14px;
	padding-bottom: 10px;
}
.fl-post-feed-comments .fa {
	vertical-align: text-top;
}
.fl-post-grid-more {
	margin-top: 10px;
	display: inline-block;
}
.fl-post-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

/* Post Gallery */
.fl-post-gallery-post {
	overflow: hidden;
	position: relative;
	visibility: hidden;
}
.fl-post-gallery-link {
	display: block;
	height: 100%;
}
.fl-post-gallery-img {
	position: relative;
	z-index: 1;
}
.fl-post-gallery-img-horiz {
	height: 100% !important;
	max-height: 100% !important;
	max-width: none !important;
	width: auto !important;
}
.fl-post-gallery-img-vert {
	height: auto !important;
	max-height: none !important;
	max-width: 100% !important;
	width: 100% !important;
}
.fl-post-gallery-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-post-gallery-link:hover .fl-post-gallery-text-wrap {
	opacity: 1;
}

.fl-post-gallery-text {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

/* Gallery Transitions */
.fl-post-gallery-text,
.fl-post-gallery-link:hover .fl-post-gallery-text{
	-webkit-transform: translate3d(-50%,-50%,0);
	   -moz-transform: translate3d(-50%,-50%,0);
	    -ms-transform: translate(-50%,-50%);
			transform: translate3d(-50%,-50%,0);
}

/* Gallery Icons */
.fl-post-gallery-text .fl-gallery-icon{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.fl-post-gallery-text .fl-gallery-icon i,
.fl-post-gallery-text .fl-gallery-icon i:before{
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.fl-post-gallery-text h2.fl-post-gallery-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}
.fl-post-gallery #infscr-loading {
	clear: both;
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* Post Feed */
.fl-post-feed-post {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 40px;
}
.fl-post-feed-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-header {
	margin-bottom: 20px;
}
.fl-post-feed-header a {
	text-decoration: none;
}
body h2.fl-post-feed-title {
	margin: 0 0 10px;
	padding: 0;
	clear: none;
}
body .fl-post-feed-meta {
	font-size: 14px;
	margin-bottom: 5px;
}
.fl-post-feed-meta .fl-sep {
	margin: 0 3px;
}
.fl-post-feed-image {
	margin-bottom: 25px;
	position: relative;
}
.fl-post-feed-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image {
	float: left;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text {
	margin-left: 37%;
}
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	float: right;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-right: 37%;
}
.fl-post-feed-content a {
	text-decoration: none;
}
.fl-post-feed-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-more {
	margin-top: 15px;
	display: inline-block;
}
.fl-post-feed #infscr-loading {
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* No posts message */
.fl-post-grid-empty {
}

li.fl-post-feed-post,li.fl-post-gallery-post, li.fl-post-grid-post {
	list-style: none;
}
@media (max-width: 768px) { /* Post Feed */
.fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
	float: none;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
 }.fl-node-rxui7hwv8a24 div.fl-post-grid-post {
	margin-bottom: 30px;
	width: 326px;
}
.fl-node-rxui7hwv8a24 .fl-post-grid-sizer {
	width: 326px;
}
@media screen and (max-width: 356px) {
	.fl-node-rxui7hwv8a24 .fl-post-grid,
	.fl-node-rxui7hwv8a24 .fl-post-grid-post,
	.fl-node-rxui7hwv8a24 .fl-post-grid-sizer {
		width: 100% !important;
	}
}
 .fl-node-rxui7hwv8a24 > .fl-module-content {
	margin-right:0px;
	margin-left:30px;
}
@media (max-width: 768px) { .fl-node-rxui7hwv8a24 > .fl-module-content { margin-left:20px; } }.fl-node-u1ydl350f9bh .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			/* Title
---------------------------------------------------*/

body a.fl-callout-title-link {
	text-decoration: none;
}
body h1.fl-callout-title,
body h2.fl-callout-title,
body h3.fl-callout-title,
body h4.fl-callout-title,
body h5.fl-callout-title,
body h6.fl-callout-title {
	margin: 0;
	padding: 0 0 10px 0;
}

/* Text
---------------------------------------------------*/

.fl-callout-text p {
	margin: 0 !important;
	padding: 0 0 10px 0 !important;
}

/* Button
---------------------------------------------------*/

.fl-callout-button {
	padding: 10px 0 0 0;
}

/* CTA Link
---------------------------------------------------*/

.fl-callout-cta-link {
	display: block;
}

/* Icons
---------------------------------------------------*/

/* Above/Below Title */
.fl-callout-icon-above-title .fl-icon {
	display: block;
	margin-bottom: 20px;
}
.fl-callout-icon-below-title .fl-icon {
	display: block;
	margin: 10px 0 15px;
}
.fl-callout-icon-above-title .fl-icon i,
.fl-callout-icon-below-title .fl-icon i {
	display: inline-block;
	float: none;
}

/* Left/Right of Title */
.fl-callout-icon-left-title .fl-callout-title,
.fl-callout-icon-right-title .fl-callout-title {
	display: inline-block;
}
.fl-callout-icon-left-title .fl-callout-title span,
.fl-callout-icon-right-title .fl-callout-title span {
	display: table-cell;
	vertical-align: middle;
}
.fl-callout-icon-left-title .fl-icon {
	padding-right: 15px;
}
.fl-callout-icon-right-title .fl-icon {
	padding-left: 15px;
}

/* Left/Right */
.fl-callout-icon-left,
.fl-callout-icon-right {
	display: table;
}
.fl-callout-icon-left .fl-icon,
.fl-callout-icon-left-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-right: 15px;
}
.fl-callout-icon-right .fl-icon,
.fl-callout-icon-right-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-left: 15px;
}

.fl-callout-icon-left .fl-callout-content,
.fl-callout-icon-right .fl-callout-content,
.fl-callout-icon-left-text .fl-callout-text-wrap,
.fl-callout-icon-right-text .fl-callout-text-wrap {
	display: table-cell;
}

/* Photos
---------------------------------------------------*/

/* Above Title */
.fl-callout-photo-above-title .fl-photo {
	margin-bottom: 15px;
}

/* Below Title */
.fl-callout-photo-below-title .fl-photo {
	margin-bottom: 15px;
	margin-top: 5px;
}

/* Left */
.fl-callout-photo-left {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: table-cell;
	padding-right: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

/* Right */
.fl-callout-photo-right {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: table-cell;
	padding-left: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.fl-module-callout .fl-module-content {
	overflow: hidden;
}
@media (max-width: 768px) { .fl-callout-photo-left,
.fl-callout-photo-right {
	display: block;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-content,
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-content {
	display: block;
	width: auto;
} }.fl-node-2swcztg0lfko .fl-icon i,
.fl-node-2swcztg0lfko .fl-icon i:before {
	color: #0083bb;
}



.fl-node-2swcztg0lfko .fl-icon i:hover,
.fl-node-2swcztg0lfko .fl-icon i:hover:before,
.fl-node-2swcztg0lfko .fl-icon a:hover i,
.fl-node-2swcztg0lfko .fl-icon a:hover i:before {
	color: #204f6d;
}

.fl-node-2swcztg0lfko .fl-callout {
	text-align: center;
}
.fl-node-2swcztg0lfko .fl-callout-icon-left, .fl-node-2swcztg0lfko .fl-callout-icon-right {
	float: none;
}
.fl-node-2swcztg0lfko .fl-icon i, .fl-node-2swcztg0lfko .fl-icon i:before {
	font-size: 18px;
}
.fl-node-2swcztg0lfko .fl-icon-wrap .fl-icon-text {
	height: 31.5px;
}
@media(max-width: 1200px) {
	.fl-node-2swcztg0lfko .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-2swcztg0lfko .fl-callout-icon-left, .fl-node-2swcztg0lfko .fl-callout-icon-right {
		float: none;
	}
	.fl-node-2swcztg0lfko .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-2swcztg0lfko .fl-callout-icon-left, .fl-node-2swcztg0lfko .fl-callout-icon-right {
		float: none;
	}
	.fl-node-2swcztg0lfko .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
.fl-builder-content .fl-node-2swcztg0lfko .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-2swcztg0lfko .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-2swcztg0lfko .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-2swcztg0lfko .fl-callout-title {
	font-family: "Roboto Slab", serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-2swcztg0lfko a.fl-callout-cta-link {
	color: #0083bb;
	font-family: "Roboto Slab", serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.4;
}
.fl-node-2swcztg0lfko a.fl-callout-cta-link:hover, .fl-node-2swcztg0lfko a.fl-callout-cta-link:focus {
	color: #204f6d;
}
 .fl-node-2swcztg0lfko > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
}
.fl-row .fl-col .fl-node-0gfqy35su1b6 h2.fl-heading a,
.fl-row .fl-col .fl-node-0gfqy35su1b6 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-0gfqy35su1b6 h2.fl-heading .fl-heading-text *,
.fl-node-0gfqy35su1b6 h2.fl-heading .fl-heading-text {
	color: #d94e53;
}
.fl-node-0gfqy35su1b6.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 300;
	font-size: 33px;
}
 .fl-node-0gfqy35su1b6 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-d2ncmuqi0kxf .fl-icon i,
.fl-node-d2ncmuqi0kxf .fl-icon i:before {
	color: #0083bb;
}



.fl-node-d2ncmuqi0kxf .fl-icon i:hover,
.fl-node-d2ncmuqi0kxf .fl-icon i:hover:before,
.fl-node-d2ncmuqi0kxf .fl-icon a:hover i,
.fl-node-d2ncmuqi0kxf .fl-icon a:hover i:before {
	color: #204f6d;
}

.fl-node-d2ncmuqi0kxf .fl-callout {
	text-align: center;
}
.fl-node-d2ncmuqi0kxf .fl-callout-icon-left, .fl-node-d2ncmuqi0kxf .fl-callout-icon-right {
	float: none;
}
.fl-node-d2ncmuqi0kxf .fl-icon i, .fl-node-d2ncmuqi0kxf .fl-icon i:before {
	font-size: 18px;
}
.fl-node-d2ncmuqi0kxf .fl-icon-wrap .fl-icon-text {
	height: 31.5px;
}
@media(max-width: 1200px) {
	.fl-node-d2ncmuqi0kxf .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-d2ncmuqi0kxf .fl-callout-icon-left, .fl-node-d2ncmuqi0kxf .fl-callout-icon-right {
		float: none;
	}
	.fl-node-d2ncmuqi0kxf .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-d2ncmuqi0kxf .fl-callout-icon-left, .fl-node-d2ncmuqi0kxf .fl-callout-icon-right {
		float: none;
	}
	.fl-node-d2ncmuqi0kxf .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
.fl-builder-content .fl-node-d2ncmuqi0kxf .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-d2ncmuqi0kxf .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-d2ncmuqi0kxf .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-d2ncmuqi0kxf .fl-callout-title {
	font-family: "Roboto Slab", serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-d2ncmuqi0kxf a.fl-callout-cta-link {
	color: #0083bb;
	font-family: "Roboto Slab", serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.4;
}
.fl-node-d2ncmuqi0kxf a.fl-callout-cta-link:hover, .fl-node-d2ncmuqi0kxf a.fl-callout-cta-link:focus {
	color: #204f6d;
}
 .fl-node-d2ncmuqi0kxf > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
}
.fl-node-5rp7o3z8t2gd.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 33px;
}
.fl-builder-content .fl-node-q1rse487imyt .fl-rich-text, .fl-builder-content .fl-node-q1rse487imyt .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-q1rse487imyt > .fl-module-content {
	margin-top:40px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-q1rse487imyt > .fl-module-content { margin-top:20px; } }.fl-builder-content .fl-node-6gv4o13naltf .fl-rich-text, .fl-builder-content .fl-node-6gv4o13naltf .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-6gv4o13naltf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-97z3xe0jnmsq .fl-separator {
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #0083bb;
	max-width: 100%;
	margin: auto;
}

			 .fl-node-97z3xe0jnmsq > .fl-module-content {
	margin-top:40px;
	margin-bottom:20px;
}
@media (max-width: 768px) { .fl-node-97z3xe0jnmsq > .fl-module-content { margin-top:20px; } }/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-builder-pp-flipbox-settings .fl-builder-settings-section select[name="image_select_src"] {
	display: none;
}

.entry-content .pp-flipbox-title .pp-flipbox-front-title,
.entry-content .pp-flipbox-title .pp-flipbox-back-title,
.pp-flipbox-title .pp-flipbox-front-title,
.pp-flipbox-title .pp-flipbox-back-title {
	font-weight: 400;
	margin-bottom: 5px;
	margin-top: 0;
}
.pp-flipbox .pp-icon-wrapper {
	margin-bottom: 10px;
}
.pp-flipbox-description p {
	line-height: 1.4;
	margin-bottom: 5px;
}
.pp-flipbox-description p:last-of-type {
	margin-bottom: 0;
}
.pp-flipbox-description p img {
	margin: 0;
}
.entry-content .pp-flipbox .pp-more-link,
.pp-flipbox .pp-more-link {
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	text-decoration: none;
}
.pp-flipbox-icon-inner .dashicons,
.pp-flipbox-icon-inner .dashicons-before:before {
	height: auto;
	width: auto;
}

.pp-flipbox-back a.pp-flipbox-link,
.pp-flipbox-back a.pp-flipbox-link:hover {
	text-decoration: none;
}

/* Default layout */
.pp-flip-box {
	display: block;
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	text-align: center;
	-webkit-transform-origin: center;
    -ms-transform-origin: center;
	transform-origin: center;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}
.pp-flipbox-icon {
	border: 0 solid;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}
.pp-flipbox-icon-inner {
	display: table;
}
.pp-flipbox-icon span.pp-icon {
	display: table-cell;
	vertical-align: middle;
}
.pp-flipbox-image {
	margin-bottom: 20px;
	text-align: center;
}
.pp-flipbox-image img {
	border: 0px solid;
}

/* Flip */

.pp-flipbox-wrap {
    width: 100%;
    height: 100%;
	-webkit-transition: 750ms;
	-moz-transition: 750ms;
	-o-transition: 750ms;
	-ms-transition: 750ms;
	-webkit-transition: 750ms;
    transition: 750ms;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.pp-flipbox-container {
	position: relative;
	-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.pp-flipbox {
	display: table;
	height: 100%;
	margin-bottom: 0;
	padding: 20px;
	text-align: center;
	top: 0;
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-duration: 750ms;
	-moz-transition-duration: 750ms;
	-o-transition-duration: 750ms;
	-ms-transition-duration: 750ms;
	transition-duration: 750ms;
	-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.pp-flipbox-back {
	position: absolute;
}
.pp-flipbox-inner {
	display: table-cell;
	vertical-align: middle;
}



.pp-flip-box .pp-flip-type-left .pp-flipbox-front {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-flip-box .pp-flip-type-left .pp-flipbox-back {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.pp-flip-box .pp-flip-type-left .pp-hover .pp-flipbox-back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-flip-box .pp-flip-type-left .pp-hover .pp-flipbox-front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.pp-flip-box .pp-flip-type-right .pp-flipbox-front {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-flip-box .pp-flip-type-right .pp-flipbox-back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.pp-flip-box .pp-flip-type-right .pp-hover .pp-flipbox-back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-flip-box .pp-flip-type-right .pp-hover .pp-flipbox-front {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.pp-flip-box .pp-flip-type-bottom .pp-hover .pp-flipbox-back,
.pp-flip-box .pp-flip-type-top .pp-hover .pp-flipbox-back {
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.pp-flip-box .pp-flip-type-top .pp-flipbox-back {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.pp-flip-box .pp-flip-type-top .pp-flipbox-front {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.pp-flip-box .pp-flip-type-bottom .pp-flipbox-back,
.pp-flip-box .pp-flip-type-top .pp-hover .pp-flipbox-front {
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.pp-flip-box .pp-flip-type-bottom .pp-flipbox-front {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.pp-flip-box .pp-flip-type-bottom .pp-hover .pp-flipbox-front {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.pp-flip-box.pp-browser-ie .pp-flipbox-wrap {
	-webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -ms-transform: perspective(1000px);
    transform: perspective(1000px);
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.pp-flip-box.pp-browser-ie .pp-flipbox-container {
	-webkit-transition: 750ms;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 750ms;
    -moz-transition: 750ms;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 750ms;
    transform-style: preserve-3d;
}
.pp-flip-box.pp-browser-ie .pp-flipbox-container .pp-flipbox-front {
	z-index: 0;
}


.pp-flip-box.pp-ie .pp-flipbox {
	animation: stayvisible 0.5s both;
	-webkit-animation: stayvisible 0.5s both;
	-moz-animation: stayvisible 0.5s both;
	-o-animation: stayvisible 0.5s both;
	-ms-animation: donothing 0.5s;
	-ms-transition: visibility 0s linear 0.17s;
	transition: visibility 0s linear 0.17s;
	visibility: visible;
}

@keyframes stayvisible { from { visibility: visible; } to { visibility: visible; } }
@-webkit-keyframes stayvisible { from { visibility: visible; } to { visibility: visible; } }
@-moz-keyframes stayvisible { from { visibility: visible; } to { visibility: visible; } }
@-o-keyframes stayvisible { from { visibility: visible; } to { visibility: visible; } }
@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-node-ixm08apqcugl .pp-flipbox {
			}

/* Front */
.fl-node-ixm08apqcugl .pp-flipbox-front {
		}
.fl-node-ixm08apqcugl .pp-flipbox-front .pp-flipbox-title .pp-flipbox-front-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-ixm08apqcugl .pp-flipbox-front .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


/* Back */
.fl-node-ixm08apqcugl .pp-flipbox-back {
	background: #f1f1f1;	}
.fl-node-ixm08apqcugl .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-ixm08apqcugl .pp-flipbox-back .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


	.fl-node-ixm08apqcugl .pp-flipbox-image img {
					border-color: #f1f1f1;			border-width: 5px;						padding: 20px;	}
		.fl-node-ixm08apqcugl .pp-flipbox-image img:hover {
								}

	.fl-node-ixm08apqcugl .pp-flipbox .pp-more-link {
					}
		
	.fl-node-ixm08apqcugl .pp-flipbox .pp-more-link:hover {
					}

/* Flips */
.fl-node-ixm08apqcugl .pp-flipbox {
	}

.fl-node-ixm08apqcugl .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
	text-align: center;
}
.fl-node-ixm08apqcugl .pp-flipbox-back .pp-flipbox-description {
	text-align: left;
}
.fl-node-ixm08apqcugl .pp-flipbox-image img {
	width: 300px;
	height: 300px;
}
.fl-node-ixm08apqcugl .pp-flipbox .pp-more-link {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-ixm08apqcugl > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-row .fl-col .fl-node-a3evxsj9l4zp h3.fl-heading a,
.fl-row .fl-col .fl-node-a3evxsj9l4zp h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-a3evxsj9l4zp h3.fl-heading .fl-heading-text *,
.fl-node-a3evxsj9l4zp h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-a3evxsj9l4zp.fl-module-heading .fl-heading {
	font-size: 39px;
	text-align: center;
}
 .fl-node-a3evxsj9l4zp > .fl-module-content {
	margin-top:25px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-a3evxsj9l4zp > .fl-module-content { margin-top:20px; } }.fl-node-wb9tv240pnim .fl-icon i,
.fl-node-wb9tv240pnim .fl-icon i:before {
	color: #ffffff;
}



.fl-node-wb9tv240pnim .fl-icon i:hover,
.fl-node-wb9tv240pnim .fl-icon i:hover:before,
.fl-node-wb9tv240pnim .fl-icon a:hover i,
.fl-node-wb9tv240pnim .fl-icon a:hover i:before {
	color: #204f6d;
}

.fl-node-wb9tv240pnim .fl-callout {
	text-align: center;
}
.fl-node-wb9tv240pnim .fl-callout-icon-left, .fl-node-wb9tv240pnim .fl-callout-icon-right {
	float: none;
}
.fl-node-wb9tv240pnim .fl-icon i, .fl-node-wb9tv240pnim .fl-icon i:before {
	font-size: 18px;
}
.fl-node-wb9tv240pnim .fl-icon-wrap .fl-icon-text {
	height: 31.5px;
}
@media(max-width: 1200px) {
	.fl-node-wb9tv240pnim .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-wb9tv240pnim .fl-callout-icon-left, .fl-node-wb9tv240pnim .fl-callout-icon-right {
		float: none;
	}
	.fl-node-wb9tv240pnim .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-wb9tv240pnim .fl-callout-icon-left, .fl-node-wb9tv240pnim .fl-callout-icon-right {
		float: none;
	}
	.fl-node-wb9tv240pnim .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
.fl-builder-content .fl-node-wb9tv240pnim .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-wb9tv240pnim .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-wb9tv240pnim .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-wb9tv240pnim .fl-callout-title {
	font-family: "Roboto Slab", serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-wb9tv240pnim a.fl-callout-cta-link {
	color: #ffffff;
	font-family: "Roboto Slab", serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.4;
}
.fl-node-wb9tv240pnim a.fl-callout-cta-link:hover, .fl-node-wb9tv240pnim a.fl-callout-cta-link:focus {
	color: #204f6d;
}
 .fl-node-wb9tv240pnim > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-mu4l9dikjh26 .fl-photo {
	text-align: center;
}
.fl-node-rsxi0nvjeh3c .fl-callout {
	text-align: center;
}
.fl-node-rsxi0nvjeh3c .fl-callout-icon-left, .fl-node-rsxi0nvjeh3c .fl-callout-icon-right {
	float: none;
}
.fl-node-rsxi0nvjeh3c .fl-photo {
	text-align: center;
}
.fl-node-rsxi0nvjeh3c .fl-photo-content, .fl-node-rsxi0nvjeh3c .fl-photo-img {
	width: 160px;
}
@media(max-width: 992px) {
	.fl-node-rsxi0nvjeh3c .fl-callout-icon-left, .fl-node-rsxi0nvjeh3c .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-rsxi0nvjeh3c .fl-callout-icon-left, .fl-node-rsxi0nvjeh3c .fl-callout-icon-right {
		float: none;
	}
}
.fl-node-rsxi0nvjeh3c .fl-module-content {
	background-color: rgba(0,131,187,0.05);
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0083bb;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	padding-top: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
	padding-left: 25px;
}
.fl-node-rsxi0nvjeh3c .fl-callout-title {
	text-align: center;
}
.fl-node-rsxi0nvjeh3c .fl-callout-text, .fl-node-rsxi0nvjeh3c .fl-callout-cta-link {
	font-size: 16px;
}
 .fl-node-rsxi0nvjeh3c > .fl-module-content {
	margin-top:60px;
	margin-right:60px;
	margin-left:60px;
}
@media (max-width: 768px) { .fl-node-rsxi0nvjeh3c > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }.fl-node-xcq3tzpu7yo8 .fl-photo {
	text-align: center;
}
.fl-node-xcq3tzpu7yo8 .fl-photo-content, .fl-node-xcq3tzpu7yo8 .fl-photo-img {
	width: 640px;
}
 .fl-node-xcq3tzpu7yo8 > .fl-module-content {
	margin-top:70px;
}
@media (max-width: 768px) { .fl-node-xcq3tzpu7yo8 > .fl-module-content { margin-top:20px; } }.fl-node-l3wo5h1evtd4 .fl-icon i,
.fl-node-l3wo5h1evtd4 .fl-icon i:before {
	color: #ffffff;
}



.fl-node-l3wo5h1evtd4 .fl-icon i:hover,
.fl-node-l3wo5h1evtd4 .fl-icon i:hover:before,
.fl-node-l3wo5h1evtd4 .fl-icon a:hover i,
.fl-node-l3wo5h1evtd4 .fl-icon a:hover i:before {
	color: #204f6d;
}

.fl-node-l3wo5h1evtd4 .fl-callout {
	text-align: center;
}
.fl-node-l3wo5h1evtd4 .fl-callout-icon-left, .fl-node-l3wo5h1evtd4 .fl-callout-icon-right {
	float: none;
}
.fl-node-l3wo5h1evtd4 .fl-icon i, .fl-node-l3wo5h1evtd4 .fl-icon i:before {
	font-size: 18px;
}
.fl-node-l3wo5h1evtd4 .fl-icon-wrap .fl-icon-text {
	height: 31.5px;
}
@media(max-width: 1200px) {
	.fl-node-l3wo5h1evtd4 .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-l3wo5h1evtd4 .fl-callout-icon-left, .fl-node-l3wo5h1evtd4 .fl-callout-icon-right {
		float: none;
	}
	.fl-node-l3wo5h1evtd4 .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-l3wo5h1evtd4 .fl-callout-icon-left, .fl-node-l3wo5h1evtd4 .fl-callout-icon-right {
		float: none;
	}
	.fl-node-l3wo5h1evtd4 .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
}
.fl-builder-content .fl-node-l3wo5h1evtd4 .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-l3wo5h1evtd4 .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-l3wo5h1evtd4 .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-l3wo5h1evtd4 .fl-callout-title {
	font-family: "Roboto Slab", serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-l3wo5h1evtd4 a.fl-callout-cta-link {
	color: #ffffff;
	font-family: "Roboto Slab", serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.4;
}
.fl-node-l3wo5h1evtd4 a.fl-callout-cta-link:hover, .fl-node-l3wo5h1evtd4 a.fl-callout-cta-link:focus {
	color: #204f6d;
}
 .fl-node-l3wo5h1evtd4 > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
}
.fl-node-cqbf0x6w7voj.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 33px;
}
 .fl-node-cqbf0x6w7voj > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-cqbf0x6w7voj > .fl-module-content { margin-top:20px; } }.fl-node-l716fdu8c93z .pp-flipbox {
			}

/* Front */
.fl-node-l716fdu8c93z .pp-flipbox-front {
		}
.fl-node-l716fdu8c93z .pp-flipbox-front .pp-flipbox-title .pp-flipbox-front-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-l716fdu8c93z .pp-flipbox-front .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


/* Back */
.fl-node-l716fdu8c93z .pp-flipbox-back {
	background: #f1f1f1;	}
.fl-node-l716fdu8c93z .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-l716fdu8c93z .pp-flipbox-back .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


	.fl-node-l716fdu8c93z .pp-flipbox-image img {
					border-color: #f1f1f1;			border-width: 5px;						padding: 20px;	}
		.fl-node-l716fdu8c93z .pp-flipbox-image img:hover {
								}

	.fl-node-l716fdu8c93z .pp-flipbox .pp-more-link {
					}
		
	.fl-node-l716fdu8c93z .pp-flipbox .pp-more-link:hover {
					}

/* Flips */
.fl-node-l716fdu8c93z .pp-flipbox {
	}

.fl-node-l716fdu8c93z .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
	text-align: center;
}
.fl-node-l716fdu8c93z .pp-flipbox-back .pp-flipbox-description {
	text-align: left;
}
.fl-node-l716fdu8c93z .pp-flipbox-image img {
	width: 300px;
	height: 300px;
}
.fl-node-l716fdu8c93z .pp-flipbox .pp-more-link {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-l716fdu8c93z > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-node-dnku4ej6ci1q .pp-flipbox {
			}

/* Front */
.fl-node-dnku4ej6ci1q .pp-flipbox-front {
		}
.fl-node-dnku4ej6ci1q .pp-flipbox-front .pp-flipbox-title .pp-flipbox-front-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-dnku4ej6ci1q .pp-flipbox-front .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


/* Back */
.fl-node-dnku4ej6ci1q .pp-flipbox-back {
	background: #f1f1f1;	}
.fl-node-dnku4ej6ci1q .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
		margin-top: 0px;
	margin-bottom: 0px;
}


.fl-node-dnku4ej6ci1q .pp-flipbox-back .pp-flipbox-description {
		margin-top: 0px;
	margin-bottom: 0px;
}


	.fl-node-dnku4ej6ci1q .pp-flipbox-image img {
					border-color: #f1f1f1;			border-width: 4px;						padding: 20px;	}
		.fl-node-dnku4ej6ci1q .pp-flipbox-image img:hover {
								}

	.fl-node-dnku4ej6ci1q .pp-flipbox .pp-more-link {
					}
		
	.fl-node-dnku4ej6ci1q .pp-flipbox .pp-more-link:hover {
					}

/* Flips */
.fl-node-dnku4ej6ci1q .pp-flipbox {
	}

.fl-node-dnku4ej6ci1q .pp-flipbox-back .pp-flipbox-title .pp-flipbox-back-title {
	text-align: center;
}
.fl-node-dnku4ej6ci1q .pp-flipbox-back .pp-flipbox-description {
	text-align: left;
}
.fl-node-dnku4ej6ci1q .pp-flipbox-image img {
	width: 300px;
	height: 300px;
}
.fl-node-dnku4ej6ci1q .pp-flipbox .pp-more-link {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-dnku4ej6ci1q > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-row .fl-col .fl-node-p6bgjmi0sxn2 h3.fl-heading a,
.fl-row .fl-col .fl-node-p6bgjmi0sxn2 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-p6bgjmi0sxn2 h3.fl-heading .fl-heading-text *,
.fl-node-p6bgjmi0sxn2 h3.fl-heading .fl-heading-text {
	color: #0083bb;
}
.fl-node-p6bgjmi0sxn2.fl-module-heading .fl-heading {
	font-size: 39px;
	text-align: center;
}
 .fl-node-p6bgjmi0sxn2 > .fl-module-content {
	margin-top:15px;
	margin-bottom:60px;
}
@media (max-width: 768px) { .fl-node-p6bgjmi0sxn2 > .fl-module-content { margin-bottom:20px; } }.fl-node-r2sbld6j8te4 .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			.fl-node-qbsgx3icu96y .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			.fl-number,
.fl-number .fl-number-circle-container {
	margin: 0 auto;
}

.fl-number-before-text,
.fl-number-after-text {
	display: block;
}
.fl-number-before-text {
	margin-bottom: 10px;
}
.fl-number-after-text {
	margin-top: 10px;
}
.fl-number-string {
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
}

.fl-number .fl-number-text,
.fl-number .fl-number-circle-container {
	position: relative;
	z-index: 10;
	text-align: center;
}

.fl-number.fl-number-bars .fl-number-text {
	text-align: left;
}
.fl-number .fl-number-bar {
	text-align: right;
	padding: 0;
}

.fl-number .fl-number-position-above .fl-number-bar {
	margin-top: 5px;
}
.fl-number .fl-number-position-below .fl-number-bar {
	margin-bottom: 5px;
}

.fl-number .svg-container {
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	padding-bottom: 100%;
}

.fl-number .svg-container .svg {
	position: absolute;
	overflow: visible;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Bar */
.fl-number-bars .fl-number-bars-container {
	width: 100%;
	min-height: 10px;
}
.fl-number-bars .fl-number-bar {
	width: 0;
	min-height: 10px;
}
.fl-number-bars .fl-number-string {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

	.fl-builder-content .fl-node-fh92k30rbp6n .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-fh92k30rbp6n .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-fh92k30rbp6n .fl-number .fl-number-text .fl-number-before-text, .fl-node-fh92k30rbp6n .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-fh92k30rbp6n .fl-number .fl-number-text .fl-number-string, .fl-node-fh92k30rbp6n .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-fh92k30rbp6n > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}

	.fl-builder-content .fl-node-5t2vezw31y0n .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-5t2vezw31y0n .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-5t2vezw31y0n .fl-number .fl-number-text .fl-number-before-text, .fl-node-5t2vezw31y0n .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-5t2vezw31y0n .fl-number .fl-number-text .fl-number-string, .fl-node-5t2vezw31y0n .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-5t2vezw31y0n > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-builder-content .fl-node-jlrs6ptkoi4n .fl-rich-text, .fl-builder-content .fl-node-jlrs6ptkoi4n .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-jlrs6ptkoi4n > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content .fl-node-5zimcf9jtgdl .fl-rich-text, .fl-builder-content .fl-node-5zimcf9jtgdl .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-5zimcf9jtgdl > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-np8d4i56cb97 .fl-photo {
	text-align: center;
}
 .fl-node-np8d4i56cb97 > .fl-module-content {
	margin-top:0px;
}

	.fl-builder-content .fl-node-cr68uwf1ji5y .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-cr68uwf1ji5y .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-cr68uwf1ji5y .fl-number .fl-number-text .fl-number-before-text, .fl-node-cr68uwf1ji5y .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-cr68uwf1ji5y .fl-number .fl-number-text .fl-number-string, .fl-node-cr68uwf1ji5y .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-cr68uwf1ji5y > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}

	.fl-builder-content .fl-node-yfxu7g6o9qae .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-yfxu7g6o9qae .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-yfxu7g6o9qae .fl-number .fl-number-text .fl-number-before-text, .fl-node-yfxu7g6o9qae .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-yfxu7g6o9qae .fl-number .fl-number-text .fl-number-string, .fl-node-yfxu7g6o9qae .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-yfxu7g6o9qae > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-builder-content .fl-node-0adxnq4cjy3h .fl-rich-text, .fl-builder-content .fl-node-0adxnq4cjy3h .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-0adxnq4cjy3h > .fl-module-content {
	margin-top:0px;
	margin-bottom:-10px;
}
@media (max-width: 768px) { .fl-node-0adxnq4cjy3h > .fl-module-content { margin-bottom:20px; } }.fl-node-epmn6gitq7uz.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 33px;
}
 .fl-node-epmn6gitq7uz > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-epmn6gitq7uz > .fl-module-content { margin-top:20px; } }.fl-builder-content .fl-node-i2dwl9bj1xp0 .fl-rich-text, .fl-builder-content .fl-node-i2dwl9bj1xp0 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-i2dwl9bj1xp0 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.pp-icon-list .pp-icon-list-items {
	margin: 0;
	padding: 0;
}
.pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	list-style-type: none;
}
@media (max-width: 768px) {  }.fl-node-l7v1zp4c0o5y .pp-icon-list:before {
	content: "" !important;
}
.fl-node-l7v1zp4c0o5y .pp-icon-list:not(.pp-user-agent-ie) [class^="pp-icon-list"] {
	font-family: unset !important;
}
.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	display: table;
	margin-bottom: 5px;
}
.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	float: left;
	margin-right: 10px;
		color: #0083bb;
	font-size: 25px;
	padding: 0px;
	text-align: center;
	display: inline-block;
	line-height: 25px;
			width: 50px;
		height: 50px;
		line-height: 50px;
		vertical-align: middle;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items .pp-icon-list-item:hover .pp-list-item-icon {
		color: ;
	border-color: ;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items.pp-list-type-number .pp-icon-list-item .pp-list-item-icon {
	}
.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	display: table-cell;
	color: ;
	vertical-align: middle;
}

.fl-node-l7v1zp4c0o5y .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	font-size: 18px;
}
 .fl-node-l7v1zp4c0o5y > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-l7v1zp4c0o5y > .fl-module-content { margin-left:20px; } }
	.fl-builder-content .fl-node-xakogmh95dw3 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-xakogmh95dw3 .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-xakogmh95dw3 .fl-number .fl-number-text .fl-number-before-text, .fl-node-xakogmh95dw3 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-xakogmh95dw3 .fl-number .fl-number-text .fl-number-string, .fl-node-xakogmh95dw3 .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-xakogmh95dw3 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}

	.fl-builder-content .fl-node-yine8p5uljk9 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-yine8p5uljk9 .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-yine8p5uljk9 .fl-number .fl-number-text .fl-number-before-text, .fl-node-yine8p5uljk9 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-yine8p5uljk9 .fl-number .fl-number-text .fl-number-string, .fl-node-yine8p5uljk9 .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-yine8p5uljk9 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}

	.fl-builder-content .fl-node-ayr3kgftuwzx .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-ayr3kgftuwzx .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-ayr3kgftuwzx .fl-number .fl-number-text .fl-number-before-text, .fl-node-ayr3kgftuwzx .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-ayr3kgftuwzx .fl-number .fl-number-text .fl-number-string, .fl-node-ayr3kgftuwzx .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-ayr3kgftuwzx > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-builder-content .fl-node-wfln46detg28 .fl-rich-text, .fl-builder-content .fl-node-wfln46detg28 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-wfln46detg28 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

	.fl-builder-content .fl-node-dyh3vogpb8fx .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-dyh3vogpb8fx .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-dyh3vogpb8fx .fl-number .fl-number-text .fl-number-before-text, .fl-node-dyh3vogpb8fx .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-dyh3vogpb8fx .fl-number .fl-number-text .fl-number-string, .fl-node-dyh3vogpb8fx .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-dyh3vogpb8fx > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-of17nqzjuvk9 .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			.fl-node-zk8nwby6t24r .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			
	.fl-builder-content .fl-node-7g8mtj0s9hqp .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-7g8mtj0s9hqp .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-7g8mtj0s9hqp .fl-number .fl-number-text .fl-number-before-text, .fl-node-7g8mtj0s9hqp .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-7g8mtj0s9hqp .fl-number .fl-number-text .fl-number-string, .fl-node-7g8mtj0s9hqp .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-7g8mtj0s9hqp > .fl-module-content {
	margin-top:10px;
	margin-bottom:30px;
}
@media (max-width: 768px) { .fl-node-7g8mtj0s9hqp > .fl-module-content { margin-bottom:20px; } }
	.fl-builder-content .fl-node-z8b1o6rjwvxn .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-z8b1o6rjwvxn .fl-module-content .fl-number-string {
		color: #0083bb;
	}




.fl-node-z8b1o6rjwvxn .fl-number .fl-number-text .fl-number-before-text, .fl-node-z8b1o6rjwvxn .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.fl-node-z8b1o6rjwvxn .fl-number .fl-number-text .fl-number-string, .fl-node-z8b1o6rjwvxn .fl-number .fl-number-text .fl-number-string span {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 0.9;
	text-align: left;
}
 .fl-node-z8b1o6rjwvxn > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-2tmso7q0xewc .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			.fl-node-f02sv8hiyq43.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 33px;
}
 .fl-node-f02sv8hiyq43 > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-f02sv8hiyq43 > .fl-module-content { margin-top:20px; } }.fl-node-41267timx3up.fl-module-heading .fl-heading {
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 33px;
}
.fl-builder-content .fl-node-gtda1fe6pmkq .fl-rich-text, .fl-builder-content .fl-node-gtda1fe6pmkq .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-gtda1fe6pmkq > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.pp-table-wrap .tablesaw-sortable .tablesaw-sortable-head button {
	background: none !important;
}

.pp-table-content thead {
	border: 0;
	background: none;
}

.pp-table-content thead tr th {
	font-size: 14px;
}

.pp-table-content thead tr:first-child th {
	font-family: inherit;
	text-shadow: none;
}

.pp-table-content tbody tr th,
.pp-table-content tbody tr td {
	font-size: 14px;
}

.pp-table-content .pp-table-row th[colspan] + .is-empty,
.pp-table-content .pp-table-row td[colspan] + .is-empty {
    display: none;
}

.pp-table-content th button,
.pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
	box-shadow: none !important;
	padding: 0;
}

.pp-builder-message {
	padding: 10px;
	background-color: #ffeed5;
	font-family: monospace;
	font-size: 15px;
	border: 1px solid #ffd18c;
	color: #000 !important;
}
.pp-builder-message h4 {
	margin-top: 0;
	font-family: monospace;
	font-size: 18px;
	font-style: normal;
	color: #000 !important;
}.fl-node-7ptvjqbwc2ua .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
	float: none !important;
}

.fl-node-7ptvjqbwc2ua .pp-table-content thead th,
.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw thead th,
.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: #0083bb;
	border: 0;
}

.fl-node-7ptvjqbwc2ua .pp-table-content thead tr th,
.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head button {
    color: #ffffff;
}

.fl-node-7ptvjqbwc2ua .pp-table-content thead tr th {
	vertical-align: middle;
}





.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr {
	background: #ffffff;
	border-bottom: 0;
}

.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr th,
.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr td {
	vertical-align: middle;
	color: ;
}

.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-cell-inner {
	display: flex;
	align-items: center;
										}



.fl-node-7ptvjqbwc2ua .tablesaw-sortable .tablesaw-sortable-head button {
		text-align: ;
	}

.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(odd) {
    background: #ffffff;}

.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(odd) th,
.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(odd) td {
    }

.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(even) {
    background: rgba(0,131,187,0.13);}

.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(even) th,
.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr:nth-child(even) td {
    }

@media only screen and (max-width: 992px) {
	.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-header-inner {
									}

	.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-header-inner {
									}

	.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 639px) {
	.fl-node-7ptvjqbwc2ua .pp-table-content-cell-label {
									font-size: px;
									text-transform: ;
						}
}
.fl-node-7ptvjqbwc2ua .pp-table-content thead tr th,
						.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
						.fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-header-icon {
	margin-right: 10px;
}
.fl-node-7ptvjqbwc2ua .pp-table-content thead tr th, .fl-node-7ptvjqbwc2ua .pp-table-content.tablesaw thead th {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0083bb;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-7ptvjqbwc2ua .pp-table-content .pp-table-cell-icon {
	margin-right: 10px;
}
.fl-node-7ptvjqbwc2ua .pp-table-content tbody tr th, .fl-node-7ptvjqbwc2ua .pp-table-content tbody tr td {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(0,0,0,0);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-7ptvjqbwc2ua > .fl-module-content {
	margin-right:200px;
	margin-left:200px;
}
@media (max-width: 768px) { .fl-node-7ptvjqbwc2ua > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-module-list .fl-list-item .fl-list-item-wrapper {
  width: 100%;
}

.fl-module-list .fl-list {
  padding-inline-start: unset;
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item {
  border-bottom: none;
}

.fl-module-list .fl-list-item-heading {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon,
.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon .fl-list-item-icon {
  display: inline-block;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.fl-module-list .fl-list-item-content {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
  display: table-cell; 
  vertical-align: middle;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text {
  display: table-cell;
  vertical-align: middle; 
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text p:last-child {
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text b,
.fl-module-list .fl-list-item-content .fl-list-item-content-text strong {
	font-weight: bold;
}
	.fl-node-9jkrs4bcmeh3 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-9jkrs4bcmeh3 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-9jkrs4bcmeh3 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-9jkrs4bcmeh3 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 10px;
	}
	
.fl-node-9jkrs4bcmeh3 .fl-module-content ul.fl-list,
.fl-node-9jkrs4bcmeh3 .fl-module-content ol.fl-list {
	list-style-type: none;
}


.fl-node-9jkrs4bcmeh3 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-9jkrs4bcmeh3 .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-9jkrs4bcmeh3 .fl-module-content .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-9jkrs4bcmeh3 .fl-module-content .fl-list-item-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-9jkrs4bcmeh3 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
.fl-builder-content .fl-node-34msynftwgvu .fl-rich-text, .fl-builder-content .fl-node-34msynftwgvu .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-34msynftwgvu > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-node-x0gkn518mcdv .pp-icon-list:before {
	content: "" !important;
}
.fl-node-x0gkn518mcdv .pp-icon-list:not(.pp-user-agent-ie) [class^="pp-icon-list"] {
	font-family: unset !important;
}
.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	display: table;
	margin-bottom: 5px;
}
.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	float: left;
	margin-right: 10px;
		color: #0083bb;
	font-size: 25px;
	padding: 0px;
	text-align: center;
	display: inline-block;
	line-height: 25px;
			width: 50px;
		height: 50px;
		line-height: 50px;
		vertical-align: middle;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items .pp-icon-list-item:hover .pp-list-item-icon {
		color: ;
	border-color: ;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items.pp-list-type-number .pp-icon-list-item .pp-list-item-icon {
	}
.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	display: table-cell;
	color: ;
	vertical-align: middle;
}

.fl-node-x0gkn518mcdv .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	font-size: 18px;
}
 .fl-node-x0gkn518mcdv > .fl-module-content {
	margin-top:0px;
	margin-bottom:30px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-x0gkn518mcdv > .fl-module-content { margin-bottom:20px;margin-left:20px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-node-rxui7hwv8a24 .fl-post-grid-post:hover {
  transform: translate(-2px,-2px);
}
.fl-node-rxui7hwv8a24 .fl-post-grid-post {
  box-shadow: rgba(0,0,0,0.0625) 10px 10px 15px;
  font-size: 14px;
  padding: 0;
}
.fl-node-rxui7hwv8a24 .fl-post-meta {
  padding: 10px 0;
}
.fl-node-rxui7hwv8a24 .fl-post-image {
  display: block;
  background-size: cover;
  width: 100%;
  padding-bottom: 56%;
  background-position: center center;
  position: relative;
  border-bottom: 1px #cfcfcf solid;
}
.fl-node-rxui7hwv8a24 .fl-post-image.pdf {
  padding-bottom: 130%;
}
.fl-node-rxui7hwv8a24 .fl-post-image.video:hover .play-button {
  background-color: rgba(0,0,0,0.25);
}
.fl-node-rxui7hwv8a24 .fl-post-image.video .play-button {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.1);
}
.fl-node-rxui7hwv8a24 .fl-post-image.video .play-button i {
  font-size: 36px;
  color: #fff;
  width: 100%;
  text-align: center;
}
.fl-node-rxui7hwv8a24 .fl-post-grid-post {
  font-size: 14px;
}
.fl-node-rxui7hwv8a24 .fl-post-text {
  padding: 20px;
}
.fl-node-rxui7hwv8a24 .fl-post-title {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-rxui7hwv8a24 .fl-post-meta {
  padding: 0 0 15px;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-mljz16a4soqu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7ebvtuos15mz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-xibnvdelkz72 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-1l4tgkyjq36h .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gnz78lufcdv9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-hjrfseoai201 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-agi3lvr4b1dz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-y5h9voa1w4ub .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-let0xh3moyck .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-8z6y9jtlck2p .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-z6r3w95pbvq8 .fl-row-content {
				min-width: 0px;
			}
		