/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* 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:not([data-accepts]):before,
.fl-module:not([data-accepts]):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:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.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 {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: 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 {
	-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;
	justify-content: flex-end;
	align-items: flex-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 {
	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-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;
}

/* 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;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* 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;
}

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

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	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 {
	width: 100%;
	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-module img {
	max-width: 100%;
}
.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;
	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;
}
.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;
}
.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;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.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;
}
@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-col-content {
	display: flex;
	flex-direction: column;
	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-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.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-module-content, .fl-module: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; }.fl-node-9s71q82dfutr {
	color: #ffffff;
}
.fl-builder-content .fl-node-9s71q82dfutr *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-9s71q82dfutr a {
	color: #ffffff;
}

.fl-builder-content .fl-node-9s71q82dfutr a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-9s71q82dfutr h1,
.fl-builder-content .fl-node-9s71q82dfutr h2,
.fl-builder-content .fl-node-9s71q82dfutr h3,
.fl-builder-content .fl-node-9s71q82dfutr h4,
.fl-builder-content .fl-node-9s71q82dfutr h5,
.fl-builder-content .fl-node-9s71q82dfutr h6,
.fl-builder-content .fl-node-9s71q82dfutr h1 a,
.fl-builder-content .fl-node-9s71q82dfutr h2 a,
.fl-builder-content .fl-node-9s71q82dfutr h3 a,
.fl-builder-content .fl-node-9s71q82dfutr h4 a,
.fl-builder-content .fl-node-9s71q82dfutr h5 a,
.fl-builder-content .fl-node-9s71q82dfutr h6 a {
	color: #ffffff;
}



.fl-node-9s71q82dfutr > .fl-row-content-wrap {
	background-image: url(https://www.celis.institute/wp-content/uploads/2023/05/charles-bridge-and-vltava-river-in-prague-at-night-picjumbo-com.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
























.fl-node-tq58392r0va4 > .fl-row-content-wrap {
	background-color: #eeeeee;
}












.fl-node-7push90aqozw > .fl-row-content-wrap {
	background-color: #eeeeee;
}






















.fl-node-fcbw4mql9r31 {
	width: 100%;
}
.fl-node-iosemp7fw8qk {
	color: #ffffff;
}
.fl-builder-content .fl-node-iosemp7fw8qk *:not(span):not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: #ffffff;
}

.fl-builder-content .fl-node-iosemp7fw8qk a {
	color: #ffffff;
}

.fl-builder-content .fl-node-iosemp7fw8qk a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-iosemp7fw8qk h1,
.fl-builder-content .fl-node-iosemp7fw8qk h2,
.fl-builder-content .fl-node-iosemp7fw8qk h3,
.fl-builder-content .fl-node-iosemp7fw8qk h4,
.fl-builder-content .fl-node-iosemp7fw8qk h5,
.fl-builder-content .fl-node-iosemp7fw8qk h6,
.fl-builder-content .fl-node-iosemp7fw8qk h1 a,
.fl-builder-content .fl-node-iosemp7fw8qk h2 a,
.fl-builder-content .fl-node-iosemp7fw8qk h3 a,
.fl-builder-content .fl-node-iosemp7fw8qk h4 a,
.fl-builder-content .fl-node-iosemp7fw8qk h5 a,
.fl-builder-content .fl-node-iosemp7fw8qk h6 a {
	color: #ffffff;
}

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




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




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




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




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




.fl-node-a159woyd0l6k {
	width: 25%;
}




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




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




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




.fl-node-cbphi1nt9zl2 {
	width: 20%;
}




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




.fl-node-8hl5kjzocrqu {
	width: 100%;
}




.fl-node-p5u0waris4t1 {
	width: 100%;
}
.fl-node-p5u0waris4t1 > .fl-col-content {
	background-color: #eeeeee;
}




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




.fl-node-18dtmkjofb75 {
	width: 100%;
}




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




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




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




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




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




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




.fl-node-3mvu5ahost62 {
	width: 100%;
}




.fl-node-0i3cjtfr2lux {
	width: 33.33%;
}




.fl-node-9cvezp7sj38u {
	width: 34%;
}




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




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




.fl-node-6b29m4gc0zwi {
	width: 25%;
}




.fl-node-ofcgit72h0pq {
	width: 20%;
}




.fl-node-zb4xwcny21rh {
	width: 66.66%;
}




.fl-node-nm48e7riodsj {
	width: 32.67%;
}




.fl-node-kwxrc428hbf5 {
	width: 25%;
}




.fl-node-710wzpbrlyfk {
	width: 20%;
}




.fl-node-7l0r3y58cj4h {
	width: 33.33%;
}




.fl-node-8g1s6wuxk3ev {
	width: 25%;
}




.fl-node-t0dfnzyow1cs {
	width: 20%;
}




.fl-node-rkwv4aipex8c {
	width: 20%;
}

.fl-node-szck4duga0xp.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-szck4duga0xp {
	width: 100%;
}

.fl-node-szck4duga0xp .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 25px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-szck4duga0xp.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-szck4duga0xp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 15px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-szck4duga0xp.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-szck4duga0xp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 5px;
				clear: both;
				width: 100%;
			}
		}		
		
.fl-node-3o8j59ni2ryv.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-3o8j59ni2ryv {
	width: 100%;
}

.fl-node-3o8j59ni2ryv .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 50px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-3o8j59ni2ryv.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3o8j59ni2ryv .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 50px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-3o8j59ni2ryv.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3o8j59ni2ryv .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 50px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-3o8j59ni2ryv > .fl-module-content {
	margin-bottom:20px;
}

.fl-node-3evfih2yj7mp.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-3evfih2yj7mp {
	width: 100%;
}

.fl-node-3evfih2yj7mp .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 150px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-3evfih2yj7mp.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3evfih2yj7mp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 100px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-3evfih2yj7mp.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3evfih2yj7mp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 50px;
				clear: both;
				width: 100%;
			}
		}		
		
.fl-node-ym5nu1xwqsgh.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-ym5nu1xwqsgh {
	width: 100%;
}

.fl-node-ym5nu1xwqsgh .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 25px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-ym5nu1xwqsgh.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-ym5nu1xwqsgh .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 15px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-ym5nu1xwqsgh.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-ym5nu1xwqsgh .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 5px;
				clear: both;
				width: 100%;
			}
		}		
		.fl-node-j1rio3d604xy .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-j1rio3d604xy .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-6itnf4q2aglw .fl-icon i,
.fl-node-6itnf4q2aglw .fl-icon i:before {
	color: #ffa0a0;
}




.fl-node-6itnf4q2aglw .fl-icon i, .fl-node-6itnf4q2aglw .fl-icon i:before {
	font-size: 50px;
}
.fl-node-6itnf4q2aglw .fl-icon-wrap .fl-icon-text {
	height: 87.5px;
}
.fl-node-6itnf4q2aglw.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-6itnf4q2aglw .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-6itnf4q2aglw .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-6itnf4q2aglw .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
body a.infobox-title-link {
	text-decoration: none;
}

body h1.uabb-infobox-title,
body h2.uabb-infobox-title,
body h3.uabb-infobox-title,
body h4.uabb-infobox-title,
body h5.uabb-infobox-title,
body h6.uabb-infobox-title,
.uabb-infobox-content .uabb-infobox-title-prefix {
	margin: 0;
	padding: 0;
}

.uabb-module-content .uabb-text-editor :not(a) {
	color: inherit;
}

.uabb-module-content .uabb-text-editor :not(i) {
	font-family: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: inherit;
	line-height: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
	font-weight: inherit;
}

.uabb-infobox-content .uabb-infobox-text p:last-of-type {
	margin-bottom: 0;
}

.uabb-infobox-content .uabb-infobox-text p {
	padding: 0 0 10px;
}

.fl-builder-content .uabb-infobox-text h1,
.fl-builder-content .uabb-infobox-text h2,
.fl-builder-content .uabb-infobox-text h3,
.fl-builder-content .uabb-infobox-text h4,
.fl-builder-content .uabb-infobox-text h5,
.fl-builder-content .uabb-infobox-text h6 {
	margin: 0;
}

.infobox-icon-above-title .uabb-infobox-left-right-wrap,
.infobox-icon-below-title .uabb-infobox-left-right-wrap,
.infobox-photo-above-title .uabb-infobox-left-right-wrap,
.infobox-photo-below-title .uabb-infobox-left-right-wrap {
	display: block;
	min-width: 100%;
	width: 100%;
}

.infobox-icon-above-title .uabb-icon,
.infobox-icon-below-title .uabb-icon,
.infobox-photo-above-title .uabb-imgicon-wrap {
	display: block;
}

.infobox-icon-left-title .uabb-infobox-title,
.infobox-icon-right-title .uabb-infobox-title,
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-infobox-title,
.infobox-photo-right-title .uabb-infobox-title,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap {
	display: inline-block;
	vertical-align: middle;
}

.infobox-icon-left-title .left-title-image,
.infobox-icon-right-title .right-title-image,
.infobox-icon-left .uabb-infobox-left-right-wrap,
.infobox-icon-right .uabb-infobox-left-right-wrap,
.infobox-photo-left .uabb-infobox-left-right-wrap,
.infobox-photo-right .uabb-infobox-left-right-wrap {
	display: inline-block;
	width: 100%;
}

.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.infobox-icon-left .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-icon-left .uabb-infobox-content,
.infobox-icon-right .uabb-infobox-content,
.infobox-photo-left .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap,
.infobox-photo-left .uabb-infobox-content,
.infobox-photo-right .uabb-infobox-content {
	display: inline-block;
	vertical-align: top;
}

.infobox-photo-below-title .uabb-imgicon-wrap {
	display: block;
	margin: 10px 0 15px;
}

.infobox-photo-left-title .uabb-infobox-title-wrap,
.infobox-icon-left-title .uabb-infobox-title-wrap,
.infobox-photo-right-title .uabb-infobox-title-wrap,
.infobox-icon-right-title .uabb-infobox-title-wrap {
	vertical-align: middle;
}

.fl-module-info-box .fl-module-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
}

.fl-module-info-box .uabb-separator-parent {
	line-height: 0;
}

.fl-module-info-box .uabb-infobox-module-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 4;
}
@media (max-width: 768px) { .infobox-photo-left,
.infobox-photo-right {
	display: block;
}

.infobox-photo-left .infobox-photo,
.infobox-photo-left-text .infobox-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-right .infobox-photo,
.infobox-photo-right-text .infobox-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-left .infobox-content,
.infobox-photo-left-text .infobox-content,
.infobox-photo-right .infobox-content,
.infobox-photo-right-text .infobox-content {
	display: block;
	width: auto;
} }
.fl-node-80i9j3egnf45 {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-80i9j3egnf45 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-80i9j3egnf45 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-80i9j3egnf45 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-80i9j3egnf45 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-80i9j3egnf45 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-80i9j3egnf45 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-80i9j3egnf45 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-80i9j3egnf45 .infobox-center,
.fl-node-80i9j3egnf45 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox-title {
	margin-top: 15px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-80i9j3egnf45 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-80i9j3egnf45 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox {
		position: relative;
	}
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-80i9j3egnf45 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-80i9j3egnf45 .uabb-infobox {
		;	}

	

	.fl-node-80i9j3egnf45 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-dctvzbyka7f4 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-dctvzbyka7f4 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-dctvzbyka7f4 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-dctvzbyka7f4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-dctvzbyka7f4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-dctvzbyka7f4 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-dctvzbyka7f4 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-dctvzbyka7f4 .infobox-center,
.fl-node-dctvzbyka7f4 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox-title {
	margin-top: 15px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-dctvzbyka7f4 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox {
		position: relative;
	}
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-dctvzbyka7f4 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-dctvzbyka7f4 .uabb-infobox {
		;	}

	

	.fl-node-dctvzbyka7f4 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-xscwr0ngmhd1.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-wea0h7dvkyq6.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-xmrlwgbp5id9 .uabb-separator-parent {
	line-height: 0;
	text-align: center;
}

.fl-node-xmrlwgbp5id9 .uabb-image-outter-wrap {
	width: 50px;
}



	
	/* Global Alignment Css */
	.fl-node-xmrlwgbp5id9 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		.fl-node-xmrlwgbp5id9 .uabb-image .uabb-photo-img {
							width: 50px;
								}

		.fl-node-xmrlwgbp5id9 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-xmrlwgbp5id9 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-xmrlwgbp5id9 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		

	


	
.fl-node-xmrlwgbp5id9 .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	.fl-node-xmrlwgbp5id9 .uabb-separator-wrap.uabb-separator-center {
	margin-left: auto;
	margin-right: auto;
}
	
	
	
.fl-node-xmrlwgbp5id9 .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-xmrlwgbp5id9 .uabb-separator-line > span {
	border-top:1px solid #ff7777;
	display: block;
	margin-top: 0 !important;
}

.fl-node-xmrlwgbp5id9 .uabb-divider-content{
					padding-left: 10px;
						padding-right: 10px;
		}

.fl-node-xmrlwgbp5id9 .uabb-side-left{
	width: 50%;
}
.fl-node-xmrlwgbp5id9 .uabb-side-right{
	width: 50%;
}

.fl-node-xmrlwgbp5id9 .uabb-divider-content {
	display: table-cell;
}
.fl-node-xmrlwgbp5id9 .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 992px ) {

			

			/* For Medium Device */
			.fl-node-xmrlwgbp5id9 .uabb-responsive-medsmall .uabb-side-left {
				width: 20%;
			}
			.fl-node-xmrlwgbp5id9 .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-xmrlwgbp5id9 .uabb-responsive-medsmall .uabb-divider-content h3 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-xmrlwgbp5id9 .uabb-responsive-mobile .uabb-side-left,
			.fl-node-xmrlwgbp5id9 .uabb-responsive-medsmall .uabb-side-left {
				width: 10%;
			}
			.fl-node-xmrlwgbp5id9 .uabb-responsive-mobile .uabb-side-right,
			.fl-node-xmrlwgbp5id9 .uabb-responsive-medsmall .uabb-side-right {
				width: 10%;
			}

			.fl-node-xmrlwgbp5id9 .uabb-responsive-mobile .uabb-divider-content h3 {
				white-space: normal;
			}
		}
		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-16bj0drcazvo, .fl-node-16bj0drcazvo .fl-photo {
	text-align: center;
}
 .fl-node-16bj0drcazvo > .fl-module-content {
	margin-bottom:20px;
}
.fl-node-x7ec6j45i81k.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-node-zmht0vlbewkq.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-2j6fbzmwts7r.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-5z6yo2v18dli.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-jd9z1mpcxgov.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-n0rbmaqgze57.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-m25ruyd6ls4w .uabb-separator-parent {
	line-height: 0;
	text-align: center;
}

.fl-node-m25ruyd6ls4w .uabb-image-outter-wrap {
	width: 50px;
}



	
	/* Global Alignment Css */
	.fl-node-m25ruyd6ls4w .uabb-imgicon-wrap {
					text-align: center;
			}

	
		.fl-node-m25ruyd6ls4w .uabb-image .uabb-photo-img {
							width: 50px;
								}

		.fl-node-m25ruyd6ls4w .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-m25ruyd6ls4w .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-m25ruyd6ls4w .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		

	


	
.fl-node-m25ruyd6ls4w .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	.fl-node-m25ruyd6ls4w .uabb-separator-wrap.uabb-separator-center {
	margin-left: auto;
	margin-right: auto;
}
	
	
	
.fl-node-m25ruyd6ls4w .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-m25ruyd6ls4w .uabb-separator-line > span {
	border-top:1px solid #ff7777;
	display: block;
	margin-top: 0 !important;
}

.fl-node-m25ruyd6ls4w .uabb-divider-content{
					padding-left: 10px;
						padding-right: 10px;
		}

.fl-node-m25ruyd6ls4w .uabb-side-left{
	width: 50%;
}
.fl-node-m25ruyd6ls4w .uabb-side-right{
	width: 50%;
}

.fl-node-m25ruyd6ls4w .uabb-divider-content {
	display: table-cell;
}
.fl-node-m25ruyd6ls4w .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 992px ) {

			

			/* For Medium Device */
			.fl-node-m25ruyd6ls4w .uabb-responsive-medsmall .uabb-side-left {
				width: 20%;
			}
			.fl-node-m25ruyd6ls4w .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-m25ruyd6ls4w .uabb-responsive-medsmall .uabb-divider-content h3 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-m25ruyd6ls4w .uabb-responsive-mobile .uabb-side-left,
			.fl-node-m25ruyd6ls4w .uabb-responsive-medsmall .uabb-side-left {
				width: 10%;
			}
			.fl-node-m25ruyd6ls4w .uabb-responsive-mobile .uabb-side-right,
			.fl-node-m25ruyd6ls4w .uabb-responsive-medsmall .uabb-side-right {
				width: 10%;
			}

			.fl-node-m25ruyd6ls4w .uabb-responsive-mobile .uabb-divider-content h3 {
				white-space: normal;
			}
		}
		.fl-node-t46rz8n1slev .uabb-separator-parent {
	line-height: 0;
	text-align: center;
}

