/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}


.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
	/* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* IE9 hack, otherwise navigation doesn't appear */
	background: rgba(0,0,0,0);
}

.featherlight-previous {
	left: 25px;
	right: 80%;
}

.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0.25);
}


.featherlight-next span,
.featherlight-previous span {
	display: none;
	position: absolute;

	top: 50%;
	left: 5%;
	width: 82%;

	/* center horizontally */
	text-align: center;

	font-size: 80px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #fff;
	font-style: normal;
	font-weight: normal;
}
.featherlight-next span {
	right: 5%;
	left: auto;
}


.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}


/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

:root{--blue: #1B3E6F;--indigo: #6610f2;--purple: #ad63a7;--pink: #e7488a;--red: #d41f2a;--orange: #f38f1d;--yellow: #f0ad00;--green: #6cb33e;--teal: #27b1bd;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #717684;--primary: #1B3E6F;--secondary: #27b1bd;--success: #6cb33e;--info: #17a2b8;--warning: #f0ad00;--danger: #d41f2a;--light: #ced4da;--dark: #717684;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: "Montserrat", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.module{background-color:#fff}.module p.module-text{color:#1d252d;font-size:16px;font-style:normal;font-weight:400;line-height:150%}.module .icon-area{margin-top:15px;margin-bottom:15px}.module#main,.module.container,.module#aside{padding:1.25rem}@media(min-width: 768px){.module#main,.module.container,.module#aside{padding:2rem 2.5rem}}.module.widget-module .btn{margin:.5rem 3rem;padding:.5rem 1.5rem;min-width:200px;font-size:.9rem;font-family:Montserrat;letter-spacing:1px;font-weight:600;line-height:1.2rem}.module.widget-module .btn.btn-coral:hover{background-color:#d42020}.module.widget-module .btn.btn-blue:hover{background-color:#00608a}.module.widget-module .btn.btn-green:hover{background-color:#006a3e}.module.widget-module .btn.btn-yellow:hover{background-color:#a47600}.module.widget-module .btn.btn-orange:hover{background-color:#b36b00}.module.widget-module .btn.btn-teal:hover{background-color:#1a767e}.module.widget-module .btn.btn-purple:hover{background-color:#80437b}.module.widget-module .btn.btn-black:hover{background-color:#000}.module.widget-module .btn.btn-steel:hover{background-color:#494f54}.module.promo-module .click-block{width:100%;height:100%;display:block}.module.promo-module .btn{margin:.5rem auto 1rem;padding:.5rem 1.2rem;font-size:.9rem;font-family:Montserrat;letter-spacing:1px;font-weight:600;line-height:1.2rem;min-width:200px}.module.promo-module p{text-wrap:balance}.module.meta-data h2,.module.meta-data .module-heading{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:1rem;margin:0 0 1rem 0;color:#717684}.module.meta-data h2 img,.module.meta-data .module-heading img{width:14pt}.module.meta-data h3{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:1rem}.module.meta-data h4,.module.meta-data .module-subheading{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:.8125rem;text-transform:uppercase;color:#6c757d}.module.meta-data h4 img,.module.meta-data .module-subheading img{width:14pt}.module.meta-data ul{margin:0}.module.meta-data .hours{margin-bottom:1rem}.module.meta-data .hours p{margin-bottom:.3125rem}.module.meta-data .hours p:last-child{margin-bottom:0}.featherlight .featherlight-close-icon{position:fixed;z-index:9999;top:0;right:0;line-height:40px;width:40px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:rgba(255,255,255,.8);color:#000;border:none;padding:0}.codeblock{margin:1.25rem 0}body:not(.search) #main .content ul.ochChecklist{padding-right:.625rem;list-style:none;margin:0 0 1.5rem 0}body:not(.search) #main .content ul.ochChecklist li{margin:0 0 1rem 0;line-height:1.6em;padding:0 0 0 2.25rem;background:rgba(0,0,0,0) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmOyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+PGc+PGcgaWQ9InN1cmZhY2UxIj48cGF0aCBkPSJNMzAuMDQ4MDUsMjM2LjI1Yy03Ljg3NSwwIC0xNC4yOTgwNSwtNi40MjMwNSAtMTQuMjk4MDUsLTE0LjI5ODA1di0xOTEuOTAzOTFjMCwtNy44NzUgNi40MjMwNSwtMTQuMjk4MDUgMTQuMjk4MDUsLTE0LjI5ODA1aDE5MS45MDM5MWM3Ljg3NSwwIDE0LjI5ODA1LDYuNDIzMDUgMTQuMjk4MDUsMTQuMjk4MDV2MTkxLjkwMzkxYzAsNy44NzUgLTYuNDIzMDUsMTQuMjk4MDUgLTE0LjI5ODA1LDE0LjI5ODA1eiIgZmlsbD0iI2U3ZjZmZiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiPjwvcGF0aD48cGF0aCBkPSJNMjIxLjk1MTk1LDE4LjljNi4xNTIzNCwwIDExLjE0ODA1LDQuOTk1NyAxMS4xNDgwNSwxMS4xNDgwNXYxOTEuOTAzOTFjMCw2LjE1MjM0IC00Ljk5NTcsMTEuMTQ4MDUgLTExLjE0ODA1LDExLjE0ODA1aC0xOTEuOTAzOTFjLTYuMTUyMzQsMCAtMTEuMTQ4MDUsLTQuOTk1NyAtMTEuMTQ4MDUsLTExLjE0ODA1di0xOTEuOTAzOTFjMCwtNi4xNTIzNCA0Ljk5NTcsLTExLjE0ODA1IDExLjE0ODA1LC0xMS4xNDgwNWgxOTEuOTAzOTFNMjIxLjk1MTk1LDEyLjZoLTE5MS45MDM5MWMtOS42NDY4NywwIC0xNy40NDgwNSw3LjgwMTE3IC0xNy40NDgwNSwxNy40NDgwNXYxOTEuOTAzOTFjMCw5LjY0Njg3IDcuODAxMTcsMTcuNDQ4MDUgMTcuNDQ4MDUsMTcuNDQ4MDVoMTkxLjkwMzkxYzkuNjQ2ODcsMCAxNy40NDgwNSwtNy44MDExNyAxNy40NDgwNSwtMTcuNDQ4MDV2LTE5MS45MDM5MWMwLC05LjY0Njg3IC03LjgwMTE3LC0xNy40NDgwNSAtMTcuNDQ4MDUsLTE3LjQ0ODA1eiIgZmlsbD0iIzI3YjFiZCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiPjwvcGF0aD48cGF0aCBkPSJNNjkuMywxMjYuMzQ0NTNsMzcuNTc4NTIsMzcuNTc4NTFsODQuNTU3ODEsLTg0LjU1NzgxIiBmaWxsPSJub25lIiBzdHJva2U9IiMyN2IxYmQiIHN0cm9rZS13aWR0aD0iMTguOSI+PC9wYXRoPjwvZz48L2c+PC9nPjwvc3ZnPg==") no-repeat 0 3px}body:not(.search) #main .content ul.ochChecklist ul{list-style-type:disc;margin:.75rem 0 1.25rem 1.25rem}body:not(.search) #main .content ul.ochChecklist ul li{margin:0 0 .75rem;background:none;padding-left:0}#main .content .main-carousel{height:28.125rem;background-color:#fff;padding:2rem 0 0 0}#main .content .main-carousel .flickity-viewport{position:absolute;width:100%}#main .content .main-carousel .carousel-cell{border:1px solid #dee2e6;background-color:#fff;width:75%;height:86%;margin-right:1.5rem;opacity:.3}@media(min-width: 768px){#main .content .main-carousel .carousel-cell{width:33.3333%}}#main .content .main-carousel .carousel-cell.carousel-start{border:none;background-color:#fff;width:69%;padding:3%;opacity:1}@media(min-width: 768px){#main .content .main-carousel .carousel-cell.carousel-start{width:27.3333%;padding:3%}}#main .content .main-carousel .carousel-cell.carousel-start .v-align{width:100%;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}#main .content .main-carousel .carousel-cell.carousel-start h2{font-size:1.375rem;margin:0}@media(min-width: 992px){#main .content .main-carousel .carousel-cell.carousel-start h2{font-size:1.5rem}}#main .content .main-carousel .carousel-cell.is-selected{background:#fff;transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}#main .content .main-carousel .carousel-cell.is-selected.carousel-start{background-color:#fff}#main .content .main-carousel .carousel-image{height:10.625rem;background-repeat:no-repeat;background-position:50% 50%;background-size:cover}#main .content .main-carousel .carousel-content{padding:1rem}#main .content .main-carousel .carousel-content a h3{color:#717684;font-size:1rem;line-height:1.5rem;margin:0}#main .content .main-carousel .carousel-content a h3:focus,#main .content .main-carousel .carousel-content a h3:hover{color:#27b1bd;transition:color 200ms cubic-bezier(0.4, 0, 0.6, 1)}#main .content .main-carousel .carousel-content-readtime{display:inline-block;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:.75rem;text-transform:uppercase;letter-spacing:.02em;line-height:1.25rem;vertical-align:middle;margin-bottom:.75rem;color:#adb5bd}#main .content .main-carousel .flickity-button{background:rgba(0,0,0,0);color:#212529;top:95%;transform:translateY(-95%)}#main .content .main-carousel .flickity-prev-next-button.previous{left:1.5rem;border-right:2px solid #e9ecef}#main .content .main-carousel .flickity-prev-next-button.next{left:4.375rem}#main .content .main-carousel .flickity-prev-next-button{border-radius:0}#main .content .lp-carousel{height:18.75rem;background-color:#fff;padding:0}@media(min-width: 768px){#main .content .lp-carousel{height:21.875rem}}@media(min-width: 992px){#main .content .lp-carousel{height:28.125rem}}#main .content .lp-carousel .flickity-viewport{position:absolute;width:100%}#main .content .lp-carousel .carousel-cell{border:1px solid #dee2e6;background-color:#fff;width:100%;height:100%;margin-right:1.5rem;opacity:.3}@media(min-width: 768px){#main .content .lp-carousel .carousel-cell{width:50%}}@media(min-width: 992px){#main .content .lp-carousel .carousel-cell{width:33.3333%}}#main .content .lp-carousel .carousel-cell.carousel-start{border:none;background-color:#fff;width:69%;padding:3%;opacity:1}@media(min-width: 768px){#main .content .lp-carousel .carousel-cell.carousel-start{width:27.3333%;padding:3%}}#main .content .lp-carousel .carousel-cell.carousel-start .v-align{width:100%;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}#main .content .lp-carousel .carousel-cell.carousel-start h2{font-size:1.375rem;margin:0}@media(min-width: 992px){#main .content .lp-carousel .carousel-cell.carousel-start h2{font-size:1.5rem}}#main .content .lp-carousel .carousel-cell.is-selected{background:#fff;transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}#main .content .lp-carousel .carousel-cell.is-selected.carousel-start{background-color:#fff}#main .content .lp-carousel .carousel-content{padding:1rem;background-repeat:no-repeat;background-size:cover;background-color:#0096d6;height:100%}#main .content .lp-carousel .carousel-content h3{color:#fff;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:700;font-size:1.5rem;margin:0 0 1rem}@media(min-width: 768px){#main .content .lp-carousel .carousel-content h3{font-size:2rem}}#main .content .lp-carousel .carousel-content p{color:#fff;font-size:1rem;font-weight:400}@media(min-width: 768px){#main .content .lp-carousel .carousel-content p{font-size:1.25rem}}#main .content .lp-carousel .carousel-content a h3{color:#717684;font-size:1rem;line-height:1.5rem;margin:0}#main .content .lp-carousel .carousel-content a h3:focus,#main .content .lp-carousel .carousel-content a h3:hover{color:#27b1bd;transition:color 200ms cubic-bezier(0.4, 0, 0.6, 1)}#main .content .lp-carousel .carousel-content-readtime{display:inline-block;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:.75rem;text-transform:uppercase;letter-spacing:.02em;line-height:1.25rem;vertical-align:middle;margin-bottom:.75rem;color:#adb5bd}#main .content .lp-carousel .flickity-button{background:rgba(0,0,0,0);color:#212529;top:95%;transform:translateY(-95%)}#main .content .lp-carousel .flickity-prev-next-button.previous{left:1.5rem;border-right:2px solid #e9ecef}#main .content .lp-carousel .flickity-prev-next-button.next{left:4.375rem}#main .content .lp-carousel .flickity-prev-next-button{border-radius:0}#main .content .blog-carousel{height:28.125rem;background-color:#fff;padding:0}#main .content .blog-carousel .flickity-viewport{position:absolute;width:100%}#main .content .blog-carousel .carousel-cell{border:1px solid #dee2e6;background-color:#fff;width:100%;height:100%;margin-right:0;opacity:.3}#main .content .blog-carousel .carousel-cell.is-selected{background:#fff;transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}#main .content .blog-carousel .carousel-content{position:absolute;bottom:1rem;right:1rem;width:60%;background-color:rgba(255,255,255,.8)}@media(min-width: 768px){#main .content .blog-carousel .carousel-content{width:70%}}#main .content .blog-carousel .carousel-content h3{margin:0 0 1rem 0}#main .content .blog-carousel .carousel-content p{margin:0 0 0 0;font-weight:700}#main .content .blog-carousel .flickity-button{background-color:rgba(255,255,255,.8);color:#212529;top:96%;transform:translateY(-96%)}#main .content .blog-carousel .flickity-prev-next-button.previous{left:1rem;border:none}#main .content .blog-carousel .flickity-prev-next-button.next{left:3.875rem}#main .content .blog-carousel .flickity-prev-next-button{border-radius:0}#promotion-sliders .www-carousel{height:21.875rem;background-color:#f3f3f3;padding:0}@media(min-width: 1200px){#promotion-sliders .www-carousel{height:38.4375rem}}#promotion-sliders .www-carousel .flickity-viewport{position:absolute;width:100%}#promotion-sliders .www-carousel .carousel-cell{border:none;background-color:#fff;width:100%;height:21.875rem;margin:0}@media(min-width: 1200px){#promotion-sliders .www-carousel .carousel-cell{height:38.4375rem}}#promotion-sliders .www-carousel .carousel-cell.is-selected{background:#fff;transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}#promotion-sliders .www-carousel .carousel-image{height:21.875rem;background-repeat:no-repeat;background-position:50% 50%;background-size:cover}@media(min-width: 1200px){#promotion-sliders .www-carousel .carousel-image{height:38.4375rem}}#promotion-sliders .www-carousel .carousel-content{position:absolute;z-index:50;text-align:center;padding:0;width:75%}#promotion-sliders .www-carousel .carousel-content.topLeft,#promotion-sliders .www-carousel .carousel-content.centerLeft,#promotion-sliders .www-carousel .carousel-content.bottomLeft{text-align:left;left:7%}#promotion-sliders .www-carousel .carousel-content.topCenter,#promotion-sliders .www-carousel .carousel-content.centerCenter,#promotion-sliders .www-carousel .carousel-content.bottomCenter{text-align:center;left:50%}#promotion-sliders .www-carousel .carousel-content.topRight,#promotion-sliders .www-carousel .carousel-content.centerRight,#promotion-sliders .www-carousel .carousel-content.bottomRight{text-align:right;right:7%}#promotion-sliders .www-carousel .carousel-content.topLeft,#promotion-sliders .www-carousel .carousel-content.topCenter,#promotion-sliders .www-carousel .carousel-content.topRight{top:10%}#promotion-sliders .www-carousel .carousel-content.centerLeft,#promotion-sliders .www-carousel .carousel-content.centerCenter,#promotion-sliders .www-carousel .carousel-content.centerRight{top:50%}#promotion-sliders .www-carousel .carousel-content.bottomLeft,#promotion-sliders .www-carousel .carousel-content.bottomCenter,#promotion-sliders .www-carousel .carousel-content.bottomRight{bottom:10%}#promotion-sliders .www-carousel .carousel-content.topCenter,#promotion-sliders .www-carousel .carousel-content.bottomCenter{transform:translate(-50%, 0%)}#promotion-sliders .www-carousel .carousel-content.centerLeft,#promotion-sliders .www-carousel .carousel-content.centerRight{transform:translate(0, -50%)}#promotion-sliders .www-carousel .carousel-content.centerCenter{transform:translate(-50%, -50%)}#promotion-sliders .www-carousel .carousel-content h2{color:#fff;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:1.5rem;letter-spacing:-0.02rem;line-height:1.1em}@media(min-width: 768px){#promotion-sliders .www-carousel .carousel-content h2{font-size:1.75rem}}@media(min-width: 1200px){#promotion-sliders .www-carousel .carousel-content h2{font-size:2.25rem}}#promotion-sliders .www-carousel .carousel-content h2 strong{font-weight:700}#promotion-sliders .www-carousel .carousel-content h2 em{font-style:normal;color:#f0ad00}#promotion-sliders .www-carousel .carousel-content p{font-weight:400;color:#fff;font-size:1rem;line-height:1.3rem;margin-bottom:0}@media(min-width: 1200px){#promotion-sliders .www-carousel .carousel-content p{font-size:1.5rem;line-height:1.6rem}}#promotion-sliders .www-carousel .carousel-content .nav .nav-item{margin:0 0 .75rem .75rem}#promotion-sliders .www-carousel .carousel-content .nav .nav-item:last-child{margin-right:0}#promotion-sliders .www-carousel .carousel-content .nav .nav-link{border:2px solid rgba(255,255,255,.6);background-color:rgba(255,255,255,.8);color:#000;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;letter-spacing:.02em;padding:.5rem .875rem;font-size:.6875rem;line-height:.8125rem}@media(min-width: 992px){#promotion-sliders .www-carousel .carousel-content .nav .nav-link{padding:.625rem 1rem;font-size:.8125rem;line-height:1rem}}#promotion-sliders .www-carousel .carousel-content .nav .nav-link.btn-dark{border-color:rgba(117,118,121,.6);background-color:#072b61;font-weight:bold;color:#fff}#promotion-sliders .www-carousel .carousel-content .nav .nav-link:focus,#promotion-sliders .www-carousel .carousel-content .nav .nav-link:hover{background-color:#27b1bd;color:#000;transition:all 200ms cubic-bezier(0.4, 0, 0.6, 1)}#promotion-sliders .www-carousel .flickity-button{background-color:rgba(255,255,255,.5);border-radius:0}#promotion-sliders .www-carousel .flickity-prev-next-button{bottom:2%;top:auto;transform:none;width:2rem;height:2rem}@media(min-width: 1200px){#promotion-sliders .www-carousel .flickity-prev-next-button{bottom:3%;top:auto;transform:none;width:2.75rem;height:2.75rem}}#promotion-sliders .www-carousel .flickity-prev-next-button.previous{left:.5rem}@media(min-width: 1200px){#promotion-sliders .www-carousel .flickity-prev-next-button.previous{left:1rem}}#promotion-sliders .www-carousel .flickity-prev-next-button.next{right:.5rem}@media(min-width: 1200px){#promotion-sliders .www-carousel .flickity-prev-next-button.next{right:1rem}}#promotion-quote-sliders .www-quote-carousel{height:15.625rem;background-color:rgba(0,0,0,0);padding:0}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel{height:18.75rem}}#promotion-quote-sliders .www-quote-carousel .flickity-viewport{position:absolute;width:100%}#promotion-quote-sliders .www-quote-carousel .carousel-cell{border:none;background-color:rgba(0,0,0,0);width:100%;height:15.625rem;margin:0}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .carousel-cell{height:18.75rem}}#promotion-quote-sliders .www-quote-carousel .carousel-cell.is-selected{background:rgba(0,0,0,0);transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}#promotion-quote-sliders .www-quote-carousel .carousel-image{height:15.625rem;background-repeat:no-repeat;background-position:50% 50%;background-size:cover}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .carousel-image{height:18.75rem}}#promotion-quote-sliders .www-quote-carousel .carousel-content{position:absolute;z-index:50;text-align:center;padding:0;width:75%}#promotion-quote-sliders .www-quote-carousel .carousel-content.topLeft{text-align:left;left:7%;top:10%}#promotion-quote-sliders .www-quote-carousel .carousel-content.topCenter{text-align:center;left:50%;top:10%;transform:translate(-50%, 0%)}#promotion-quote-sliders .www-quote-carousel .carousel-content.centerCenter{text-align:center;left:50%;top:50%;transform:translate(-50%, -50%)}#promotion-quote-sliders .www-quote-carousel .carousel-content.bottomCenter{text-align:center;left:50%;bottom:10%;transform:translate(-50%, 0%)}#promotion-quote-sliders .www-quote-carousel .carousel-content h2{color:#717684;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:1.5rem;letter-spacing:-0.02rem;line-height:1.1em}@media(min-width: 768px){#promotion-quote-sliders .www-quote-carousel .carousel-content h2{font-size:1.75rem}}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .carousel-content h2{font-size:2.25rem}}#promotion-quote-sliders .www-quote-carousel .carousel-content h2 strong{font-weight:700}#promotion-quote-sliders .www-quote-carousel .carousel-content h2 em{font-style:normal;color:#f0ad00}#promotion-quote-sliders .www-quote-carousel .carousel-content p{font-weight:400;color:#adb5bd;font-size:1rem;line-height:1.3rem;margin-bottom:0}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .carousel-content p{font-size:1.5rem;line-height:1.6rem}}#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-item{margin:0 0 .75rem .75rem}#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-item:last-child{margin-right:0}#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-link{border:2px solid rgba(255,255,255,.6);background-color:rgba(255,255,255,.8);color:#000;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;letter-spacing:.02em;padding:.5rem .875rem;font-size:.6875rem;line-height:.8125rem}@media(min-width: 992px){#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-link{padding:.625rem 1rem;font-size:.8125rem;line-height:1rem}}#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-link.btn-dark{border-color:rgba(117,118,121,.6)}#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-link:focus,#promotion-quote-sliders .www-quote-carousel .carousel-content .nav .nav-link:hover{background-color:#27b1bd;color:#000;transition:all 200ms cubic-bezier(0.4, 0, 0.6, 1)}#promotion-quote-sliders .www-quote-carousel .flickity-button{background-color:rgba(255,255,255,.5);border-radius:0}#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button{bottom:2%;top:auto;transform:none;width:2rem;height:2rem}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button{bottom:3%;top:auto;transform:none;width:2.75rem;height:2.75rem}}#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button.previous{left:.5rem}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button.previous{left:1rem}}#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button.next{right:.5rem}@media(min-width: 1200px){#promotion-quote-sliders .www-quote-carousel .flickity-prev-next-button.next{right:1rem}}.generic-video-carousel{height:6.25rem;padding:0 6.25rem}.generic-video-carousel .carousel-cell{height:100%}.generic-video-carousel .carousel-cell .carousel-image{width:10rem;height:6.25rem;background-size:cover;background-position:50% 50%;opacity:.3}.generic-video-carousel .carousel-cell.is-selected .carousel-image{transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}.generic-video-carousel .carousel-cell .flickity-viewport{position:absolute;width:100%}.provider-video-carousel .carousel-cell .carousel-image{width:12.5rem;height:7.8125rem;background-size:cover;background-position:50% 50%;opacity:.3}.provider-video-carousel .carousel-cell.is-selected .carousel-image{transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}.provider-blog-carousel .carousel-cell .carousel-image{width:11.25rem;height:5.625rem;margin-right:.5rem;background-size:cover;background-position:50% 50%;opacity:.3}.provider-blog-carousel .carousel-cell.is-selected .carousel-image{transition:all 500ms cubic-bezier(0.4, 0, 0.6, 1);opacity:1}.provider-blog-carousel .carousel-content{width:11.25rem;height:4.375rem}.provider-blog-carousel .carousel-content h3{font-size:.8125rem !important}.flickity-page-dots .dot{background:#6c757d;width:1.875rem;height:.3125rem;border-radius:0}#promotion-sliders .promotion-card-grid .promotion-card{padding:0 15px}#promotion-sliders .promotion-card-grid .promotion-card.card-darkBlue .inner-card{background:#1b3e6f}#promotion-sliders .promotion-card-grid .promotion-card.card-lightBlue .inner-card{background:#0072a3}#promotion-sliders .promotion-card-grid .promotion-card.card-yellow .inner-card{background:#ebab21}#promotion-sliders .promotion-card-grid .promotion-card .inner-card{display:flex;flex-direction:column;height:100%}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .image-block{display:flex;align-items:center;justify-content:center;background-color:#fff;height:10rem;background-position:center center;background-repeat:no-repeat;background-size:cover}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .image-block img{max-width:90%}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content{display:flex;flex-direction:column;justify-content:space-between;flex:1;padding:1.5rem 1.5rem 2rem;padding-bottom:.5rem;gap:32px}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content .content :is(h1,h2,h3,h4,h5,h6){color:#fff;margin:0 auto;font-family:Montserrat;font-weight:500;font-size:1.25rem;line-height:1.5}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content .content p{color:#fff;font-size:1rem;font-weight:500;line-height:1.7;margin-bottom:1.875rem}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content .content img,#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content .content figure{display:none !important;padding:0 !important;margin:0 !important}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content ul{list-style:none;padding-left:0 !important;margin-bottom:0 !important}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content ul a{color:#fff;border-bottom:0;width:100%;display:flex;position:relative;align-items:center;transition:all .3ms ease;font-size:1.0625rem;font-weight:400}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content ul a:hover{font-weight:bold}#promotion-sliders .promotion-card-grid .promotion-card .inner-card .card-content ul a .arrow{position:relative;display:block;left:1rem;width:1rem;height:1rem;background-size:1rem;background-repeat:no-repeat;margin-left:0;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEuNzUgMTIuNWgyMi41TTEzLjc1IDIzbDEwLjUtMTAuNUwxMy43NSAyIiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==")}.hero-wrapper{animation-name:fadeIn;animation-duration:.6s;animation-fill-mode:both;animation-iteration-count:1;animation-timing-function:ease-out;animation-delay:.3s}.hero-wrapper .masthead-breadcrumb,.hero-wrapper .masthead-content{z-index:50}.hero-wrapper .masthead-breadcrumb{position:absolute;top:1.25rem;left:1.875rem;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:400;font-size:.875rem;text-transform:uppercase;letter-spacing:.02em;line-height:2.75rem}@media(min-width: 768px){.hero-wrapper .masthead-breadcrumb{font-size:1rem;height:3rem}}.hero-wrapper .masthead-breadcrumb a{color:#fff}.hero-wrapper .masthead-content{position:absolute;padding:0 1.875rem;bottom:10%}@media(min-width: 768px){.hero-wrapper .masthead-content{bottom:15%}}.hero-wrapper .masthead-content h1{color:#fff;font-size:1.5rem;font-weight:700;line-height:1.1;letter-spacing:-0.02rem}@media(min-width: 768px){.hero-wrapper .masthead-content h1{font-size:2.5rem}}.hero-wrapper .masthead-image{min-height:14.0625rem;background-color:#0086d6;background-repeat:no-repeat;background-size:cover}@media(min-width: 768px){.hero-wrapper .masthead-image{min-height:28.125rem}}.hero-wrapper.round h1{font-size:1.25rem;margin:0 0 .75rem 0;font-weight:700;color:#212529}@media(min-width: 768px){.hero-wrapper.round h1{font-size:1.375rem}}@media(min-width: 992px){.hero-wrapper.round h1{font-size:1.5rem}}@media(min-width: 1200px){.hero-wrapper.round h1{font-size:1.75rem}}.hero-wrapper.round .btn-toggle{position:absolute;bottom:.5rem;right:0}@media(min-width: 768px){.hero-wrapper.round .btn-toggle{bottom:1rem}}@media(max-width: 767.98px){.hero-wrapper .masthead-image.masthead-locations .masthead-content{bottom:20%}}@media(min-width: 768px){.hero-wrapper .masthead-image.masthead-locations .masthead-content{bottom:25%}}.hero-wrapper .masthead-image.masthead-locations .masthead-region{position:absolute;padding:0 1.875rem;font-size:1.5rem;z-index:55}.hero-wrapper .masthead-image.masthead-locations .masthead-region a{color:#f0ad00;font-weight:bold;text-decoration:underline}@media(max-width: 767.98px){.hero-wrapper .masthead-image.masthead-locations .masthead-region{bottom:5%}}@media(min-width: 768px){.hero-wrapper .masthead-image.masthead-locations .masthead-region{bottom:15%}}.hero-wrapper .masthead-image.masthead-static .masthead-region{position:relative;padding:.5rem 1.5rem 0;line-height:1}@media(max-width: 767.98px){.hero-wrapper .masthead-image.masthead-static .masthead-region{display:none}}.hero-wrapper .masthead-image.masthead-static .masthead-region a{font-size:1rem;font-weight:bold}.not-sub .hero-wrapper .masthead-image{min-height:14.0625rem}@media(min-width: 768px){.not-sub .hero-wrapper .masthead-image{min-height:25rem}}.masthead-legacy{width:100%}.masthead-legacy .masthead-breadcrumb-legacy{position:relative;top:0;background:rgba(249,250,250,.98)}.masthead-legacy .masthead-breadcrumb-legacy .breadcrumb{background:rgba(0,0,0,0) !important}.masthead-legacy .masthead-breadcrumb-legacy .breadcrumb li.breadcrumb-item{text-transform:capitalize;font-weight:300;color:#3c4349 !important}.masthead-legacy .masthead-breadcrumb-legacy .breadcrumb li.breadcrumb-item.active{color:#6a7681 !important}.masthead-legacy .mastheaded-container{padding-right:32px;padding-left:32px}@media(min-width: 1200px){.masthead-legacy .mastheaded-container{padding-right:200px;padding-left:200px}}.masthead-legacy .mastheaded-container .masthead-content{position:relative;bottom:0;background-color:#fff;padding:3rem 7rem;text-align:center;display:flex;margin-top:0;margin-bottom:auto;padding-top:50px;padding-bottom:50px;flex-direction:column;justify-content:center;align-items:center;padding-left:0;padding-right:0}@media(min-width: 1200px){.masthead-legacy .mastheaded-container .masthead-content{margin-top:-68px;padding-right:100px;padding-left:100px}}.masthead-legacy .mastheaded-container .masthead-content>h1{color:#1d252d;font-size:2.5rem;line-height:3rem;font-weight:600}#main .content .in-page-nav .nav-link.active,.hero-wrapper .in-page-nav .nav-link.active,#aside .in-page-nav .nav-link.active{color:#212529}#main .content .in-page-nav .card-header,.hero-wrapper .in-page-nav .card-header,#aside .in-page-nav .card-header{background-color:#27b1bd;padding:0;margin:0}#main .content .in-page-nav .card-header h2,.hero-wrapper .in-page-nav .card-header h2,#aside .in-page-nav .card-header h2{margin:0;padding:0}#main .content .in-page-nav .card-header h2 .btn,.hero-wrapper .in-page-nav .card-header h2 .btn,#aside .in-page-nav .card-header h2 .btn{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:.02rem;background-color:#27b1bd;color:#fff;margin:0;padding:1.875rem 3.7rem 1.875rem 2.5rem;line-height:1;width:100%;text-align:left;border-bottom:1px solid #239da8;background:#27b1bd url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iIzUxYzBjZSI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzI3YjFiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xOTUuMywxNDQuOWwtMTguOSwxOC45bC01MC40LC01MC40bC01MC40LDUwLjRsLTE4LjksLTE4LjlsNjkuMywtNjkuM3oiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L2c+PC9nPjwvZz48L2c+PC9zdmc+") 95% 50% no-repeat}#main .content .in-page-nav .card-header h2 .btn:hover,.hero-wrapper .in-page-nav .card-header h2 .btn:hover,#aside .in-page-nav .card-header h2 .btn:hover{color:#fff;background:#2bc5d2 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iIzUxYzBjZSI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzI3YjFiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xOTUuMywxNDQuOWwtMTguOSwxOC45bC01MC40LC01MC40bC01MC40LDUwLjRsLTE4LjksLTE4LjlsNjkuMywtNjkuM3oiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L2c+PC9nPjwvZz48L2c+PC9zdmc+") 95% 50% no-repeat;transition:all 200ms cubic-bezier(0.4, 0, 0.6, 1)}#main .content .in-page-nav .card-header h2 .btn.collapsed,.hero-wrapper .in-page-nav .card-header h2 .btn.collapsed,#aside .in-page-nav .card-header h2 .btn.collapsed{background:#27b1bd url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iI2JkYmRiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzlhOWE5YSI+PC9wYXRoPjxwYXRoIGQ9Ik01Ni43LDEwNy4xbDE4LjksLTE4LjlsNTAuNCw1MC40bDUwLjQsLTUwLjRsMTguOSwxOC45bC02OS4zLDY5LjN6IiBmaWxsPSIjZmZmZmZmIj48L3BhdGg+PC9nPjwvZz48L2c+PC9nPjwvc3ZnPg==") 95% 50% no-repeat}#main .content .in-page-nav .card-header h2 .btn.collapsed:hover,.hero-wrapper .in-page-nav .card-header h2 .btn.collapsed:hover,#aside .in-page-nav .card-header h2 .btn.collapsed:hover{color:#fff;background-color:#2bc5d2}#aside .in-page-nav .nav-item .nav-link{display:block;width:100%;text-align:left;background-repeat:no-repeat;background-size:1.5rem;background-position-y:.7rem;padding:.5rem 0 .5rem 2rem;border-bottom:1px solid #dbdbdb;color:#1b3e6f;text-decoration:underline;text-underline-offset:2px;transition:all .15s}#aside .in-page-nav .nav-item .nav-link:hover{background-color:#e7f7fd;color:#1b3e6f;text-decoration:underline;text-underline-offset:2px}#aside .in-page-nav .nav-item .nav-link.active{background-color:#1b3e6f;color:#fff;text-decoration:none;font-weight:bold}#drop-subnav>.container>.container{display:flex;align-items:center;justify-content:space-between}#subnavDropdown .nav-link.active,#subnavDropdown .dropdown-item.active{background-color:#27b1bd;color:#fff}.subnav-wrapper{background-color:#27b1bd;top:54px;position:fixed;z-index:1002;width:100%}@media(min-width: 768px){.subnav-wrapper{top:125px}}.subnav-wrapper .subnav .mobile-nav{width:100%}.subnav-wrapper .subnav .mobile-nav .nav-link.active{color:#212529}.subnav-wrapper .subnav .mobile-nav .card-header{background-color:#27b1bd;padding:0;margin:0}.subnav-wrapper .subnav .mobile-nav .card-header h2{margin:0;padding:0}.subnav-wrapper .subnav .mobile-nav .card-header h2 .btn{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:.02rem;background-color:#27b1bd;color:#fff;margin:0;padding:1rem 2.5rem;line-height:1;width:100%;text-align:left;border-bottom:none;background:#27b1bd url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iIzUxYzBjZSI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzI3YjFiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xOTUuMywxNDQuOWwtMTguOSwxOC45bC01MC40LC01MC40bC01MC40LDUwLjRsLTE4LjksLTE4LjlsNjkuMywtNjkuM3oiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L2c+PC9nPjwvZz48L2c+PC9zdmc+") 95% 50% no-repeat}.subnav-wrapper .subnav .mobile-nav .card-header h2 .btn:hover{color:#fff;background:#2bc5d2 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iIzUxYzBjZSI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzI3YjFiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xOTUuMywxNDQuOWwtMTguOSwxOC45bC01MC40LC01MC40bC01MC40LDUwLjRsLTE4LjksLTE4LjlsNjkuMywtNjkuM3oiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L2c+PC9nPjwvZz48L2c+PC9zdmc+") 95% 50% no-repeat;transition:all 200ms cubic-bezier(0.4, 0, 0.6, 1)}.subnav-wrapper .subnav .mobile-nav .card-header h2 .btn.collapsed{background:#27b1bd url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojRjBBRDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOCwzNy44KSBzY2FsZSgwLjcsMC43KSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiPjwvcGF0aD48Zz48ZyBpZD0ic3VyZmFjZTEiPjxwYXRoIGQ9Ik0xMjYsMjQyLjU1Yy02NC4yNTUwOCwwIC0xMTYuNTUsLTUyLjI5NDkyIC0xMTYuNTUsLTExNi41NWMwLC02NC4yNTUwOCA1Mi4yOTQ5MiwtMTE2LjU1IDExNi41NSwtMTE2LjU1YzY0LjI1NTA4LDAgMTE2LjU1LDUyLjI5NDkyIDExNi41NSwxMTYuNTVjMCw2NC4yNTUwOCAtNTIuMjk0OTIsMTE2LjU1IC0xMTYuNTUsMTE2LjU1eiIgZmlsbD0iI2JkYmRiZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjYsMTIuNmM2Mi41MzI0MiwwIDExMy40LDUwLjg2NzU4IDExMy40LDExMy40YzAsNjIuNTMyNDIgLTUwLjg2NzU4LDExMy40IC0xMTMuNCwxMTMuNGMtNjIuNTMyNDIsMCAtMTEzLjQsLTUwLjg2NzU4IC0xMTMuNCwtMTEzLjRjMCwtNjIuNTMyNDIgNTAuODY3NTgsLTExMy40IDExMy40LC0xMTMuNE0xMjYsNi4zYy02Ni4xMDA3OCwwIC0xMTkuNyw1My41OTkyMiAtMTE5LjcsMTE5LjdjMCw2Ni4xMDA3OCA1My41OTkyMiwxMTkuNyAxMTkuNywxMTkuN2M2Ni4xMDA3OCwwIDExOS43LC01My41OTkyMiAxMTkuNywtMTE5LjdjMCwtNjYuMTAwNzggLTUzLjU5OTIyLC0xMTkuNyAtMTE5LjcsLTExOS43eiIgZmlsbD0iIzlhOWE5YSI+PC9wYXRoPjxwYXRoIGQ9Ik01Ni43LDEwNy4xbDE4LjksLTE4LjlsNTAuNCw1MC40bDUwLjQsLTUwLjRsMTguOSwxOC45bC02OS4zLDY5LjN6IiBmaWxsPSIjZmZmZmZmIj48L3BhdGg+PC9nPjwvZz48L2c+PC9nPjwvc3ZnPg==") 95% 50% no-repeat}.subnav-wrapper .subnav .mobile-nav .card-header h2 .btn.collapsed:hover{color:#fff;background-color:#2bc5d2}.subnav-wrapper .subnav .mobile-nav .card-body{box-shadow:0 .1rem 1rem 0 rgba(0,0,0,.1)}.subnav-wrapper .subnav .desktop-nav .subnav-nav{list-style:none;margin:0;padding:0}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item{font-size:.75rem;display:block;text-align:center;line-height:40px}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item:focus,.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item:hover{background-color:#29b9c5;transition:all 200ms cubic-bezier(0.4, 0, 0.2, 1)}@media(min-width: 768px){.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item{line-height:50px}}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item.active{background-color:#2ac1ce}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item.active .subnav-link{color:#717684}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item .subnav-link{display:inline-block;vertical-align:middle;font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;color:#fff;line-height:1.3em;padding:0 .75rem}.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item .subnav-link:focus,.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item .subnav-link:hover{color:#fff;transition:all 200ms cubic-bezier(0.4, 0, 0.2, 1)}@media(min-width: 768px){.subnav-wrapper .subnav .desktop-nav .subnav-nav .subnav-item .subnav-link{padding:0 1rem}}.scrolled .subnav-wrapper{box-shadow:inset 0 3rem 0 0 #27b1bd;top:54px;transition:height 200ms cubic-bezier(0.4, 0, 0.2, 1)}@media(min-width: 768px){.scrolled .subnav-wrapper{top:105px;box-shadow:inset 0 3.125rem 0 0 #27b1bd}}.subnav-active .subnav{height:50px}@media(min-width: 768px){.subnav-active .subnav{height:50px}}.subnav-active .wrapper{margin-top:104px}@media(min-width: 768px){.subnav-active .wrapper{margin-top:175px}}@media(min-width: 1200px){.subnav-active .wrapper{margin-top:175px}}.text-inset{text-shadow:1px 1px 0 rgba(255,255,255,.6),-1px -1px 1px rgba(0,0,0,.4)}h1{font-size:1.875rem;line-height:1.15em}h2{font-size:1.4625rem}h3{font-size:1.4875rem}.lead{font-size:1.125rem}.tool{font-family:"Montserrat","Helvetica Neue",Arial,sans-serif,sans-serif;text-transform:uppercase;font-size:.75rem;line-height:1em}@media(min-width: 576px){h1{font-size:2.25rem}h2{font-size:1.6875rem}h3{font-size:1.4875rem}.lead{font-size:1.125rem}}@media(min-width: 768px){h1{font-size:3.375rem;line-height:1.1em}h1.smaller{font-size:2.625rem}h2{font-size:2.025rem}h3{font-size:1.75rem}.lead{font-size:1.35rem}}@media(min-width: 992px){h1{font-size:3.75rem}h2{font-size:2.25rem}h3{font-size:1.75rem}.lead{font-size:1.5rem}}.video-gallery{background:#fff;box-shadow:0 1px 1px rgba(0,0,0,.15);margin:.5rem 0}.video-gallery img{max-width:100%;height:auto;width:100%;opacity:1;margin-top:-9.5%}.video-gallery img:focus,.video-gallery img:hover{opacity:.8;transition:opacity 200ms cubic-bezier(0.4, 0, 0.6, 1)}.video-gallery figure{height:0;padding-bottom:56.25%;margin-bottom:0;overflow:hidden}.video-gallery figure a{display:block;margin:0;padding:0;border:none;line-height:0}.video-gallery p{font-size:14px !important;font-weight:500 !important}.freeform-column .freeform-label{font-family:Montserrat,Helvetica Neue,Arial,sans-serif;font-weight:500}.freeform-column .freeform-input{padding:10px;border:1px solid #e0e0e0}.freeform-column select{height:50px;border:1px solid #e0e0e0}.freeform-column textarea{border:#e0e0e0 solid 1px}.freeform-column [type=submit]{padding-left:25px;padding-right:25px;padding-top:10px;padding-bottom:10px;background-color:#27b1bd !important;border:0px;color:#fff;font-weight:600}#form-input-notificationEmails{display:none}.caption{display:inline-block;width:300px;font-size:.875rem;padding-top:10px}.caption p{margin-bottom:0px}.gallery-image{display:inline-block;margin:1rem .5rem}.gallery-description{font-size:.875rem;font-weight:500;margin-top:.3125rem}.static-gallery{background-color:#fff;color:#101820;display:block;border-radius:.375rem;transition:.2s ease-out;overflow:hidden;position:relative;padding-top:1rem;padding-right:.5rem}.static-gallery .static-gallery-grid{display:grid;grid-template-columns:1fr;gap:1rem;row-gap:1rem}.isio .static-gallery{border-radius:.25rem}.static-gallery .bg-block{background-size:contain;background-position:center;background-repeat:no-repeat;padding:0}.static-gallery .content-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:.875rem;line-height:1.8;padding:1.5625rem;border-left-color:#0096d6}.static-gallery .label{color:#13477d;line-height:1.3;padding-left:2.1875rem;position:relative}.static-gallery .label img{position:absolute;left:0;top:-0.1875rem}.static-gallery p{font-size:.875rem;line-height:1.8}.static-gallery a{z-index:1}.static-gallery .desc-block{word-break:break-word;max-width:100%;overflow-wrap:break-word;hyphens:auto;display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.static-gallery .name{font-size:1rem;font-weight:700;line-height:1.6;word-wrap:break-word;word-break:break-word;max-width:100%;color:#13477d;font-weight:500;margin-bottom:.5rem !important}.static-gallery .read-more{color:#0296d7;font-weight:700;font-size:.875rem;line-height:1;letter-spacing:.0875rem;text-transform:uppercase;padding-right:1.875rem;position:static;margin-top:auto;display:flex;align-items:center;border-bottom:1px dotted;text-decoration:none}.static-gallery .read-more:hover,.static-gallery .read-more:focus{border-bottom-style:solid;color:#101820}.static-gallery .read-more:hover svg,.static-gallery .read-more:focus svg{fill:#101820}.static-gallery .read-more .icon-arrow-right{fill:#0296d7;margin-left:.625rem}.isio .static-gallery .read-more::after{right:auto;margin-left:.625rem}@media(min-width: 576px)and (max-width: 767.98px){.static-gallery{max-width:25rem;margin-left:auto;margin-right:auto}}@media(max-width: 1199.98px){.static-gallery .bg-block{padding-bottom:70%}}@media(min-width: 992px){.static-gallery .bg-block{background-size:cover}.static-gallery .static-gallery-grid{grid-template-columns:repeat(2, 1fr);gap:1rem;row-gap:2rem}}@media(min-width: 1200px){.static-gallery{display:-webkit-box;display:-ms-flexbox;display:flex;flex-direction:column;width:100%}.static-gallery .bg-block{-webkit-flex:0 0 35%;-ms-flex:0 0 35%;flex:0 0 35%;max-width:35%;overflow:hidden}.isio .static-gallery .bg-block{background-size:cover}.static-gallery .content-block{-webkit-flex:0 0 65%;-ms-flex:0 0 65%;flex:0 0 65%;max-width:65%;border-left:.3125rem solid #fff;padding:1rem 1rem 1rem}}@media(min-width: 1200px){.isio .static-gallery .content-block{padding:3.75rem}}.static-gallery-card{transition:.2s ease-out;text-decoration:none !important}.static-gallery-card:hover,.static-gallery-card:active{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}.static-gallery-card:hover .read-more .icon-arrow-right,.static-gallery-card:active .read-more .icon-arrow-right{-webkit-animation:moveArrowRight1 1s infinite;animation:moveArrowRight1 1s infinite}.static-gallery-card .static-gallery-img{width:100%;object-fit:cover}.static-gallery-card .row{margin-left:0 !important;margin-right:0 !important}.ratings ul{padding:1.2rem;display:flex}.ratings ul .star{display:flex;list-style:none;margin:2px}.widget-spacer{height:2rem}.comments-count{font-weight:500}.comments-count .readReviewLink{color:#27b1bd !important;cursor:pointer}.comment-ratings{width:100%}.comment-ratings ul{padding-top:1.2rem;padding-left:0;display:inline-block;margin-bottom:0px;padding-top:0px}.comment-ratings ul .star{display:inline-block;list-style:none}.comment-ratings ul .star img{width:1.25rem}.comment-widget-title{text-align:left;font-weight:600;font-size:1.25rem;border-bottom:1px #847a7a dotted;padding-bottom:.5rem}.comment-area{background:#fff;padding-top:1.5rem;padding-bottom:1.5rem;height:36vh;position:relative;overflow:hidden}.comment-area:after{content:"";position:absolute;z-index:1;bottom:0;left:0;pointer-events:none;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 90%);width:100%;height:2.5rem}.comment-area h4{text-align:right;font-style:italic;font-size:1.2rem;margin-top:1rem;text-transform:capitalize;padding-right:1rem}.comment-area .about{height:14px;cursor:pointer}.comment-area .comments{height:36vh;overflow:scroll;overflow-x:hidden}.comment-area .comment{margin-bottom:1rem;border-bottom:1px solid #c6c6c6;padding-top:1rem;padding-bottom:1.5rem}.comment-area .comment .score{margin-bottom:.5rem}.comment-area .comment .yext-origin{height:20px}.comment-area .comment .comment-source,.comment-area .comment .date{font-weight:500;width:100%;text-align:right;color:#a9b3b8;font-size:.75rem}.comment-area .comment .comment-text p{font-weight:400;margin-top:1rem;margin-bottom:0px;font-size:.875rem}.comment-area .comment .response{padding-left:1rem;border-left:4px solid #ced4da;margin:1rem 0;color:#4c4c4c}.comment-area .comment:last-child{border-bottom:none !important;margin-bottom:3rem}#www.doctors #provider-wrapper{background-color:#fff;padding-top:2rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) a{color:#072b61;text-decoration:underline}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) a:hover{color:#0a4091}@media(max-width: 550px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column{width:100% !important}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-name-mobile{font-size:1.5rem;font-weight:bold;text-align:center}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-title-mobile{font-size:.85rem;font-weight:bold;padding-left:1px;text-align:center}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-title{font-size:.85rem;font-weight:bold;padding-left:1px;text-align:center}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-accepting-new-mobile{color:#3070bc;font-weight:bold;font-size:.85rem;text-align:center}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-accepting-new-mobile .provider-accepting-new-icon{height:20px;width:20px;vertical-align:bottom}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column .provider-headshot-wrapper{max-width:255px;margin:0 auto;border-bottom:6px solid #eea300}@media(max-width: 550px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column .provider-headshot-wrapper{margin-top:1rem}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul{background-color:rgba(0,0,0,0);margin:0 auto;display:flex;max-width:170px}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul .star svg{width:22px !important;height:22px !important}@media(max-width: 768px)and (min-width: 550px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul .star svg{width:16.5px !important;height:16.5px !important}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul .star.full svg,#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul .star.half svg{fill:#3070bc}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings ul .star.empty svg{fill:#c7c4c4}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .comments-count .review-stars-link{font-weight:bold}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .comments-count .provider-rating-description{font-size:.8rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-rating-wrapper .ratings-disclaimer{font-size:.8rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper{margin:1.4rem auto;max-width:255px}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item{margin-bottom:.3rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item.provider-partnership .provider-meta-data ul{list-style:none}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item.provider-partnership img{max-width:10rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-label{font-weight:bold;font-size:.75rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-data{font-size:.9rem;font-weight:normal}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-data ul{list-style-type:square;list-style-position:inside;margin:0}@media(max-width: 768px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-data ul{max-width:100%}}@media(max-width: 768px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-data ul li{display:block;max-width:100%}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-left-column #provider-meta-wrapper .provider-meta-item .provider-meta-data ul li::marker{color:#eea300}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block #provider-name{font-size:1.5rem;font-weight:bold;margin-bottom:0}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block #provider-title,#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block #provider-header-sepcialty{font-size:.85rem;font-weight:bold;padding-left:1px}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block #provider-accepting-new{color:#3070bc;font-weight:bold;font-size:.85rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-accepting-new-icon{height:20px;width:20px;vertical-align:bottom}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations{margin-top:1rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-primary-location-tag{font-weight:bold;font-size:.85rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__name{border-bottom:2px solid #eea300}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__name a{font-weight:bold;font-size:1rem;text-decoration:none}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__street-address{font-size:.85rem;margin-top:.5rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__locality{font-size:.85rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__get-directions{font-size:.75rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__view-more{border:0;background:rgba(0,0,0,0);color:#072b61;text-decoration:underline;font-weight:bold;font-size:.75rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-locations .provider-location__view-more:hover{color:#0a4091}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block #additionalLocations.show{display:block !important}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta-primary{text-decoration:none;font-weight:bold;width:100%;margin-bottom:1rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta-primary:focus{outline:#3070bc auto 2px}@media(max-width: 1024px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta-primary{width:100%}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-button-extra{font-size:.75rem;display:block}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta{display:block;width:100%;text-align:left;text-decoration:none;background-repeat:no-repeat;background-size:1.5rem;background-position:left center;padding:.5rem 0 .5rem 2rem;border-bottom:1px solid #dbdbdb;color:#000}@media(max-width: 1024px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta{width:100%}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta:has(.provider-button-extra){background-position-y:.5rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta.icon-clipboard{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMy45NSAyNC4wMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMSwuY2xzLTIsLmNscy0ze3N0cm9rZS13aWR0aDowcHg7fS5jbHMtMntmaWxsOiMyNTc0YmI7fS5jbHMtM3tmaWxsOiMwMDcyYzE7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJMYXllcl8xLTIiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0ibTUuMTIsMjEuMTdjLS41NSwwLTEuMDItLjItMS40MS0uNTktLjM5LS4zOS0uNTktLjg2LS41OS0xLjQxVjUuMTdjMC0uNTUuMi0xLjAyLjU5LTEuNDEuMzktLjM5Ljg2LS41OSwxLjQxLS41OWg0LjE4Yy4xOC0uNTguNTQtMS4wNiwxLjA4LTEuNDRzMS4xMi0uNTYsMS43NS0uNTZjLjY3LDAsMS4yNi4xOSwxLjc5LjU2cy44OC44NSwxLjA2LDEuNDRoNC4xNWMuNTUsMCwxLjAyLjIsMS40MS41OXMuNTkuODYuNTksMS40MXYxNGMwLC41NS0uMiwxLjAyLS41OSwxLjQxLS4zOS4zOS0uODYuNTktMS40MS41OUg1LjEyWm0wLTJoMTRWNS4xN2gtMnYzSDcuMTJ2LTNoLTJ2MTRabTctMTRjLjI4LDAsLjUyLS4xLjcxLS4yOS4xOS0uMTkuMjktLjQzLjI5LS43MXMtLjEtLjUyLS4yOS0uNzFjLS4xOS0uMTktLjQzLS4yOS0uNzEtLjI5cy0uNTIuMS0uNzEuMjktLjI5LjQzLS4yOS43MS4xLjUyLjI5LjcxLjQzLjI5LjcxLjI5WiIvPjxwYXRoIGNsYXNzPSJjbHMtMyIgZD0ibTExLjE4LDE3LjA2bDUuNC01LjRjLjI5LS4yOS4yOS0uNzYsMC0xLjA1bC0uMTMtLjEzYy0uMjktLjI5LS43Ni0uMjktMS4wNSwwbC00LjIyLDQuMjItMS44Ny0xLjg3Yy0uMjktLjI5LS43Ni0uMjktMS4wNSwwbC0uMTMuMTNjLS4yOS4yOS0uMjkuNzYsMCwxLjA1bDMuMDQsMy4wNFoiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHdpZHRoPSIyMy45NSIgaGVpZ2h0PSIyNC4wMSIvPjwvZz48L3N2Zz4=")}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta.icon-phone{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMy45NSAyNC4wMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMSwuY2xzLTJ7c3Ryb2tlLXdpZHRoOjBweDt9LmNscy0ye2ZpbGw6IzI1NzRiYjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IkxheWVyXzEtMiI+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJtMTcuODEsMi41OGMtLjM3LS4zNy0uODItLjU2LTEuMzQtLjU2SDcuNDhjLS41MiwwLS45Ny4xOS0xLjM0LjU2LS4zNy4zNy0uNTYuODItLjU2LDEuMzR2MTYuMTdjMCwuNTIuMTkuOTcuNTYsMS4zNC4zNy4zNy44Mi41NiwxLjM0LjU2aDljLjUyLDAsLjk3LS4xOSwxLjM0LS41Ni4zNy0uMzcuNTYtLjgyLjU2LTEuMzRWMy45MmMwLS41Mi0uMTktLjk3LS41Ni0xLjM0Wm0tMS40NCwxNi43MXYuN0g3LjU4di0uN2g4LjhabTAtMTIuNTd2MTAuNTdINy41OFY2LjcyaDguOFptMC0yLjd2LjdINy41OHYtLjdoOC44WiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgd2lkdGg9IjIzLjk1IiBoZWlnaHQ9IjI0LjAxIi8+PC9nPjwvc3ZnPg==")}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta.icon-camera{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMy45NSAyNC4wMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMSwuY2xzLTJ7c3Ryb2tlLXdpZHRoOjBweDt9LmNscy0ye2ZpbGw6IzI1NzRiYjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IkxheWVyXzEtMiI+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJtNC42MywxOS4zNWMtLjUsMC0uOTQtLjE4LTEuMy0uNTRzLS41NC0uNzktLjU0LTEuM1Y2LjVjMC0uNS4xOC0uOTQuNTQtMS4zcy43OS0uNTQsMS4zLS41NGgxMS4wMWMuNSwwLC45NC4xOCwxLjMuNTRzLjU0Ljc5LjU0LDEuM3Y0LjEzbDMuNjctMy42N3YxMC4xbC0zLjY3LTMuNjd2NC4xM2MwLC41LS4xOC45NC0uNTQsMS4zcy0uNzkuNTQtMS4zLjU0SDQuNjNabTAtMS44NGgxMS4wMVY2LjVINC42M3YxMS4wMVptMCwwVjYuNXYxMS4wMVoiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHdpZHRoPSIyMy45NSIgaGVpZ2h0PSIyNC4wMSIvPjwvZz48L3N2Zz4=")}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta.icon-book{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMy45NSAyNC4wMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMSwuY2xzLTJ7c3Ryb2tlLXdpZHRoOjBweDt9LmNscy0ye2ZpbGw6IzI1NzRiYjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IkxheWVyXzEtMiI+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iMjMuOTUiIGhlaWdodD0iMjQuMDEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Im03LjQ4LDIyLjAxYy0uOTcsMC0xLjc5LS4zNC0yLjQ4LTEuMDMtLjY4LS42OC0xLjAzLTEuNTEtMS4wMy0yLjQ4VjUuNTFjMC0uOTcuMzQtMS43OSwxLjAzLTIuNDhzMS41MS0xLjAzLDIuNDgtMS4wM2gxMi41djE1Yy0uNDIsMC0uNzcuMTUtMS4wNi40NC0uMjkuMjktLjQ0LjY1LS40NCwxLjA2cy4xNS43Ny40NCwxLjA2LjY1LjQ0LDEuMDYuNDR2Mkg3LjQ4Wm0tMS41LTYuNjhjLjIzLS4xMi40OC0uMi43My0uMjVzLjUxLS4wOC43OC0uMDhoLjVWNC4wMWgtLjVjLS40MiwwLS43Ny4xNS0xLjA2LjQ0LS4yOS4yOS0uNDQuNjUtLjQ0LDEuMDZ2OS44M1ptNC0uMzNoOFY0LjAxaC04djExWm0tNCwuMzNWNC4wMXYxMS4zM1ptMS41LDQuNjhoOS4zM2MtLjEtLjIzLS4xOC0uNDctLjI0LS43MXMtLjA5LS41LS4wOS0uNzljMC0uMjcuMDMtLjUzLjA4LS43OHMuMTMtLjQ5LjI1LS43M0g3LjQ4Yy0uNDMsMC0uNzkuMTUtMS4wOC40NC0uMjguMjktLjQzLjY1LS40MywxLjA2cy4xNC43OS40MywxLjA4Yy4yOC4yOC42NC40MywxLjA4LjQzWiIvPjwvZz48L3N2Zz4=")}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-action-block .provider-cta:hover{background-color:rgba(27,62,111,.2117647059);color:#000}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content{margin-top:2rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section{border-bottom:1px solid #dbdbdb;padding-bottom:1.25rem;scroll-margin-top:10rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section.show{display:block !important}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section h2{font-size:1.25rem;font-weight:bold;margin-bottom:1rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body{font-size:.9rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .field-of-study{font-weight:300}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .field-of-study span{font-weight:500}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.scrollable-container{max-height:400px;overflow-y:auto}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid{display:grid;align-items:start;grid-template-columns:repeat(1, 1fr);gap:1.5rem}@media(min-width: 768px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid{grid-template-columns:repeat(2, 1fr)}}@media(min-width: 900px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid{grid-template-columns:repeat(3, 1fr)}}@media(min-width: 1300px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid{grid-template-columns:repeat(4, 1fr)}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card img{width:100%;object-fit:cover;max-height:10rem}@media(min-width: 425px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card img{max-height:10rem}}@media(min-width: 768px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card img{max-height:8rem}}@media(min-width: 1024px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card img{max-height:7rem}}@media(min-width: 1300px){#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card img{max-height:7rem}}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card .provider-media-thumbnail-link{position:relative}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body.provider-media-grid .provider-media-card .provider-media-link{color:#000;text-decoration:none;margin-top:1rem;display:block}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body h3{font-size:1rem;font-weight:bold}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body ul{list-style-type:square;list-style-position:inside;margin:0;padding-left:2px}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body ul li::marker{color:#eea300}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .provider-news-meta{font-size:.75rem;margin-top:.25rem}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .star svg{width:16.5px !important;height:16.5px !important}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .star.full svg,#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .star.half svg{fill:#3070bc}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .star.empty svg{fill:#c7c4c4}#www.doctors #provider-wrapper .container:not(.header-bar,footer .container) #provider-right-column #provider-main-content .provider-content-section .provider-content-body .comment-text .date{font-size:.75rem}#www.doctors #doctor-info .no-reviews{opacity:.4}#www.doctors #doctor-info #general-info,#www.doctors #doctor-info #location-info{padding-bottom:1rem}#www.doctors #doctor-info #general-info>.module,#www.doctors #doctor-info #location-info>.module{height:100%}#www.doctors #doctor-info #general-info{display:flex !important;flex-direction:column;flex-wrap:nowrap;justify-content:flex-end;align-items:stretch}#www.doctors #doctor-info .general-info-module{flex:1;height:auto}#www.doctors #doctor-info .featured-publications-module{height:auto !important;margin-bottom:0 !important;margin-top:1.5rem}#www.doctors #doctor-info ul{line-height:1}#www.doctors #doctor-info ul li{margin-bottom:.5rem}#www.doctors #doctor-info ul li:last-child{margin-bottom:0}#www.doctors #doctor-info ul.languages{width:100%;float:left;padding:.5rem 0}#www.doctors #doctor-info ul.languages li{float:left;line-height:1rem;margin:0 0 1rem 1rem;padding-right:1rem;min-width:33%}#www.doctors #doctor-info ul.languages li:before{content:"■";color:#27b1bd;margin-left:-1rem;margin-right:.5rem}#www.doctors #doctor-info .btn-secondary{margin-bottom:1rem}#www.doctors #doctor-media{margin-top:.5rem}#www.doctors #doctor-media .media-section>.module{height:15rem;overflow-y:scroll}#www.doctors #doctor-media .media-section>.module .provider-video-carousel,#www.doctors #doctor-media .media-section>.module .provider-blog-carousel{padding-top:.5rem}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast{width:250px}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a{display:flex}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-image.square{background-size:contain !important;background-repeat:no-repeat;background-position-x:0 !important;width:7.8125rem !important;display:inline-block}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-meta{flex:1;font-size:.9375rem;color:#343a40;text-decoration:none;margin-left:5px}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-meta .carousel-meta__heading{font-weight:bold;line-height:1.125rem}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-meta .carousel-meta__subheading{color:#adb5bd;font-size:.8125rem}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-meta .carousel-meta__cta{border-top:1px solid #adb5bd;border-bottom:1px solid #adb5bd;padding:5px 0;margin-top:5px}#www.doctors #doctor-media .media-section>.module .provider-video-carousel .carousel-cell.podcast a .carousel-meta .carousel-meta__cta .carousel-meta__cta__caption{text-transform:uppercase;font-weight:200;font-size:.8125rem}#www.doctors .popover .arrow:after{border-bottom-color:#4c4c4c}#www.doctors .popover .popover-body{font-size:.75rem;line-height:1rem;color:#fff;background:#4c4c4c}#www.doctors .text-smaller{font-size:14px;line-height:39px}#www.doctors .text-smallest{font-size:10px}#www.doctors .btn-content-sub{display:block;position:absolute;bottom:7.5%;font-size:small}@media(max-width: 991.98px){#www.doctors #virtual-visits-button .btn-content-inner{top:35%}#www.doctors #virtual-visits-button .btn-content-sub{bottom:10%}}#lg-doctor-media,#lg-doctor-info{flex-wrap:wrap}#lg-doctor-media .flex-item,#lg-doctor-info .flex-item{display:flex;width:100%}#lg-doctor-media .flex-item .module,#lg-doctor-info .flex-item .module{width:100%;display:flex;flex-direction:column}.provider-name,.provider-videos{text-align:center}@media(min-width: 992px){.provider-photo{text-align:center}}.masthead-round-wrapper .masthead-round{margin:0 auto;position:relative;width:5.625rem;height:5.625rem;border-radius:50%;background-size:cover}@media(min-width: 768px){.masthead-round-wrapper .masthead-round{width:7.5rem;height:7.5rem}}@media(min-width: 992px){.masthead-round-wrapper .masthead-round{width:10.625rem;height:10.625rem}}@media(min-width: 1200px){.masthead-round-wrapper .masthead-round{width:13.75rem;height:13.75rem}}@media(min-width: 576px){.wider .modal-dialog{max-width:calc(640px);margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.wider .modal-sm{max-width:300px}}@media(min-width: 992px){.wider .modal-lg,.wider .modal-xl{max-width:800px}}@media(min-width: 1200px){.wider .modal-xl{max-width:1140px}}#virtualVisit h6{margin-top:34px}#virtualVisit ol,#virtualVisit p{font-size:14px !important}#virtualVisit a:not(.btn){color:#13477d !important}#virtualVisit a:not(.btn):hover{color:#09213b !important}#virtualVisit a.btn{cursor:pointer !important}.field-of-study{font-size:.9rem;font-weight:400}.training-city-state{font-size:.9rem}#additionalLocations-mobile{flex-direction:column}.needHelp{position:fixed;color:#fff;background:#4194ce;padding:12px;border:none;border-radius:50px;box-shadow:rgba(19,5,5,.3) 0px 2px 12px}.needHelp img{width:32px}.needGreeting{position:fixed;color:#fff;background:#4194ce;border:none;box-shadow:rgba(19,5,5,.3) 0px 2px 12px;padding:1rem;border-radius:5px;width:350px}@media screen and (max-width: 720px){.needGreeting{width:305px}}.needGreeting .title{font-size:.875rem;font-weight:400;margin-bottom:0px;color:#fff}.frame-box{height:650px;width:450px;background:#fff;position:fixed;z-index:999;border:none}@media screen and (max-width: 640px){.frame-box{width:95%}}#chatbubble{background-color:#1876d2;color:#fff;padding:1rem;border-radius:6px;margin-right:1rem;font-weight:500;animation:chatpopup .2s;width:350px;box-shadow:rgba(19,5,5,.3) 0px 2px 12px}@media screen and (max-width: 1280){#chatbubble{display:none}}@keyframes chatpopup{0%{transform:scale(0, 0)}85%{transform:scale(1.15, 1.15)}100%{transform:scale(1, 1)}}#chatbot-chat{z-index:1500 !important;max-height:85% !important}#openSchedulingFrame{border:none;width:auto;height:25rem}@media(min-width: 768px){#openSchedulingFrame{height:31.25rem;padding:0 1rem;width:100%}}@media(min-width: 992px)and (max-width: 1199.98px){#openSchedulingFrame{display:block;margin:0 auto}}@media(min-width: 992px){#openSchedulingFrame{padding:0}}#scheduleContainer iframe{outline:.25rem solid rgba(39,177,189,.5)}
