/**
 * Slate Navigation Styles
 * 
 *
 *
 * Classname Structure
 *
 * The rational was to avoid using elements in the stylesheet and to limit nesting.
 *
 * 		menu-toggle - the hamburger menu button
 * 			menu-toggle__bar - the individual hamburger bars
 * 		submenu-toggle - a submenu toggle button
 *
 * 		main-menu - the container class for the menu ( nav element )
 * 			open - the class added to a ( mobile ) menu that is opened
 *
 * 		main-menu__submenu - a submenu element ( ul element )
 * 			main-menu__submenu--l1 - the container class for a first level submenu
 * 			main-menu__submenu--l2, etc...
 *
 * 		main-menu__item - a menu item ( li element )
 * 			main-menu__item--l1 - the item's submenu level
 * 			main-menu__item--l2, etc...
 * 			main-menu__item--active - the active item ( current page )
 * 			main-menu__item--parent - an item that has a submenu
 * 			active-parent - indicates that a child item is active
 * 			active-ancestor - same as above but nests downward to grandchildren, etc.
 *
 */



/**
 * Navigation menu toggle button (hamburger icon) and submenu toggle button styles
 */

// Hamburger Icon
.branding-and-toggle {
	display: flex;
		justify-content: space-between;
	position: relative;
	@include media($mobileNavBP) {
		position: absolute;
			top: 50%;
			transform: translate(0%,-50%);
	}
	@include media($largeScreen) {
		margin-left: 2%;
	}
}

.menu-toggle {
    background: none;
	border: none;
    display: block;
	width: 6em;
	@include media ($phone ){
		width: 3em;
	}

	&__bar {
		@include size(100%, 4px);
		background: $darkBlue;
		display: block;
		margin: 0 auto 5px;
		opacity: 1;
		transition: transform 0.3s, width 0.3s;

		// Hamburger animation
		@at-root .menu-toggle.open > & {
			&:nth-child(1) { transform: translate(0, 11px) rotate(45deg); }
			&:nth-child(2) { width: 0; }
			&:nth-child(3) { transform: translate(0, -9px) rotate(-45deg); }
		}
	}
}

.tiered-header {
	background: $white;
	display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
	@include media($mobileNavBP) {
		height: 9em;
		border-bottom: 2px solid $lightGray;
		.site-header__branding {
			margin: 0 auto;
			@include media( 75em ) {
				position: absolute;
				padding: 2.1em 1em;
				top: 0;
				left: 0;
				z-index: 2;
			}
		}
		.site-header__menu.main-menu {
			justify-content: center;

			@include media( $mobileNavBP ) {
				justify-content: flex-end;
				text-align: center;
				ul {
					width: 100%;
				}

			}
		}
	}

	@include media ( $extraLargeScreen ) {
		padding: 0 14rem;
	}
}

// Submenu toggle buttons
.submenu-toggle {
	@include size(5em, 3.2em);
	background: transparent;
	border: none;
	display: block;
	position: absolute;
		top: 0;
		right: 0;
	transition: background 0.5s;
	&:before,
	&:after {
		background: white;
		content: "";
		display: block;
		height: 1px;
		width: 1em;
		position: absolute;
			top: 50%;
			left: 50%;
		transform: translate(-50%, -50%) rotate(0deg);
		transition: transform 0.3s;
	}
	&:after { transform: translate(-50%, -50%) rotate(90deg); }
	// Submenu toggle animation
	&.open {
		&:after { transform: translate(-50%, -50%) rotate(0deg); }
	}

	@include media($mobileNavBP) { @include size(3em); }
}


// Hide the menu toggles in desktop view
@include media($mobileNavBP) {
	.menu-toggle, .submenu-toggle { display: none; }
	// But show submenu, submenu toggles
	.main-menu__submenu .submenu-toggle { display: block; }

}


/**
 * Main navigation menu styles
 */
.main-menu {

	min-height: 4em; //This height and the site_branding on header.css for smallScreen need to be same :::::

	//Display the admin-login on mobile in the menu list :::::
	.admin-login-mobile {
		a {
			font-size:1rem!important;
			&:after {
				float: right;
				content: url('caret-down.svg');
			}
		}
		@include media ($mediumScreen) {
			display: none;
		}
	}

	// Display the little caret-down icon on parent menu:::::
	// Target the parent menu :::::
	& ul .main-menu__item--parent {
		@include media ($mediumScreen) {
			&:after {
				content: url('caret-down.svg');
				position: absolute;
				left: 50%;
    			top: 2rem;
				height: 1rem;
				width: auto;
				transform: translate(-50%,0%);
			}
		}
	}
	// Target the second parent sub menu to centerlized it :::::
	& ul .main-menu__item--parent:nth-child(2),
	& ul .main-menu__item--parent:nth-child(3){
		@include media ($mediumScreen) {
				.main-menu__submenu.main-menu__submenu--l1{
				margin-left: -5rem;
			}
		}
	}
	& ul .main-menu__item--parent:nth-child(3){
		@include media ($mediumScreen) {
			.main-menu__submenu.main-menu__submenu--l1{
				margin-left: -9.25rem;
			}
		}
		@include media (110em){
			.main-menu__submenu.main-menu__submenu--l1{
				margin-left: -5rem;
			}
		}
	}

	// Resets
	display: none;
	float: right;
	padding: 0;
	margin: 0;

    a { letter-spacing: 1px; text-decoration: none; }
	ul { list-style: none; margin: 0; padding: 0;}

	@include media($mobileNavBP) {
		display: inline-block;
		margin-top: 0em;

		& > ul[role="menu"] {
			text-align: right;
			& > li:hover {
				& > a {
					padding-bottom: 1.7em;
					color: $purple;
				}
			}
		}
	}
	@include media(75em) {
		margin-top: 0em;

		& > ul[role="menu"] {
			text-align: right;
		}
	}
	@include media($largeScreen) {
		margin-top: 0em;
	}
	li {
		background: $purple;
		@include media($mobileNavBP) {
			background: transparent;
			padding: 0em 1%;
		}
		&.toplevel:first-of-type {
			border-top: solid 1px $white;
			@include media($mobileNavBP) {
				border-top: none;
			}
		}
	}


	// Mobile menu when opened
	&.open {

	}

	/**
	 * Submenu Styles
	 */
	&__submenu {
		text-align: left;

		// Desktop Submenu styles
		@include media($mobileNavBP) {
			background: $black;
		}

		// First Level Submenu Styles
		&--l1 {

			@include media($mobileNavBP) {
				box-shadow: none;
				background: $black;
				position: absolute;
					left: 0;
				width: 18rem;
				z-index: 111;

				// In desktop, display level one submenu only when hovering a parent
				opacity: 0;
				top: 85%;
				// Visibility doesn't 'transition', but giving it a transition time
				// of a bit greater than the animation time makes it easier for
				// people who have trouble with the mouse.
				//transition: visibility .3s, opacity ease-in-out .25s, top ease-in-out .25s; //bookmark
				visibility: hidden;
				@at-root .main-menu__item--parent:hover > & {
					top: 100%;
					opacity: 1;
					visibility: visible;
				}
			}
			li {
				background: $darkPurple;
				padding: 0em;
				@include media ($mediumScreen, 'max') {
					a {
						&:after {
							float: right;
							content: url('caret-down.svg');
						}
					}
				}
				@include media ($mediumScreen) {
					z-index: 500;
					display: none;
					background: $lightGray;
					a {
						color: $white;
					}

					&:first-child(){
						border-top: 1px solid $gray;
					}
				}
			}

		}

		// 2nd-level Submenu Styles
		&--l2 {
			@include media($mobileNavBP) {
				box-shadow: inset 0 0 27px rgba(0,0,0,0.6);
			}
		}
	}


	/**
	 * Menu Item Styles
	 */
	&__item {
		display: block;
		border-bottom: 1px solid $lightGray;
		overflow: hidden;
		position: relative;

		&:last-child { border: none; }
		&.subitem:first-of-type {
			@include media($mobileNavBP, 'max') {
				border-top: 1px solid $lightGray;
			}
		}

		// &.subitem a:hover {
		// 	background-color: $darkPurple;
		// }
		@include media ($mobileNavBP) {
			display: inline-block;
			border: none;
			overflow: visible;
			&.subitem { display: block; }
			&.subitem a { background-color: $darkPurple; color: $white; border-bottom: 1px solid $gray; border-left: 1px solid $gray; border-right: 1px solid $gray;}
			&.subitem a:hover {
				background-color: $blue;
				color: $white;
			}
		}

		a {
			color: $white;
			display: block;
			margin-top: 0em;
			padding: 1.5rem 1.5rem 1.5rem 5.5%;

			@include media ($mobileNavBP) {
				color: $black;
				font-size: 0.8rem;
				padding: .75rem;
			}

		}

		&:not(.contact-btn).toplevel > a {
			font-size: $nav-font;
			font-weight: bold;
			text-transform: uppercase;
			color: $white;
			@include media ($smallScreen) {
				color: $white;
			}
			@include media ($mobileNavBP) {
				color: $purple;
			}
		}

		// 1st-level submenu item styles
		&--l1 {
			a {
				font-size: 1em;
				padding-left: 8.5%;
				text-transform: capitalize;
				@include media ($mobileNavBP) {
					color: $black;
					padding: .75rem;
					padding-left: 1.15rem;
				}
			}
		}

		// 2st-level submenu item styles
		&--l2 {
			a { padding-left: 3rem; }
		}
		&--parent {
			@include media($mobileNavBP) {
				margin-left: 1%;
				margin-right: 1%;
			}

			&:hover {
				&:after {
					@include media($mobileNavBP) {
						top: 1.75rem;
						transition: top .2s;
					}
				}
			}
			& > ul {
			}
		}
	}
}

.secondary-menu {
	height: 6em;
	@include media($smallScreen) { height: 5em; }
	display: none;
	background: $purple;
	border-bottom: 1px solid $lightGray;
	//Hide the website login on mobile:::::
	.admin-login {
		display: none;
	}
	//Contact Us :::::
	ul {margin: 0;}
	ul li {
		text-align: center;
		padding: 0;
		a {
			color: white;
			background-color: #f383df;
			margin: 0 auto;
			text-align: center;
			display: block;
			margin: 1em;
			padding: 1em;
			text-transform: uppercase;
			box-shadow: 0px 1px 0px #89bfd6;
			border-radius: 0.5em;
			&:hover {
				background: $darkBlue;
			}
		}
	}
	@include media ($mediumScreen) {
		display: block;
		border-bottom: none;
		background: none;
		.admin-login {
			//background: $lightGray;
			display: inline-block;
			//border-top: 3px solid #b6b7bb;
			ul li:first-child a {
				background-color: $purple;
				&:hover { background-color: $darkPurple; }
			}
		}

		ul {
			float: right;
			li {
				display: inline-block;
				a {
					background-color: $blue;
					padding: .6em 1em;
					margin: 0;
				}
	   			a {
					background-color: $blue;
					border-radius: 0.2em;
					margin-right: 1rem;
					box-shadow: 0 1.5px 0 $black;
					margin-top: 0.5em;
					padding: 0.7em 1.5em;

					&:hover{
						background-color: $darkBlue;
					}
	   		 	}

				&:first-child(){
					margin-right: 0.8em;
					a {
					box-shadow:none;
					background:none;
					color: $darkBlue;
					text-transform: capitalize;
					margin-top: 0em;
					padding: 1.1em 1.5em;

						&:after {
							content: url('customer-login.svg');
							position: relative;
    						float: right;
							display: inline-block;
							padding-left: 0.3em;
							transform: translate(0%, 13%);
						}
					}
				}
			}
		}
	}
}


// Special Case: the last three top-level menu items need the submenu
// positioned differently in order to keep it from running off the page.
.toplevel.main-menu__item {

	&:nth-last-child(1), &:nth-last-child(2), &:nth-last-child(3) {
	    & > .main-menu__submenu {
	        // left: auto;
	        // right: 0;
	    }
	}
}


.contact-btn {
	padding: 0;
	color: $white;

	a {
		@include button ($white, $buttonColor);
		margin: 1em 1em 0 0;
		@media screen and (min-width: 768px) {
			margin: 2em 1em 0 0;
		}
	}
}


// IE 11
_:-ms-fullscreen, :root .contact-btn a {
	margin-top: 2.6em;
}

_:-ms-fullscreen, :root .site_branding {
	padding-top: 0;
	padding-bottom: 0;
}

_:-ms-fullscreen, :root .site_branding a {
	padding-top: 0;
	padding-bottom: 0;
}

.child-page {

}