.fl-node-t46rz8n1slev .uabb-image-outter-wrap {
	width: 50px;
}



	
	/* Global Alignment Css */
	.fl-node-t46rz8n1slev .uabb-imgicon-wrap {
					text-align: center;
			}

	
		.fl-node-t46rz8n1slev .uabb-image .uabb-photo-img {
							width: 50px;
								}

		.fl-node-t46rz8n1slev .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-t46rz8n1slev .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-t46rz8n1slev .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		

	


	
.fl-node-t46rz8n1slev .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	.fl-node-t46rz8n1slev .uabb-separator-wrap.uabb-separator-center {
	margin-left: auto;
	margin-right: auto;
}
	
	
	
.fl-node-t46rz8n1slev .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-t46rz8n1slev .uabb-separator-line > span {
	border-top:1px solid #ff7777;
	display: block;
	margin-top: 0 !important;
}

.fl-node-t46rz8n1slev .uabb-divider-content{
					padding-left: 10px;
						padding-right: 10px;
		}

.fl-node-t46rz8n1slev .uabb-side-left{
	width: 50%;
}
.fl-node-t46rz8n1slev .uabb-side-right{
	width: 50%;
}

.fl-node-t46rz8n1slev .uabb-divider-content {
	display: table-cell;
}
.fl-node-t46rz8n1slev .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 992px ) {

			

			/* For Medium Device */
			.fl-node-t46rz8n1slev .uabb-responsive-medsmall .uabb-side-left {
				width: 20%;
			}
			.fl-node-t46rz8n1slev .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-t46rz8n1slev .uabb-responsive-medsmall .uabb-divider-content h3 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-t46rz8n1slev .uabb-responsive-mobile .uabb-side-left,
			.fl-node-t46rz8n1slev .uabb-responsive-medsmall .uabb-side-left {
				width: 10%;
			}
			.fl-node-t46rz8n1slev .uabb-responsive-mobile .uabb-side-right,
			.fl-node-t46rz8n1slev .uabb-responsive-medsmall .uabb-side-right {
				width: 10%;
			}

			.fl-node-t46rz8n1slev .uabb-responsive-mobile .uabb-divider-content h3 {
				white-space: normal;
			}
		}
		.fl-node-2vqb3urhfyx5.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-so3vr6t2ih1m .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-so3vr6t2ih1m .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}

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

	/* Global Alignment Css */
	.fl-node-i62rfg8kj4va .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-i62rfg8kj4va .uabb-image .uabb-photo-img {
							width: 250px;
								}

		.fl-node-i62rfg8kj4va .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-i62rfg8kj4va .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-i62rfg8kj4va .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-i62rfg8kj4va .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-i62rfg8kj4va .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-i62rfg8kj4va .infobox-center,
