/**
 * This is the main CSS file for the layout, which will contain most of your site's shared CSS.
 */

/***** KEY *****

.blockName
.blockName-elementName (for a subcomponent of a block)
.blockName_modifierName (for a variation of a block)

Font stacks:
"Arial", sans-serif;
"chaparral-pro", "Arial", sans-serif

Colors:
Gray: #6F6F6F
Light Blue: #2A81C6
Dark Blue: #344994
Red: #E03150
Green: #7EC546
Yellow: #F2C10F

*/


/***** HELPERS *****/
/* For clearfix, use the .group class (from si-grid) */

.noMargin.noMargin {
    margin: 0;
}

.noPad.noPad {
    padding: 0;
}

.clickable {
    cursor: pointer;
}

.invisible {
    visibility: hidden;
    position: absolute;
    z-index: -99;
}

.animate {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* Helper classes for setting bottom margins */
.mb0 {
	margin-bottom: 0;
}
.mb1 {
    margin-bottom: .5rem;
}
.mb2 {
    margin-bottom: 1rem;
}
.mb3 {
    margin-bottom: 1.5rem;
}
.mb4 {
    margin-bottom: 2rem;
}
.mb5 {
    margin-bottom: 2.5rem;
}
.mb6 {
    margin-bottom: 3rem;
}


/* Wrap tables and other elements with this to make it possible to enable horizontal scroll when the screen size is too small to contain the element fully */
.scrollWrapper {
    overflow: auto;
    position: relative;
    margin-bottom: 2em;
}
    .scrollWrapper > table {
        margin: 0;
    }


/***** BLOCKS *****/

html {
    font-size: 100%; /* 16px - We set the font size here so that we can use rems to adjust the text size relative to this root size. Use ems instead when you want to make it easier to resize everything in the block together, i.e. at a responsive breakpoint */
}

body {
    position: relative;
    background-color: #fff;

    font-family: "source-sans-pro", "Arial", sans-serif;
    line-height: 1.25;
    color: #6F6F6F;

    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust: 100%; /* responsive */

    overflow-x: hidden;

	/*top: 40px;*/
}
/* Dims and disables the page (for use with menu and modals */
.body-mask {
    display: none;
    position: fixed;
    z-index: 900;
    margin-bottom: 0;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0,0,0,.5);
}


/* Sets site's main container width */
.container {
    width: 85%;
    min-width: 900px;
    max-width: 1200px;
    margin: 0 auto;
    zoom: 1;
    position: relative;
}
    /* Ignore nested containers */
    .container .container {
        width: auto;
        min-width: initial;
        max-width: initial;
        margin: initial;
    }
    @media screen and (max-width:1200px) {
        .container {
            min-width: 290px;
            width: 90%;
        }
    }

/*** Headings ***/

.heading1 {
    margin-bottom: 1.25rem;
    font-size: 2.5em;
    font-weight: 300;
    font-family: "chaparral-pro", "Arial", sans-serif;
    color: #2A81C6;
    line-height: 3.15rem;
}
	.heading1 i {
		font-size: .8em;
	}

.heading2 {
    margin-bottom: 1.25rem;
    font-size: 2.1em;
    font-weight: 200;
    font-family: "source-sans-pro", "Arial", sans-serif;
    color: #171D5A;
}
.heading2_red {
	color: #E03150;
}

.heading3 {
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    /*font-weight: 200;*/
    font-family: "source-sans-pro", "Arial", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.83px;
    color: #7EC546;
}

/**
 * Increase the spacing between the end of a paragraph and the start of a new heading
 */
p + .heading1, p + a + .heading1,
p + .heading2, p + a + .heading2,
p + .heading3, p + a + .heading3 {
    margin-top: 2rem;
}