/*

*,::after,::before{box-sizing:inherit}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list.dragging{cursor:pointer}.slick-slider .slick-list,.slick-slider .slick-track{transform:translate3d(0,0,0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}@font-face{font-family:roboto;src:url(../fonts/roboto/roboto-light-webfont.eot);src:url(../fonts/roboto/roboto-light-webfont.woff2) format("woff2"),url(../fonts/roboto/roboto-light-webfont.woff) format("woff"),url(../fonts/roboto/roboto-light-webfont.ttf) format("truetype"),url(../fonts/roboto/roboto-light-webfont.svg) format("svg");font-weight:300;font-style:normal}@font-face{font-family:roboto;src:url(../fonts/roboto/roboto-regular-webfont.eot);src:url(../fonts/roboto/roboto-regular-webfont.woff2) format("woff2"),url(../fonts/roboto/roboto-regular-webfont.woff) format("woff"),url(../fonts/roboto/roboto-regular-webfont.ttf) format("truetype"),url(../fonts/roboto/roboto-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:lato;src:url(../fonts/lato/lato-regular-webfont.eot);src:url(../fonts/lato/lato-regular-webfont.woff2) format("woff2"),url(../fonts/lato/lato-regular-webfont.woff) format("woff"),url(../fonts/lato/lato-regular-webfont.ttf) format("truetype"),url(../fonts/lato/lato-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:lato;src:url(../fonts/lato/lato-italic-webfont.eot);src:url(../fonts/lato/lato-italic-webfont.woff2) format("woff2"),url(../fonts/lato/lato-italic-webfont.woff) format("woff"),url(../fonts/lato/lato-italic-webfont.ttf) format("truetype"),url(../fonts/lato/lato-italic-webfont.svg) format("svg");font-weight:400;font-style:italic}@font-face{font-family:lato;src:url(../fonts/lato/lato-bold-webfont.eot);src:url(../fonts/lato/lato-bold-webfont.woff2) format("woff2"),url(../fonts/lato/lato-bold-webfont.woff) format("woff"),url(../fonts/lato/lato-bold-webfont.ttf) format("truetype"),url(../fonts/lato/lato-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */body{margin:0;background-color:#fff;color:#3b4646}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.75em 0}.gform_wrapper .gform_heading h3,h2{margin:1em 0}h3{margin:1.28205em 0}dl,h4,menu,ol,ul{margin:1.5em 0}h5{margin:1.80723em 0}h6{margin:2.23881em 0}mark{background:#e9eaee;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ol,nav ul{list-style:none}blockquote,figure{margin:1.5em 40px}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}form{margin:0;text-align:left}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto;width:100%;height:2rem;background-color:transparent}optgroup{font-weight:700}*,:after,:before,input[type=search]{box-sizing:inherit}ul,ul li{list-style:none}.site_content ol,.site_content ol li{list-style:upper-roman;margin-left:1.5em;padding-left:0}.site_content ul,.site_content ul li{list-style:disc;margin-left:1.5em;padding-left:.5em}.gform_wrapper ol,.gform_wrapper ol li,.gform_wrapper ul,.gform_wrapper ul li{list-style:none;margin-left:0;padding-left:0}.site{position:relative}.layout{overflow:hidden}.layout li,.layout ul{list-style:disc}.layout ul.two-column{list-style-position:inside}.layout ul.two-column li{margin-bottom:.5em;list-style-position:inside}.layout .no-bullets li{list-style:none}.layout .no-bullets.two-column li{margin-bottom:1em}.layout:last-child{margin-bottom:0}.layout--bg-black{background:#363636;color:#fff}.layout--bg-light-gray{background:#e9eaee}.site_content .layout:last-child{margin-bottom:0}.contain{max-width:60rem;margin:0 auto}@media screen and (min-width:60em){.contain{padding:0}}main{clear:both}.background-offset-right{background-position:85% center;background-size:contain}.watermark-background-position{background-position:bottom right;background-size:auto}.side-by-side-links a.button{display:inline-block;text-align:center}.side-by-side-links a.button+br{display:none}*{-webkit-tap-highlight-color:rgba(41,124,165,.3)}::-moz-selection{background:rgba(41,124,165,.3)}::selection{background:rgba(41,124,165,.3)}:focus{outline:0;box-shadow:0 0 5px #297ca5}@media screen and (min-width:48em){.layout ul.two-column{column-count:2;column-gap:2em}.side-by-side-links a.button{width:auto}.desktop-hidden{display:none}}@media screen and (max-width:48em){.mobile-hidden,.notmobile{display:none}}.lazy-load{max-width:100%}.linkclicker{cursor:pointer}a.unassist[target='_blank']:after{display:none}img,svg{height:auto;max-width:100%;vertical-align:bottom}svg{width:100%}.alignright{float:right;margin-left:1rem;margin-bottom:1rem}.alignright.size-large{max-width:65%}.alignleft{float:left;margin-right:1rem;margin-bottom:1rem}.alignleft.size-large{max-width:65%}.aligncenter,.center{margin:1rem auto;display:block}.alignnone{margin:0}.two-columns{font-size:0}.gform_wrapper .gform_heading .two-columns h3,.two-columns .gform_wrapper .gform_heading h3,.two-columns h1,.two-columns h2,.two-columns h3,.two-columns h4,.two-columns h5,.two-columns h6{font-size:initial}.two-columns li,.two-columns ul{font-size:1rem}.two-columns>div,.two-columns>p{display:inline-block;font-size:1rem;vertical-align:top;width:50%}.two-columns>img{font-size:1rem}.two-columns a.inline-button{display:inline-block;font-size:1rem;vertical-align:top;width:50%}.page-title__default{margin:0 auto 1em;max-width:60rem}.slick-slider ul.slick-dots{margin:0 auto;max-width:30rem;text-align:center}.slick-slider ul.slick-dots button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;font-size:0;overflow:hidden;line-height:1;background:0 0;padding:0;margin:0 .12rem}.slick-slider ul.slick-dots button:after{display:block;content:"\2022";font-size:2.1rem}.slick-slider ul.slick-dots li{font-size:0;list-style:none;text-align:center;display:inline-block;color:#686c6e;margin:.01em}.slick-slider ul.slick-dots button:focus{box-shadow:none;color:#4f5254}.slick-slider ul.slick-dots .slick-active{color:#157199;transform:scale(1.3);transform-origin:center}.slick-slider ul.slick-dots .slick-active button:focus{color:#157199}.button-type,.default-type{color:#3b4646;font-family:lato,sans-serif;letter-spacing:.025em}.button-type{font-weight:700}.header-type,.nav-type{color:#297ca5;font-family:roboto,sans-serif;font-weight:700;line-height:1.13724}.nav-type{letter-spacing:.1em;text-transform:uppercase}nav{font-weight:300}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:lato,sans-serif;font-size:1em;line-height:1.55}@media (min-width:48em){html{font-size:1em}}@media (min-width:60em){html{font-size:1em}}@media (min-width:90em){html{font-size:1.13em}}a{background-color:transparent;font-family:roboto,sans-serif}.gform_wrapper .gform_heading h3,h1,h2,h3,h4,h5,h6{font-family:roboto,sans-serif;font-weight:100;line-height:1.13724;margin-top:0;margin-bottom:1rem;text-rendering:optimizeLegibility;word-wrap:break-word}h1,h3{color:#297ca5}.gform_wrapper .gform_heading h3,h2{color:#157199}.h1,h1{font-size:1.86635rem}@media (min-width:48em){.h1,h1{font-size:2.87131rem}}.gform_wrapper .gform_heading h3,.h2,h2{font-size:1.33524rem}@media (min-width:48em){.gform_wrapper .gform_heading h3,.h2,h2{font-size:2.40344rem}}.h3,h3{font-size:1.47831rem}@media (min-width:48em){.h3,h3{font-size:1.84788rem}}.decorated{font-size:1em;font-weight:700;margin-bottom:1.3em;text-transform:uppercase}@media screen and (min-width:480px){.decorated{font-size:1.1em}}@media screen and (min-width:580px){.decorated{font-size:1.1em}}.decorated-white{color:#fff;font-size:1em;font-weight:700;margin-bottom:1.2em;text-transform:uppercase}@media screen and (min-width:480px){.decorated-white{font-size:1.1em}}@media screen and (min-width:580px){.decorated-white{font-size:1.1em}}.h4,h4{font-size:1.18272rem}@media (min-width:48em){.h4,h4{font-size:1.4784rem}}.h5,h5{font-size:.88rem}@media (min-width:48em){.h5,h5{font-size:1.1rem}}.h6,h6{font-size:1.18272rem;font-weight:100;text-transform:uppercase;letter-spacing:.07em;margin-bottom:.75em}.dropcap{color:#297ca5;float:left;font-size:6.25em;font-weight:400;line-height:90px;margin-bottom:-.031em;margin-top:.03em;padding-right:.5rem}.assistive,.hidden,.hide,.screen-reader-text{display:none}.font_small,small{font-size:.707em}a:active,a:focus,a:hover{color:#3e3875}address,ol,ol ol,ol ul,p,ul,ul ol,ul ul{margin:0 0 1rem}hr{box-sizing:content-box;border:0;border-top:1px solid #e9eaee;display:block;height:1px;margin:0 1rem 1rem 0;max-width:90%;padding:0}blockquote{border-bottom:1px solid #d9d9d9;border-top:1px solid #d9d9d9;font-style:italic;font-weight:400;overflow:hidden;padding:2em 0;text-align:left}blockquote img.alignnone{border-radius:100%;display:block;margin:0 auto;overflow:hidden;text-align:center}blockquote p{display:block;margin-bottom:0;font-style:normal}@media screen and (min-width:60em){blockquote img.alignnone{display:inline-block;float:left;margin-right:7%;max-height:8em;max-width:8em}blockquote p{margin:auto;max-width:80%}}blockquote small{display:inline-block;font-size:.9em;margin:0 0 .8em 1.5em}blockquote small:before{content:'\2014 \00A0'}blockquote cite{font-weight:700}blockquote cite a{font-weight:400}dl{margin:0 0 .5rem}dl dt{font-weight:700;margin:0 0 .5rem;padding-right:1em;width:180px}dl dd{margin-bottom:.5rem;margin-left:2em}code,tt{background:#e9eaee;border-radius:2px;border:1px solid #4f5254;font-family:Inconsolata,monospace,sans-serif;font-size:.85em;padding:1px 3px;white-space:pre}pre{background:#e9eaee;border-radius:3px;border:1px solid #cccfd8;box-sizing:border-box;-moz-box-sizing:border-box;font-family:Inconsolata,monospace,sans-serif;font-size:.9em;margin:0 0 1rem;overflow:auto;padding:1em 1.25em;white-space:pre;width:100%}pre code,tt{background:0 0;border:none;font-size:inherit;padding:0;white-space:-moz-pre-wrap;white-space:pre-wrap}table{border-collapse:collapse;border-spacing:0;background-color:transparent;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 0 1rem;max-width:100%;width:100%;display:table}table td,table th{border-top:1px solid #efefef;padding:.5em;text-align:left;vertical-align:top}table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th{border-top:0}table tbody+tbody{border-top:2px solid #efefef}table table table{background-color:#fff}table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th{background-color:#f6f6f6}table.plain tbody>tr:nth-child(odd)>td,table.plain tbody>tr:nth-child(odd)>th{background:0 0}.hide-text,.screen-reader-text{height:2px;width:1px;border:0;clip:rect(0 0 0 0);margin:-1px;overflow:hidden;padding:0;position:absolute}.hide-text{text-indent:-9999px}.screen-reader-text:active,.screen-reader-text:focus{height:auto;width:auto;clip:auto;margin:0;overflow:visible;position:static}.purple-link{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;color:#13a4d2;text-transform:capitalize;font-weight:700;font-family:roboto,sans-serif}.purple-link:after{position:relative;float:right;padding-left:.5rem;content:url(../../library/icons/src/right-arrow.svg)}.purple-link:hover:after{transform:translate(.5em);transition:transform .2s}[class^=button]{font-weight:500}.blue-button,.btn,.button{background-color:#13a4d2;border:2px solid #13a4d2;color:#fff;display:inline-block;letter-spacing:.05em;margin-bottom:1em;padding:.6em 1.5em;text-decoration:none;transition:all .3s ease;width:auto;border-radius:.3em;border-bottom:2px solid #3b4646}.blue-button:active,.blue-button:focus,.blue-button:hover,.btn:active,.btn:focus,.btn:hover,.button:active,.button:focus,.button:hover{background:#32388c;border-color:#32388c;color:#fff;border-bottom:2px solid #3b4646}.blue-button-ghost,.btn-ghost,.button-ghost{background:0 0;border-color:#13a4d2;color:#13a4d2;box-shadow:none;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center}.blue-button-ghost:after,.btn-ghost:after,.button-ghost:after{position:relative;float:right;padding-left:.5rem;content:url(../../library/icons/src/right-arrow.svg);transform:translate(0);transition:all .2s ease-in-out}.blue-button-ghost:hover,.btn-ghost:hover,.button-ghost:hover{background:0 0;color:#13a4d2;border:2px solid #13a4d2}.blue-button-ghost:hover:after,.btn-ghost:hover:after,.button-ghost:hover:after{transform:translate(.5em)}.blue-button-pill,.btn-pill,.button-pill{border-radius:5em;background:0 0;border-color:#fff;color:#fff}.blue-button-pill-ghost,.btn-pill-ghost,.button-pill-ghost{background:0 0;border-color:#13a4d2;color:#13a4d2}.blue-button{background-color:#157199;border:none;border-bottom:2px solid #157199}.blue-button:hover{background-color:#297ca5;border-bottom:2px solid #3b4646}.inline-button{display:inline-block;margin-right:2rem;padding-right:2rem;position:relative;text-decoration:none;vertical-align:middle}.inline-button:after{border-right:2px solid #297ca5;border-top:2px solid #297ca5;content:'';display:inline-block;height:.6em;margin-left:.5em;margin-right:.15em;margin-top:-.1em;transform:translate(0) rotate(45deg);transition:transform .2s;width:.6em;z-index:1}.inline-button:hover:after{transform:translate(.5em) rotate(45deg);transition:transform .2s;border-color:#267298}.debug-current-template{bottom:0;left:0;width:100%;text-align:center;padding:.5em;background:#000;pointer-events:none;color:#fff}.srcset-debug{position:relative;display:block;line-height:0}.srcset-debug__currentsrc{display:none;position:absolute;bottom:0;left:0;width:100%;color:#fff;font-size:.8rem;padding:1em}.ui-datepicker{width:216px;height:auto;margin:5px auto 0;font:9pt Arial,sans-serif;box-shadow:0 0 10px 0 rgba(0,0,0,.5)}table.ui-datepicker-calendar tbody>tr>td,table.ui-datepicker-calendar tbody>tr>th{background:#fff}.ui-datepicker table{width:100%;border-collapse:collapse}.ui-datepicker-header{background-color:#297ca5;color:#fff;font-weight:700;text-shadow:1px -1px 0 #000;line-height:30px;min-height:30px!important;border-width:1px 0 0;border-style:solid;border-color:#666}.ui-datepicker-title{text-align:center}.ui-datepicker-title select{margin:2.5% .5em;color:#666}.ui-datepicker-next,.ui-datepicker-prev{display:inline-block;width:4em;height:3em;text-align:center;cursor:pointer;background-repeat:no-repeat;line-height:3.5em;overflow:hidden;font-size:.666rem;color:#fff;text-shadow:none}.ui-datepicker-next:hover,.ui-datepicker-prev:hover{color:#fff}.ui-datepicker-prev{float:left;background-position:center -30px}.ui-datepicker-next{float:right;background-position:center 0}.ui-datepicker thead{border-bottom:1px solid #bbb}.ui-datepicker th{text-transform:uppercase;text-align:center;font-size:6pt;padding:5px 0;color:#666;text-shadow:1px 0 0 #fff}.ui-datepicker tbody td{padding:0;border-top:1px solid #bbb;border-right:1px solid #bbb}.ui-datepicker tbody td:last-child{border-right:0}.ui-datepicker tbody tr{border-bottom:1px solid #bbb}.ui-datepicker tbody tr:last-child{border-bottom:0}.ui-datepicker td a,.ui-datepicker td span{display:inline-block;font-weight:700;text-align:center;width:30px;height:30px;line-height:30px;color:#666}.ui-datepicker-calendar .ui-state-hover{background:#f7f7f7}.ui-datepicker-calendar .ui-state-active{background:#297ca5;border:1px solid #297ca5;color:#fff;position:relative}.ui-datepicker-unselectable .ui-state-default{background:#f4f4f4;color:#b4b3b3}.ui-datepicker-calendar td:first-child .ui-state-active{width:29px;margin-left:0}.ui-datepicker-calendar td:last-child .ui-state-active{width:29px;margin-right:0}.ui-datepicker-calendar tr:last-child .ui-state-active{height:29px;margin-bottom:0}table.ui-datepicker-calendar{margin:0!important}body div#ui-datepicker-div[style]{z-index:9999!important}.materialize-red{background-color:#e51c23!important}.materialize-red-text{color:#e51c23!important}.materialize-red.lighten-5{background-color:#fdeaeb!important}.materialize-red-text.text-lighten-5{color:#fdeaeb!important}.materialize-red.lighten-4{background-color:#f8c1c3!important}.materialize-red-text.text-lighten-4{color:#f8c1c3!important}.materialize-red.lighten-3{background-color:#f3989b!important}.materialize-red-text.text-lighten-3{color:#f3989b!important}.materialize-red.lighten-2{background-color:#ee6e73!important}.materialize-red-text.text-lighten-2{color:#ee6e73!important}.materialize-red.lighten-1{background-color:#ea454b!important}.materialize-red-text.text-lighten-1{color:#ea454b!important}.materialize-red.darken-1{background-color:#d0181e!important}.materialize-red-text.text-darken-1{color:#d0181e!important}.materialize-red.darken-2{background-color:#b9151b!important}.materialize-red-text.text-darken-2{color:#b9151b!important}.materialize-red.darken-3{background-color:#a21318!important}.materialize-red-text.text-darken-3{color:#a21318!important}.materialize-red.darken-4{background-color:#8b1014!important}.materialize-red-text.text-darken-4{color:#8b1014!important}.red{background-color:#f44336!important}.red-text{color:#f44336!important}.red.lighten-5{background-color:#ffebee!important}.red-text.text-lighten-5{color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important}.red-text.text-lighten-4{color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important}.red-text.text-lighten-3{color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important}.red-text.text-lighten-2{color:#e57373!important}.red.lighten-1{background-color:#ef5350!important}.red-text.text-lighten-1{color:#ef5350!important}.red.darken-1{background-color:#e53935!important}.red-text.text-darken-1{color:#e53935!important}.red.darken-2{background-color:#d32f2f!important}.red-text.text-darken-2{color:#d32f2f!important}.red.darken-3{background-color:#c62828!important}.red-text.text-darken-3{color:#c62828!important}.red.darken-4{background-color:#b71c1c!important}.red-text.text-darken-4{color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important}.red-text.text-accent-1{color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important}.red-text.text-accent-2{color:#ff5252!important}.red.accent-3{background-color:#ff1744!important}.red-text.text-accent-3{color:#ff1744!important}.red.accent-4{background-color:#d50000!important}.red-text.text-accent-4{color:#d50000!important}.pink{background-color:#e91e63!important}.pink-text{color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important}.pink-text.text-lighten-5{color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important}.pink-text.text-lighten-4{color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important}.pink-text.text-lighten-3{color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important}.pink-text.text-lighten-2{color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important}.pink-text.text-lighten-1{color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important}.pink-text.text-darken-1{color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important}.pink-text.text-darken-2{color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important}.pink-text.text-darken-3{color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important}.pink-text.text-darken-4{color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important}.pink-text.text-accent-1{color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important}.pink-text.text-accent-2{color:#ff4081!important}.pink.accent-3{background-color:#f50057!important}.pink-text.text-accent-3{color:#f50057!important}.pink.accent-4{background-color:#c51162!important}.pink-text.text-accent-4{color:#c51162!important}.purple{background-color:#9c27b0!important}.purple-text{color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important}.purple-text.text-lighten-5{color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important}.purple-text.text-lighten-4{color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important}.purple-text.text-lighten-3{color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important}.purple-text.text-lighten-2{color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important}.purple-text.text-lighten-1{color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important}.purple-text.text-darken-1{color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important}.purple-text.text-darken-2{color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important}.purple-text.text-darken-3{color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important}.purple-text.text-darken-4{color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important}.purple-text.text-accent-1{color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important}.purple-text.text-accent-2{color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important}.purple-text.text-accent-3{color:#d500f9!important}.purple.accent-4{background-color:#a0f!important}.purple-text.text-accent-4{color:#a0f!important}.deep-purple{background-color:#673ab7!important}.deep-purple-text{color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important}.deep-purple-text.text-lighten-5{color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important}.deep-purple-text.text-lighten-4{color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important}.deep-purple-text.text-lighten-3{color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important}.deep-purple-text.text-lighten-2{color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important}.deep-purple-text.text-lighten-1{color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important}.deep-purple-text.text-darken-1{color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important}.deep-purple-text.text-darken-2{color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important}.deep-purple-text.text-darken-3{color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important}.deep-purple-text.text-darken-4{color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important}.deep-purple-text.text-accent-1{color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important}.deep-purple-text.text-accent-2{color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important}.deep-purple-text.text-accent-3{color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important}.deep-purple-text.text-accent-4{color:#6200ea!important}.indigo{background-color:#3f51b5!important}.indigo-text{color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important}.indigo-text.text-lighten-5{color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important}.indigo-text.text-lighten-4{color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important}.indigo-text.text-lighten-3{color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important}.indigo-text.text-lighten-2{color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important}.indigo-text.text-lighten-1{color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important}.indigo-text.text-darken-1{color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important}.indigo-text.text-darken-2{color:#303f9f!important}.indigo.darken-3{background-color:#283593!important}.indigo-text.text-darken-3{color:#283593!important}.indigo.darken-4{background-color:#1a237e!important}.indigo-text.text-darken-4{color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important}.indigo-text.text-accent-1{color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important}.indigo-text.text-accent-2{color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important}.indigo-text.text-accent-3{color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important}.indigo-text.text-accent-4{color:#304ffe!important}.blue{background-color:#2196f3!important}.blue-text{color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important}.blue-text.text-lighten-5{color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important}.blue-text.text-lighten-4{color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important}.blue-text.text-lighten-3{color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important}.blue-text.text-lighten-2{color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important}.blue-text.text-lighten-1{color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important}.blue-text.text-darken-1{color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important}.blue-text.text-darken-2{color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important}.blue-text.text-darken-3{color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important}.blue-text.text-darken-4{color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important}.blue-text.text-accent-1{color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important}.blue-text.text-accent-2{color:#448aff!important}.blue.accent-3{background-color:#2979ff!important}.blue-text.text-accent-3{color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important}.blue-text.text-accent-4{color:#2962ff!important}.light-blue{background-color:#03a9f4!important}.light-blue-text{color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important}.light-blue-text.text-lighten-5{color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important}.light-blue-text.text-lighten-4{color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important}.light-blue-text.text-lighten-3{color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important}.light-blue-text.text-lighten-2{color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important}.light-blue-text.text-lighten-1{color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important}.light-blue-text.text-darken-1{color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important}.light-blue-text.text-darken-2{color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important}.light-blue-text.text-darken-3{color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important}.light-blue-text.text-darken-4{color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important}.light-blue-text.text-accent-1{color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important}.light-blue-text.text-accent-2{color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important}.light-blue-text.text-accent-3{color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important}.light-blue-text.text-accent-4{color:#0091ea!important}.cyan{background-color:#00bcd4!important}.cyan-text{color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important}.cyan-text.text-lighten-5{color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important}.cyan-text.text-lighten-4{color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important}.cyan-text.text-lighten-3{color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important}.cyan-text.text-lighten-2{color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important}.cyan-text.text-lighten-1{color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important}.cyan-text.text-darken-1{color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important}.cyan-text.text-darken-2{color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important}.cyan-text.text-darken-3{color:#00838f!important}.cyan.darken-4{background-color:#006064!important}.cyan-text.text-darken-4{color:#006064!important}.cyan.accent-1{background-color:#84ffff!important}.cyan-text.text-accent-1{color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important}.cyan-text.text-accent-2{color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important}.cyan-text.text-accent-3{color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important}.cyan-text.text-accent-4{color:#00b8d4!important}.teal{background-color:#009688!important}.teal-text{color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important}.teal-text.text-lighten-5{color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important}.teal-text.text-lighten-4{color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important}.teal-text.text-lighten-3{color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important}.teal-text.text-lighten-2{color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important}.teal-text.text-lighten-1{color:#26a69a!important}.teal.darken-1{background-color:#00897b!important}.teal-text.text-darken-1{color:#00897b!important}.teal.darken-2{background-color:#00796b!important}.teal-text.text-darken-2{color:#00796b!important}.teal.darken-3{background-color:#00695c!important}.teal-text.text-darken-3{color:#00695c!important}.teal.darken-4{background-color:#004d40!important}.teal-text.text-darken-4{color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important}.teal-text.text-accent-1{color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important}.teal-text.text-accent-2{color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important}.teal-text.text-accent-3{color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important}.teal-text.text-accent-4{color:#00bfa5!important}.green{background-color:#4caf50!important}.green-text{color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important}.green-text.text-lighten-5{color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important}.green-text.text-lighten-4{color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important}.green-text.text-lighten-3{color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important}.green-text.text-lighten-2{color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important}.green-text.text-lighten-1{color:#66bb6a!important}.green.darken-1{background-color:#43a047!important}.green-text.text-darken-1{color:#43a047!important}.green.darken-2{background-color:#388e3c!important}.green-text.text-darken-2{color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important}.green-text.text-darken-3{color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important}.green-text.text-darken-4{color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important}.green-text.text-accent-1{color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important}.green-text.text-accent-2{color:#69f0ae!important}.green.accent-3{background-color:#00e676!important}.green-text.text-accent-3{color:#00e676!important}.green.accent-4{background-color:#00c853!important}.green-text.text-accent-4{color:#00c853!important}.light-green{background-color:#8bc34a!important}.light-green-text{color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important}.light-green-text.text-lighten-5{color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important}.light-green-text.text-lighten-4{color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important}.light-green-text.text-lighten-3{color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important}.light-green-text.text-lighten-2{color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important}.light-green-text.text-lighten-1{color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important}.light-green-text.text-darken-1{color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important}.light-green-text.text-darken-2{color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important}.light-green-text.text-darken-3{color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important}.light-green-text.text-darken-4{color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important}.light-green-text.text-accent-1{color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important}.light-green-text.text-accent-2{color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important}.light-green-text.text-accent-3{color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important}.light-green-text.text-accent-4{color:#64dd17!important}.lime{background-color:#cddc39!important}.lime-text{color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important}.lime-text.text-lighten-5{color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important}.lime-text.text-lighten-4{color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important}.lime-text.text-lighten-3{color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important}.lime-text.text-lighten-2{color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important}.lime-text.text-lighten-1{color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important}.lime-text.text-darken-1{color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important}.lime-text.text-darken-2{color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important}.lime-text.text-darken-3{color:#9e9d24!important}.lime.darken-4{background-color:#827717!important}.lime-text.text-darken-4{color:#827717!important}.lime.accent-1{background-color:#f4ff81!important}.lime-text.text-accent-1{color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important}.lime-text.text-accent-2{color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important}.lime-text.text-accent-3{color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important}.lime-text.text-accent-4{color:#aeea00!important}.yellow{background-color:#ffeb3b!important}.yellow-text{color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important}.yellow-text.text-lighten-5{color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important}.yellow-text.text-lighten-4{color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important}.yellow-text.text-lighten-3{color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important}.yellow-text.text-lighten-2{color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important}.yellow-text.text-lighten-1{color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important}.yellow-text.text-darken-1{color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important}.yellow-text.text-darken-2{color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important}.yellow-text.text-darken-3{color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important}.yellow-text.text-darken-4{color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important}.yellow-text.text-accent-1{color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important}.yellow-text.text-accent-2{color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important}.yellow-text.text-accent-3{color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important}.yellow-text.text-accent-4{color:#ffd600!important}.amber{background-color:#ffc107!important}.amber-text{color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important}.amber-text.text-lighten-5{color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important}.amber-text.text-lighten-4{color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important}.amber-text.text-lighten-3{color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important}.amber-text.text-lighten-2{color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important}.amber-text.text-lighten-1{color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important}.amber-text.text-darken-1{color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important}.amber-text.text-darken-2{color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important}.amber-text.text-darken-3{color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important}.amber-text.text-darken-4{color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important}.amber-text.text-accent-1{color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important}.amber-text.text-accent-2{color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important}.amber-text.text-accent-3{color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important}.amber-text.text-accent-4{color:#ffab00!important}.orange{background-color:#ff9800!important}.orange-text{color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important}.orange-text.text-lighten-5{color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important}.orange-text.text-lighten-4{color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important}.orange-text.text-lighten-3{color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important}.orange-text.text-lighten-2{color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important}.orange-text.text-lighten-1{color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important}.orange-text.text-darken-1{color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important}.orange-text.text-darken-2{color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important}.orange-text.text-darken-3{color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important}.orange-text.text-darken-4{color:#e65100!important}.orange.accent-1{background-color:#ffd180!important}.orange-text.text-accent-1{color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important}.orange-text.text-accent-2{color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important}.orange-text.text-accent-3{color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important}.orange-text.text-accent-4{color:#ff6d00!important}.deep-orange{background-color:#ff5722!important}.deep-orange-text{color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important}.deep-orange-text.text-lighten-5{color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important}.deep-orange-text.text-lighten-4{color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important}.deep-orange-text.text-lighten-3{color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important}.deep-orange-text.text-lighten-2{color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important}.deep-orange-text.text-lighten-1{color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important}.deep-orange-text.text-darken-1{color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important}.deep-orange-text.text-darken-2{color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important}.deep-orange-text.text-darken-3{color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important}.deep-orange-text.text-darken-4{color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important}.deep-orange-text.text-accent-1{color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important}.deep-orange-text.text-accent-2{color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important}.deep-orange-text.text-accent-3{color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important}.deep-orange-text.text-accent-4{color:#dd2c00!important}.brown{background-color:#795548!important}.brown-text{color:#795548!important}.brown.lighten-5{background-color:#efebe9!important}.brown-text.text-lighten-5{color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important}.brown-text.text-lighten-4{color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important}.brown-text.text-lighten-3{color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important}.brown-text.text-lighten-2{color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important}.brown-text.text-lighten-1{color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important}.brown-text.text-darken-1{color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important}.brown-text.text-darken-2{color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important}.brown-text.text-darken-3{color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important}.brown-text.text-darken-4{color:#3e2723!important}.blue-grey{background-color:#607d8b!important}.blue-grey-text{color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important}.blue-grey-text.text-lighten-5{color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important}.blue-grey-text.text-lighten-4{color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important}.blue-grey-text.text-lighten-3{color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important}.blue-grey-text.text-lighten-2{color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important}.blue-grey-text.text-lighten-1{color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important}.blue-grey-text.text-darken-1{color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important}.blue-grey-text.text-darken-2{color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important}.blue-grey-text.text-darken-3{color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important}.blue-grey-text.text-darken-4{color:#263238!important}.grey{background-color:#9e9e9e!important}.grey-text{color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important}.grey-text.text-lighten-5{color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important}.grey-text.text-lighten-4{color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important}.grey-text.text-lighten-3{color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important}.grey-text.text-lighten-2{color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important}.grey-text.text-lighten-1{color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important}.grey-text.text-darken-1{color:#757575!important}.grey.darken-2{background-color:#616161!important}.grey-text.text-darken-2{color:#616161!important}.grey.darken-3{background-color:#424242!important}.grey-text.text-darken-3{color:#424242!important}.grey.darken-4{background-color:#212121!important}.grey-text.text-darken-4{color:#212121!important}.black{background-color:#000!important}.black-text{color:#000!important}.white{background-color:#fff!important}.white-text{color:#fff!important}.transparent{background-color:transparent!important}.transparent-text{color:transparent!important}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}ul:not(.browser-default){padding-left:0}a{color:#13a4d2;text-decoration:none;-webkit-tap-highlight-color:transparent}.valign-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.valign-wrapper .valign{display:block}.clearfix{clear:both}.z-depth-0{box-shadow:none!important}.dropdown-content,.z-depth-1{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.z-depth-1-half{box-shadow:0 3px 3px 0 rgba(0,0,0,.14),0 1px 7px 0 rgba(0,0,0,.12),0 3px 1px -1px rgba(0,0,0,.2)}.z-depth-2{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.3)}.z-depth-3{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.3)}.z-depth-4{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.3)}.z-depth-5{box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.3)}.hoverable{transition:box-shadow .25s;box-shadow:none}.hoverable:hover{transition:box-shadow .25s;box-shadow:0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.divider{height:1px;overflow:hidden;background-color:#e0e0e0}blockquote{margin:20px 0;padding-left:1.5rem;border-left:5px solid #ee6e73}i{line-height:inherit}i.left{float:left;margin-right:15px}i.right{float:right;margin-left:15px}i.tiny{font-size:1rem}i.small{font-size:2rem}i.medium{font-size:4rem}i.large{font-size:6rem}img.responsive-img,video.responsive-video{max-width:100%;height:auto}.pagination li{display:inline-block;border-radius:2px;text-align:center;vertical-align:top;height:30px}.pagination li a{color:#444;display:inline-block;font-size:1.2rem;padding:0 10px;line-height:30px}.pagination li.active a{color:#fff}.pagination li.active{background-color:#ee6e73}.pagination li.disabled a{cursor:default;color:#999}.pagination li i{font-size:2rem}.pagination li.pages ul li{display:inline-block;float:none}.breadcrumb{font-size:18px;color:rgba(255,255,255,.7)}.breadcrumb [class*=mdi-],.breadcrumb [class^=mdi-],.breadcrumb i,.breadcrumb i.material-icons{display:inline-block;float:left;font-size:24px}.breadcrumb:before{content:'\E5CC';color:rgba(255,255,255,.7);vertical-align:top;display:inline-block;font-family:'Material Icons';font-weight:400;font-style:normal;font-size:25px;margin:0 10px 0 8px;-webkit-font-smoothing:antialiased}.breadcrumb:first-child:before{display:none}.breadcrumb:last-child{color:#fff}.parallax-container{position:relative;overflow:hidden;height:500px}.parallax{position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1}.parallax img{display:none;position:absolute;left:50%;bottom:0;min-width:100%;min-height:100%;transform:translate3d(0,0,0);transform:translateX(-50%)}.pin-bottom,.pin-top{position:relative}.pinned{position:fixed!important}ul.staggered-list li{opacity:0}.fade-in{opacity:0;transform-origin:0 50%}@media only screen and (max-width:600px){.hide-on-small-and-down,.hide-on-small-only{display:none!important}}@media only screen and (max-width:992px){.pagination{width:100%}.pagination li.next,.pagination li.prev{width:10%}.pagination li.pages{width:80%;overflow:hidden;white-space:nowrap}.hide-on-med-and-down{display:none!important}}@media only screen and (min-width:601px){.hide-on-med-and-up{display:none!important}}@media only screen and (min-width:600px) and (max-width:992px){.hide-on-med-only{display:none!important}}@media only screen and (min-width:993px){.hide-on-large-only{display:none!important}.show-on-large{display:block!important}}@media only screen and (min-width:600px) and (max-width:992px){.show-on-medium{display:block!important}}@media only screen and (min-width:601px){.show-on-medium-and-up{display:block!important}}@media only screen and (max-width:600px){.show-on-small{display:block!important}.center-on-small-only{text-align:center}}footer.page-footer{padding-top:20px;background-color:#ee6e73}footer.page-footer .footer-copyright{overflow:hidden;min-height:50px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:10px 0;color:rgba(255,255,255,.8);background-color:rgba(51,51,51,.08)}table,td,th{border:none}table.bordered>tbody>tr,table.bordered>thead>tr{border-bottom:1px solid #d0d0d0}table.striped>tbody>tr:nth-child(odd){background-color:#f2f2f2}table.striped>tbody>tr>td{border-radius:0}table.highlight>tbody>tr{transition:background-color .25s ease}table.highlight>tbody>tr:hover{background-color:#f2f2f2}table.centered tbody tr td,table.centered thead tr th{text-align:center}thead{border-bottom:1px solid #d0d0d0}td,th{padding:15px 5px;display:table-cell;text-align:left;vertical-align:middle;border-radius:2px}@media only screen and (max-width:992px){.show-on-medium-and-down{display:block!important}table.responsive-table{width:100%;border-collapse:collapse;border-spacing:0;display:block;position:relative}table.responsive-table td:empty:before{content:'\00a0'}table.responsive-table td,table.responsive-table th{margin:0;vertical-align:top}table.responsive-table thead{display:block;float:left;border:0;border-right:1px solid #d0d0d0}table.responsive-table thead tr{display:block;padding:0 10px 0 0}table.responsive-table thead tr th::before{content:"\00a0"}table.responsive-table tbody{display:block;width:auto;position:relative;overflow-x:auto;white-space:nowrap}table.responsive-table tbody tr{display:inline-block;vertical-align:top}table.responsive-table th{display:block;text-align:right}table.responsive-table td{display:block;min-height:1.25em;text-align:left}table.responsive-table tr{padding:0 10px}table.responsive-table.bordered th{border-bottom:0;border-left:0}table.responsive-table.bordered td{border-left:0;border-right:0;border-bottom:0}table.responsive-table.bordered tr{border:0}table.responsive-table.bordered tbody tr{border-right:1px solid #d0d0d0}}.collection{margin:.5rem 0 1rem;border:1px solid #e0e0e0;border-radius:2px;overflow:hidden;position:relative}.collection .collection-item{background-color:#fff;line-height:1.5rem;padding:10px 20px;margin:0;border-bottom:1px solid #e0e0e0}.collection .collection-item.avatar{min-height:84px;padding-left:72px;position:relative}.collection .collection-item.avatar .circle{position:absolute;width:42px;height:42px;overflow:hidden;left:15px;display:inline-block;vertical-align:middle}.collection .collection-item.avatar i.circle{font-size:18px;line-height:42px;color:#fff;background-color:#999;text-align:center}.collection .collection-item.avatar .title{font-size:16px}.collection .collection-item.avatar p{margin:0}.collection .collection-item.avatar .secondary-content{position:absolute;top:16px;right:16px}.collection .collection-item:last-child{border-bottom:none}.collection .collection-item.active{background-color:#26a69a;color:#eafaf9}.collection .collection-item.active .secondary-content{color:#fff}.collection a.collection-item{display:block;transition:.25s;color:#26a69a}.collection a.collection-item:not(.active):hover{background-color:#ddd}.collection.with-header .collection-header{background-color:#fff;border-bottom:1px solid #e0e0e0;padding:10px 20px}.collection.with-header .collection-item{padding-left:30px}.collection.with-header .collection-item.avatar{padding-left:72px}.secondary-content{float:right;color:#26a69a}.collapsible .collection{margin:0;border:none}.video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.progress{position:relative;height:4px;display:block;width:100%;background-color:#acece6;border-radius:2px;margin:.5rem 0 1rem;overflow:hidden}.progress .determinate{position:absolute;top:0;left:0;bottom:0;background-color:#26a69a;transition:width .3s linear}.progress .indeterminate{background-color:#26a69a}.progress .indeterminate:before{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right;animation:2.1s cubic-bezier(.65,.815,.735,.395) infinite indeterminate}.progress .indeterminate:after{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right;animation:2.1s cubic-bezier(.165,.84,.44,1) infinite indeterminate-short;animation-delay:1.15s}@keyframes indeterminate{0%{left:-35%;right:100%}100%,60%{left:100%;right:-90%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}100%,60%{left:107%;right:-8%}}.hide{display:none!important}.left-align{text-align:left}.right-align{text-align:right}.center,.center-align{text-align:center}.left{float:left!important}.right{float:right!important}.no-select,input[type=range],input[type=range]+.thumb{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.circle{border-radius:50%}.center-block{display:block;margin-left:auto;margin-right:auto}.truncate{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-padding{padding:0!important}span.badge{min-width:3rem;padding:0 6px;margin-left:14px;text-align:center;font-size:1rem;line-height:22px;height:22px;color:#757575;float:right;box-sizing:border-box}span.badge.new{font-weight:300;font-size:.8rem;color:#fff;background-color:#26a69a;border-radius:2px}span.badge.new:after{content:" new"}span.badge[data-badge-caption]::after{content:" " attr(data-badge-caption)}nav ul a span.badge{display:inline-block;float:none;margin-left:4px;line-height:22px;height:22px}.collection-item span.badge{margin-top:calc(.75rem - 11px)}.collapsible span.badge{margin-top:calc(1.5rem - 11px)}.side-nav span.badge{margin-top:calc(24px - 11px)}em{font-style:italic}strong{font-weight:700}small{font-size:75%}.light,footer.page-footer .footer-copyright{font-weight:300}.thin{font-weight:200}.flow-text{font-weight:300}@media only screen and (min-width:360px){.flow-text{font-size:1.2rem}}@media only screen and (min-width:390px){.flow-text{font-size:1.224rem}}@media only screen and (min-width:420px){.flow-text{font-size:1.248rem}}@media only screen and (min-width:450px){.flow-text{font-size:1.272rem}}@media only screen and (min-width:480px){.flow-text{font-size:1.296rem}}@media only screen and (min-width:510px){.flow-text{font-size:1.32rem}}@media only screen and (min-width:540px){.flow-text{font-size:1.344rem}}@media only screen and (min-width:570px){.flow-text{font-size:1.368rem}}@media only screen and (min-width:600px){.flow-text{font-size:1.392rem}}@media only screen and (min-width:630px){.flow-text{font-size:1.416rem}}@media only screen and (min-width:660px){.flow-text{font-size:1.44rem}}@media only screen and (min-width:690px){.flow-text{font-size:1.464rem}}@media only screen and (min-width:720px){.flow-text{font-size:1.488rem}}@media only screen and (min-width:750px){.flow-text{font-size:1.512rem}}@media only screen and (min-width:780px){.flow-text{font-size:1.536rem}}@media only screen and (min-width:810px){.flow-text{font-size:1.56rem}}@media only screen and (min-width:840px){.flow-text{font-size:1.584rem}}@media only screen and (min-width:870px){.flow-text{font-size:1.608rem}}@media only screen and (min-width:900px){.flow-text{font-size:1.632rem}}@media only screen and (min-width:930px){.flow-text{font-size:1.656rem}}@media only screen and (min-width:960px){.flow-text{font-size:1.68rem}}@media only screen and (max-width:360px){.flow-text{font-size:1.2rem}}.scale-transition{transition:transform .3s cubic-bezier(.53,.01,.36,1.63)!important}.scale-transition.scale-out{transform:scale(0);transition:transform .2s!important}.scale-transition.scale-in{transform:scale(1)}.dropdown-content{background-color:#fff;margin:0;display:none;min-width:100px;max-height:650px;overflow-y:auto;opacity:0;position:absolute;z-index:999;will-change:width,height}.dropdown-content li{clear:both;color:rgba(0,0,0,.87);cursor:pointer;min-height:50px;line-height:1.5rem;width:100%;text-align:left;text-transform:none}.dropdown-content li.active,.dropdown-content li.selected,.dropdown-content li:hover{background-color:#eee}.dropdown-content li.active.selected{background-color:#e1e1e1}.dropdown-content li.divider{min-height:0;height:1px}.dropdown-content li>a,.dropdown-content li>span{font-size:16px;color:#26a69a;display:block;line-height:22px;padding:14px 16px}.dropdown-content li>span>label{top:1px;left:0;height:18px}.dropdown-content li>a>i{height:inherit;line-height:inherit}.input-field.col .dropdown-content [type=checkbox]+label{top:1px;left:0;height:18px}select:focus{outline:#c9f3ef solid 1px}button:focus{outline:0;background-color:#13a4d2}label{color:#9e9e9e}::-webkit-input-placeholder{color:#d1d1d1}:-moz-placeholder{color:#d1d1d1}::-moz-placeholder{color:#d1d1d1}:-ms-input-placeholder{color:#d1d1d1}input:not([type]),input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],textarea.materialize-textarea{background-color:transparent;border:1px solid #9e9e9e;border-radius:.2em;outline:0;height:2rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;box-shadow:none;transition:all .3s;text-indent:.5em}input:not([type]):disabled,input:not([type])[readonly=readonly],input[type=date]:disabled,input[type=date][readonly=readonly],input[type=datetime-local]:disabled,input[type=datetime-local][readonly=readonly],input[type=datetime]:disabled,input[type=datetime][readonly=readonly],input[type=email]:disabled,input[type=email][readonly=readonly],input[type=number]:disabled,input[type=number][readonly=readonly],input[type=password]:disabled,input[type=password][readonly=readonly],input[type=search]:disabled,input[type=search][readonly=readonly],input[type=tel]:disabled,input[type=tel][readonly=readonly],input[type=text]:disabled,input[type=text][readonly=readonly],input[type=time]:disabled,input[type=time][readonly=readonly],input[type=url]:disabled,input[type=url][readonly=readonly],textarea.materialize-textarea:disabled,textarea.materialize-textarea[readonly=readonly]{color:rgba(0,0,0,.26);border-bottom:1px dotted rgba(0,0,0,.26)}input:not([type]):disabled+label,input:not([type])[readonly=readonly]+label,input[type=date]:disabled+label,input[type=date][readonly=readonly]+label,input[type=datetime-local]:disabled+label,input[type=datetime-local][readonly=readonly]+label,input[type=datetime]:disabled+label,input[type=datetime][readonly=readonly]+label,input[type=email]:disabled+label,input[type=email][readonly=readonly]+label,input[type=number]:disabled+label,input[type=number][readonly=readonly]+label,input[type=password]:disabled+label,input[type=password][readonly=readonly]+label,input[type=search]:disabled+label,input[type=search][readonly=readonly]+label,input[type=tel]:disabled+label,input[type=tel][readonly=readonly]+label,input[type=text]:disabled+label,input[type=text][readonly=readonly]+label,input[type=time]:disabled+label,input[type=time][readonly=readonly]+label,input[type=url]:disabled+label,input[type=url][readonly=readonly]+label,textarea.materialize-textarea:disabled+label,textarea.materialize-textarea[readonly=readonly]+label{color:rgba(0,0,0,.26)}input:not([type]):focus:not([readonly]),input[type=date]:focus:not([readonly]),input[type=datetime-local]:focus:not([readonly]),input[type=datetime]:focus:not([readonly]),input[type=email]:focus:not([readonly]),input[type=number]:focus:not([readonly]),input[type=password]:focus:not([readonly]),input[type=search]:focus:not([readonly]),input[type=tel]:focus:not([readonly]),input[type=text]:focus:not([readonly]),input[type=time]:focus:not([readonly]),input[type=url]:focus:not([readonly]),textarea.materialize-textarea:focus:not([readonly]){border:1px solid #157199}input:not([type]).valid,input:not([type]):focus.valid,input[type=date].valid,input[type=date]:focus.valid,input[type=datetime-local].valid,input[type=datetime-local]:focus.valid,input[type=datetime].valid,input[type=datetime]:focus.valid,input[type=email].valid,input[type=email]:focus.valid,input[type=number].valid,input[type=number]:focus.valid,input[type=password].valid,input[type=password]:focus.valid,input[type=search].valid,input[type=search]:focus.valid,input[type=tel].valid,input[type=tel]:focus.valid,input[type=text].valid,input[type=text]:focus.valid,input[type=time].valid,input[type=time]:focus.valid,input[type=url].valid,input[type=url]:focus.valid,textarea.materialize-textarea.valid,textarea.materialize-textarea:focus.valid{border-bottom:1px solid #4caf50;box-shadow:0 1px 0 0 #4caf50}input:not([type]).valid+label:after,input:not([type]):focus.valid+label:after,input[type=date].valid+label:after,input[type=date]:focus.valid+label:after,input[type=datetime-local].valid+label:after,input[type=datetime-local]:focus.valid+label:after,input[type=datetime].valid+label:after,input[type=datetime]:focus.valid+label:after,input[type=email].valid+label:after,input[type=email]:focus.valid+label:after,input[type=number].valid+label:after,input[type=number]:focus.valid+label:after,input[type=password].valid+label:after,input[type=password]:focus.valid+label:after,input[type=search].valid+label:after,input[type=search]:focus.valid+label:after,input[type=tel].valid+label:after,input[type=tel]:focus.valid+label:after,input[type=text].valid+label:after,input[type=text]:focus.valid+label:after,input[type=time].valid+label:after,input[type=time]:focus.valid+label:after,input[type=url].valid+label:after,input[type=url]:focus.valid+label:after,textarea.materialize-textarea.valid+label:after,textarea.materialize-textarea:focus.valid+label:after{content:attr(data-success);color:#4caf50;opacity:1}input:not([type]).invalid,input:not([type]):focus.invalid,input[type=date].invalid,input[type=date]:focus.invalid,input[type=datetime-local].invalid,input[type=datetime-local]:focus.invalid,input[type=datetime].invalid,input[type=datetime]:focus.invalid,input[type=email].invalid,input[type=email]:focus.invalid,input[type=number].invalid,input[type=number]:focus.invalid,input[type=password].invalid,input[type=password]:focus.invalid,input[type=search].invalid,input[type=search]:focus.invalid,input[type=tel].invalid,input[type=tel]:focus.invalid,input[type=text].invalid,input[type=text]:focus.invalid,input[type=time].invalid,input[type=time]:focus.invalid,input[type=url].invalid,input[type=url]:focus.invalid,textarea.materialize-textarea.invalid,textarea.materialize-textarea:focus.invalid{border-bottom:1px solid #f44336;box-shadow:0 1px 0 0 #f44336}input:not([type]).invalid+label:after,input:not([type]):focus.invalid+label:after,input[type=date].invalid+label:after,input[type=date]:focus.invalid+label:after,input[type=datetime-local].invalid+label:after,input[type=datetime-local]:focus.invalid+label:after,input[type=datetime].invalid+label:after,input[type=datetime]:focus.invalid+label:after,input[type=email].invalid+label:after,input[type=email]:focus.invalid+label:after,input[type=number].invalid+label:after,input[type=number]:focus.invalid+label:after,input[type=password].invalid+label:after,input[type=password]:focus.invalid+label:after,input[type=search].invalid+label:after,input[type=search]:focus.invalid+label:after,input[type=tel].invalid+label:after,input[type=tel]:focus.invalid+label:after,input[type=text].invalid+label:after,input[type=text]:focus.invalid+label:after,input[type=time].invalid+label:after,input[type=time]:focus.invalid+label:after,input[type=url].invalid+label:after,input[type=url]:focus.invalid+label:after,textarea.materialize-textarea.invalid+label:after,textarea.materialize-textarea:focus.invalid+label:after{content:attr(data-error);color:#f44336;opacity:1}input:not([type]).validate+label,input[type=date].validate+label,input[type=datetime-local].validate+label,input[type=datetime].validate+label,input[type=email].validate+label,input[type=number].validate+label,input[type=password].validate+label,input[type=search].validate+label,input[type=tel].validate+label,input[type=text].validate+label,input[type=time].validate+label,input[type=url].validate+label,textarea.materialize-textarea.validate+label{width:100%;pointer-events:none}input:not([type])+label:after,input[type=date]+label:after,input[type=datetime-local]+label:after,input[type=datetime]+label:after,input[type=email]+label:after,input[type=number]+label:after,input[type=password]+label:after,input[type=search]+label:after,input[type=tel]+label:after,input[type=text]+label:after,input[type=time]+label:after,input[type=url]+label:after,textarea.materialize-textarea+label:after{display:block;content:"";position:absolute;top:60px;opacity:0;transition:.2s opacity ease-out,.2s color ease-out}.input-field{position:relative;margin-top:1rem}.input-field.inline{display:inline-block;vertical-align:middle;margin-left:5px}.input-field.inline .select-dropdown,.input-field.inline input{margin-bottom:1rem}.input-field.col label{left:.75rem}.input-field.col .prefix~.validate~label,.input-field.col .prefix~label{width:calc(100% - 3rem - 1.5rem)}.input-field label{color:#9e9e9e;position:absolute;top:.8rem;left:0;font-size:1rem;cursor:text;transition:.2s ease-out}.input-field label:not(.label-icon).active{font-size:1em;transform:translateY(-140%)}.input-field .prefix{position:absolute;width:2rem;font-size:2rem;transition:color .2s}.input-field .prefix.active{color:#26a69a}.input-field .prefix~.autocomplete-content,.input-field .prefix~.validate~label,.input-field .prefix~input,.input-field .prefix~label,.input-field .prefix~textarea{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.input-field .prefix~label{margin-left:3rem}@media only screen and (max-width:992px){.input-field .prefix~input{width:86%;width:calc(100% - 3rem)}}@media only screen and (max-width:600px){.input-field .prefix~input{width:80%;width:calc(100% - 3rem)}}.input-field input[type=search]{display:block;line-height:inherit;padding-left:4rem;width:calc(100% - 4rem)}.input-field input[type=search]:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.input-field input[type=search]:focus+label i,.input-field input[type=search]:focus~.material-icons,.input-field input[type=search]:focus~.mdi-navigation-close{color:#444}.input-field input[type=search]+label{left:1rem}.input-field input[type=search]~.material-icons,.input-field input[type=search]~.mdi-navigation-close{position:absolute;top:0;right:1rem;color:transparent;cursor:pointer;font-size:2rem;transition:.3s color}textarea.materialize-textarea{overflow-y:hidden;padding:.8rem 0 1.6rem;resize:none;min-height:2rem}.hiddendiv{display:none;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word;padding-top:1.2rem}.autocomplete-content{margin-top:-15px;display:block;opacity:1;position:static}.autocomplete-content li .highlight{color:#444}.autocomplete-content li img{height:40px;width:40px;margin:5px 15px}[type=radio]:checked,[type=radio]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=radio]:checked+label,[type=radio]:not(:checked)+label{position:relative;padding-left:35px;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;transition:.28s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[type=radio]+label:after,[type=radio]+label:before{content:'';position:absolute;left:0;top:0;margin:4px;width:16px;height:16px;z-index:0;transition:.28s ease}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after,[type=radio]:checked+label:before,[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border-radius:50%}[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border:2px solid #5a5a5a}[type=radio]:not(:checked)+label:after{transform:scale(0)}[type=radio]:checked+label:before{border:2px solid transparent}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after{border:2px solid #157199}[type=radio].with-gap:checked+label:after,[type=radio]:checked+label:after{background-color:#26a69a}[type=radio]:checked+label:after{transform:scale(1.02)}[type=radio].with-gap:checked+label:after{transform:scale(.5)}[type=radio].tabbed:focus+label:before{box-shadow:0 0 0 10px rgba(0,0,0,.1)}[type=radio].with-gap:disabled:checked+label:before{border:2px solid rgba(0,0,0,.26)}[type=radio].with-gap:disabled:checked+label:after{border:none;background-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:before,[type=radio]:disabled:not(:checked)+label:before{background-color:transparent;border-color:rgba(0,0,0,.26)}[type=radio]:disabled+label{color:rgba(0,0,0,.26)}[type=radio]:disabled:not(:checked)+label:before{border-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:after{background-color:rgba(0,0,0,.26);border-color:#bdbdbd}form p{margin-bottom:10px;text-align:left}form p:last-child{margin-bottom:0}[type=checkbox]:checked,[type=checkbox]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=checkbox]+label{position:relative;padding-left:35px!important;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;color:#3b4646;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}[type=checkbox]+label:before,[type=checkbox]:not(.filled-in)+label:after{content:'';position:absolute;top:0;left:0;width:18px;height:18px;z-index:0;border:2px solid #157199;border-radius:1px;margin-top:2px;transition:.2s}[type=checkbox]:not(.filled-in)+label:after{border:0;transform:scale(0)}[type=checkbox]:not(:checked):disabled+label:before{border:none;background-color:rgba(0,0,0,.26)}[type=checkbox].tabbed:focus+label:after{transform:scale(1);border:0;border-radius:50%;box-shadow:0 0 0 10px rgba(0,0,0,.1);background-color:rgba(0,0,0,.1)}[type=checkbox]:checked+label:before{top:-4px;left:-5px;width:12px;height:22px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #157199;border-bottom:2px solid #157199;transform:rotate(40deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-origin:100% 100%}[type=checkbox]:checked:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);border-bottom:2px solid rgba(0,0,0,.26)}[type=checkbox]:indeterminate+label:before{top:-11px;left:-12px;width:10px;height:22px;border-top:none;border-left:none;border-right:2px solid #157199;border-bottom:none;transform:rotate(90deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-origin:100% 100%}[type=checkbox]:indeterminate:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);background-color:transparent}[type=checkbox].filled-in+label:after{border-radius:2px}[type=checkbox].filled-in+label:after,[type=checkbox].filled-in+label:before{content:'';left:0;position:absolute;transition:border .25s,background-color .25s,width .2s .1s,height .2s .1s,top .2s .1s,left .2s .1s;z-index:1}[type=checkbox].filled-in:not(:checked)+label:before{width:0;height:0;border:3px solid transparent;left:6px;top:10px;transform:rotateZ(37deg);transform-origin:100% 100%}[type=checkbox].filled-in:not(:checked)+label:after{height:20px;width:20px;background-color:transparent;border:2px solid #5a5a5a;top:0;z-index:0}[type=checkbox].filled-in:checked+label:before{top:0;left:1px;width:8px;height:13px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #fff;border-bottom:2px solid #fff;transform:rotateZ(37deg);transform-origin:100% 100%}[type=checkbox].filled-in:checked+label:after{top:0;width:20px;height:20px;border:2px solid #26a69a;background-color:#26a69a;z-index:0}[type=checkbox].filled-in.tabbed:focus+label:after{border-radius:2px;border-color:#5a5a5a;background-color:rgba(0,0,0,.1)}[type=checkbox].filled-in.tabbed:checked:focus+label:after{border-radius:2px;background-color:#26a69a;border-color:#26a69a}[type=checkbox].filled-in:disabled:not(:checked)+label:before{background-color:transparent;border:2px solid transparent}[type=checkbox].filled-in:disabled:not(:checked)+label:after{border-color:transparent;background-color:#bdbdbd}[type=checkbox].filled-in:disabled:checked+label:before{background-color:transparent}[type=checkbox].filled-in:disabled:checked+label:after{background-color:#bdbdbd;border-color:#bdbdbd}.switch,.switch *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.switch label{cursor:pointer}.switch label input[type=checkbox]{opacity:0;width:0;height:0}.switch label input[type=checkbox]:checked+.lever{background-color:#84c7c1}.switch label input[type=checkbox]:checked+.lever:after{background-color:#26a69a;left:24px}.switch label .lever{content:"";display:inline-block;position:relative;width:40px;height:15px;background-color:#818181;border-radius:15px;transition:background .3s ease;vertical-align:middle;margin:0 16px}.switch label .lever:after{content:"";position:absolute;display:inline-block;width:21px;height:21px;background-color:#f1f1f1;border-radius:21px;box-shadow:0 1px 3px 1px rgba(0,0,0,.4);left:-5px;top:-3px;transition:left .3s ease,background .3s ease,box-shadow .1s ease}input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever::after,input[type=checkbox]:checked:not(:disabled)~.lever:active::after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(38,166,154,.1)}input[type=checkbox]:not(:disabled).tabbed:focus~.lever::after,input[type=checkbox]:not(:disabled)~.lever:active:after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(0,0,0,.08)}.switch input[type=checkbox][disabled]+.lever{cursor:default}.switch label input[type=checkbox][disabled]+.lever:after,.switch label input[type=checkbox][disabled]:checked+.lever:after{background-color:#bdbdbd}.gform_wrapper select{display:none;background-color:#fff;width:100%;padding:5px;border-radius:2px;height:2rem}.gform_wrapper select.browser-default{display:block}.select-label{position:absolute}.select-wrapper{position:relative}.select-wrapper input.select-dropdown{position:relative;cursor:pointer;background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;outline:0;height:2rem;line-height:2rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;display:block}.select-wrapper span.caret{color:initial;position:absolute;right:0;top:0;bottom:0;height:10px;margin:auto 0;font-size:10px;line-height:10px}.select-wrapper span.caret.disabled{color:rgba(0,0,0,.26)}.select-wrapper+label{position:absolute;top:-14px;font-size:1em}select:disabled{color:rgba(0,0,0,.3)}.select-wrapper input.select-dropdown:disabled{color:rgba(0,0,0,.3);cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;border-bottom:1px solid rgba(0,0,0,.3)}.select-wrapper i{color:rgba(0,0,0,.3)}.select-dropdown li.disabled,.select-dropdown li.disabled>span,.select-dropdown li.optgroup{color:rgba(0,0,0,.3);background-color:transparent}.prefix~.select-wrapper{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.prefix~label{margin-left:3rem}.select-dropdown li img{height:40px;width:40px;margin:5px 15px;float:right}.select-dropdown li.optgroup{border-top:1px solid #eee}.select-dropdown li.optgroup.selected>span{color:rgba(0,0,0,.7)}.select-dropdown li.optgroup>span{color:rgba(0,0,0,.4)}.select-dropdown li.optgroup~li.optgroup-option{padding-left:1rem}.file-field{position:relative}.file-field .file-path-wrapper{overflow:hidden;padding-left:10px}.file-field input.file-path{width:100%}.file-field .btn{float:left;height:2rem;line-height:2rem}.file-field span{cursor:pointer}.file-field input[type=file]{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;margin:0;padding:0;font-size:20px;cursor:pointer;opacity:0}.range-field{position:relative}input[type=range],input[type=range]+.thumb{cursor:pointer}input[type=range]{position:relative;background-color:transparent;outline:0;width:100%;margin:15px 0;padding:0}input[type=range]:focus{outline:0}input[type=range]+.thumb{position:absolute;border:none;height:0;width:0;border-radius:50%;background-color:#26a69a;top:10px;margin-left:-6px;transform-origin:50% 50%;transform:rotate(-45deg)}input[type=range]+.thumb .value{display:block;width:30px;text-align:center;color:#26a69a;font-size:0;transform:rotate(45deg)}input[type=range]+.thumb.active{border-radius:50% 50% 50% 0}input[type=range]+.thumb.active .value{color:#fff;margin-left:-1px;margin-top:8px;font-size:10px}input[type=range]::-webkit-slider-runnable-track{height:3px;background:#c2c0c2;border:none}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:none;height:14px;width:14px;border-radius:50%;background-color:#26a69a;transform-origin:50% 50%;margin:-5px 0 0;transition:.3s}input[type=range]:focus::-webkit-slider-runnable-track{background:#ccc}input[type=range]{-webkit-appearance:none;border:1px solid #fff}input[type=range]::-moz-range-track{height:3px;background:#ddd;border:none}input[type=range]::-moz-range-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a;margin-top:-5px}input[type=range]:-moz-focusring{outline:#fff solid 1px;outline-offset:-1px}input[type=range]:focus::-moz-range-track{background:#ccc}input[type=range]::-ms-track{height:3px;background:0 0;border-color:transparent;border-width:6px 0;color:transparent}input[type=range]::-ms-fill-lower{background:#777}input[type=range]::-ms-fill-upper{background:#ddd}input[type=range]::-ms-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a}input[type=range]:focus::-ms-fill-lower{background:#888}input[type=range]:focus::-ms-fill-upper{background:#ccc}.validation_error,.validation_message{color:red}form>.validation_error,form>.validation_message{font-size:1.25em;font-weight:700;margin-bottom:1em;padding:.5em;border-bottom:2px solid red}.validation_message{color:red;background:rgba(255,0,0,.15);padding:.5em;border:1px solid red}body.home .site #content.site_content{background-color:#fff!important}body.home .site #content.site_content:before{display:none}body.home .site #content.site_content h1{z-index:auto}.gform_fields>li{margin-bottom:1em}.gform_wrapper{position:relative;overflow:hidden;background-color:#fff;font-family:roboto,sans-serif;font-weight:300;padding:2em 1em;opacity:0;animation:1s ease-in-out forwards fadein}.gform_wrapper .gform_heading h3,.gform_wrapper h2,.gform_wrapper h3{color:#157199;margin-bottom:1em;font-size:2.5em}.gform_wrapper .gfield_label{color:#157199;display:inline-block;font-size:1.1em;font-weight:700;line-height:1.35;margin-bottom:.3em;text-rendering:optimizeLegibility}.gform_wrapper .ginput_container .caret{font-size:1em}.gform_wrapper .ginput_container .ui-datepicker-trigger{height:0;opacity:0;width:0}.gform_wrapper .ginput_container>span input{width:99%}.gform_wrapper .ginput_container>span label{font-weight:500;display:none}.gform_wrapper .ginput_container>span:hover input:focus{background-color:transparent;border-radius:0}.gform_wrapper .ginput_container input{width:99%;height:3.5rem}.gform_wrapper .ginput_container_select select{height:3.5rem}.gform_wrapper .ginput_container_select select:focus{border:1px solid #157199;box-shadow:none}.gform_wrapper .checkbox-selection .gfield_description,.gform_wrapper .checkbox-selection .ginput_container_checkbox ul{margin-left:2em}.gform_wrapper .gform_footer{text-align:center}.gform_wrapper .gform_button.button,.gform_wrapper .gform_save_link{background-color:#13a4d2;border:2px solid #13a4d2;color:#fff;display:inline-block;letter-spacing:.05em;margin-bottom:1em;padding:.6em 1.5em;text-decoration:none;transition:all .3s ease;width:auto;border-radius:.3em;border-bottom:2px solid #3b4646;float:right}.gform_wrapper .gform_button.button:active,.gform_wrapper .gform_button.button:focus,.gform_wrapper .gform_button.button:hover,.gform_wrapper .gform_save_link:active,.gform_wrapper .gform_save_link:focus,.gform_wrapper .gform_save_link:hover{background:#32388c;border-color:#32388c;color:#fff;border-bottom:2px solid #3b4646}@media screen and (min-width:48em){.gform_wrapper{margin:3em auto}.gform_wrapper .gform_button.button,.gform_wrapper .gform_save_link{margin-right:1rem}.main-menu__item:not(.contact-btn).toplevel>a{color:#fff}}.gform_wrapper .gform_save_link{background:0 0;border-color:#13a4d2;color:#13a4d2;padding:.75em 1em;width:100%}@media screen and (min-width:701px){.gform_wrapper .gform_save_link{width:auto}}.gform_wrapper .gform_validation_container{display:none}.gform_wrapper textarea{border-color:#9e9e9e;border-radius:7px;height:10em;margin-top:1em;padding-left:1em;padding-right:1em;resize:none;width:100%}.gform_wrapper textarea:focus{border:1px solid #157199;box-shadow:none}.gform_wrapper .validation_error,.gform_wrapper .validation_message{color:#ff5d3f;font-weight:500}.gform_wrapper .gfield,.gform_wrapper .ginput_complex,.gform_wrapper .ginput_complex>span{position:relative}.gform_wrapper .ginput_complex>span{margin:.5em 0}.gform_wrapper .gfield_radio{max-width:300px;padding:0;margin-left:1.5em}.gform_wrapper .gfield_radio label{color:#3b4646}.gform_wrapper .ginput_complex>span.picked label{top:0;line-height:1.95rem;font-size:.8em}.gform_wrapper .gfield_html:not(:first-child) .gform_heading h3:first-child,.gform_wrapper .gfield_html:not(:first-child) h2:first-child,.gform_wrapper .gform_heading .gfield_html:not(:first-child) h3:first-child{margin-top:2em}.gf_list_inline ul{margin-top:1em;column-count:2;column-gap:1em}@media (min-width:48em){.gf_name_has_2 span{display:inline-block;width:46.5%;vertical-align:top}.gf_name_has_2 span:first-child{margin-right:2%}.gf_list_inline ul{column-count:3}.ginput_complex .address_city,.ginput_complex .address_state,.ginput_complex .address_zip{display:inline-block;width:46.5%;vertical-align:top}.ginput_complex .address_city{margin-right:2%}}.gform_wrapper select{border:1px solid #9e9e9e;margin-top:1em;position:relative}input{margin:0}@keyframes fadein{0%,30%{opacity:0}100%{opacity:1}}#field_2_22{margin-top:1em}form.discuss-form{display:none}form.discuss-form .gform_footer{margin-top:-.3em}@media screen and (max-width:59.999em){form.discuss-form{display:inline-block;width:100%}form.discuss-form .gform_button{float:none}}.site_branding,.site_branding a{display:inline-block;vertical-align:middle}.site_branding{margin:.75em 5.5%}.site_branding img{display:block;position:relative;width:17em;max-height:12em;max-width:17em}@media screen and (min-width:60em){.site_branding img{width:20em;max-height:14em;max-width:20em}}.site_branding a,.site_branding svg{position:relative;z-index:2}@media screen and (min-width:90em){.site_branding img{width:25em;max-height:17em;max-width:25em}.site_branding a,.site_branding svg{max-width:25em;width:25em}.branding-and-toggle{margin-left:2%}}.site_branding svg{height:100%;max-height:5em}.site_header{display:block;background:#e9eaee;position:relative}@media (min-width:75em){.site_header .main-menu{height:4em}}.site_header address{background:#185674;background:linear-gradient(to right,#00a0b3 0,#267298 100%);color:#fff;display:block;font-style:normal;height:3em;margin:0;padding:.65em 0;position:absolute;bottom:0;left:0;text-align:center;width:100%}.site_header address a{color:#fff;margin:0 auto}.slate-nav{left:0;width:100%}@media (min-width:60em){.site_header{padding-bottom:.5em;width:100%}.site_header address{height:.5em;padding:0}.site_header address a,.site_header address span{display:none}.slate-nav{width:auto;position:relative;vertical-align:middle;text-align:right}}.customer-login-title{display:none}@media screen and (min-width:60em){.customer-login-title{color:#686c6e;background-color:#e9eaee;font-weight:100;float:right;border-top:3px solid #b6b7bb;padding:1.2em 0 1em 2em;display:block}}.branding-and-toggle{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;position:relative}.menu-toggle{background:0 0;border:none;display:block;width:6em}@media screen and (min-width:22em){.menu-toggle{width:3em}}.menu-toggle__bar{height:5px;width:100%;background:#297ca5;display:block;margin:0 auto 5px;opacity:1;transition:transform .3s,width .3s}.menu-toggle.open>.menu-toggle__bar:nth-child(1){transform:translate(0,11px) rotate(45deg)}.menu-toggle.open>.menu-toggle__bar:nth-child(2){width:0}.menu-toggle.open>.menu-toggle__bar:nth-child(3){transform:translate(0,-9px) rotate(-45deg)}.tiered-header{background:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;width:100%}@media screen and (min-width:60em) and (min-width:75em){.tiered-header .site-header__branding{position:absolute;padding:2.1em 1em;top:0;left:0;z-index:2}}@media screen and (min-width:60em){.branding-and-toggle{position:absolute;top:50%;transform:translate(0,-50%)}.tiered-header{height:9em;border-bottom:2px solid #e9eaee}.tiered-header .site-header__branding{margin:0 auto}.tiered-header .site-header__menu.main-menu{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:60em) and (min-width:60em){.tiered-header .site-header__menu.main-menu{-ms-flex-pack:end;justify-content:flex-end;text-align:center}.tiered-header .site-header__menu.main-menu ul{width:100%}}@media screen and (min-width:110em){.tiered-header{padding:0 14rem}}.submenu-toggle{height:4.2em;width:5em;background:0 0;border:none;display:block;position:absolute;top:0;right:0;transition:background .5s}.submenu-toggle:after,.submenu-toggle:before{background:#fff;content:"";display:block;height:1px;width:1em;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(0);transition:transform .3s}.submenu-toggle:after{transform:translate(-50%,-50%) rotate(90deg)}.submenu-toggle.open:after{transform:translate(-50%,-50%) rotate(0)}.main-menu{min-height:4em;display:none;float:right;padding:0;margin:0}.main-menu .admin-login-mobile a:after{float:right;content:url(caret-down.svg)}@media screen and (min-width:60em){.submenu-toggle{height:4em;width:3em}.menu-toggle,.submenu-toggle{display:none}.main-menu__submenu .submenu-toggle{display:block}.main-menu .admin-login-mobile{display:none}.main-menu ul .main-menu__item--parent:after{content:url(caret-down.svg);position:absolute;left:50%;top:2rem;height:1rem;width:auto;transform:translate(-50%,0)}.main-menu ul .main-menu__item--parent:nth-child(2) .main-menu__submenu.main-menu__submenu--l1,.main-menu ul .main-menu__item--parent:nth-child(3) .main-menu__submenu.main-menu__submenu--l1{margin-left:-5rem}.main-menu ul .main-menu__item--parent:nth-child(3) .main-menu__submenu.main-menu__submenu--l1{margin-left:-9.25rem}.main-menu{display:inline-block;margin-top:0}.main-menu>ul[role=menu]{text-align:right}.main-menu>ul[role=menu]>li:hover>a{padding-bottom:1.7em;color:#13a4d2}}@media screen and (min-width:110em){.main-menu ul .main-menu__item--parent:nth-child(3) .main-menu__submenu.main-menu__submenu--l1{margin-left:-5rem}}.main-menu a{letter-spacing:1px;text-decoration:none}.main-menu ul{list-style:none;margin:0;padding:0}@media screen and (min-width:75em){.main-menu{margin-top:0}.main-menu>ul[role=menu]{text-align:right}}.main-menu li{background:#13a4d2}.main-menu li.toplevel:first-of-type{border-top:1px solid #fff}.main-menu__submenu{text-align:left}@media screen and (min-width:60em){.main-menu li{background:0 0;padding:0 1%}.main-menu li.toplevel:first-of-type{border-top:none}.main-menu__submenu{background:#363636}.main-menu__submenu--l1{box-shadow:none;background:#363636;position:absolute;left:0;width:18rem;z-index:111;opacity:0;top:85%;visibility:hidden}.main-menu__item--parent:hover>.main-menu__submenu--l1{top:100%;opacity:1;visibility:visible}}.main-menu__submenu--l1 li{background:#32388c;padding:0}.main-menu__item{display:block;border-bottom:1px solid #e9eaee;overflow:hidden;position:relative}.main-menu__item:last-child{border:none}@media screen and (max-width:60em){.main-menu__submenu--l1 li a:after{float:right;content:url(caret-down.svg)}.main-menu__item.subitem:first-of-type{border-top:1px solid #e9eaee}}@media screen and (min-width:60em){.main-menu__submenu--l1 li{z-index:500;display:none;background:#e9eaee}.main-menu__submenu--l1 li a{color:#fff}.main-menu__submenu--l1 li:first-child{border-top:1px solid #686c6e}.main-menu__submenu--l2{box-shadow:inset 0 0 27px rgba(0,0,0,.6)}.main-menu__item{display:inline-block;border:none;overflow:visible}.main-menu__item.subitem{display:block}.main-menu__item.subitem a{background-color:#13a4d2;color:#fff;border-bottom:1px solid #686c6e;border-left:1px solid #686c6e;border-right:1px solid #686c6e}.main-menu__item.subitem a:hover{background-color:#f383df;color:#fff}}.main-menu__item a{color:#fff;display:block;margin-top:0;padding:1.5rem 1.5rem 1.5rem 5.5%}.main-menu__item:not(.contact-btn).toplevel>a{font-size:1.2rem;font-weight:700;text-transform:uppercase;color:#fff}@media screen and (min-width:60em){.main-menu__item a{color:#363636;font-size:.8rem;padding:.75rem}.main-menu__item:not(.contact-btn).toplevel>a{color:#13a4d2}}.main-menu__item--l1 a{font-size:1em;padding-left:8.5%;text-transform:capitalize}@media screen and (min-width:60em){.main-menu__item--l1 a{color:#363636;padding:.75rem .75rem .75rem 1.15rem}.main-menu__item--parent{margin-left:1%;margin-right:1%}}.main-menu__item--l2 a{padding-left:3rem}.secondary-menu{height:6em;display:none;background:#13a4d2;border-bottom:1px solid #e9eaee}.secondary-menu .admin-login{display:none}.secondary-menu ul{margin:0}.secondary-menu ul li{text-align:center;padding:0}.secondary-menu ul li a{color:#fff;background-color:#157199;margin:1em;text-align:center;display:block;padding:1em;text-transform:uppercase;box-shadow:0 1px 0 #89bfd6;border-radius:.5em}.secondary-menu ul li a:hover{background:#297ca5}@media screen and (min-width:60em){.main-menu__item--parent:hover:after{top:1.75rem;transition:top .2s}.secondary-menu{display:block;border-bottom:none;background:0 0}.secondary-menu .admin-login{display:inline-block}.secondary-menu .admin-login ul li:first-child a{background-color:#13a4d2}.secondary-menu .admin-login ul li:first-child a:hover{background-color:#32388c}.secondary-menu ul{float:right}.secondary-menu ul li{display:inline-block}.secondary-menu ul li a{padding:.7em 1.5em;margin:.5em 1rem 0 0;background-color:#157199;border-radius:.2em;box-shadow:0 1.5px 0 #363636}.secondary-menu ul li a:hover{background-color:#297ca5}.secondary-menu ul li:first-child{margin-right:.8em}.secondary-menu ul li:first-child a{box-shadow:none;background:0 0;color:#297ca5;text-transform:capitalize;margin-top:0;padding:1.1em 1.5em}.secondary-menu ul li:first-child a:after{content:url(customer-login.svg);position:relative;float:right;display:inline-block;padding-left:.3em;transform:translate(0,13%)}}.contact-btn{padding:0;color:#fff}.contact-btn a{background-color:#13a4d2;border:2px solid #13a4d2;color:#fff;display:inline-block;letter-spacing:.05em;padding:.6em 1.5em;text-decoration:none;transition:all .3s ease;width:auto;margin:1em 1em 0 0}.contact-btn a:active,.contact-btn a:focus,.contact-btn a:hover{background:#fff;border-color:#fff;color:#fff;border-bottom:2px solid #3b4646}@media screen and (min-width:768px){.contact-btn a{margin:2em 1em 0 0}}_:-ms-fullscreen,:root .contact-btn a{margin-top:2.6em}_:-ms-fullscreen,:root .site_branding{padding-top:0;padding-bottom:0}_:-ms-fullscreen,:root .site_branding a{padding-top:0;padding-bottom:0}#dbs-chev{color:#fff;display:inline-block;float:right;font-family:sans-serif;font-size:1rem;margin-right:0;margin-top:-1.75em;position:relative;text-decoration:none;width:1em}#dbs-chev svg{width:1em;height:2em}#dbs-chev strong{display:block;float:right;font-size:.8em;font-weight:400;text-align:center;width:21em}#dbs-chev .text{background:rgba(54,54,54,.9);display:inline-block;float:left;max-width:0;overflow:hidden;padding:.25em 0;position:absolute;right:2em;top:1px;transition:all .5s ease-out}#dbs-chev a{color:#fff;text-decoration:none}#dbs-chev a:hover{color:#ccc}#dbs-chev polygon{fill:#fff}#dbs-chev.hover span,#dbs-chev:hover span{max-width:23em}.social-media__origin{display:none}.site-footer{background:#e9eaee;clear:both;overflow:hidden;color:#363636}.site-footer a{text-decoration:none}.site-footer a:not(.blue-button){color:#13a4d2}.site-footer a:not(.blue-button):hover{text-decoration:none}.site-footer .contact-number{color:#363636!important}.site-footer .contact-number:hover{text-decoration:underline!important}.gform_wrapper .gform_heading .site-footer h3,.site-footer .gform_wrapper .gform_heading h3,.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4{color:#fff}.site-footer__navigation{text-decoration:none;text-transform:uppercase}.site-footer__navigation ul{list-style:none;margin:0;padding:.5em;text-align:center}.site-footer__navigation li{display:inline-block;margin-right:1em}.site-footer__navigation li:last-child{margin-right:0}.site-footer__credits{display:inline-block;width:100%}.site-footer__credits .contain{padding:1rem 5.5%}@media screen and (min-width:60em){#dbs-chev .text{background:rgba(54,54,54,.2)}.site-footer__credits .contain{padding:1rem 1.5rem}}.site-footer .content-wrapper .contain{padding:1rem 5.5%}@media screen and (min-width:60em){.site-footer .content-wrapper .contain{padding:1rem 1.5rem}}@media screen and (min-width:60em) and (min-width:60em){.site-footer .content-wrapper .contain,.site-footer__credits .contain{padding:1rem}}.site-footer .contain{max-width:60rem}.site-footer .site_branding{margin:0}.site-footer .site_branding a{max-height:6em;max-width:none;margin:0 auto 0 -.8em;overflow:hidden;padding:0}.site-footer .site_branding svg{max-height:none;max-width:none;height:4.5em}.site-footer .site_branding img{position:relative;width:17em;max-height:12em;max-width:17em}@media screen and (min-width:90em){.main-menu{margin-top:0}.site-footer .site_branding a{margin-left:-4em}.site-footer .site_branding img{left:4em}}.site-footer__content{display:inline-block}.site-footer__content .tag-line{margin-top:1em}.site-footer__content .contact-information{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.site-footer__content .contact-information p{padding-right:2em}.tag-line-callout{display:table;font-weight:500;margin-bottom:4em;overflow:hidden;width:100%}.tag-line-callout .column{display:block;height:100%;min-height:100%;padding-bottom:120px;position:relative;text-align:center;vertical-align:top;white-space:normal;width:100%}.tag-line-callout .column .widow-slayer{display:block;margin:0 auto}.tag-line-callout .column:first-of-type .widow-slayer{max-width:282px}.tag-line-callout .column:last-of-type .widow-slayer{max-width:250px}.tag-line-callout .button{position:absolute;bottom:40px;left:50%;transform:translateX(-50%)}@media screen and (min-width:720px){.tag-line-callout .column{display:table-cell;padding-right:2em;padding-bottom:80px;text-align:left}.tag-line-callout .column .widow-slayer{margin:0}.tag-line-callout .column:first-of-type{width:55%}.tag-line-callout .column:last-of-type{width:45%}.tag-line-callout .button{bottom:0;left:0;transform:translateX(0)}}.tag-line-callout .button:hover{text-decoration:none}@media screen and (min-width:868px){.tag-line-callout{width:60%;max-width:390px;white-space:nowrap;float:left;max-width:390px;vertical-align:top}}.footer_menu{font-weight:500}@media screen and (min-width:48em){.secondary-menu{height:5em}.site-footer{border-top:4px solid #157199}.site-footer__content .contact-information{-ms-flex-direction:row;flex-direction:row;margin-top:3em}.footer_menu{border-top:0;border-left:1px solid #686c6e;float:right;padding-top:0;padding-left:2em;vertical-align:top;margin-top:2em}}.footer_menu ul li{padding:.5em 0}.footer_menu ul li a{color:#157199!important}.footer_menu ul li a:hover{color:#297ca5!important}.social-links a{display:inline-block}.social-links a span{background:#157199;padding:.1em .5em .5em;border-radius:.1em}.social-links a span svg{max-width:2em;max-height:1.5em;fill:#e9eaee;width:50%}.social-links a span svg:hover{fill:#157199}.social-links a span:hover svg{fill:#fff}.contact-info,.contact-info a{color:#fff;font-weight:300;line-height:2.5;text-decoration:none}@media screen and (min-width:868px){.contact-info,.contact-info a{line-height:1.5;margin-bottom:.5em}}.site-footer__credits{background:#fff;color:#363636;font-size:.9em;font-weight:500;padding:0 0 2em}@media screen and (min-width:48em){.site-footer__credits{background:#f8f8fa}}.legal-menu a:hover{color:#32388c}.legal-menu a:not(:last-of-type):after{content:' |';display:inline-block;padding:0 1em}.search-form{position:absolute;top:1em;right:1em;overflow:hidden;display:none}.search-form__container{display:block;float:left;position:relative;transition:all .4s ease-out;width:5em}.search-form__label{display:block;position:absolute;top:.5em;transition:all .4s ease-out}.search-form__field{width:12em;height:auto;background:rgba(255,255,255,0);border-bottom:1px solid transparent;border-radius:0;border:none;box-shadow:none;color:#3b4646;float:left;font-size:1em;font-weight:300;padding:.7em 0 .4em;transition:all .4s ease-out}.search-form__button{position:absolute;top:0;bottom:0;right:0;width:2em}.search-form--active{width:12em}.search-form--active .search-form__field{border-bottom-color:#686c6e}.search-form--active .search-form__label{font-size:.7em;top:-.55em;left:.1em}.blog-wrapper{max-width:68em;margin-left:auto;margin-right:auto}.blog-wrapper:after,.blog-wrapper:before{content:"";display:table}.blog-wrapper:after{clear:both}.blog-content{width:100%;margin-bottom:2em}.blog-content>article{padding-top:2em;padding-bottom:2em;border-bottom:1px solid rgba(0,0,0,.1)}.blog-content>article:last-child{border:none}.blog-content time.h4{margin-bottom:1em}.excerpt-read-more{text-decoration:none;text-transform:uppercase;position:relative;display:block;font-size:1em;margin-top:1em}.sidebar{margin-bottom:2em;padding-top:2em}.single .header-image .blog-title__container{padding:3em 1em}.single .header-image .blog-title__container h1{color:#fff;text-shadow:0 1px 3px #3b4646;max-width:31.25rem}@media screen and (min-width:48em){.blog-content:last-child{margin-right:0}.sidebar{float:left;display:block;margin-right:2.35765%;width:31.76157%}.sidebar:last-child{margin-right:0}.single .header-image .blog-title__container{max-width:60em;margin:auto;padding:7em 1em 3em}.single .header-image .blog-title__container h1{font-size:4em;margin-bottom:0}.blog-content__container,.blog-wrapper{max-width:60em;margin:0 auto;padding:0 1em}.contain.blog-wrapper{width:100%}.blog-content{float:none;display:inline-block;margin-right:2em;width:60%}}.blog-content{padding-top:0}.block--inner{padding:1em}.layout-callout-blocks{position:relative;max-width:91em;margin:1em auto}.gform_wrapper .gform_heading .layout-callout-blocks h3,.layout-callout-blocks .gform_wrapper .gform_heading h3,.layout-callout-blocks h2,.layout-callout-blocks h3,.layout-callout-blocks h4,.layout-callout-blocks h5,.layout-callout-blocks h6{color:#363636}.layout-callout-blocks .callout__repeater{display:block}@media screen and (min-width:48em){.block--inner{padding:2em 1em}.blog-content img{display:inline-block;height:auto;width:25%}.blog-content .excerpt.with-image{display:inline-block;width:59%;padding:0 1em}.single .blog-content img{width:50%}.layout-callout-blocks .callout__repeater{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.layout-callout-blocks .callout__repeater>div:nth-child(odd){margin-right:.5rem}.layout-callout-blocks .callout__repeater>div:nth-child(even){margin-left:.5rem}}.layout-callout-blocks .callout__repeater .callout-container{display:-ms-flexbox;display:flex;table-layout:fixed;overflow:hidden;position:relative;-ms-flex-direction:column;flex-direction:column;-ms-flex-preferred-size:100%;flex-basis:100%;border:1px solid #686c6e;margin:1rem;border-radius:.2rem;box-shadow:0 2px 0 #686c6e}.layout-callout-blocks .callout__repeater .callout-container .callout-img{display:block;height:auto;min-height:15em;position:relative;width:100%;vertical-align:top;overflow:hidden}@media screen and (min-width:90em){.layout-callout-blocks .callout__repeater .callout-container{-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-preferred-size:50%;flex-basis:50%}.layout-callout-blocks .callout__repeater .callout-container .callout-img{width:50%;order:2;-ms-flex-order:2}}.layout-callout-blocks .callout__repeater .callout-container .callout-img img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.layout-callout-blocks .callout__repeater .callout-container .callout-content{display:block;height:auto;position:relative;width:100%;vertical-align:top;color:#363636;font-weight:400;padding:1em 5.5%}@media screen and (min-width:90em){.layout-callout-blocks .callout__repeater .callout-container .callout-content{width:50%;order:1;-ms-flex-order:1;padding:1.5rem 5.5%}}.layout-callout-blocks .callout__repeater .callout-container .callout-content a{margin-bottom:0}.layout-callout-blocks .callout__repeater .callout-container .callout-content a.inline-button:after{border-color:#fff}.layout-collapsibles{padding:1rem 1.5rem;margin:0 auto;max-width:60rem}@media screen and (min-width:60em){.layout-collapsibles{padding:1rem}}.layout-collapsibles a,.layout-collapsibles a.inline-button{color:#fff}.layout-collapsibles a.inline-button:after{border-color:#fff}.layout-collapsibles a.inline-button:hover{text-decoration:underline}.layout-collapsibles a.inline-button:hover:after{border-color:inherit}.collapsible{border:1px solid #686c6e}.collapsible-row{overflow:hidden;border-top:1px solid #267298}.collapsible-row:first-of-type{border:none}.collapsible-row:last-of-type{margin-bottom:0}.collapsible-row h3{text-transform:none;font-size:1.5em;line-height:1.3}.collapsible_name{background:#dbdce3;color:#297ca5;cursor:pointer;margin-bottom:0;padding:1rem 4rem 1rem 2rem;position:relative}.collapsible_name:after,.collapsible_name:before{background-color:#297ca5;border-radius:10%;content:'';display:block;height:1.5rem;position:absolute;top:50%;right:2rem;width:.18rem;transform:translate(-100%,-50%)}.collapsible_name:before{transform:translate(-100%,-50%) rotate(90deg)}.collapsible_name.content-expanded:after{display:none}.collapsible_name:hover{background:#cccfd8}.collapsible_content{background:#fff;color:#3b4646;overflow:hidden;padding:2rem}@media screen and (min-width:48em){.collapsible_content{padding:3rem 2rem}}.layout-content_with_sidebar{padding:3rem 5.5% 0;font-size:0;margin:0 auto;max-width:60rem}@media screen and (min-width:60em){.layout-content_with_sidebar{padding:3rem 1rem 0}}.layout-content_with_sidebar .testimonial__source{margin-top:1em}.layout-content_with_sidebar .layout-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-size:1rem;vertical-align:top}.layout-content_with_sidebar.active-sidebar .sidebar.testimonial-sidebar{background:#157199;border-radius:.3em;color:#fff;font-weight:300;padding:.5em 2em 2em}.layout-content_with_sidebar.active-sidebar .sidebar.testimonial-sidebar:before{content:url(../../library/icons/src/quote2.svg);display:block;text-align:center;transform:scale(.5);width:7em;margin:0 auto}.layout-content_with_sidebar.active-sidebar .sidebar.testimonial-sidebar button{display:none}.layout-content_with_sidebar .image{overflow:hidden;-ms-flex-order:3;order:3}@media screen and (min-width:48em){.layout-content_with_sidebar .layout-content{display:inline-block}.layout-content_with_sidebar.active-sidebar .layout-content{width:67%}.layout-content_with_sidebar .image{float:right;max-width:55%}.layout-content_with_sidebar .image img{padding-left:3em}}.layout-content_with_sidebar .image+.layout{display:inline}.layout-content_with_sidebar .sidebar{display:block;float:none;font-size:1rem;padding-top:1rem}@media screen and (min-width:48em){.layout-content_with_sidebar .sidebar{display:inline-block;padding-left:1rem;padding-top:0;width:30%}}.layout-content_with_sidebar .layout-content{padding:0}.layout-content_with_sidebar .layout-content .layout:first-of-type{padding:0}.layout-content_with_sidebar .layout-content .layout:last-of-type{padding-bottom:0}.layout-content_with_sidebar .layout-content .layout-default{margin-top:-1rem;padding-left:0;padding-right:0;padding-top:1rem}.layout-content_with_sidebar+.layout-default{margin-top:-1rem}.layout-default{padding:3rem 5.5%}@media screen and (min-width:60em){.layout-default{padding:3rem 1rem}}.layout-default .container__inner{margin:0 auto;max-width:60rem}@media screen and (min-width:48em){.layout-content_with_sidebar .layout-content{padding-right:1rem}.layout-default{max-width:60rem;margin:0 auto}.layout-default .container__inner{max-width:60rem;margin:auto}}.layout-default .container__inner .awards__image,.layout-default .container__inner .awards__paragraph{display:inline-block;text-align:center;vertical-align:middle;margin-bottom:1em}.layout-default+.layout-default{margin-top:-3rem;padding-bottom:1rem}.layout-default+.layout-default:first-of-type{margin-top:-4rem}.intro{font-size:1.1rem;line-height:2}.hero-title-container{text-align:center;padding:1.5rem 0}.testimonial-with-image img{border-radius:.5em;padding:0;margin-bottom:1em;width:100%}.layout-flex-block{padding:1em;text-align:center}.flex-block__cell{width:100%}@media screen and (min-width:48em){.testimonial-with-image img{width:auto;float:right;padding:.5em;margin-bottom:0;border-radius:1em}.layout-flex-block{margin:auto;padding:4em}.flex-block__cell{padding:2em;width:33%}}.flex-block__repeater{padding:1em 0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;max-width:90em;margin:auto}.light-bg{background:#e9eaee}@media screen and (min-width:48em){.flex-block__repeater{padding:1em;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around}.light-bg .container__inner{max-width:48em;margin:auto}}.layout-half-and-half{position:relative}.layout-half-and-half .contain{max-width:100%}.layout-half-and-half .contain>div:nth-child(even) .half-and-half__left{-ms-flex-order:2;order:2}.layout-half-and-half .contain>div:nth-child(even) .half-and-half__right{-ms-flex-order:1;order:1}.layout-half-and-half .half-and-half__container{background:#fff;max-width:100%;border-top:3px solid #e9eaee;border-bottom:3px solid #e9eaee;position:relative;z-index:2}.layout-half-and-half .half-and-half__container h1,.layout-half-and-half .half-and-half__container h3{color:#363636}.layout-half-and-half .half-and-half__container+.half-and-half__container{border-top:0}.layout-half-and-half .half-and-half__left,.layout-half-and-half .half-and-half__right{max-width:100rem;vertical-align:middle}@media screen and (max-width:47.999em){.layout-half-and-half .half-and-half__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.layout-half-and-half .half-and-half__left,.layout-half-and-half .half-and-half__right{-ms-flex-order:1;order:1}.layout-half-and-half .half-and-half__left.bgimg,.layout-half-and-half .half-and-half__right.bgimg{max-width:none;width:100%}.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left{margin-bottom:.5em}}.layout-half-and-half .half-and-half-content__wrap{padding:1.75em 1.25em;z-index:1}@media screen and (min-width:468px){.layout-half-and-half .half-and-half-content__wrap{padding:12% 7.5%}}@media screen and (min-width:48em){.layout-half-and-half .half-and-half__container{display:table;width:100%;table-layout:fixed;margin:0 auto}.layout-half-and-half .half-and-half__left,.layout-half-and-half .half-and-half__right{display:table-cell;width:50%;height:auto}.layout-half-and-half .half-and-half__left{background-position:center;background-size:cover}.layout-half-and-half .half-and-half-content__wrap{max-width:38rem;margin:0 auto;padding:3em 4em}.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left .half-and-half-content__wrap,.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right .half-and-half-content__wrap{margin:0 auto}}.layout-half-and-half .half-and-half-bg__dark{background:#3b4646;color:#fff}.layout-half-and-half .bgimg{min-height:10em;background-size:cover;background-position:center center;background-repeat:no-repeat;background-color:#e9eaee;position:relative;overflow:hidden}.layout-half-and-half .bgimg img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@media screen and (min-width:47.999em){.layout-half-and-half .bgimg{padding-top:22vw;-ms-flex-order:0;order:0;height:0}}.layout-half-and-half.full-width-half-and-half{background:0 0;padding:0 0 4em}.layout-half-and-half.full-width-half-and-half:before{display:none}.gform_wrapper .gform_heading .layout-half-and-half.full-width-half-and-half h3,.layout-half-and-half.full-width-half-and-half .gform_wrapper .gform_heading h3,.layout-half-and-half.full-width-half-and-half h1,.layout-half-and-half.full-width-half-and-half h2,.layout-half-and-half.full-width-half-and-half h3,.layout-half-and-half.full-width-half-and-half h4,.layout-half-and-half.full-width-half-and-half h5{color:#fff}.layout-half-and-half.full-width-half-and-half .contain{max-width:none;padding:0}.layout-half-and-half.full-width-half-and-half .half-and-half__container{background:#00a0b3;background:linear-gradient(180deg,#00a0b3,#007280);max-width:none}.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left,.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right{color:#fff;padding-bottom:2rem;padding-top:2rem;vertical-align:middle}.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left:after,.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right:after{display:none}.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left .half-and-half-content__wrap,.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right .half-and-half-content__wrap{padding:1rem 1.5rem;max-width:40rem}@media screen and (min-width:60em){.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__left .half-and-half-content__wrap,.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right .half-and-half-content__wrap{padding:1rem}}@media screen and (max-width:47.999em){.layout-half-and-half.full-width-half-and-half .half-and-half__container .half-and-half__right{margin-top:.5em}}.layout-half-and-half.full-width-half-and-half .inline-button{color:#fff}.layout-half-and-half.full-width-half-and-half .inline-button:after{border-color:#fff}.layout-half-and-half.secondary-call-to-action{background:0 0;padding-bottom:0;padding-top:0}.layout-half-and-half.secondary-call-to-action:before{display:none}.layout-half-and-half.secondary-call-to-action .contain{max-width:60rem}.layout-half-and-half.secondary-call-to-action .half-and-half__container{min-height:0}.layout-half-and-half.secondary-call-to-action .half-and-half__container .half-and-half__left{text-align:left}.layout-half-and-half.secondary-call-to-action .half-and-half__container .half-and-half__left .half-and-half-content__wrap{padding-left:1rem}.layout-half-and-half.secondary-call-to-action .half-and-half__container .half-and-half__right{text-align:right}.layout-half-and-half.secondary-call-to-action .half-and-half__container .half-and-half__right .half-and-half-content__wrap{padding-right:1rem}.layout-half-and-half.half-and-half-call-to-action{background:0 0;padding:0}.layout-half-and-half.half-and-half-call-to-action:before{display:none;content:none}.layout-half-and-half.half-and-half-call-to-action .contain{max-width:none}.layout-half-and-half.half-and-half-call-to-action ul{margin-left:0;padding-left:0}.layout-half-and-half.half-and-half-call-to-action ul li{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;list-style:none;padding-left:0;margin-bottom:2em;margin-left:0}.layout-half-and-half.half-and-half-call-to-action ul li img{display:none}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container{max-width:none}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left{margin:0}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left .half-and-half-content__wrap{padding-bottom:3em}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left:after{border-top:1px solid #686c6e;display:-ms-flexbox;display:flex;margin:0 auto;width:90%;content:''}@media screen and (min-width:48em){.layout-half-and-half.half-and-half-call-to-action ul li img{display:inline-block;float:left;margin-right:5%;width:33.33%}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left{border-right:1px solid #686c6e;margin:0 auto}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left .half-and-half-content__wrap{padding-bottom:0}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__left:after{display:none}}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__right{margin:0;padding-top:2em}@media screen and (min-width:48em){.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half__right{margin:0 auto;padding-top:0}}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half-content__wrap{padding:1rem 1.5rem;margin:0}@media screen and (min-width:60em){.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half-content__wrap{padding:1rem}}.gform_wrapper .gform_heading .layout-half-and-half.half-and-half-call-to-action .half-and-half__container h3,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .gform_wrapper .gform_heading h3,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container h1,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container h2,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container h3,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container h4,.layout-half-and-half.half-and-half-call-to-action .half-and-half__container h5{color:#757371}.layout-half-and-half.half-and-half-call-to-action .half-and-half__container p{color:#3b4646}.layout-half-and-half.no-bg{background:0 0}.layout-half-and-half.no-bg:before{content:none}.gform_wrapper .gform_heading .layout-half-and-half.no-bg h3,.layout-half-and-half.no-bg .gform_wrapper .gform_heading h3,.layout-half-and-half.no-bg h1,.layout-half-and-half.no-bg h2,.layout-half-and-half.no-bg h3,.layout-half-and-half.no-bg h4,.layout-half-and-half.no-bg h5,.layout-half-and-half.no-bg h6,.layout-half-and-half.no-bg p{color:#3b4646}.layout-half-and-half.no-bg .half-and-half__container{background:0 0}.default-half-and-half-layout,.primary-cta{margin:1rem 0 1em;padding:0}.default-half-and-half-layout .contain .half-and-half__container,.primary-cta .contain .half-and-half__container{padding:0;border-top:none;border-bottom:none}.default-half-and-half-layout .contain .half-and-half__left,.primary-cta .contain .half-and-half__left{background-color:#e9eaee;padding:1em;-ms-flex-order:2;order:2}@media screen and (min-width:48em){.layout-half-and-half.half-and-half-call-to-action .half-and-half__container .half-and-half-content__wrap{margin:0 auto}.default-half-and-half-layout .contain .half-and-half__left,.primary-cta .contain .half-and-half__left{width:85%}}@media screen and (min-width:90em){.default-half-and-half-layout .contain .half-and-half__left,.primary-cta .contain .half-and-half__left{width:50%}}.default-half-and-half-layout .contain .half-and-half__left .half-and-half-content__wrap,.primary-cta .contain .half-and-half__left .half-and-half-content__wrap{padding:.5em;-ms-flex-order:1;order:1}.default-half-and-half-layout .contain .half-and-half__left .half-and-half-content__wrap h1,.primary-cta .contain .half-and-half__left .half-and-half-content__wrap h1{color:#297ca5}.default-half-and-half-layout .contain .half-and-half__left .half-and-half-content__wrap h3,.primary-cta .contain .half-and-half__left .half-and-half-content__wrap h3{font-size:1.3em;color:#157199;line-height:1.5}.default-half-and-half-layout .contain .half-and-half__right,.primary-cta .contain .half-and-half__right{padding:6% 1em}.layout-full-width{text-align:center;position:relative}.layout-full-width .contain{position:relative;z-index:1;padding:3rem 5.5%}@media screen and (min-width:60em){.default-half-and-half-layout .contain .half-and-half__left .half-and-half-content__wrap,.primary-cta .contain .half-and-half__left .half-and-half-content__wrap{padding:4em 1em 4em 3em}.layout-full-width .contain{padding:1rem 1.5rem}.layout-full-width .full-width__content{margin:4em 0}}@media screen and (min-width:60em) and (min-width:60em){.layout-full-width .contain{padding:1rem}}.layout-full-width.bg-light:before{background-color:#b3b3b3;content:'';display:block;height:100%;position:absolute;width:100%;opacity:.2;z-index:0}.layout-full-width.empty:not(.bg-img){display:none}.layout-full-width.bg-offset-bottom-right{background-position:bottom right;background-size:contain}.layout-full-width.bg-offset-bottom-right.bg-image-contain{background-size:contain;background-repeat:no-repeat}.layout-full-width.bg-offset-bottom-right .full-width__content{max-width:38rem}.layout-full-width.bg-offset-right{background-position:85% center;background-size:contain}.layout-full-width.bg-offset-right .full-width__content{max-width:38rem}@media screen and (max-width:47.999em){.layout-full-width.mobile-img-top{padding-top:64%;background-position:top center}.layout-full-width.mobile-img-top:before{margin-top:-64%}}.layout-full-width .full-width__content p{margin:1rem auto;max-width:45em;padding-right:2rem}.layout-full-width .full-width__content p:last-of-type{margin-bottom:0}.layout-full-width .full-width__content p:last-of-type>a:last-of-type{margin-top:1em}.arrow-link-list-style .full-width__content{max-width:38rem}.arrow-link-list-style ul{display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start;font-size:0;margin-left:0;padding-top:1rem}.arrow-link-list-style ul li{display:inline-block;font-size:1rem;margin-left:0;padding:.5em;width:100%}@media screen and (max-width:32em){.arrow-link-list-style ul li:nth-of-type(n+2){border-top:1px solid;border-color:rgba(80,73,151,.7)}}@media screen and (min-width:32em){.arrow-link-list-style ul li{width:40%}.arrow-link-list-style ul li:nth-of-type(1),.arrow-link-list-style ul li:nth-of-type(2){border-bottom:1px solid;border-color:rgba(80,73,151,.7)}.arrow-link-list-style ul li:nth-of-type(odd){margin-right:5%}}.arrow-link-list-style ul li a{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;margin-right:0;padding:.5em 2% .5em 0;width:100%}.locations-map:not(.layout-large-full-width) .full-width__content{display:block;-ms-flex-direction:column-reverse;flex-direction:column-reverse;width:100%}.locations-map .locations-map--container{height:100%}@media screen and (min-width:48em){.locations-map .locations-map--container{position:absolute;right:0;top:0;width:70%}}.testimonial-full-width{margin-bottom:1em!important}.testimonial-full-width p{text-align:left;max-width:60em!important}.layout-large-full-width{position:relative;padding:1.5rem 2.5%}.layout-large-full-width .contain{max-width:64em}.layout-large-full-width .container__inner{padding:1rem 1.5rem;position:relative;background:#fff;-ms-flex-pack:center;justify-content:center;z-index:1;margin-bottom:-1.5em}@media screen and (min-width:60em){.layout-large-full-width .container__inner{padding:1rem;margin-bottom:-3.5em}}.layout-large-full-width .container__inner .content{display:inline-block;vertical-align:middle}@media screen and (min-width:48em){.layout-large-full-width .container__inner{padding:2rem}.layout-large-full-width .container__inner .content{max-width:60%}}.layout-large-full-width .container__inner .secondary_image{margin:0 auto;max-width:30em;vertical-align:top;width:100%}@media screen and (min-width:48em){.layout-large-full-width .container__inner .secondary_image{display:inline-block;margin:auto;max-width:39%;padding-left:1em}}.layout-large-full-width .container__inner .secondary_image img{vertical-align:bottom}.layout-large-full-width.bg-img:before{display:none}.layout-large-full-width+.layout-half-and-half{margin-top:2em}.layout-media-object{padding:1rem 1.5rem;margin:0 auto;max-width:60rem}.layout-media-object .content-wrapper{width:100%;height:100%;overflow:visible}.layout-media-object .content-wrapper .image-content{float:left;width:6em;padding-right:1em}.layout-media-object .content-wrapper .image-content img{max-width:100%;vertical-align:middle}.layout-media-object .content-wrapper .content ul{margin-left:-.5em}.layout-media-object.shrink-media-object{padding:0 5.5%}@media screen and (min-width:48em){.layout-media-object .content-wrapper .image-content{width:11em;display:inline-block}.layout-media-object .content-wrapper .content{display:inline-block;padding-top:0;vertical-align:top}.layout-media-object.contains-image .content-wrapper .content{padding-left:1rem;width:70%}.layout-media-object.shrink-media-object{padding:1rem}}.layout-default+.layout-media-object{padding-top:0}.layout-default+.layout-media-object .content-wrapper{padding-bottom:0;padding-top:0}.layout-default+.layout-media-object+.layout-media-object{padding-top:0}.layout-default+.layout-media-object+.layout-media-object .content-wrapper{padding-bottom:0;padding-top:0}.layout-default+.layout-media-object+.layout-media-object+.layout-media-object{padding-top:0}.layout-default+.layout-media-object+.layout-media-object+.layout-media-object .content-wrapper,.layout-media-object+.layout-media-object .content-wrapper{padding-bottom:0;padding-top:0}@media screen and (min-width:60em){.layout-media-object{padding:1rem}.page-id-350 .layout-media-object{padding-bottom:2rem}}.page-id-350 .layout-media-object .image-content{display:inline-block;text-align:center;max-width:30%;float:left;margin:2em 1em .25em 0}.page-id-350 .layout-media-object .image-content img{max-width:100%;vertical-align:middle}.pagination{margin-top:1em;margin-bottom:1em;text-align:center}.pagination__current,.pagination__link,.pagination__more{display:inline-block;padding:.5em 1em;text-decoration:none;border-radius:3px}.pagination__link{font-weight:lighter;background:#e9eaee}.pagination__current{font-weight:700;background:#fff}.layout-testimonial-slider .testimonial-slider{width:100%;padding:1rem;margin:0 auto}@media screen and (min-width:48em){.page-id-350 .layout-media-object .image-content{margin:0}.page-id-350 .layout-media-object.contains-image .content-wrapper .content{padding-left:5%;width:70%}.layout-testimonial-slider .testimonial-slider{max-width:50em;padding:3rem 0 0}.layout-testimonial-slider .testimonial-slider .slick-slide{padding-left:3em}.layout-testimonial-slider .testimonial-slider:before{float:left}}.layout-testimonial-slider .testimonial-slider .slick-slide .testimonial__quote{color:#157199;padding-bottom:2rem}.layout-testimonial-slider .testimonial-slider .slick-slide .testimonial__source{color:#686c6e}.layout-testimonial-slider .testimonial-slider .slick-slide .testimonial__source-title{display:block}.layout-testimonial-slider .testimonial-slider:before{content:url(../../library/icons/src/quote.svg);display:block;height:9em;width:7em;margin:0 auto}.layout-two-in-one .parent-container{background:#e9eaee;padding:2em 1em}.layout-two-in-one .parent-container .primary-content{background:#e9eaee}@media screen and (min-width:48em){.layout-two-in-one .parent-container{text-align:center;margin:2em 0 5em}.layout-two-in-one .parent-container .primary-content{padding:2rem 0}.layout-two-in-one .parent-container .primary-content p{max-width:45em;margin:1em auto;padding-right:2em}}.layout-two-in-one .parent-container .secondary_content{font-family:roboto,sans-serif;font-weight:100;background:#157199;margin:0;padding:0;color:#fff;text-transform:uppercase}.layout-two-in-one .parent-container .secondary_content li,.layout-two-in-one .parent-container .secondary_content ul{margin-left:0;list-style:none}.layout-two-in-one .parent-container .secondary_content li:before{transform:scale(.5);position:absolute;height:auto;width:auto;left:0;top:-.5em;bottom:0;right:auto;padding-bottom:5%}@media screen and (min-width:48em){.layout-two-in-one .parent-container .secondary_content{display:table;width:100%;text-align:center}.layout-two-in-one .parent-container .secondary_content li{width:24%;display:table-cell;border-bottom:none;padding:0;top:0}.layout-two-in-one .parent-container .secondary_content li:before{transform:none;display:block;margin:0 auto;position:relative;width:5em}}.layout-two-in-one .parent-container .secondary_content li{border-bottom:1px solid #fff;padding:1.5em 1em 1.5em 5em;position:relative}.layout-two-in-one .parent-container .secondary_content li.snap:before{content:url(../../library/icons/src/snap.svg)}.layout-two-in-one .parent-container .secondary_content li.easy-use:before{content:url(../../library/icons/src/easy-to-use.svg)}.layout-two-in-one .parent-container .secondary_content li.private:before{content:url(../../library/icons/src/private.svg)}.layout-two-in-one .parent-container .secondary_content li.personal-support:before{padding-bottom:0;content:url(../../library/icons/src/personal-support.svg)}.layout-two-in-one .parent-container .secondary_content li.camera-sefety:before{padding-bottom:0;content:url(../../library/icons/src/camera-safety.svg)}.layout-two-in-one .parent-container .secondary_content li.telecare:before{padding-bottom:0;content:url(../../library/icons/src/telecare.svg)}.layout-two-in-one .parent-container .secondary_content li.door-ajar:before{content:url(../../library/icons/src/door-ajar.svg)}.layout-two-in-one .parent-container .secondary_content li.medication:before{content:url(../../library/icons/src/medication.svg)}.layout-two-in-one .parent-container .secondary_content li.falling:before{padding-bottom:0;content:url(../../library/icons/src/falling.svg)}.layout-two-in-one .parent-container .secondary_content li.live-video:before{content:url(../../library/icons/src/live-video.svg)}.layout-two-in-one .parent-container .secondary_content li.alerts:before{content:url(../../library/icons/src/alerts.svg)}.layout-two-in-one .parent-container .secondary_content li.two-way-chat:before{padding-bottom:0;content:url(../../library/icons/src/two-way-chat.svg)}.layout-two-in-one .parent-container .secondary_content li.family:before{content:url(../../library/icons/src/family.svg)}.layout-default .gform_wrapper{padding:0;margin:0}.layout-default .gform_wrapper .discuss-form{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:relative}.layout-default .gform_wrapper .discuss-form .validation_error{display:table-header-group}.layout-default .gform_wrapper .discuss-form .gform_body{display:inline-block;vertical-align:top}.layout-default .gform_wrapper .discuss-form .gform_body ul li{margin-right:.2em;width:100%}.layout-default .gform_wrapper .discuss-form .gform_footer{margin:0 auto}@media screen and (min-width:60em){.layout-default .gform_wrapper .discuss-form{display:table;position:relative}.layout-default .gform_wrapper .discuss-form .gform_body ul{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:35em}.layout-default .gform_wrapper .discuss-form .gform_footer{vertical-align:top;display:inline-block;margin-top:2.25em;position:relative}.layout-default .gform_wrapper .discuss-form .gform_footer img{position:absolute;top:-2em;left:40%}}@media screen and (min-width:48em){.layout-two-in-one .parent-container .secondary_content{max-width:69em;margin:0 auto -5em}.layout-two-in-one .parent-container .secondary_content li{padding:5% 1% 3%;border-bottom:none}.news__header{padding-bottom:4em;margin:0 2em}}.gform_wrapper .gform_heading .news__header h3,.news__header .gform_wrapper .gform_heading h3,.news__header h2{display:inline-block;margin:0;text-transform:uppercase}.news__header a{float:right;text-decoration:none;text-transform:uppercase}.news__wrap{padding:1em}.latest-news-block img{height:15em;margin:0 0 1rem}.latest-news-block h1{margin:0 0 1rem}.latest-news-block time{display:block;margin:0 0 1rem}div.date-and-title{margin:0}.latest-news.underline .news__header{margin-bottom:1em;padding-bottom:3em;position:relative;border-bottom:3px solid #ccc}@media screen and (min-width:48em){.news__wrap{margin:auto;max-width:90em;padding:0;text-align:justify}.news__wrap:after{content:'';display:inline-block;width:100%}.latest-news-block{display:inline-block;padding:2em;vertical-align:top;width:33%}.latest-news.underline .news__header{margin-bottom:0;padding-bottom:2em}}.latest-news.underline .news__header:before{border-bottom:3px solid #ed5c41;content:'';position:absolute;bottom:-3px;left:0;width:8em}.latest-news.underline .date-and-title{margin-bottom:2em}.latest-news.underline h1{position:relative}.latest-news.underline h1:before{border-bottom:3px solid #ed5c41;content:'';position:absolute;bottom:-2rem;left:0;width:2em}.latest-news.underline .excerpt-read-more{background-color:#ed5c41;border:2px solid #ed5c41;color:#fff;letter-spacing:.05em;margin-bottom:1em;padding:.6em 1.5em;text-decoration:none;transition:all .3s ease;width:auto;display:table;margin-top:2em}.latest-news.underline .excerpt-read-more:active,.latest-news.underline .excerpt-read-more:focus,.latest-news.underline .excerpt-read-more:hover{background:#fff;border-color:#fff;color:#fff;border-bottom:2px solid #3b4646}.latest-news.text-overlay{position:relative}@media screen and (min-width:48em){.latest-news.text-overlay .news__header{margin:0 2em;width:95%;display:table;padding:0}}.gform_wrapper .gform_heading .latest-news.text-overlay .news__header h3,.latest-news.text-overlay .news__header .gform_wrapper .gform_heading h3,.latest-news.text-overlay .news__header h2{padding-left:.5em;position:relative}.gform_wrapper .gform_heading .latest-news.text-overlay .news__header h3:before,.latest-news.text-overlay .news__header .gform_wrapper .gform_heading h3:before,.latest-news.text-overlay .news__header h2:before{border-left:3px solid #ed5c41;content:'';height:1.5em;position:absolute;left:0;top:50%;transform:translateY(-50%);width:3px}.latest-news.text-overlay .news__header a{position:absolute;bottom:2em;right:2em;text-decoration:underline}.latest-news.text-overlay .container__inner{margin-bottom:0;position:relative}.latest-news.text-overlay .date-and-title{margin-bottom:2em;position:absolute;bottom:0;left:5%;width:90%}.latest-news.text-overlay .date-and-title h1,.latest-news.text-overlay .date-and-title time{color:#fff}.latest-news.text-overlay p{display:none}.latest-news.card{background:#eee;padding:2em 0;position:relative}.gform_wrapper .gform_heading .latest-news.card .news__header h3,.latest-news.card .news__header .gform_wrapper .gform_heading h3,.latest-news.card .news__header h2{text-transform:none}@media screen and (max-width:48em){.gform_wrapper .gform_heading .latest-news.card .news__header h3,.gform_wrapper .gform_heading .latest-news.text-overlay .news__header h3,.latest-news.card .news__header .gform_wrapper .gform_heading h3,.latest-news.card .news__header h2,.latest-news.text-overlay .news__header .gform_wrapper .gform_heading h3,.latest-news.text-overlay .news__header h2{margin-bottom:1em}}.latest-news.card .news__header a{position:absolute;bottom:2em;left:50%;transform:translatex(-50%);text-decoration:underline}.latest-news.card .container__inner{background-color:#fff;border:1px solid #ccc;padding-top:0;transition:all .3s ease}@media screen and (min-width:48em){.latest-news.card .news__header{margin:0 2em;width:95%;display:table;padding:0}.latest-news.card .news__header a{bottom:3em}.latest-news.card .container__inner:hover{transform:scale(1.025);box-shadow:3px 3px 3px #666}}.latest-news.card .date-and-title{padding:0 1em}.latest-news.card p{display:none}.home .layout-callout-blocks{border-top:6px solid #fff}.layout-homepage-header{height:auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:relative;padding-bottom:0}.layout-homepage-header .container__video-left video{height:100%;width:auto}@media screen and (min-width:60em){.layout-homepage-header{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.layout-homepage-header .container__video-left video{position:absolute;transform:translate(-20%,0)}.layout-homepage-header .container__video-left{width:70%;position:relative;z-index:1;overflow:hidden}.layout-homepage-header .container__video-left:after{background:linear-gradient(to right,transparent 0,#fff 66%);content:'';display:block;height:100%;position:absolute;bottom:0;width:35%;z-index:100;top:0;right:-1em}}@media screen and (min-width:90em){.layout-homepage-header .container__video-left video{position:absolute;transform:translate(-10%,0)}.layout-homepage-header .container__video-left:after{right:-6em;width:37%}}@media screen and (min-width:100em){.layout-homepage-header .container__video-left:after{right:initial;left:38em}}.layout-homepage-header .container__slider-left{background:#d5d8df;display:block}.layout-homepage-header .container__slider-left .image-container{height:0;padding-top:13%}.layout-homepage-header .container__slider-left:after{background:linear-gradient(to bottom,transparent 0,#fff 60%);content:'';display:block;height:60%;position:absolute;bottom:-1px;width:100%;z-index:100}@media screen and (min-width:22em){.layout-homepage-header .container__slider-left:after{height:52%}}.layout-homepage-header .container__slider-left .slide img{position:absolute;top:-12%;left:50%;transform:translateX(-50%);width:100%}.layout-homepage-header .container__content-right{position:relative;background:#fff;width:100%;margin-bottom:-5em}@media screen and (min-width:32em){.layout-homepage-header .container__content-right{margin-bottom:-7em}}@media screen and (min-width:60em){.layout-homepage-header .container__slider-left{display:none}.layout-homepage-header .container__content-right{padding:5% 2%;width:50%;background:0 0;position:relative;left:-6em;z-index:50;margin-bottom:0}}@media screen and (min-width:110em){.layout-homepage-header .container__content-right{padding:3vw 2%}}.layout-homepage-header .container__content-right .full-width__content{position:relative;top:-18vw;padding:5%;z-index:1000}.layout-homepage-header .container__content-right .full-width__content p{color:#363636;font-weight:400;line-height:1.5}.layout-homepage-header .container__content-right .full-width__content p strong{font-weight:100;font-size:1.5em}@media screen and (min-width:60em){.layout-homepage-header .container__content-right .full-width__content{top:0;padding:0}}@media screen and (min-width:90em){.layout-homepage-header .container__content-right .full-width__content{max-width:35em;z-index:100;padding:0}}.layout-homepage-header .contain{max-width:66rem}.layout-homepage-header .referral-form{background-color:#00a0b3;border-radius:0 5em 5em 0;color:#fff;font-size:.95em;font-weight:300;line-height:1.1;width:8.5em;margin-top:1em;padding:.4em 1.25em .4em 1em;position:absolute;top:0;left:0;text-align:left;text-decoration:none;z-index:2}@media screen and (min-width:48em){.layout-homepage-header .referral-form{margin-top:2em;font-size:1em}}.layout-homepage-header .referral-form span{position:relative;display:inline-block;width:5em}.layout-homepage-header .referral-form span:after{background-image:url(../images/referral-white.svg);background-position:center center;background-repeat:no-repeat;background-size:100% 98%;content:'';height:1.5em;position:absolute;left:100%;top:.24em;width:1.2em}@media screen and (min-width:1440px){.layout-homepage-header .referral-form span:after{height:1.6em;width:1.3em}}.layout-homepage-header .referral-form:hover{background-color:#fff}.layout-homepage-header .referral-form:hover span:after{background-image:url(../images/referral-green.svg)}.canvas .vzaar_media_player canvas{position:relative!important}.animation-container{position:relative;background:#ededed;text-align:center;overflow:hidden}.animation-container>h2,.gform_wrapper .gform_heading .animation-container>h3{position:relative;z-index:5;max-width:20em;margin:2rem auto}.animation-container .disclaimer{position:relative;z-index:4;font-size:.7em;color:#686c6e;margin:0 auto;padding:1em}.animation-container-inner-width{position:relative;padding:1em 0;width:100%;margin:0 auto;max-width:64em;height:100%}@media screen and (min-width:55em){.animation-container.slick-activated .alt-content-inner{height:34.75em;max-width:67em;background:url(../images/building.jpg) right center/auto 44em no-repeat;margin-top:-3rem;position:relative;top:50%;transform:translate(-8%,-46%) scale(.929)}}@media screen and (min-width:55em) and (min-width:61em){.animation-container.slick-activated .alt-content-inner{transform:translate(0,-46%) scale(1)}}.animation-container.slick-activated .alt-content{position:absolute;height:100%;width:44em;top:0;left:20em;display:none}.animation-container.slick-activated .alt-content svg{height:21.65em;width:65%;left:12.5%;position:absolute;top:50%;transform:translate(0,-68%)}.animation-container .connector{display:block;position:absolute;top:12%;right:17%;border-left:none;border-top:none;height:0%;width:0%}.animation-container .connector:after{content:"";position:absolute;top:0;right:0;width:2px;height:100%;background:#686c6e}.animation-container .connector:before{content:"";position:absolute;bottom:0;right:0;height:2px;width:80%;background:#686c6e}@media screen and (min-width:61em){.animation-container>h2,.gform_wrapper .gform_heading .animation-container>h3{margin:2rem auto 4rem}.animation-container .connector{right:13%}.animation-container .connector:before{width:93%}}.animation-container .bubble{position:absolute;top:0;right:9%;border-radius:50em;height:7em;width:7em;border:3px solid #686c6e;z-index:3;pointer-events:none;opacity:0;transform:scale(0);transition:.5s all ease-in-out;animation-name:bubbleOut;animation-duration:.5s}@media screen and (min-width:61em){.animation-container .bubble{right:5%}}.animation-container .bubble span{display:block;overflow:hidden;border-radius:50%;position:relative;height:100%;width:100%;z-index:2}.animation-container .bubble:after{content:"";display:block;height:100%;width:100%;border:1px solid #fff;border-radius:50%;top:0;left:0;position:absolute;transform-origin:center;z-index:1;animation-name:bubbleBlipOut;animation-duration:.5s}.animation-container .bubble.bottom-left{top:60%;right:70%}.animation-container .bubble img{position:absolute;top:50%;left:50%;height:101%;max-width:none;transform:translate(-50%,-50%)}.animation-container .connector{pointer-events:none;opacity:0;transition:.5s all ease-in-out;animation-name:connectorOut;animation-duration:.5s}.animation-container[data-active-slide="0"] .alt-0 .bubble,.animation-container[data-active-slide="1"] .alt-1 .bubble,.animation-container[data-active-slide="2"] .alt-2 .bubble,.animation-container[data-active-slide="3"] .alt-3 .bubble,.animation-container[data-active-slide="4"] .alt-4 .bubble,.animation-container[data-active-slide="5"] .alt-5 .bubble,.animation-container[data-active-slide="6"] .alt-6 .bubble,.animation-container[data-active-slide="7"] .alt-7 .bubble,.animation-container[data-active-slide="8"] .alt-8 .bubble,.animation-container[data-active-slide="9"] .alt-9 .bubble{animation:.5s 1s forwards bubble-1-In}.animation-container[data-active-slide="0"] .alt-0 .bubble:after,.animation-container[data-active-slide="1"] .alt-1 .bubble:after,.animation-container[data-active-slide="2"] .alt-2 .bubble:after,.animation-container[data-active-slide="3"] .alt-3 .bubble:after,.animation-container[data-active-slide="4"] .alt-4 .bubble:after,.animation-container[data-active-slide="5"] .alt-5 .bubble:after,.animation-container[data-active-slide="6"] .alt-6 .bubble:after,.animation-container[data-active-slide="7"] .alt-7 .bubble:after,.animation-container[data-active-slide="8"] .alt-8 .bubble:after,.animation-container[data-active-slide="9"] .alt-9 .bubble:after{animation:.75s 1.25s forwards bubbleBlipIn}.animation-container[data-active-slide="0"] .alt-0 .bubble.bottom-left,.animation-container[data-active-slide="1"] .alt-1 .bubble.bottom-left,.animation-container[data-active-slide="2"] .alt-2 .bubble.bottom-left,.animation-container[data-active-slide="3"] .alt-3 .bubble.bottom-left,.animation-container[data-active-slide="4"] .alt-4 .bubble.bottom-left,.animation-container[data-active-slide="5"] .alt-5 .bubble.bottom-left,.animation-container[data-active-slide="6"] .alt-6 .bubble.bottom-left,.animation-container[data-active-slide="7"] .alt-7 .bubble.bottom-left,.animation-container[data-active-slide="8"] .alt-8 .bubble.bottom-left,.animation-container[data-active-slide="9"] .alt-9 .bubble.bottom-left{animation-delay:2.75s}.animation-container[data-active-slide="0"] .alt-0 .bubble.bottom-left:after,.animation-container[data-active-slide="1"] .alt-1 .bubble.bottom-left:after,.animation-container[data-active-slide="2"] .alt-2 .bubble.bottom-left:after,.animation-container[data-active-slide="3"] .alt-3 .bubble.bottom-left:after,.animation-container[data-active-slide="4"] .alt-4 .bubble.bottom-left:after,.animation-container[data-active-slide="5"] .alt-5 .bubble.bottom-left:after,.animation-container[data-active-slide="6"] .alt-6 .bubble.bottom-left:after,.animation-container[data-active-slide="7"] .alt-7 .bubble.bottom-left:after,.animation-container[data-active-slide="8"] .alt-8 .bubble.bottom-left:after,.animation-container[data-active-slide="9"] .alt-9 .bubble.bottom-left:after{animation:.75s 3.25s forwards bubbleBlipIn}.animation-container[data-active-slide="0"] .alt-0 .connector,.animation-container[data-active-slide="1"] .alt-1 .connector,.animation-container[data-active-slide="2"] .alt-2 .connector,.animation-container[data-active-slide="3"] .alt-3 .connector,.animation-container[data-active-slide="4"] .alt-4 .connector,.animation-container[data-active-slide="5"] .alt-5 .connector,.animation-container[data-active-slide="6"] .alt-6 .connector,.animation-container[data-active-slide="7"] .alt-7 .connector,.animation-container[data-active-slide="8"] .alt-8 .connector,.animation-container[data-active-slide="9"] .alt-9 .connector{animation:1.5s 1.5s forwards connector-In}.animation-container[data-active-slide="6"] .alt-6 .bubble{animation-delay:2.25s}.animation-container[data-active-slide="6"] .alt-6 .connector{animation-delay:2.75s}.animation-container[data-active-slide="6"] .alt-6 .bubble.bottom-left{animation-delay:4s}.animation-container #Scene_0,.animation-container #Scene_1,.animation-container #Scene_2,.animation-container #Scene_3,.animation-container #Scene_4,.animation-container #Scene_5,.animation-container #Scene_6,.animation-container #Scene_7,.animation-container #Scene_7_1_,.animation-container #Scene_8,.animation-container #Scene_9{opacity:0;transition:.5s all ease-in-out;animation-name:sceneOut;animation-duration:.5s}.animation-container[data-active-slide="0"] #Scene_0,.animation-container[data-active-slide="1"] #Scene_1,.animation-container[data-active-slide="2"] #Scene_2,.animation-container[data-active-slide="3"] #Scene_3,.animation-container[data-active-slide="4"] #Scene_4,.animation-container[data-active-slide="5"] #Scene_5,.animation-container[data-active-slide="7"] #Scene_8,.animation-container[data-active-slide="8"] #Scene_9{animation-name:sceneIn;animation-duration:.5s;animation-fill-mode:forwards}.animation-container[data-active-slide="6"] #Scene_7{animation-name:scenePart1;animation-duration:2.5s;animation-fill-mode:forwards}.animation-container[data-active-slide="6"] #Scene_7_1_{animation-name:sceneIn;animation-delay:2.5s;animation-duration:.5s;animation-fill-mode:forwards}.animation-container .alert-dots .dot{font-size:2em;transform:scale(.75);transition:all .5s ease-in-out;-moz-appearance:none;appearance:none;-webkit-appearance:none;position:absolute;margin-top:.6em;top:50%;left:50%;background:0 0;border:none;height:1.5em;width:1.5em;padding:.5em;border-radius:5em;text-indent:-99px;overflow:hidden;display:block}.animation-container .alert-dots .dot:focus{box-shadow:none;transform:scale(1.5)}.animation-container .alert-dots .dot:focus .inner{animation:none;background:#006891}.animation-container .alert-dots .dot .inner{display:block;height:.5em;width:.5em;border:1px solid #fff;box-shadow:0 0 1em rgba(0,0,0,.06);border-radius:5em;background:#13a4d2;color:#fff;animation-name:grow;animation-duration:.9s;animation-timing-function:ease-out;animation-direction:alternate;animation-iteration-count:infinite;animation-fill-mode:none;animation-play-state:running}.animation-container .alert-dots .dot.go-to-slide-0{left:50%;top:50%}.animation-container .alert-dots .dot.go-to-slide-1{left:70%;top:60%}.animation-container .alert-dots .dot.go-to-slide-2{left:22%;top:37%}.animation-container .alert-dots .dot.go-to-slide-3{left:61%;top:33%}.animation-container .alert-dots .dot.go-to-slide-4{left:35%;top:7%}.animation-container .alert-dots .dot.go-to-slide-5{left:49%;top:18%}.animation-container .alert-dots .dot.go-to-slide-6{left:46%;top:3%}.animation-container .alert-dots .dot.go-to-slide-7{left:65%;top:8%}.animation-container .alert-dots .dot.go-to-slide-8{left:41%;top:31%}.animation-container[data-active-slide="0"] .go-to-slide-0{transform:scale(1.5)}.animation-container[data-active-slide="0"] .go-to-slide-0 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="1"] .go-to-slide-1{transform:scale(1.5)}.animation-container[data-active-slide="1"] .go-to-slide-1 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="2"] .go-to-slide-2{transform:scale(1.5)}.animation-container[data-active-slide="2"] .go-to-slide-2 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="3"] .go-to-slide-3{transform:scale(1.5)}.animation-container[data-active-slide="3"] .go-to-slide-3 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="4"] .go-to-slide-4{transform:scale(1.5)}.animation-container[data-active-slide="4"] .go-to-slide-4 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="5"] .go-to-slide-5{transform:scale(1.5)}.animation-container[data-active-slide="5"] .go-to-slide-5 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="6"] .go-to-slide-6{transform:scale(1.5)}.animation-container[data-active-slide="6"] .go-to-slide-6 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="7"] .go-to-slide-7{transform:scale(1.5)}.animation-container[data-active-slide="7"] .go-to-slide-7 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="8"] .go-to-slide-8{transform:scale(1.5)}.animation-container[data-active-slide="8"] .go-to-slide-8 .inner{animation:none;background:#157199!important}.animation-container[data-active-slide="9"] .go-to-slide-9{transform:scale(1.5)}.animation-container[data-active-slide="9"] .go-to-slide-9 .inner{animation:none;background:#157199!important}@keyframes grow{0%,100%{transform:scale(1)}25%,75%{transform:scale(1.1)}50%{transform:scale(1.3)}}@keyframes sceneOut{from{opacity:1}to{opacity:0}}@keyframes sceneIn{from{opacity:0}to{opacity:1}}@keyframes scenePart1{from,to{opacity:0}20%,80%{opacity:1}}@keyframes scenePart2{from,to{opacity:0}40%,80%{opacity:1}}@keyframes bubbleBlipOut{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}@keyframes bubbleBlipIn{from{opacity:0;transform:scale(0)}50%{opacity:1;transform:scale(1.35)}to{opacity:0;transform:scale(1.8)}}@keyframes bubbleOut{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}@keyframes bubble-1-In{from{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1.35)}}@keyframes connectorOut{from{opacity:1}to{opacity:0}}@keyframes connector-In{from{opacity:1;height:0%;width:0%}50%{opacity:1;height:60%;width:0%}to{opacity:1;height:60%;width:70%}}@media screen and (min-width:55em){.animation-container.slick-activated .alt-content{display:block}.animation-arrow{border:solid rgba(0,0,0,.2);border-width:0 2px 2px 0;display:block;padding:1em;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);position:absolute;top:50%;left:20rem;z-index:3;margin-top:-1em;cursor:pointer}.animation-arrow:hover{border:solid rgba(0,0,0,.35);border-width:0 2px 2px 0}}.animation-slider{padding:0 5%;overflow:visible;z-index:1;text-align:left}.animation-slider .slick-track{display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch}.animation-slider .slide{display:-ms-flexbox;display:flex;height:auto;-ms-flex-align:stretch;align-items:stretch;padding:0 .5em;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.animation-slider .slide .slide-info{background:#fff;padding:0;width:100%}.animation-slider .slide .slide-info h3{color:#157199;margin-top:.5em}.animation-slider .slide .slide-info .slide-content{padding:1em}.animation-slider .slide:focus{box-shadow:none}.animation-slider .slide:focus .slide-info{border-color:red}.animation-slider .slide-image{width:100%}.animation-slider .slick-list{overflow:visible}@media screen and (min-width:55em){.animation-slider{overflow:hidden;max-width:23em;padding:0}.animation-slider .slide .slide-info{padding:0;background:0 0}.animation-slider .slide .slide-info .slide-content{padding:0}.animation-slider.slick-initialized .slide{pointer-events:none;opacity:0;transition:all .5s ease-in-out;transform:scale(.65);transform-origin:center}.animation-slider.slick-initialized .slick-active,.animation-slider.slick-initialized .slick-center{pointer-events:auto;transform:scale(1);opacity:1}}.site_content{overflow:hidden}.site_content>h1+.layout{padding-top:0}.layout.callout-borders{border-top:2px solid #ededed;border-bottom:2px solid #ededed}ul.two-columns{font-size:1rem}@media (min-width:760px){ul.two-columns{column-count:2}}@media screen and (min-width:48em){.layout.large-desktop-img .secondary_image{display:inline-block;margin:auto auto auto 2%;max-width:37%;position:relative;height:0;padding-top:50%;width:100%;overflow:hidden}.layout.large-desktop-img .secondary_image img{vertical-align:bottom;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:100%;max-width:none}}@media screen and (min-width:60em){.layout.large-media-object .image-content{width:40%;position:relative;height:0;padding-top:35%;overflow:hidden}.layout.large-media-object .image-content img{max-width:none;vertical-align:middle;height:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.layout.large-media-object .content{width:60%}.layout.media-obj-right .image-content{float:right}.layout.media-obj-right .content{padding-right:1em}}.layout-default.container-narrow{max-width:47rem}
/*# sourceMappingURL=style-1569509061250.min.css.map */