.fl-node-i62rfg8kj4va .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-i62rfg8kj4va .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-i62rfg8kj4va .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-i62rfg8kj4va .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-i62rfg8kj4va .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-i62rfg8kj4va .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-i62rfg8kj4va .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-i62rfg8kj4va .uabb-infobox {
		;	}

	

	.fl-node-i62rfg8kj4va .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-a50q438bh7pc .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-a50q438bh7pc .uabb-image .uabb-photo-img {
							width: 700px;
								}

		.fl-node-a50q438bh7pc .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-a50q438bh7pc .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-a50q438bh7pc .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-a50q438bh7pc .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-a50q438bh7pc .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-a50q438bh7pc .infobox-center,
.fl-node-a50q438bh7pc .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-a50q438bh7pc .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-a50q438bh7pc .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-a50q438bh7pc .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-a50q438bh7pc .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-a50q438bh7pc .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-a50q438bh7pc .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-a50q438bh7pc .uabb-infobox {
		;	}

	

	.fl-node-a50q438bh7pc .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-snix32hem9vf .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-snix32hem9vf .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-snix32hem9vf .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-snix32hem9vf .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-snix32hem9vf .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-snix32hem9vf .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-snix32hem9vf .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-snix32hem9vf .infobox-center,
.fl-node-snix32hem9vf .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-snix32hem9vf .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-snix32hem9vf .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-snix32hem9vf .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-snix32hem9vf .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-snix32hem9vf .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-snix32hem9vf .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-snix32hem9vf .uabb-infobox {
		;	}

	

	.fl-node-snix32hem9vf .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-x5tjza4oy6v7, .fl-node-x5tjza4oy6v7 .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-kc0ej3ifyxtp h1.fl-heading a,
.fl-row .fl-col .fl-node-kc0ej3ifyxtp h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-kc0ej3ifyxtp h1.fl-heading .fl-heading-text *,
.fl-node-kc0ej3ifyxtp h1.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-kc0ej3ifyxtp.fl-module-heading .fl-heading {
	font-size: 50px;
	text-align: center;
}
.fl-node-bn7jrlsve694.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-lx73syk125g0.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-lx73syk125g0 > .fl-module-content {
	margin-top:0px;
}
.fl-node-hkuf12c3nxoy, .fl-node-hkuf12c3nxoy .fl-photo {
	text-align: center;
}

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

	/* Global Alignment Css */
	.fl-node-wilhp7sfx9e0 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-wilhp7sfx9e0 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-wilhp7sfx9e0 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-wilhp7sfx9e0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-wilhp7sfx9e0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-wilhp7sfx9e0 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-wilhp7sfx9e0 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-wilhp7sfx9e0 .infobox-center,
.fl-node-wilhp7sfx9e0 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-wilhp7sfx9e0 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-wilhp7sfx9e0 .uabb-infobox {
		;	}

	

	.fl-node-wilhp7sfx9e0 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-k6nd59hlqogs .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-k6nd59hlqogs .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-k6nd59hlqogs .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-k6nd59hlqogs .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-k6nd59hlqogs .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-k6nd59hlqogs .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-k6nd59hlqogs .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-k6nd59hlqogs .infobox-center,
.fl-node-k6nd59hlqogs .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-k6nd59hlqogs .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-k6nd59hlqogs .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-k6nd59hlqogs .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-k6nd59hlqogs .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-k6nd59hlqogs .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-k6nd59hlqogs .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-k6nd59hlqogs .uabb-infobox {
		;	}

	

	.fl-node-k6nd59hlqogs .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-jn1rz6fiu0hl .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-jn1rz6fiu0hl .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-jn1rz6fiu0hl .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-jn1rz6fiu0hl .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-jn1rz6fiu0hl .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-jn1rz6fiu0hl .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-jn1rz6fiu0hl .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-jn1rz6fiu0hl .infobox-center,
.fl-node-jn1rz6fiu0hl .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-jn1rz6fiu0hl .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-jn1rz6fiu0hl .uabb-infobox {
		;	}

	

	.fl-node-jn1rz6fiu0hl .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-9o5wtapmzi3g.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-nx3q6ckf4t1g.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-7hs1yn2g3ced.fl-module-heading .fl-heading {
	text-align: center;
}

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

	/* Global Alignment Css */
	.fl-node-btuyxqej5mkg .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-btuyxqej5mkg .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-btuyxqej5mkg .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-btuyxqej5mkg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-btuyxqej5mkg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-btuyxqej5mkg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-btuyxqej5mkg .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-btuyxqej5mkg .infobox-center,
.fl-node-btuyxqej5mkg .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-btuyxqej5mkg .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-btuyxqej5mkg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-btuyxqej5mkg .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-btuyxqej5mkg .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-btuyxqej5mkg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-btuyxqej5mkg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-btuyxqej5mkg .uabb-infobox {
		;	}

	

	.fl-node-btuyxqej5mkg .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-zt80i4ku7orf .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-zt80i4ku7orf .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-zt80i4ku7orf .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-zt80i4ku7orf .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-zt80i4ku7orf .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-zt80i4ku7orf .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-zt80i4ku7orf .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-zt80i4ku7orf .infobox-center,
.fl-node-zt80i4ku7orf .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-zt80i4ku7orf .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-zt80i4ku7orf .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-zt80i4ku7orf .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-zt80i4ku7orf .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-zt80i4ku7orf .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-zt80i4ku7orf .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-zt80i4ku7orf .uabb-infobox {
		;	}

	

	.fl-node-zt80i4ku7orf .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-aodv5s642891 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-aodv5s642891 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-aodv5s642891 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-aodv5s642891 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-aodv5s642891 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-aodv5s642891 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-aodv5s642891 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-aodv5s642891 .infobox-center,