/* Use the richText class to wrap content entered in rich text (wysiwyg) editor fields. */
.richTxt {}
    .richTxt p {
    	font-size: 1.25rem;
        line-height: 1.6em;
        margin-bottom: 1.25em;
    }
    .richTxt ol, .richTxt ul {
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    .richTxt ul {
        list-style: none;
        padding-left: 3rem;
    }
    	.richTxt ul > li {}
	    	.richTxt ul > li:before {
	    		content: "■";
	    		padding-right: 15px;
	    		margin-left: -25px;
	    		color: #E03150;
	    	}
    .richTxt ol {
        list-style: decimal;
    }
    .richTxt li {
        margin-bottom: .5rem;
        font-size: 1.15rem;
    }
    .richTxt img {
		padding: 5px;
		/*border: 1px solid #ccc;*/
	}
	.richTxt figure {
		display: inline-block;
		margin: 1rem;
	}
    @media (max-width: 800px) {
        .richTxt .heading1 {
            font-size: 2em;
            line-height: 2.15rem;
        }
    }
    @media (max-width: 600px) {
        .richTxt .heading1 {
            font-size: 1.75em;
        }
    }

.small, .richTxt .small {
    font-size: .75em;
}

.big, .richTxt .big {
    font-size: 1.55em;
}

hr {
    margin: 2rem 0;
    border-color: #E2E2E2;
}

.link {
    color: #2A81C6;
    font-weight: bold;
    border-bottom: 1px solid #2A81C6;
}
    .link:hover, .link:focus {
        border-bottom: 1px dashed #E03150;
        color: #E03150;
    }

.txtColor {}
.txtColor_ltBlue {
	color: #2A81C6;
}
	.txtColor_ltBlue:hover, .txtColor_ltBlue:focus {
		color: #0d69b1;
	}
.txtColor_dkBlue {
	color: #344994;
}
	.txtColor_dkBlue:hover, .txtColor_dkBlue:focus {
		color: #233470;
	}
.txtColor_green {
	color: #7EC546;
}
	.txtColor_green:hover, .txtColor_green:focus {
		color: #60b022;
	}
.txtColor_red {
	color: #E03150;
}
	.txtColor_red:hover, .txtColor_red:focus {
		color: #b31632;
	}
.txtColor_yellow {
	color: #F2C10F;
}
	.txtColor_yellow:hover, .txtColor_yellow:focus {
		color: #d6a804;
	}

.bgColor {}
.bgColor_white {
    background-color: #FFF;
}
.bgColor_ltBlue {
	background-color: #2A81C6;
    color: #FFF;
}
.bgColor_dkBlue {
    background-color: #344994;
    color: #FFF;
}
.bgColor_green {
    background-color: #7EC546;
    color: #FFF;
}
.bgColor_red {
    background-color: #E03150;
    color: #FFF;
}
.bgColor_yellow {
    background-color: #F2C10F;
}

figure {

}
figcaption {
	font-weight: bold;
	font-family: "chaparral-pro", "Arial", sans-serif;
	font-style: italic;
}
	@media (max-width:800px) {
	    figcaption {
	        font-size: .95em;
	    }
	}

blockquote, q {
	background: #2A81C6;
    color: #FFF;
    quotes: none;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
	blockquote > * {
		padding: 0 5rem;
	}
	blockquote .link {
		color: #FFF;
	}
		blockquote .link:hover {
			color: #FFF;
			border-color: #FFF;
		}
	blockquote p, .richTxt blockquote p {
		font-size: 1.15rem;
	}
		blockquote p:last-of-type {
			margin-bottom: 0;
		}
	@media (max-width: 650px) {
		blockquote > * {
			padding: 0 3rem;
		}
	}


/* These classes are mainly for use in CKEditor. CKEditor can only apply one class at a time, so all subclasses must include the base class's styles */
.align, .align_left, .align_right, .align_center {
    max-width: 100%;
    margin-bottom: 1.5em;
}
    .align_left, .align_right {
        max-width: 40%;
    }
    .align_left {
        float: left;
        margin-right: 2em;
        margin-left: 0;
    }
    .align_right {
        float: right;
        margin-left: 2em;
        margin-right: 0;
    }
    .align_right figcaption {
        text-align: right;
    }
    .align_center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    @media (max-width:800px) {
        .align_left > figcaption,
        .align_right > figcaption,
        .align_center > figcaption {

        }
    }
    @media (max-width: 600px) {
        .align_left, .align_right, .align_center {
            float: none;
            max-width: 100%;
            display: block;
            margin-left: auto;
            margin-right: auto;
			text-align: center;
        }
        .align_left > figcaption,
        .align_right > figcaption {
            text-align: center;
        }
    }

.MarkupPagerNav {
}
    .MarkupPagerNav li {
        display: inline-block;
        margin: 0 1px;
    }
    .MarkupPagerNav li a,
    .MarkupPagerNav li.MarkupPagerNavSeparator {
        color: #fff;
        padding: 8px 8px;
	    -webkit-border-radius: 2px;
	    border-radius: 2px;
        font-size: .75rem;
        cursor: pointer;
        background-color: #F2C10F;
    }
    .MarkupPagerNav li.MarkupPagerNavOn a,
    .MarkupPagerNav li a:focus,
    .MarkupPagerNav li a:hover {
        background: #344994;
    }

.breadcrumb {
    margin: 0 0 .25em;
    padding: 0;
    font-size: 0.75rem;
}
    .breadcrumb-item {
        display: inline;
        margin: 0;
        padding: 0;
        text-transform: uppercase;
    }
    	.breadcrumb-item a:hover, .breadcrumb-item a:focus {
			border-bottom: 1px dashed #E03150;
			color: #E03150;
		}
	    .breadcrumb-item:after {
	        content: " / ";
	    }


/*** Forms ***/

/* Placeholder text */
.placeholder {
    color: #999;
}
    ::-webkit-input-placeholder {
        color: #999;
    }
    :-moz-placeholder {
        color: #999;
    }
    ::-moz-placeholder {
        color: #999;
    }
    ::-ms-input-placeholder {
        color: #999;
    }

.notice {
    color: #fff;
    background-color: #555;
    margin: 0 0 1rem 0;
    padding: .8rem;
    font-size: .8em;
    font-weight: bold;
    text-align: left;
    border-radius: 10px;
}

    .notice_error {
        background-color: #FF9797;
    }

    .notice_success {
        background-color: #84D05E;
    }

.field {
    margin-bottom: 1rem;
}
    .field-label {
        display: block;
        font-weight: bold;
        font-size: .8rem;
        color: #7EC546;
        margin-bottom: .3rem;
    }
    .field-input {
        width: 100%;
        max-width: 100%;
    }
    .field-required {
        color: #FF9292;
        font-weight: 600;
    }
    .field-notes {
        font-size: .6em;
        font-style: italic;
        color: #5A5A5A;
        margin-top: .2rem;
    }
    .field-error {
        display: block;
        font-size: .7em;
        font-weight: bold;
        width: 100%;
        color: #f18a8a;
        margin-top: .2rem;
    }

.txtBox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border: 1px solid #ccc;
    padding: .4rem;
    max-width: 100%;
}

.txtBox_select {
    /*-webkit-appearance: button;*/
    background: url(images/arrow-down.png) right no-repeat;
    padding-right: 3rem;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}
    @media (-webkit-min-device-pixel-ratio: 1.5),
    (-o-min-device-pixel-ratio: 3/2),
    (min-resolution: 144dpi) {
        .txtBox_select {
            background-image: url(images/arrow-down@2x.png);
            background-size: 20px 7px;
        }
    }

.txtBox_error {}

/* for use on textareas */
.txtBox_multi {
    vertical-align: top;
    height: initial;
}

.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 2px 1rem;
    padding: 8px 40px;
    color: #fff;
    text-align: center;
    border: none;
    font-size: 1.05rem;
    font-weight: bold;
    background: #2A81C6;
    font-family: 'source-sans-pro', "Arial", sans-serif;
    border-radius: 2px;

	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
    .btn i {
        /* This seems to be causing problems. Why was this here? */
        /*margin-left: -1em;*/
    }
    .btn:hover, .btn:focus {
        background-color: #444;
		-webkit-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		color: #fff;
		border-bottom: 0;
    }
.btn_green {
	background-color: #7EC546;
}
.btn_red {
	background-color: #E03150;
}
.btn_yellow {
	background-color: #F2C10F;
}
.btn_dkBlue {
	background-color: #344994;
}

.dataTable {
    width: 100%;
    margin-bottom: 1rem;
}
    .dataTable td {
        border: 1px solid #ccc;
        padding: .5em;
    }
    .dataTable th {
        background-color: #555;
        padding: .5em;
        color: #fff;
        font-size: .8em;
        font-weight: bold;
        border: 1px solid #555;
    }

.header {
    position: relative;
    background-color: #2a446c;
    color: #fff;
}
    .header-top {
        padding: .5rem 0;
	}
    .header-phone {
        float: left;
        line-height: 2rem;
    }
    .header-search {
        float: right;
    }
    .header-main {
    	position: absolute;
    	top: 0; left: 0; right: 0;
    	z-index: 101;
    }
    .header-logo {
		position: relative;
		z-index: 99;
		float: left;
	}
    .header-nav {}
    .header-slideshow {
        position: relative;
        z-index: 0;
    }
    .header-container {
		width: 92%;
		max-width: 1400px;
	}
    @media (max-width: 600px) {
        .header-search {
            float: none;
        }
    }

.topNav {
	/*color: #6f6f6f;*/
	text-align: right;
	text-transform: uppercase;/*
	position: fixed;
    z-index: 200;
    width: 100%;
	box-shadow: 0px 1px 3px #a0a0a0;
	top: 0;*/
}
	.topNav-item {
		margin-left: 1.25rem;
		font-size: 1.1em;
	}
		.topNav-item i {
			padding-left: 10px;
		}

.logo {
    padding: 1.5rem 0;
}
	.logo a {
		display: inline-block;
	}
	.logo-img {
		display: block;
		width: 65%; /* formerly 80% */
		height: auto;
	}
	@media (max-width:1200px) {
		.logo-img {
			width: 55%;
		}
	}
	@media (max-width:450px) {
		.logo-img {
			width: 50%;
		}
	}

.search {
    position: relative;
}
    .search-box {
        width: 15rem;
        color: #fff;
        padding: .4rem .5rem;
        border: 1px solid transparent;
    }
        .search-box:hover, .search-box:focus {
            border-color: #555;
        }
    .search-btn {
        position: absolute;
        right: 0; top: 0; bottom: 0;
        font-size: 1.25rem;
        color: #fff;
	}
    @media (max-width: 600px) {
        .search-box {
            display: none;
            width: 0;
            border-color: transparent;
        }
    }
    .search-open .search-box {
        display: block;
        width: 100%;
    }

.pageMeta {
    margin-bottom: 2rem;
    /*border-bottom: 1px solid #ccc;*/
}
	.pageMeta-title {
		color: #344994;
	}
		.pageMeta-title i {
			padding-right: 7px;
		}

.ltBlueHeading {
	color: #2A81C6;
}
.dkBlueHeading {
	color: #344994;
}
.redHeading {
	color: #E03150;
}
.greenHeading {
	color: #7EC546;
}
.yellowHeading {
	color: #F2C10F;
}

.main {
    min-height: 400px;
    padding: 2rem 0;
}
    .layout_modal .main {
        min-height: 0;
    }

.mobileOverflowFix {
	overflow-x: hidden;
}

.footer {
    background-color: #FFF;
    border-top: 1px solid #E2E2E2;
    padding: 2rem 0;
    overflow-x: hidden;
}
    .footer-copyright {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 1rem;
        padding-top: 15px;
        font-family: 'source-sans-pro', "Arial", sans-serif;
        font-size: .75rem;
        color: #656565;
        letter-spacing: 1.02px;
        text-transform: uppercase;
    }
    .footer-left {
		display: flex;
	}
    .footer-logo {
    	display: block;
    	padding-bottom: 25px;
		text-align: left;
        opacity: .7;
    }
    	.footer-logo img {
    		display: block;
    		width: 250px;
    		height: auto;
    	}
        a.footer-logo:hover, .footer-logo:focus {
            opacity: 1;
        }
    .footer-text {
		margin-left: 1rem;
		font-style: italic;
	}
    .footer-social {
		font-family: 'source-sans-pro', "Arial", sans-serif;
		font-size: 1.25rem;
		color: #344994;
		line-height: 1.4rem;
	}
		.footer-social a {
			display: block;
			text-align: left;
			vertical-align: middle;
			padding-bottom: 20px;
			font-weight: 200;
		}
			.footer-social a > i {
				font-size: 1.5em;
				vertical-align: middle;
				padding-right: 30px;
			}
			.footer-social a:hover, .footer-social a:focus {
				color: #F2C10F;
			}
    .footer-contact {
    	font-family: 'source-sans-pro', "Arial", sans-serif;
    	font-size: 1.25rem;
    	color: #344994;
    	line-height: 1.4rem;
    }
    	.footer-contact a {
    		text-align: right;
    		vertical-align: middle;
    		padding-bottom: 20px;
    		font-weight: 200;
    	}
    		.footer-contact a > i {
    			font-size: 1.5em;
    			vertical-align: middle;
    			padding-left: 30px;
    		}
    		.footer-contact a:hover, .footer-contact a:focus {
    			color: #E03150;
    		}
    .footer-address {
        display: inline-block;
        vertical-align: middle;
        font-weight: 200;
    }
    @media (max-width:800px) {
		.footer-left {
			flex-wrap: wrap;
		}
		.footer-text {
			margin-left: 0;
			margin-bottom: 2rem;
			flex-basis: 100%;
		}
	}
    @media (max-width:650px) {
		.footer-left {
			text-align: center;
			justify-content: center;
		}
    	/*.footer-logo {
    		height: auto;
    	}*/
	    	.footer-logo img {
	    		float: none;
	    		margin: 0 auto;
	    	}
    	.footer-contact a,
    	.footer-social a {
    		text-align: center;
    	}
    }

.contactItems {

}
	.contactItems-item {
		display: block;
	}

.designer {
    display: inline-block;
	margin-bottom: 0;
    float: right;
}
	.designer a {
	    display: inline-block;
	    text-decoration: none;
	    color: #D9D9D9;
	    opacity: .7;
	}
	.designer a:hover, .designer a:focus {
	    text-decoration: none;
	    opacity: 1;
	}
    .designer-label {
        border-right: 1px solid #C8C8C8;
        padding-top: 5px;
        padding-right: 12px;
        display: inline-block;
        height: 20px;
        vertical-align: middle;
        line-height: 1em;
        font-family: 'source-sans-pro', "Arial", sans-serif;
        font-size: .65rem;
        color: #8C8C8C;
        text-transform: uppercase;
    }
    .designer-logo {
        display: inline-block;
        vertical-align: middle;
        width: 50px;
        padding-left: 6px;
    }


.slideshow {}
    .slideshow-slide {
        width: 100%;
        height: 300px; /* 550px */
        background-size: cover;
    }
	    .slideshow-slide > * {
	        display: block;
	        /*width: 100%;*/
	    }
	.slideshow-left {
		background-position: 75% center;
	}
	.slideshow-right {
		background-position: 25% center;
	}
	.slideshow-center {
		background-position: center center;
	}
    .slideshow-text {
    	position: relative;
    	height: 100%;
    }
    	.slideshow-text p {
    		position: absolute;
    		top: 60%;
    		-webkit-transform: translateY(-50%);
    		    -ms-transform: translateY(-50%);
    		        transform: translateY(-50%);
    		width: 50%;

    		font-family: 'source-sans-pro', "Arial", sans-serif;
    		font-weight: 200;
    		font-size: 4.15rem;
    		color: #FFF;
    		text-shadow: 0 0 10px rgba(0,0,0,0.80);
    	}
    	.slideshow-left .slideshow-text p {
    		left: 0;
    	}
    	.slideshow-center .slideshow-text p {
    		left: 50%;
    		-webkit-transform: translate(-50%,-50%);
    		    -ms-transform: translate(-50%,-50%);
    		        transform: translate(-50%,-50%);
    		text-align: center;
    	}
    	.slideshow-right .slideshow-text p {
    		right: 0;
    		text-align: right;
    	}
    .slideshow-link {
        display: block;
        width: 100%;
    }
    .slideshow-controls {
    	overflow: hidden;
		z-index: 1;
    }
    .slideshow-prev, .slideshow-next {
    	width: 0;
    	overflow: hidden;
    	-webkit-transition: all .3s;
    	-o-transition: all .3s;
    	transition: all .3s;

        position: absolute;
        font-size: 50px;
        top: 50%;
        z-index: 300;
        color: #e5e5e5;
        opacity: .7;

        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    	.header:hover .slideshow-prev, .header:hover .slideshow-next,
    	.header:focus .slideshow-prev, .header:focus .slideshow-next {
    		width: 36px;
    		-webkit-transition: all .3s;
    		-o-transition: all .3s;
    		transition: all .3s;
    		overflow: hidden;
    	}
	    .slideshow-prev:hover, .slideshow-next:hover,
	    .slideshow-prev:focus, .slideshow-next:focus {
	        cursor: pointer;
	        opacity: 1;
	    }
    .slideshow-prev {
        left: 4%;
        margin-left: -100vw;
    }
    	.header:hover .slideshow-prev,
    	.header:focus .slideshow-prev {
    		margin-left: 0;
    	}
    .slideshow-next {
        right: 4%;
        margin-right: -100vw;
    }
    	.header:hover .slideshow-next,
    	.header:focus .slideshow-next {
    		margin-right: 0;
    	}
    .slideshow-pager {
        position: absolute;
        font-size: 50px;
        left:0; bottom:0; right:0;
        z-index: 100;
        text-align: center;
    }
    .slideshow-pager span {
        cursor: pointer;
        color: #bbb;
    }
    .slideshow-pager > .cycle-pager-active {
        color: #fff;
    }
    @media (max-width: 1200px) {
        .slideshow-slide {
            height: 250px;
        }
    }
    @media (max-width:800px) {
        .slideshow-slide {
            height: 200px;
        }
    	.slideshow-text p {
    		width: 90%;
			text-shadow: 2px 2px 10px rgba(0,0,0,0.80);
    	}
    	.slideshow-left .slideshow-text p, .slideshow-right .slideshow-text p {
    		left: 50%;
    		-webkit-transform: translate(-50%,-50%);
    		    -ms-transform: translate(-50%,-50%);
    		        transform: translate(-50%,-50%);
    		text-align: center;
    	}
    }
    @media (max-width:650px) {
    	.slideshow-slide {
            height: 150px;
    	}
    	.slideshow-text {
            height: 150px;
    	}
    		.slideshow-text p {
    			font-size: 3em;
    		}
    }
    @media (max-width: 600px) {
        .slideshow-slide {
            height: 100px;
        }
        .slideshow-prev, .slideshow-next {
            font-size: 40px;
        }
    }
    @media (max-width: 400px) {
        .slideshow-slide {
            height: 80px;
        }
    }

.tags {
    font-size: .75rem;
}
    .tags-item {
        display: inline-block;
        background-color: #555;
    }
    .tags-link {
        display: block;
        color: #fff;
        padding: 4px 10px;
    }
        .tags-link:hover, .tags-link:focus {
            background: #444;
        }

.tag {
	margin-bottom: 2px;
}
.tag_ltBlue {
	background-color: #2A81C6;
}
.tag_dkBlue {
	background-color: #344994;
}
.tag_red {
	background-color: #E03150;
}
.tag_green {
	background-color: #7EC546;
}
.tag_yellow {
	background-color: #F2C10F;
}

.siteMap {
	margin-bottom: 2rem;
}
	.siteMap ul {

	}
	.siteMap li {
		padding: 10px 0;
	}
	.siteMap a {
		font-family: "chaparral-pro";
		font-size: 1.25rem;
		color: #344994;
	}
		.siteMap a:hover, .siteMap a:focus {
			color: #7EC546;
		}
	.siteMap-lvl1 {

	}
		.siteMap .siteMap-lvl1 {
			-webkit-column-count: 2;
			column-count: 2;
		}
	.siteMap-lvl2 {

	}
		.siteMap-lvl2 li {
			padding-bottom: 0;
		}
		.siteMap-lvl2 a {
			font-family: "source sans pro", "Arial", sans-serif;
			color: #6f6f6f;
			font-size: 0.875rem;
		}
			.siteMap-lvl2 a:hover, .siteMap-lvl2 a:focus {
				color: #E03150;
			}
	@media (max-width:800px) {
		.siteMap {
			margin-bottom: 3rem;
		}
			.siteMap-lvl1 {
				padding: 0 100vw 2rem;
				margin: 0 -100vw;
				border-bottom: 1px solid #E2E2E2;
			}
	}

.level1 {

}
.level2 {

}

.centerContent {
    text-align: center;
}

.field-label {
    font-family: "chaparral-pro", "Arial", sans-serif;
    font-size: 1rem;
}

.field-input {
    padding: .6rem;
    color: #444;
    border-radius: 2px;
}
    .field-input:hover, .field-input:focus {
        background-color: #fbfffb;
        -webkit-transition: background-color .5s;
        -o-transition: background-color .5s;
        transition: background-color .5s;
    }

.popup {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 998;
}
    .popup-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .popup-box {
        position: relative;
        background-color: #fff;
        padding: 3rem;
        /*border-style: solid;*/
        /*border-width: .45rem;*/
        /*border-color: #e4e4e4;*/
        width: 40rem;
        max-width: 100%;
        max-height: 100%;
        overflow-y: auto;
        background-repeat: repeat;
        box-shadow: 0 0 2rem rgba(0,0,0,.75);
        /*min-height: 100rem;*/
    }
    .popup-close {
        position: absolute;
        top: 0; right: 0;
        padding: .5rem 1rem;
        font-size: 2.5rem;
        line-height: 1;
        color: #666;
    }
        .popup-close:hover, .popup-close:focus {
            color: #000;
        }
    .popup img.align_left {
        margin-right: 1em;
        margin-bottom: 1em;
    }
    .popup img.align_right {
        margin-left: 1em;
        margin-bottom: 1em;
    }

.columns2 {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    column-gap: 2.5rem;

    margin-bottom: 2rem;
}
    @media (max-width: 750px) {
        .columns2 {
            -moz-column-count: 1;
            -webkit-column-count: 1;
            column-count: 1;

            margin-bottom: 0;
        }
    }

.noBorder {
    border: 0;
}
    .noBorder img {
        border: 0 !important;
    }