.fl-node-aodv5s642891 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-aodv5s642891 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-aodv5s642891 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-aodv5s642891 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-aodv5s642891 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-aodv5s642891 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-aodv5s642891 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-aodv5s642891 .uabb-infobox {
		;	}

	

	.fl-node-aodv5s642891 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-a2r8fvu5o3w6 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-a2r8fvu5o3w6 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-row .fl-col .fl-node-4i1ej95vqkhb h2.fl-heading a,
.fl-row .fl-col .fl-node-4i1ej95vqkhb h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-4i1ej95vqkhb h2.fl-heading .fl-heading-text *,
.fl-node-4i1ej95vqkhb h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-4i1ej95vqkhb.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-node-1o5xjh0wfcny, .fl-node-1o5xjh0wfcny .fl-photo {
	text-align: center;
}
.fl-node-zk7hjufm3war.fl-module-heading .fl-heading {
	text-align: center;
}

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

	/* Global Alignment Css */
	.fl-node-ytg2m4s1wk7r .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ytg2m4s1wk7r .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-ytg2m4s1wk7r .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ytg2m4s1wk7r .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-ytg2m4s1wk7r .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-ytg2m4s1wk7r .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ytg2m4s1wk7r .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-ytg2m4s1wk7r .infobox-center,
.fl-node-ytg2m4s1wk7r .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ytg2m4s1wk7r .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ytg2m4s1wk7r .uabb-infobox {
		;	}

	

	.fl-node-ytg2m4s1wk7r .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-9seb2k6jnh4r {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-9seb2k6jnh4r .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-9seb2k6jnh4r .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-9seb2k6jnh4r .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-9seb2k6jnh4r .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-9seb2k6jnh4r .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-9seb2k6jnh4r .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-9seb2k6jnh4r .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-9seb2k6jnh4r .infobox-center,
.fl-node-9seb2k6jnh4r .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-9seb2k6jnh4r .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-9seb2k6jnh4r .uabb-infobox {
		;	}

	

	.fl-node-9seb2k6jnh4r .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-r6nocg9idv8s .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-r6nocg9idv8s .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-r6nocg9idv8s .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-r6nocg9idv8s .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-r6nocg9idv8s .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-r6nocg9idv8s .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-r6nocg9idv8s .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-r6nocg9idv8s .infobox-center,
.fl-node-r6nocg9idv8s .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-r6nocg9idv8s .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-r6nocg9idv8s .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-r6nocg9idv8s .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-r6nocg9idv8s .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-r6nocg9idv8s .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-r6nocg9idv8s .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-r6nocg9idv8s .uabb-infobox {
		;	}

	

	.fl-node-r6nocg9idv8s .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-l0fgmt1qs9w6.fl-module-heading .fl-heading {
	text-align: center;
}

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

	/* Global Alignment Css */
	.fl-node-ew0hqmjt1y4c .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ew0hqmjt1y4c .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-ew0hqmjt1y4c .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ew0hqmjt1y4c .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-ew0hqmjt1y4c .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-ew0hqmjt1y4c .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ew0hqmjt1y4c .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-ew0hqmjt1y4c .infobox-center,
.fl-node-ew0hqmjt1y4c .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ew0hqmjt1y4c .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ew0hqmjt1y4c .uabb-infobox {
		;	}

	

	.fl-node-ew0hqmjt1y4c .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-p6aqxdf1otnv .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-p6aqxdf1otnv .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-p6aqxdf1otnv .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-p6aqxdf1otnv .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-p6aqxdf1otnv .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-p6aqxdf1otnv .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-p6aqxdf1otnv .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-p6aqxdf1otnv .infobox-center,
.fl-node-p6aqxdf1otnv .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-p6aqxdf1otnv .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-p6aqxdf1otnv .uabb-infobox {
		;	}

	

	.fl-node-p6aqxdf1otnv .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-xlag7cen1uim .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-xlag7cen1uim .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-xlag7cen1uim .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-xlag7cen1uim .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-xlag7cen1uim .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-xlag7cen1uim .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-xlag7cen1uim .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-xlag7cen1uim .infobox-center,
.fl-node-xlag7cen1uim .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-xlag7cen1uim .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-xlag7cen1uim .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-xlag7cen1uim .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-xlag7cen1uim .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-xlag7cen1uim .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-xlag7cen1uim .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-xlag7cen1uim .uabb-infobox {
		;	}

	

	.fl-node-xlag7cen1uim .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-987cq2fuixrv {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-987cq2fuixrv .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-987cq2fuixrv .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-987cq2fuixrv .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-987cq2fuixrv .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-987cq2fuixrv .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-987cq2fuixrv .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-987cq2fuixrv .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-987cq2fuixrv .infobox-center,
.fl-node-987cq2fuixrv .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-987cq2fuixrv .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-987cq2fuixrv .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-987cq2fuixrv .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-987cq2fuixrv .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-987cq2fuixrv .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-987cq2fuixrv .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-987cq2fuixrv .uabb-infobox {
		;	}

	

	.fl-node-987cq2fuixrv .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-smvby8oia4kd .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i,
		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i:before {

			color: #ff7777			;
			font-size: 200px;
			height: auto;
			width: auto;
			
				line-height: 200px;
				height: 200px;
				width: 200px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-smvby8oia4kd .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-smvby8oia4kd .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-smvby8oia4kd .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-smvby8oia4kd .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-smvby8oia4kd .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-smvby8oia4kd .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-smvby8oia4kd .infobox-center,
.fl-node-smvby8oia4kd .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-smvby8oia4kd .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-smvby8oia4kd .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-smvby8oia4kd .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
		.fl-builder-content .fl-node-smvby8oia4kd .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-smvby8oia4kd .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-smvby8oia4kd .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-smvby8oia4kd .uabb-infobox {
		;	}

	

	.fl-node-smvby8oia4kd .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-a1e9278irydb .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-a1e9278irydb .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-a1e9278irydb .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-a1e9278irydb .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-a1e9278irydb .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-a1e9278irydb .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-a1e9278irydb .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-a1e9278irydb .infobox-center,
.fl-node-a1e9278irydb .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-a1e9278irydb .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-a1e9278irydb .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-a1e9278irydb .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-a1e9278irydb .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-a1e9278irydb .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-a1e9278irydb .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-a1e9278irydb .uabb-infobox {
		;	}

	

	.fl-node-a1e9278irydb .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-hvt5nbz7p6y8.fl-module-heading .fl-heading {
	text-align: center;
}

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

	/* Global Alignment Css */
	.fl-node-scfol87mn2ip .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-scfol87mn2ip .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-scfol87mn2ip .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-scfol87mn2ip .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-scfol87mn2ip .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-scfol87mn2ip .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-scfol87mn2ip .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-scfol87mn2ip .infobox-center,
.fl-node-scfol87mn2ip .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-scfol87mn2ip .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-scfol87mn2ip .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-scfol87mn2ip .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-scfol87mn2ip .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-scfol87mn2ip .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-scfol87mn2ip .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-scfol87mn2ip .uabb-infobox {
		;	}

	

	.fl-node-scfol87mn2ip .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-ktvcfhesry8w .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i,
		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i:before {

			color: #ff7777			;
			font-size: 200px;
			height: auto;
			width: auto;
			
				line-height: 200px;
				height: 200px;
				width: 200px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-ktvcfhesry8w .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-ktvcfhesry8w .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-ktvcfhesry8w .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-ktvcfhesry8w .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-ktvcfhesry8w .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ktvcfhesry8w .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-ktvcfhesry8w .infobox-center,
.fl-node-ktvcfhesry8w .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ktvcfhesry8w .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ktvcfhesry8w .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ktvcfhesry8w .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
		.fl-builder-content .fl-node-ktvcfhesry8w .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ktvcfhesry8w .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ktvcfhesry8w .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ktvcfhesry8w .uabb-infobox {
		;	}

	

	.fl-node-ktvcfhesry8w .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-0ykm36ved7sr {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-0ykm36ved7sr .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-0ykm36ved7sr .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-0ykm36ved7sr .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-0ykm36ved7sr .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0ykm36ved7sr .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-0ykm36ved7sr .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-0ykm36ved7sr .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-0ykm36ved7sr .infobox-center,
.fl-node-0ykm36ved7sr .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-0ykm36ved7sr .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-0ykm36ved7sr .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-0ykm36ved7sr .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-0ykm36ved7sr .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-0ykm36ved7sr .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-0ykm36ved7sr .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-0ykm36ved7sr .uabb-infobox {
		;	}

	

	.fl-node-0ykm36ved7sr .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-9654ueivwfst.fl-module-heading .fl-heading {
	text-align: center;
}

.fl-node-0uqhxatpmn81 {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-0uqhxatpmn81 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-0uqhxatpmn81 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-0uqhxatpmn81 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-0uqhxatpmn81 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0uqhxatpmn81 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-0uqhxatpmn81 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-0uqhxatpmn81 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-0uqhxatpmn81 .infobox-center,
.fl-node-0uqhxatpmn81 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-0uqhxatpmn81 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-0uqhxatpmn81 .uabb-infobox {
		;	}

	

	.fl-node-0uqhxatpmn81 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-ek2pao14hrj6 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ek2pao14hrj6 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-ek2pao14hrj6 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ek2pao14hrj6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-ek2pao14hrj6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-ek2pao14hrj6 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ek2pao14hrj6 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-ek2pao14hrj6 .infobox-center,
.fl-node-ek2pao14hrj6 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ek2pao14hrj6 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ek2pao14hrj6 .uabb-infobox {
		;	}

	

	.fl-node-ek2pao14hrj6 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-xwgeoh6i140l .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-xwgeoh6i140l .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-xwgeoh6i140l .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-xwgeoh6i140l .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-xwgeoh6i140l .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-xwgeoh6i140l .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-xwgeoh6i140l .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-xwgeoh6i140l .infobox-center,
.fl-node-xwgeoh6i140l .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-xwgeoh6i140l .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-xwgeoh6i140l .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-xwgeoh6i140l .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-xwgeoh6i140l .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-xwgeoh6i140l .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-xwgeoh6i140l .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-xwgeoh6i140l .uabb-infobox {
		;	}

	

	.fl-node-xwgeoh6i140l .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-sbwjdom1t2pn .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i,
		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i:before {

			color: #ff7777			;
			font-size: 200px;
			height: auto;
			width: auto;
			
				line-height: 200px;
				height: 200px;
				width: 200px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-sbwjdom1t2pn .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-sbwjdom1t2pn .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-sbwjdom1t2pn .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-sbwjdom1t2pn .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-sbwjdom1t2pn .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-sbwjdom1t2pn .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-sbwjdom1t2pn .infobox-center,
.fl-node-sbwjdom1t2pn .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-sbwjdom1t2pn .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
		.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-sbwjdom1t2pn .uabb-infobox {
		;	}

	

	.fl-node-sbwjdom1t2pn .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-iqvht2f8exrg .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-iqvht2f8exrg .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-iqvht2f8exrg .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-iqvht2f8exrg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-iqvht2f8exrg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-iqvht2f8exrg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-iqvht2f8exrg .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-iqvht2f8exrg .infobox-center,
.fl-node-iqvht2f8exrg .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-iqvht2f8exrg .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-iqvht2f8exrg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-iqvht2f8exrg .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-iqvht2f8exrg .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-iqvht2f8exrg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-iqvht2f8exrg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-iqvht2f8exrg .uabb-infobox {
		;	}

	

	.fl-node-iqvht2f8exrg .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-hwlibmd39jug .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-hwlibmd39jug .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-hwlibmd39jug .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-hwlibmd39jug .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-hwlibmd39jug .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-hwlibmd39jug .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-hwlibmd39jug .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-hwlibmd39jug .infobox-center,
.fl-node-hwlibmd39jug .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-hwlibmd39jug .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-hwlibmd39jug .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-hwlibmd39jug .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-hwlibmd39jug .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-hwlibmd39jug .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-hwlibmd39jug .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-hwlibmd39jug .uabb-infobox {
		;	}

	

	.fl-node-hwlibmd39jug .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-fhojcd0p39l6 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-fhojcd0p39l6 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-fhojcd0p39l6 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-fhojcd0p39l6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-fhojcd0p39l6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-fhojcd0p39l6 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-fhojcd0p39l6 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-fhojcd0p39l6 .infobox-center,
.fl-node-fhojcd0p39l6 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-fhojcd0p39l6 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-fhojcd0p39l6 .uabb-infobox {
		;	}

	

	.fl-node-fhojcd0p39l6 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-6wa4uoi1y8h2 {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-6wa4uoi1y8h2 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-6wa4uoi1y8h2 .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-6wa4uoi1y8h2 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-6wa4uoi1y8h2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-6wa4uoi1y8h2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-6wa4uoi1y8h2 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-6wa4uoi1y8h2 .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-6wa4uoi1y8h2 .infobox-center,
.fl-node-6wa4uoi1y8h2 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-6wa4uoi1y8h2 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-6wa4uoi1y8h2 .uabb-infobox {
		;	}

	

	.fl-node-6wa4uoi1y8h2 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-9b740xzelcfk {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-9b740xzelcfk .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-9b740xzelcfk .uabb-image .uabb-photo-img {
							width: 500px;
								}

		.fl-node-9b740xzelcfk .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-9b740xzelcfk .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-9b740xzelcfk .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-9b740xzelcfk .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-9b740xzelcfk .uabb-infobox {
				background: #eeeeee;

			padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;
		}
	/* Align */
.fl-node-9b740xzelcfk .infobox-center,
.fl-node-9b740xzelcfk .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-9b740xzelcfk .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-9b740xzelcfk .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-9b740xzelcfk .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-9b740xzelcfk .uabb-imgicon-wrap {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-9b740xzelcfk .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-9b740xzelcfk .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-9b740xzelcfk .uabb-infobox {
		;	}

	

	.fl-node-9b740xzelcfk .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-jsg1ewq59ulf .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-jsg1ewq59ulf .uabb-infobox {
				background: #eeeeee;

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-jsg1ewq59ulf .infobox-left,
.fl-node-jsg1ewq59ulf .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-jsg1ewq59ulf .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-jsg1ewq59ulf .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-jsg1ewq59ulf .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-jsg1ewq59ulf .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-jsg1ewq59ulf .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-jsg1ewq59ulf .uabb-infobox {
		;	}

	

	.fl-node-jsg1ewq59ulf .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-q8oxj201znsu .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-q8oxj201znsu .uabb-infobox {
		}
	/* Align */
.fl-node-q8oxj201znsu .infobox-left,
.fl-node-q8oxj201znsu .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-q8oxj201znsu .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-q8oxj201znsu .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-q8oxj201znsu .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-q8oxj201znsu .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-q8oxj201znsu .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-q8oxj201znsu .uabb-infobox {
		;	}

	

	.fl-node-q8oxj201znsu .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-el7ch2knug9p .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-el7ch2knug9p .uabb-infobox {
		}
	/* Align */
.fl-node-el7ch2knug9p .infobox-left,
.fl-node-el7ch2knug9p .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-el7ch2knug9p .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-el7ch2knug9p .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-el7ch2knug9p .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-el7ch2knug9p .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-el7ch2knug9p .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-el7ch2knug9p .uabb-infobox {
		;	}

	

	.fl-node-el7ch2knug9p .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-1motzpxc4rs2 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-1motzpxc4rs2 .uabb-infobox {
		}
	/* Align */
.fl-node-1motzpxc4rs2 .infobox-left,
.fl-node-1motzpxc4rs2 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-1motzpxc4rs2 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-1motzpxc4rs2 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-1motzpxc4rs2 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-1motzpxc4rs2 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-1motzpxc4rs2 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-1motzpxc4rs2 .uabb-infobox {
		;	}

	

	.fl-node-1motzpxc4rs2 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-82r7j9314v0q {
	width: 100%;
}

	.fl-node-82r7j9314v0q .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-82r7j9314v0q .uabb-infobox {
		}
	/* Align */
.fl-node-82r7j9314v0q .infobox-left,
.fl-node-82r7j9314v0q .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-82r7j9314v0q .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-82r7j9314v0q .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-82r7j9314v0q .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-82r7j9314v0q .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-82r7j9314v0q .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-82r7j9314v0q .uabb-infobox {
		;	}

	

	.fl-node-82r7j9314v0q .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-7e394fwaxvgl {
	width: 100%;
}

	.fl-node-7e394fwaxvgl .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-7e394fwaxvgl .uabb-infobox {
		}
	/* Align */
.fl-node-7e394fwaxvgl .infobox-left,
.fl-node-7e394fwaxvgl .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-7e394fwaxvgl .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-7e394fwaxvgl .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-7e394fwaxvgl .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7e394fwaxvgl .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-7e394fwaxvgl .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-7e394fwaxvgl .uabb-infobox {
		;	}

	

	.fl-node-7e394fwaxvgl .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-scbq12nrhzyg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-scbq12nrhzyg .uabb-infobox {
		}
	/* Align */
.fl-node-scbq12nrhzyg .infobox-left,
.fl-node-scbq12nrhzyg .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-scbq12nrhzyg .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-scbq12nrhzyg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-scbq12nrhzyg .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-scbq12nrhzyg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-scbq12nrhzyg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-scbq12nrhzyg .uabb-infobox {
		;	}

	

	.fl-node-scbq12nrhzyg .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-as32t1d50pvg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-as32t1d50pvg .uabb-infobox {
		}
	/* Align */
.fl-node-as32t1d50pvg .infobox-left,
.fl-node-as32t1d50pvg .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-as32t1d50pvg .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-as32t1d50pvg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-as32t1d50pvg .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-as32t1d50pvg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-as32t1d50pvg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-as32t1d50pvg .uabb-infobox {
		;	}

	

	.fl-node-as32t1d50pvg .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-boz0kgdex4m3 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-boz0kgdex4m3 .uabb-infobox {
		}
	/* Align */
.fl-node-boz0kgdex4m3 .infobox-left,
.fl-node-boz0kgdex4m3 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-boz0kgdex4m3 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-boz0kgdex4m3 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-boz0kgdex4m3 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-boz0kgdex4m3 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-boz0kgdex4m3 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-boz0kgdex4m3 .uabb-infobox {
		;	}

	

	.fl-node-boz0kgdex4m3 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-7xnmc2l1e9wb {
	width: 100%;
}

	.fl-node-7xnmc2l1e9wb .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-7xnmc2l1e9wb .uabb-infobox {
		}
	/* Align */
.fl-node-7xnmc2l1e9wb .infobox-left,
.fl-node-7xnmc2l1e9wb .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-7xnmc2l1e9wb .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-7xnmc2l1e9wb .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-7xnmc2l1e9wb .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7xnmc2l1e9wb .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-7xnmc2l1e9wb .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-7xnmc2l1e9wb .uabb-infobox {
		;	}

	

	.fl-node-7xnmc2l1e9wb .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-h271dek8yqcu .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-h271dek8yqcu .uabb-infobox {
		}
	/* Align */
.fl-node-h271dek8yqcu .infobox-left,
.fl-node-h271dek8yqcu .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-h271dek8yqcu .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-h271dek8yqcu .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-h271dek8yqcu .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-h271dek8yqcu .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-h271dek8yqcu .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-h271dek8yqcu .uabb-infobox {
		;	}

	

	.fl-node-h271dek8yqcu .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-zgvj7tc2odxi .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-zgvj7tc2odxi .uabb-infobox {
		}
	/* Align */
.fl-node-zgvj7tc2odxi .infobox-left,
.fl-node-zgvj7tc2odxi .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-zgvj7tc2odxi .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-zgvj7tc2odxi .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-zgvj7tc2odxi .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-zgvj7tc2odxi .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-zgvj7tc2odxi .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-zgvj7tc2odxi .uabb-infobox {
		;	}

	

	.fl-node-zgvj7tc2odxi .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-av2tedjxs16f .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-av2tedjxs16f .uabb-infobox {
		}
	/* Align */
.fl-node-av2tedjxs16f .infobox-left,
.fl-node-av2tedjxs16f .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-av2tedjxs16f .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-av2tedjxs16f .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-av2tedjxs16f .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-av2tedjxs16f .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-av2tedjxs16f .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-av2tedjxs16f .uabb-infobox {
		;	}

	

	.fl-node-av2tedjxs16f .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-a6fxehrnops4 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-a6fxehrnops4 .uabb-infobox {
		}
	/* Align */
.fl-node-a6fxehrnops4 .infobox-left,
.fl-node-a6fxehrnops4 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-a6fxehrnops4 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-a6fxehrnops4 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-a6fxehrnops4 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-a6fxehrnops4 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-a6fxehrnops4 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-a6fxehrnops4 .uabb-infobox {
		;	}

	

	.fl-node-a6fxehrnops4 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-x52st3odhfn0 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-x52st3odhfn0 .uabb-infobox {
		}
	/* Align */
.fl-node-x52st3odhfn0 .infobox-left,
.fl-node-x52st3odhfn0 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-x52st3odhfn0 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-x52st3odhfn0 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-x52st3odhfn0 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-x52st3odhfn0 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-x52st3odhfn0 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-x52st3odhfn0 .uabb-infobox {
		;	}

	

	.fl-node-x52st3odhfn0 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-2bancjrpz80g {
	width: 100%;
}

	.fl-node-2bancjrpz80g .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-2bancjrpz80g .uabb-infobox {
		}
	/* Align */
.fl-node-2bancjrpz80g .infobox-left,
.fl-node-2bancjrpz80g .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-2bancjrpz80g .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-2bancjrpz80g .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-2bancjrpz80g .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-2bancjrpz80g .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-2bancjrpz80g .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-2bancjrpz80g .uabb-infobox {
		;	}

	

	.fl-node-2bancjrpz80g .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-vl91xkdqwuth .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-vl91xkdqwuth .uabb-infobox {
		}
	/* Align */
.fl-node-vl91xkdqwuth .infobox-left,
.fl-node-vl91xkdqwuth .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-vl91xkdqwuth .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-vl91xkdqwuth .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-vl91xkdqwuth .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-vl91xkdqwuth .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-vl91xkdqwuth .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-vl91xkdqwuth .uabb-infobox {
		;	}

	

	.fl-node-vl91xkdqwuth .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-zr3g26f0noh1 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-zr3g26f0noh1 .uabb-infobox {
		}
	/* Align */
.fl-node-zr3g26f0noh1 .infobox-left,
.fl-node-zr3g26f0noh1 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-zr3g26f0noh1 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-zr3g26f0noh1 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-zr3g26f0noh1 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-zr3g26f0noh1 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-zr3g26f0noh1 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-zr3g26f0noh1 .uabb-infobox {
		;	}

	

	.fl-node-zr3g26f0noh1 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-qjhzop5lvgbr .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-qjhzop5lvgbr .uabb-infobox {
		}
	/* Align */
.fl-node-qjhzop5lvgbr .infobox-left,
.fl-node-qjhzop5lvgbr .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-qjhzop5lvgbr .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-qjhzop5lvgbr .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-qjhzop5lvgbr .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-qjhzop5lvgbr .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-qjhzop5lvgbr .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-qjhzop5lvgbr .uabb-infobox {
		;	}

	

	.fl-node-qjhzop5lvgbr .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-05um6kcptw2h {
	width: 100%;
}

	.fl-node-05um6kcptw2h .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-05um6kcptw2h .uabb-infobox {
		}
	/* Align */
.fl-node-05um6kcptw2h .infobox-left,
.fl-node-05um6kcptw2h .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-05um6kcptw2h .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-05um6kcptw2h .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-05um6kcptw2h .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-05um6kcptw2h .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-05um6kcptw2h .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-05um6kcptw2h .uabb-infobox {
		;	}

	

	.fl-node-05um6kcptw2h .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-cjrzevi5d4a0 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-cjrzevi5d4a0 .uabb-infobox {
		}
	/* Align */
.fl-node-cjrzevi5d4a0 .infobox-left,
.fl-node-cjrzevi5d4a0 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-cjrzevi5d4a0 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-cjrzevi5d4a0 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-cjrzevi5d4a0 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-cjrzevi5d4a0 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-cjrzevi5d4a0 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-cjrzevi5d4a0 .uabb-infobox {
		;	}

	

	.fl-node-cjrzevi5d4a0 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-w8i7ybepm6dj .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-w8i7ybepm6dj .uabb-infobox {
		}
	/* Align */
.fl-node-w8i7ybepm6dj .infobox-left,
.fl-node-w8i7ybepm6dj .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-w8i7ybepm6dj .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-w8i7ybepm6dj .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-w8i7ybepm6dj .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-w8i7ybepm6dj .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-w8i7ybepm6dj .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-w8i7ybepm6dj .uabb-infobox {
		;	}

	

	.fl-node-w8i7ybepm6dj .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-7dtgpuf9a63w {
	width: 100%;
}

	.fl-node-7dtgpuf9a63w .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-7dtgpuf9a63w .uabb-infobox {
		}
	/* Align */
.fl-node-7dtgpuf9a63w .infobox-left,
.fl-node-7dtgpuf9a63w .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-7dtgpuf9a63w .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-7dtgpuf9a63w .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-7dtgpuf9a63w .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7dtgpuf9a63w .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-7dtgpuf9a63w .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-7dtgpuf9a63w .uabb-infobox {
		;	}

	

	.fl-node-7dtgpuf9a63w .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-uivnkyrzf34b .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-uivnkyrzf34b .uabb-infobox {
		}
	/* Align */
.fl-node-uivnkyrzf34b .infobox-left,
.fl-node-uivnkyrzf34b .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-uivnkyrzf34b .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-uivnkyrzf34b .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-uivnkyrzf34b .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-uivnkyrzf34b .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-uivnkyrzf34b .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-uivnkyrzf34b .uabb-infobox {
		;	}

	

	.fl-node-uivnkyrzf34b .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-8vckil0womyp {
	width: 100%;
}

	.fl-node-8vckil0womyp .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-8vckil0womyp .uabb-infobox {
		}
	/* Align */
.fl-node-8vckil0womyp .infobox-left,
.fl-node-8vckil0womyp .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-8vckil0womyp .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-8vckil0womyp .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-8vckil0womyp .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-8vckil0womyp .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-8vckil0womyp .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-8vckil0womyp .uabb-infobox {
		;	}

	

	.fl-node-8vckil0womyp .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-xz9wri17v2aj .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-xz9wri17v2aj .uabb-infobox {
		}
	/* Align */
.fl-node-xz9wri17v2aj .infobox-left,
.fl-node-xz9wri17v2aj .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-xz9wri17v2aj .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-xz9wri17v2aj .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-xz9wri17v2aj .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-xz9wri17v2aj .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-xz9wri17v2aj .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-xz9wri17v2aj .uabb-infobox {
		;	}

	

	.fl-node-xz9wri17v2aj .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-tz9x5mjw0e21 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-tz9x5mjw0e21 .uabb-infobox {
		}
	/* Align */
.fl-node-tz9x5mjw0e21 .infobox-left,
.fl-node-tz9x5mjw0e21 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-tz9x5mjw0e21 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-tz9x5mjw0e21 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-tz9x5mjw0e21 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-tz9x5mjw0e21 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-tz9x5mjw0e21 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-tz9x5mjw0e21 .uabb-infobox {
		;	}

	

	.fl-node-tz9x5mjw0e21 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-7spow8nx32it {
	width: 100%;
}

	.fl-node-7spow8nx32it .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-7spow8nx32it .uabb-infobox {
		}
	/* Align */
.fl-node-7spow8nx32it .infobox-left,
.fl-node-7spow8nx32it .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-7spow8nx32it .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-7spow8nx32it .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-7spow8nx32it .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7spow8nx32it .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-7spow8nx32it .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-7spow8nx32it .uabb-infobox {
		;	}

	

	.fl-node-7spow8nx32it .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-lo3qegrjtzs5 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-lo3qegrjtzs5 .uabb-infobox {
		}
	/* Align */
.fl-node-lo3qegrjtzs5 .infobox-left,
.fl-node-lo3qegrjtzs5 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-lo3qegrjtzs5 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-lo3qegrjtzs5 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-lo3qegrjtzs5 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-lo3qegrjtzs5 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-lo3qegrjtzs5 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-lo3qegrjtzs5 .uabb-infobox {
		;	}

	

	.fl-node-lo3qegrjtzs5 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-ayuldpe6giwz .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ayuldpe6giwz .uabb-infobox {
		}
	/* Align */
.fl-node-ayuldpe6giwz .infobox-left,
.fl-node-ayuldpe6giwz .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ayuldpe6giwz .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ayuldpe6giwz .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ayuldpe6giwz .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ayuldpe6giwz .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ayuldpe6giwz .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ayuldpe6giwz .uabb-infobox {
		;	}

	

	.fl-node-ayuldpe6giwz .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-yjgxnbp9m6r5 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-yjgxnbp9m6r5 .uabb-infobox {
		}
	/* Align */
.fl-node-yjgxnbp9m6r5 .infobox-left,
.fl-node-yjgxnbp9m6r5 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-yjgxnbp9m6r5 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-yjgxnbp9m6r5 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-yjgxnbp9m6r5 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-yjgxnbp9m6r5 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-yjgxnbp9m6r5 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-yjgxnbp9m6r5 .uabb-infobox {
		;	}

	

	.fl-node-yjgxnbp9m6r5 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-doymr7zfuw61 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-doymr7zfuw61 .uabb-infobox {
		}
	/* Align */
.fl-node-doymr7zfuw61 .infobox-left,
.fl-node-doymr7zfuw61 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-doymr7zfuw61 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-doymr7zfuw61 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-doymr7zfuw61 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-doymr7zfuw61 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-doymr7zfuw61 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-doymr7zfuw61 .uabb-infobox {
		;	}

	

	.fl-node-doymr7zfuw61 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-otzdxv0j9b6q .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-otzdxv0j9b6q .uabb-infobox {
		}
	/* Align */
.fl-node-otzdxv0j9b6q .infobox-left,
.fl-node-otzdxv0j9b6q .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-otzdxv0j9b6q .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-otzdxv0j9b6q .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-otzdxv0j9b6q .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-otzdxv0j9b6q .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-otzdxv0j9b6q .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-otzdxv0j9b6q .uabb-infobox {
		;	}

	

	.fl-node-otzdxv0j9b6q .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-u4h2s89kqrl5 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-u4h2s89kqrl5 .uabb-infobox {
		}
	/* Align */
.fl-node-u4h2s89kqrl5 .infobox-left,
.fl-node-u4h2s89kqrl5 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-u4h2s89kqrl5 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-u4h2s89kqrl5 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-u4h2s89kqrl5 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-u4h2s89kqrl5 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-u4h2s89kqrl5 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-u4h2s89kqrl5 .uabb-infobox {
		;	}

	

	.fl-node-u4h2s89kqrl5 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-u1piv24bwfoa .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-u1piv24bwfoa .uabb-infobox {
		}
	/* Align */
.fl-node-u1piv24bwfoa .infobox-left,
.fl-node-u1piv24bwfoa .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-u1piv24bwfoa .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-u1piv24bwfoa .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-u1piv24bwfoa .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-u1piv24bwfoa .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-u1piv24bwfoa .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-u1piv24bwfoa .uabb-infobox {
		;	}

	

	.fl-node-u1piv24bwfoa .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-9hksqnmp2dve {
	width: 100%;
}

	.fl-node-9hksqnmp2dve .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-9hksqnmp2dve .uabb-infobox {
		}
	/* Align */
.fl-node-9hksqnmp2dve .infobox-left,
.fl-node-9hksqnmp2dve .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-9hksqnmp2dve .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-9hksqnmp2dve .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-9hksqnmp2dve .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-9hksqnmp2dve .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-9hksqnmp2dve .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-9hksqnmp2dve .uabb-infobox {
		;	}

	

	.fl-node-9hksqnmp2dve .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-nkga6w1sq05v .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-nkga6w1sq05v .uabb-infobox {
		}
	/* Align */
.fl-node-nkga6w1sq05v .infobox-left,
.fl-node-nkga6w1sq05v .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-nkga6w1sq05v .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-nkga6w1sq05v .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-nkga6w1sq05v .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-nkga6w1sq05v .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-nkga6w1sq05v .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-nkga6w1sq05v .uabb-infobox {
		;	}

	

	.fl-node-nkga6w1sq05v .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-f6h18yskvqg9 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-f6h18yskvqg9 .uabb-infobox {
		}
	/* Align */
.fl-node-f6h18yskvqg9 .infobox-left,
.fl-node-f6h18yskvqg9 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-f6h18yskvqg9 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-f6h18yskvqg9 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-f6h18yskvqg9 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-f6h18yskvqg9 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-f6h18yskvqg9 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-f6h18yskvqg9 .uabb-infobox {
		;	}

	

	.fl-node-f6h18yskvqg9 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-1hv9jr80afni .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-1hv9jr80afni .uabb-infobox {
		}
	/* Align */
.fl-node-1hv9jr80afni .infobox-left,
.fl-node-1hv9jr80afni .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-1hv9jr80afni .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-1hv9jr80afni .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-1hv9jr80afni .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-1hv9jr80afni .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-1hv9jr80afni .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-1hv9jr80afni .uabb-infobox {
		;	}

	

	.fl-node-1hv9jr80afni .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	/* Global Alignment Css */
	.fl-node-1wgsti4fnuay .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-1wgsti4fnuay .uabb-image .uabb-photo-img {
							width: 150px;
								}

		.fl-node-1wgsti4fnuay .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-1wgsti4fnuay .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-1wgsti4fnuay .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-1wgsti4fnuay .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-1wgsti4fnuay .uabb-infobox {
				background: rgba(238,238,238,0.99);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-1wgsti4fnuay .infobox-center,
.fl-node-1wgsti4fnuay .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-1wgsti4fnuay .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-1wgsti4fnuay .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-1wgsti4fnuay .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-1wgsti4fnuay .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-1wgsti4fnuay .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-1wgsti4fnuay .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-1wgsti4fnuay .uabb-infobox {
		;	}

	

	.fl-node-1wgsti4fnuay .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-ciwzfokjxe5v .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ciwzfokjxe5v .uabb-infobox {
		}
	/* Align */
.fl-node-ciwzfokjxe5v .infobox-left,
.fl-node-ciwzfokjxe5v .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ciwzfokjxe5v .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ciwzfokjxe5v .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ciwzfokjxe5v .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ciwzfokjxe5v .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ciwzfokjxe5v .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ciwzfokjxe5v .uabb-infobox {
		;	}

	

	.fl-node-ciwzfokjxe5v .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-31j5p9tosbw4 {
	width: 100%;
}

	.fl-node-31j5p9tosbw4 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-31j5p9tosbw4 .uabb-infobox {
		}
	/* Align */
.fl-node-31j5p9tosbw4 .infobox-left,
.fl-node-31j5p9tosbw4 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-31j5p9tosbw4 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-31j5p9tosbw4 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-31j5p9tosbw4 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-31j5p9tosbw4 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-31j5p9tosbw4 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-31j5p9tosbw4 .uabb-infobox {
		;	}

	

	.fl-node-31j5p9tosbw4 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-r9jxnv6iscm0 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-r9jxnv6iscm0 .uabb-infobox {
		}
	/* Align */
.fl-node-r9jxnv6iscm0 .infobox-left,
.fl-node-r9jxnv6iscm0 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-r9jxnv6iscm0 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-r9jxnv6iscm0 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-r9jxnv6iscm0 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-r9jxnv6iscm0 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-r9jxnv6iscm0 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-r9jxnv6iscm0 .uabb-infobox {
		;	}

	

	.fl-node-r9jxnv6iscm0 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-bxzoetmjg4v6 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-bxzoetmjg4v6 .uabb-infobox {
		}
	/* Align */
.fl-node-bxzoetmjg4v6 .infobox-left,
.fl-node-bxzoetmjg4v6 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-bxzoetmjg4v6 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-bxzoetmjg4v6 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-bxzoetmjg4v6 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-bxzoetmjg4v6 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-bxzoetmjg4v6 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-bxzoetmjg4v6 .uabb-infobox {
		;	}

	

	.fl-node-bxzoetmjg4v6 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-wy03kcfuhd17 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-wy03kcfuhd17 .uabb-infobox {
		}
	/* Align */
.fl-node-wy03kcfuhd17 .infobox-left,
.fl-node-wy03kcfuhd17 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-wy03kcfuhd17 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-wy03kcfuhd17 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-wy03kcfuhd17 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-wy03kcfuhd17 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-wy03kcfuhd17 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-wy03kcfuhd17 .uabb-infobox {
		;	}

	

	.fl-node-wy03kcfuhd17 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-yx4f8z0d6buc .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-yx4f8z0d6buc .uabb-infobox {
		}
	/* Align */
.fl-node-yx4f8z0d6buc .infobox-left,
.fl-node-yx4f8z0d6buc .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-yx4f8z0d6buc .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-yx4f8z0d6buc .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-yx4f8z0d6buc .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-yx4f8z0d6buc .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-yx4f8z0d6buc .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-yx4f8z0d6buc .uabb-infobox {
		;	}

	

	.fl-node-yx4f8z0d6buc .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-bdks1pnh8g4q .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-bdks1pnh8g4q .uabb-infobox {
		}
	/* Align */
.fl-node-bdks1pnh8g4q .infobox-left,
.fl-node-bdks1pnh8g4q .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-bdks1pnh8g4q .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-bdks1pnh8g4q .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-bdks1pnh8g4q .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-bdks1pnh8g4q .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-bdks1pnh8g4q .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-bdks1pnh8g4q .uabb-infobox {
		;	}

	

	.fl-node-bdks1pnh8g4q .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-okcpr3jmlv6b .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-okcpr3jmlv6b .uabb-infobox {
		}
	/* Align */
.fl-node-okcpr3jmlv6b .infobox-left,
.fl-node-okcpr3jmlv6b .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-okcpr3jmlv6b .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-okcpr3jmlv6b .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-okcpr3jmlv6b .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-okcpr3jmlv6b .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-okcpr3jmlv6b .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-okcpr3jmlv6b .uabb-infobox {
		;	}

	

	.fl-node-okcpr3jmlv6b .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-7ldsa6wipbj3 {
	width: 100%;
}

	.fl-node-7ldsa6wipbj3 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-7ldsa6wipbj3 .uabb-infobox {
		}
	/* Align */
.fl-node-7ldsa6wipbj3 .infobox-left,
.fl-node-7ldsa6wipbj3 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-7ldsa6wipbj3 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-7ldsa6wipbj3 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-7ldsa6wipbj3 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7ldsa6wipbj3 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-7ldsa6wipbj3 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-7ldsa6wipbj3 .uabb-infobox {
		;	}

	

	.fl-node-7ldsa6wipbj3 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-3q8csailw2f5 {
	width: 100%;
}

	.fl-node-3q8csailw2f5 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-3q8csailw2f5 .uabb-infobox {
		}
	/* Align */
.fl-node-3q8csailw2f5 .infobox-left,
.fl-node-3q8csailw2f5 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-3q8csailw2f5 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-3q8csailw2f5 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-3q8csailw2f5 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-3q8csailw2f5 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-3q8csailw2f5 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-3q8csailw2f5 .uabb-infobox {
		;	}

	

	.fl-node-3q8csailw2f5 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-hygnaqomt9sp .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-hygnaqomt9sp .uabb-infobox {
		}
	/* Align */
.fl-node-hygnaqomt9sp .infobox-left,
.fl-node-hygnaqomt9sp .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-hygnaqomt9sp .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-hygnaqomt9sp .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-hygnaqomt9sp .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-hygnaqomt9sp .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-hygnaqomt9sp .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-hygnaqomt9sp .uabb-infobox {
		;	}

	

	.fl-node-hygnaqomt9sp .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-tdpckma7hzoy .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-tdpckma7hzoy .uabb-infobox {
		}
	/* Align */
.fl-node-tdpckma7hzoy .infobox-left,
.fl-node-tdpckma7hzoy .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-tdpckma7hzoy .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-tdpckma7hzoy .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-tdpckma7hzoy .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-tdpckma7hzoy .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-tdpckma7hzoy .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-tdpckma7hzoy .uabb-infobox {
		;	}

	

	.fl-node-tdpckma7hzoy .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-v82zlb3j16tp .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-v82zlb3j16tp .uabb-infobox {
		}
	/* Align */
.fl-node-v82zlb3j16tp .infobox-left,
.fl-node-v82zlb3j16tp .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-v82zlb3j16tp .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-v82zlb3j16tp .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-v82zlb3j16tp .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-v82zlb3j16tp .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-v82zlb3j16tp .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-v82zlb3j16tp .uabb-infobox {
		;	}

	

	.fl-node-v82zlb3j16tp .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-0h9wqm763dk4 {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-0h9wqm763dk4 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-0h9wqm763dk4 .uabb-image .uabb-photo-img {
							width: 150px;
								}

		.fl-node-0h9wqm763dk4 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-0h9wqm763dk4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0h9wqm763dk4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-0h9wqm763dk4 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-0h9wqm763dk4 .uabb-infobox {
		}
	/* Align */
.fl-node-0h9wqm763dk4 .infobox-center,
.fl-node-0h9wqm763dk4 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-0h9wqm763dk4 .uabb-infobox-text {
	color:
	#757575;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-0h9wqm763dk4 .uabb-infobox {
		;	}

	

	.fl-node-0h9wqm763dk4 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}

/* Start Global CSS */
.swpm-post-not-logged-in-msg {
    margin: 100px 0;
    text-align: center;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


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

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

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

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

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

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																																																																					
					
					
					
																																																																																																																																																					
					
					
					
																																	