html {
	background-color: #00355A;
}

body {
	background-color: #fff;
	padding: 80px 0 0;
}

/*body.admin-bar {
	padding: 126px 0 0;
}*/
body.admin-bar #wpadminbar {
	opacity: .5;
}
/**
 * Header
 */
body > header {
	position: fixed;
	z-index: 50;
	height: 80px;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/*body.admin-bar > header {
	top: 46px;
}*/

body > header [itemscope] {
	width: 60%;
	height: 80px;
	margin: 0 0 0 2%;
}

body > header [itemscope] img,
body > header [itemscope] [itemprop="telephone"] {
	display: none;
}

body > header [itemscope] [itemprop="url"] {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 80px 0 0 100%;
	background: url('../images/bom-logo-small.png') center center no-repeat;
	background-image: url('../images/bom-logo-small.svg'), linear-gradient(transparent, transparent);
	background-size: contain;
}

/**
 * Header navigation
 */
#menu {
	visibility: hidden;
	position: absolute;
	top: -20px;
	left: -20px;
}

body > [for="menu"] {
	display: block;
	position: fixed;
	z-index: 60;
	top: 32px;
	right: 20px;
	font-family: 'Fira Sans Medium';
	color: #939598;
	font-weight: 400;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 18px;
	height: 16px;
	text-transform: uppercase;
	padding: 0 21px 0 0;
	cursor: pointer;
}

/*body.admin-bar > [for="menu"] {
	top: 78px;
}*/

body > [for="menu"] span {
	display: block;
	height: 3px;
	width: 16px;
	position: absolute;
	top: 6.5px;
	right: 0;
	background-color: #4E819F;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

body > [for="menu"] span:before,
body > [for="menu"] span:after {
	content: '';
	display: block;
	height: 3px;
	width: 16px;
	position: absolute;
	top: -6px;
	right: 0;
	background-color: #4E819F;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

body > [for="menu"] span:after {
	top: 6px;
}

body > #menu.active + [for="menu"] span,
body > #menu.active + [for="menu"] span:before,
body > #menu.active + [for="menu"] span:after {
	background-color: #F89E53;
}

body > #menu:checked + [for="menu"] span,
body > #menu:checked + [for="menu"] span:before,
body > #menu:checked + [for="menu"] span:after {
	background-color: #F89E53;
}

body > #menu:checked + [for="menu"] span {
	-webkit-transform: rotate( -90deg );
	-moz-transform: rotate( -90deg );
	-ms-transform: rotate( -90deg );
	transform: rotate( -90deg );
}

.menu-header-container {
	position: fixed;
	z-index: 30;
	top: 80px;
	left: 0;
	right: 0;
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

/*body.admin-bar .menu-header-container {
	top: 126px;
}*/

body > #menu:checked ~ .menu-header-container {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	transform: none;
}

.menu-header-container > ul {
	background-color: #00355A;
	position: relative;
	margin-top: 45px;
}

body > #menu:checked ~ .menu-header-container > ul {
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.menu-header-container > ul:after {
	content: '';
	display: block;
	clear: both;
}

.menu-header-container > ul > li {
	float: left;
	width: 50%;
	display: table;
}

.menu-header-container > ul > li > a {
	display: table-cell;
	text-align: center;
	font-weight: 400;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 2rem;
	height: 4rem;
	vertical-align: middle;
	color: #fff;
	padding: 5px 15px;
	border-bottom: 1px solid #fff;
}

.menu-header-container > ul > li:nth-child(even) > a {
	border-left: 1px solid #fff;
}

.menu-header-container > ul > li:nth-child(odd):last-child {
	width: calc( 50% + 1px );
}

.menu-header-container > ul > li:last-child a,
.menu-header-container > ul > li:nth-child(odd):nth-last-child(2) a {
	border-bottom: 0;
}

.menu-header-container > ul > li:nth-child(odd):last-child > a {
	border-right: 1px solid #fff;
}

@media screen and ( min-width: 560px ) {

	.menu-header-container > ul > li,
	.menu-header-container > ul > li:nth-child(odd):last-child {
		width: calc( 100% / 3 );
	}

	.menu-header-container > ul > li > a {
		border-left: 1px solid #fff;
	}

	.menu-header-container > ul > li:nth-child(odd):last-child > a {
		border-right: 0;
	}

	.menu-header-container > ul > li:nth-child(3n + 1) > a {
		border-left: 0;
	}

	.menu-header-container > ul > li:nth-child(3n + 1):last-child,
	.menu-header-container > ul > li:nth-child(3n + 2):last-child {
		width: calc( 100% / 3 + 1px )
	}

	.menu-header-container > ul > li:last-child a,
	.menu-header-container > ul > li:nth-child(odd):nth-last-child(2) a {
		border-bottom: 1px solid #fff;
	}

	.menu-header-container > ul > li:nth-child(3n + 1):last-child > a,
	.menu-header-container > ul > li:nth-child(3n + 2):last-child > a {
		border-right: 1px solid #fff;
		border-bottom: 0;
	}

	.menu-header-container > ul > li:nth-child(3n + 1):nth-last-child(2) > a {
		border-bottom: 0;
	}

}

/**
 *  Search
 */
#search {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	height: 45px;
	background-color: #F89E53;
	z-index: 40;
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

/*body.admin-bar #search {
	top: 126px;
}*/

body > #menu:checked + [for="menu"] ~ #search {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	transform: none;
}

#search fieldset {
	border: 0;
	display: block;
	height: 45px;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	text-align: right;
}

#search fieldset label {
	display: none;
}

#search fieldset input {
	-webkit-appearance: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	font-family: 'Fira Sans';
	border: 0;
	padding: 0;
	border-radius: 0;
	outline: 0;
	height: 45px;
	line-height: 45px;
	width: calc(100% - 45px);
	background: #F89E53 none center center no-repeat;
	float: left;
	position: relative;
	z-index: 1;
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

#search fieldset input[type="submit"] {
	width: 0;
	height: 0;
	padding: 45px 0 0 45px;
	overflow: hidden;
	cursor: pointer;
	z-index: 2;
	background-color: #F89E53;
	background-image: url('../images/icon-search-white.png');
	background-image: url('../images/icon-search-white.svg'), linear-gradient(transparent, transparent);
}

#search fieldset input::-webkit-input-placeholder {
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
}

#search fieldset input:-moz-placeholder { /* Firefox 18- */
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
}

#search fieldset input::-moz-placeholder {  /* Firefox 19+ */
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
	opacity: 1;
}

#search fieldset input:-ms-input-placeholder {
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
}

#search fieldset input:focus::-webkit-input-placeholder {
	color: transparent;
}

#search fieldset input:focus:-moz-placeholder {
	color: transparent;
}

#search fieldset input:focus::-moz-placeholder {
	color: transparent;
}

#search fieldset input:focus:-ms-input-placeholder {
	color: transparent;
}

.search .lead form,
.error404 .lead form {
	font-size: 0;
}

.search .lead form label,
.error404 .lead form label {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: 'Fira Sans Book';
	margin: 0 0 10px;
	margin: 0 0 1rem;
}

.search .lead form input[type="search"],
.error404 .lead form input[type="search"] {
	display: inline-block;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 150px;
	padding: 0 15px;
	border: 1px solid #39474F;
	border-radius: 0;
	outline: 0;
	font-family: 'Fira Sans';
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 40px;
	line-height: 4rem;
	height: 40px;
	height: 4rem;
	background-color: #fff;
	color: #39474F;
	vertical-align: top;
}

.search .lead form input[type="submit"],
.error404 .lead form input[type="submit"] {
	display: inline-block;
	-webkit-appearance: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	line-height: 40px;
	line-height: 4rem;
	height: 40px;
	height: 4rem;
	padding: 0 15px;
	background-color: #F89E53;
	color: #fff;
	font-family: 'Fira Sans';
	font-size: 14px;
	font-size: 1.4rem;
	text-transform: uppercase;
	border-radius: 5px;
	border: 0;
	cursor: pointer;
	margin-left: 10px;
	vertical-align: top;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

/**
 * Content
 */
main {
	position: relative;
	overflow-x: hidden;
	background-color: #D1C6BD;
}

.page-template-landing main {
	overflow-x: visible;
}

.single main {
	background-color: #8B8C8D;
}

main:after {
	clear: both;
	content: '';
	display: block;
}

.backboard {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 1;
	overflow: hidden;
	clip: rect(0, auto, auto, 0);
	-webkit-clip-path: fill-box;
	clip-path: fill-box;
}

.backboard div {
	background: none center center no-repeat;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	position: absolute;
}

.backboard.interior div {
	top: 75px;
	left: -5px;
	right: -5px;
	bottom: auto;
	height: 375px;
	position: fixed;
}

article {
	position: relative;
	z-index: 10;
	padding: 25px 0;
	padding: 2.5rem 0;
	overflow-x: hidden;
}

article:after {
	content: '';
	display: block;
	clear: both;
}

.single article {
	margin: 0 auto;
	width: 85%;
	padding: 25px 0;
}

.single article.lead {
	width: auto;
	padding: 30px 7.5%;
}

article h1 {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 300;
	color: #fff;
	margin: 0 0 20px;
	margin: 0 0 2rem;
}

article h2 {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 300;
	color: #fff;
	margin: 0 0 10px;
	margin: 0 0 1rem;
}

article h3 {
	font-family: 'Fira Sans Book';
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 5px;
	margin: 0 0 0.5rem;
}

article ul,
article ol {
	margin: 0 0 15px;
	margin: 0 0 1.5rem;
	padding: 0 0 0 30px;
	padding: 0 0 0 3rem;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: 300;
}

article ul {
	list-style: none;
}

article ol {
	list-style-position: inside;
}

article li {
	margin: 5px 0 0;
	margin: 0.5rem 0 0;
}

article p {
	margin: 0 0 15px;
	margin: 0 0 1.5rem;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: 300;
}

article hr {
	height: 2px;
	background-color: #fff;
	border: 0;
	margin: 25px 0;;
	margin: 2.5rem 0;
}

article img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0 0 15px;
}

.single-post article time {
	display: block;
	font-weight: 300;
	color: #fff;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.5;
	margin: -15px 0 15px;
	margin: -1.5rem 0 1.5rem;
}

article a {
	color: #39474F;
	font-family: 'Fira Sans Medium';
	text-decoration: underline;

}

article footer {
	clear: both;
	position: relative;
	z-index: 5;
	background-color: #E2E3E4;
	padding: 25px 0;
	padding: 2.5rem 0;
}

article footer h2 {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #414042;
	font-weight: 600;
	margin: 0 auto 5px;
	margin: 0 auto 0.5rem;
	max-width: 85%;
	text-align: center;
}

article footer p {
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.5;
	color: #414042;
	max-width: 85%;
	margin: 0 auto;
	text-align: center;
}

article footer p ~ p {
	margin: 15px auto 0;
	margin: 1.5rem auto 0;
}

article footer a {
	color: #39474F;
	text-decoration: underline;
}

.title.fdic {
	padding: 30px 0 0 80px;
	width: 0;
	height: 0;
	display: block;
	margin: 0 auto 15px;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	background: url('../images/title-fdic.png') center center no-repeat;
	background-image: url('../images/title-fdic.svg'), linear-gradient(transparent, transparent);
}

.lead {
	background: #00355A center center no-repeat;
	background-size: cover;
	padding: 30px 7.5%;
	text-align: center;
	color: #fff;
}

.lead .content {
	position: relative;
	z-index: 5;
}

.lead h1 {
	font-weight: 200;
	font-size: 55px;
	font-size: 5.5rem;
	line-height: 1;
	margin: 0 auto 10px;
	letter-spacing: -0.5px;
}

.lead h2 {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.1;
	font-family: 'Fira Sans Book';
	font-weight: 400;
	margin: 0 auto 15px;
}

.lead p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.2;
	font-family: 'Fira Sans Book';
	font-weight: 400;
	margin: 0 auto 15px;
}

.blog article:nth-child(4n + 2) {
	background-color: #8B8C8D;
}

.blog article:nth-child(4n + 3) {
	background-color: #98B6D2;
}

.blog article:nth-child(4n + 4) {
	background-color: #B7C4BB;
}

.blog article:nth-child(4n + 5) {
	background-color: #C5B1BA;
}

.blog article ~ article {
	padding: 20px 0;
}

.blog article ~ article h1 {
	display: none;
}

.blog article ~ article time {
	display: block;
	position: static;
	font-size: 27px;
	font-size: 2.7rem;
	font-weight: 300;
	color: #fff;
	width: 85%;
	margin: 0 auto 1rem;
}

.blog article ~ article [itemprop="description"] {
	width: 85%;
	margin: 0 auto 25px;
	margin: 0 auto 2.5rem;
}

.blog article ~ article p {
	display: block;
	margin: 0;
	font-weight: 300;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fff;
	text-align: left;
}

.learn-more {
	background-color: #F89E53;
	color: #fff;
	margin: 0 auto 0 7.5%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 40px;
	height: 40px;
	border-radius: 5px;
	text-transform: uppercase;
	padding: 0 15px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	text-decoration: none;
	font-family: 'Fira Sans';
	font-weight: 300;
	letter-spacing: 2px;
}

.learn-more:after {
	content: '';
	display: block;
	position: absolute;
	top: -7px;
	right: 50%;
	right: calc(50% - 7.5px);
	border-width: 0 7.5px 7.5px;
	border-color: #F89E53 transparent;
	border-style: solid;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.learn-more:hover:after {
	border-color: #D18247 transparent;
}

.learn-more.centered {
	margin: 0 auto;
}

ul.page-numbers {
	width: 100%;
	background-color: #00355A;
	padding: 20px 0;
	text-align: center;
	font-size: 0;
	position: relative;
	z-index: 5;
}

ul.page-numbers li {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	width: 30px;
	background-color: #fff;
	font-family: 'Fira Sans Book';
	font-weight: 400;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 5px;
}

ul.page-numbers li span,
ul.page-numbers li a {
	display: block;
	line-height: 30px;
	color: #39474F;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

ul.page-numbers li span.current,
ul.page-numbers li a:hover {
	background-color: #F89E53;
}

nav.page-navigation {
	background-color: #00355A;
	padding: 20px 0;
	padding: 2rem 0;
	text-align: center;
	font-size: 0;
}

nav.page-navigation a {
	display: inline-block;
	line-height: 30px;
	line-height: 3rem;
	border-radius: 5px;
	width: 90px;
	padding: 0 15px;
	text-align: right;
	color: #39474F;
	font-family: 'Fira Sans Book';
	font-weight: 400;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 10px;
	text-transform: lowercase;
	background: #fff url('../images/nav-previous.png') 15px center no-repeat;
	background-image: url('../images/nav-previous.svg'), linear-gradient(transparent, transparent);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

nav.page-navigation a:hover {
	background-color: #F89E53;
}

nav.page-navigation a[rel="next"] {
	text-align: left;
	background-position: 97px center;
	background-image: url('../images/nav-next.png');
	background-image: url('../images/nav-next.svg'), linear-gradient(transparent, transparent);
}

/**
 * Hours & Locations
 */
.page-template-hours article header {
	display: none;
}

article .branch {
	text-align: center;
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #39474F;
}

article .branch h2 {
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: 300;
	margin: 0 0 10px;
	margin: 0 0 1rem;
	line-height: 1.3;
	font-family: 'Fira Sans';
	color: #39474F;
}

article .branch h3 {
	font-weight: 600;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Fira Sans';
	margin: 15px 0 0;
	margin: 1.5rem 0 0;
	text-transform: none;
	color: #39474F;
}

article .branch time {
	display: block;
	color: #39474F;
}

article .branch img {
	width: auto;
	margin: 0 auto 20px;
	margin: 0 auto 2rem;
}

article .branch dl:after {
	content: '';
	display: block;
	clear: both;
}

@media screen and ( min-width: 520px ) {

	.page-template-hours main:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 50%;
		background-color: #A2B5C1;
		z-index: 1;
	}

	.page-template-hours article .branch {
		display: block;
		float: left;
		width: 50%;
		margin: 0 0 25px;
		margin: 0 0 2.5rem;
	}

	.page-template-hours article .branch:nth-child(even) {
		clear: left;
	}

}

/**
 * Bank holidays
 */
article table {
	border-collapse: separate;
	border-spacing: 1px;
	color: #fff;
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	margin: 0 auto 25px;
	margin: 0 auto 2.5rem;
}

article table caption {
	margin: 0 auto;
	background-color: #F89E53;
	border-radius: 5px 5px 0 0;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 2.5;
}

article table thead th {
	background-color: #39474F;
	padding: 10px 15px;
	padding: 1rem 1.5rem;
	text-align: center;
	font-weight: 400;
}

article table tbody th,
article table tbody td {
	background-color: #748A96;
	padding: 10px 15px;
	padding: 1rem 1.5rem;
	vertical-align: middle;
	text-align: center;
	font-weight: 400;
}

article table tbody tr:nth-child(2n + 1) th,
article table tbody tr:nth-child(2n + 1) td {
	background-color: #647883;
}

article table.left thead th,
article table.left tbody td {
	text-align: left;
}

article table.right thead th,
article table.right tbody td {
	text-align: right;
}

dl.bank-holidays {
	font-size: 0;
	text-align: center;
}

dl.bank-holidays dt,
dl.bank-holidays dd {
	display: inline;
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 2;
	color: #39474F;
}

dl.bank-holidays dt:after {
	content: '  \2013  ';
}

dl.bank-holidays dd:after {
	content: '\a';
	white-space: pre;
}

/**
 * Current Rates & Fees
 */
.page-template-current-rates main {
	background-color: #CBD2CA;
}

.page-template-current-rates article.lead {
	background-color: #8E8E93;
}

.page-template-current-rates main section {
	width: 85%;
	margin: 0 auto;
	padding: 30px 0;
	padding: 3rem 0;
	text-align: center;
}

.page-template-current-rates main section h1 {
	font-weight: 300;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.6;
	color: #39474F;
}

.page-template-current-rates main section p {
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #39474F;
	margin: 0 0 20px;
	margin: 0 0 2rem;
}

.page-template-current-rates main section table {
	color: #fff;
	font-family: 'Fira Sans Book';
	font-weight: 400;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: left;
	width: 70%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 1px;
	display: table;
}

.page-template-current-rates main section table thead th {
	background-color: #39474F;
	padding: 10px;
	padding: 1rem;
	height: 40px;
	height: 4rem;
	vertical-align: middle;
	display: table-cell;
}

.page-template-current-rates main section table tbody td {
	background-color: #748A96;
	padding: 10px 15px;
	height: 40px;
	height: 4rem;
	vertical-align: middle;
	display: table-cell;
}

.page-template-current-rates main section table tbody tr:nth-child(odd) td {
	background-color: #647883;
}

/**
 * How Can We Help?
 */
.page-template-help main {
	background-color: #D0C2BC;
}

.page-template-two-columns article,
.page-template-help article {
	padding: 0;
}

.page-template-two-columns article {
	background-color: #9FB3BA;
}

.page-template-two-columns article .lead,
.page-template-help article .lead {
	background-color: #8798A5;
}

article .column {
	padding: 20px 7.5%;
	padding: 2rem 7.5%;
	margin: 0 auto;
	text-align: center;
}

article .column h2,
article .column h3,
article .column ol,
article .column ul,
article .column p {
	color: #39474F;
}

article .column.light h2 {
	color: #fff;
}

.page-template-help .branch-hours {
	background-color: #D0D0C5;
	padding: 20px 0;
	padding: 2rem 0;
	text-align: center;
}

article .column h2 {
	font-weight: 300;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.1;
	margin: 0 auto 15px;
	margin-bottom: 1.5rem;
}

article .column h3 {
	color: #39474F;
	font-weight: 600;
	font-size: 16px;
	font-size: 1.6rem;
	text-transform: none;
	letter-spacing: -0.5px;
}

article .column h3 + p .learn-more:first-child {
	margin-top: 15px;
}

.page-template-help .branch-hours > h2 {
	max-width: 85%;
	margin: 0 auto;
}

.page-template-help .branch-hours:after {
	content: '';
	display: block;
	clear: both;
}

.page-template-help .branch-hours ul {
	padding: 25px 0 0;
	padding: 2.5rem 0 0;
}

.page-template-help .branch-hours .branch {
	display: block;
	margin: 0 0 25px;
	margin: 0 0 2.5rem;
}

@media screen and ( min-width: 520px ) {

	.page-template-help .branch-hours ul {
		font-size: 0;
		text-align: center;
	}

	.page-template-help .branch-hours .branch {
		display: block;
		width: 50%;
		vertical-align: top;
		float: left;
	}

	.page-template-help .branch-hours .branch:nth-child(odd) {
		clear: left;
	}

}

/**
 * Landing
 */
.page-template-landing article {
	padding: 25px 0;
	padding: 2.5rem 0;
	overflow: visible;
}

.page-template-landing article .backboard,
.page-template-left-image-right-content article .backboard,
.page-template-left-image-right-content-flex article .backboard {
	/*background-position: center top;*/
	/*-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);*/
}

.page-template-landing article .lead {
	background-color: transparent;
	height: auto;
	width: 85%;
	margin: 0 auto;
	padding: 0 0 30px;
	padding: 0 0 3rem;
}

.search article .lead h1,
.error404 article .lead h1,
.page-template-credit-cards article .lead h1,
.page-template-home-loans article .lead h1,
.page-template-directory article .lead h1,
.page-template-landing article .lead h1,
.page-template-two-columns article .lead h1,
.page-template-contact article .lead h1,
.page-template-checking-savings article .lead h1,
.page-template-multicolor-columns article .lead h1,
.page-template-types-of-accounts article .lead h1,
.page-template-mortgage-calculator article .lead h1,
.page-template-northern-trust article .lead h1,
.page-template-trust-and-investment article .lead h1,
.error404 article .lead h2,
.search article .lead h2,
.page-template-credit-cards article .lead h2,
.page-template-home-loans article .lead h2,
.page-template-directory article .lead h2,
.page-template-two-columns article .lead h2,
.page-template-landing article .lead h2,
.page-template-contact article .lead h2,
.page-template-checking-savings article .lead h2,
.page-template-multicolor-columns article .lead h2,
.page-template-types-of-accounts article .lead h2,
.page-template-mortgage-calculator article .lead h2,
.page-template-northern-trust article .lead h2,
.page-template-trust-and-investment article .lead h2,
.search article .lead p,
.error404 article .lead p,
.page-template-credit-cards article .lead p,
.page-template-home-loans article .lead p,
.page-template-directory article .lead p,
.page-template-landing article .lead p,
.page-template-two-columns article .lead p,
.page-template-contact article .lead p,
.page-template-checking-savings article .lead p,
.page-template-multicolor-columns article .lead p,
.page-template-types-of-accounts article .lead p,
.page-template-mortgage-calculator article .lead p,
.page-template-northern-trust article .lead p,
.page-template-trust-and-investment article .lead p {
	color: #fff;
	text-shadow: 1px 1px 2px rgba(57, 71, 79, 0.9);
}

.search article .lead.dark h1,
.error404 article .lead.dark h1,
.page-template-credit-cards article .lead.dark h1,
.page-template-home-loans article .lead.dark h1,
.page-template-landing article .lead.dark h1,
.page-template-contact article .lead.dark h1,
.page-template-directory article .lead.dark h1,
.page-template-two-columns article .lead.dark h1,
.page-template-checking-savings article .lead.dark h1,
.page-template-multicolor-columns article .lead.dark h1,
.page-template-types-of-accounts article .lead.dark h1,
.page-template-mortgage-calculator article .lead.dark h1,
.page-template-northern-trust article .lead.dark h1,
.page-template-trust-and-investment article .lead.dark h1,
.search article .lead.dark h2,
.error404 article .lead.dark h2,
.page-template-credit-cards article .lead.dark h2,
.page-template-home-loans article .lead.dark h2,
.page-template-landing article .lead.dark h2,
.page-template-contact article .lead.dark h2,
.page-template-directory article .lead.dark h2,
.page-template-two-columns article .lead.dark h2,
.page-template-checking-savings article .lead.dark h2,
.page-template-multicolor-columns article .lead.dark h2,
.page-template-types-of-accounts article .lead.dark h2,
.page-template-mortgage-calculator article .lead.dark h2,
.page-template-northern-trust article .lead.dark h2,
.page-template-trust-and-investment article .lead.dark h2,
.search article .lead.dark p,
.error404 article .lead.dark p,
.page-template-credit-cards article .lead.dark p,
.page-template-home-loans article .lead.dark p,
.page-template-landing article .lead.dark p,
.page-template-contact article .lead.dark p,
.page-template-directory article .lead.dark p,
.page-template-two-columns article .lead.dark p,
.page-template-checking-savings article .lead.dark p,
.page-template-multicolor-columns article .lead.dark p,
.page-template-types-of-accounts article .lead.dark p,
.page-template-mortgage-calculator article .lead.dark p,
.page-template-northern-trust article .lead.dark p,
.page-template-trust-and-investment article .lead.dark p {
	color: #39474F;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/**
 * Online Banking & Telebanking
 */
.search article,
.error404 article,
.single-customer article,
.page-template-credit-cards article,
.page-template-home-loans article,
.page-template-checking-savings article,
.page-template-directory article,
.page-template-two-columns article,
.page-template-contact article,
.page-template-multicolor-columns article,
.page-template-types-of-accounts article,
.page-template-left-image-right-content article,
.page-template-left-image-right-content-flex article,
.page-template-northern-trust article {
	padding: 0;
	background-color: #BEBCBB;
}

.search .lead,
.error404 .lead,
.page-template-credit-cards .lead,
.page-template-home-loans .lead,
.page-template-mortgage-calculator .lead,
.page-template-checking-savings .lead,
.page-template-directory .lead,
.page-template-two-columns .lead,
.page-template-contact .lead,
.page-template-multicolor-columns .lead,
.page-template-types-of-accounts .lead,
.page-template-left-image-right-content .lead,
.page-template-left-image-right-content-flex .lead,
.page-template-northern-trust .lead {
	position: relative;
	background-color: #00355A;
	z-index: 10;
}

.search article {
	background-color: #E2E3E4;
}

.search p.no-results-found,
.search p.search-results {
	background-color: #B7C2CC;
	margin: 0;
	padding: 15px 0;
	padding: 1.5rem;
	text-align: center;
	color: #39474F;
}

.search ul.page-numbers {
	margin: 0;
}

.search ol.results {
	max-width: 80%;
	margin: 0 auto;
	padding: 20px 0 20px 30px;
	padding: 2rem 0 2rem 3rem;
	color: #39474F;
}

.search ol.results li {
	font-size: 20px;
	font-size: 2rem;
	padding-left: 10px;
	padding-left: 1rem;
	margin: 0;
}

.search ol.results li p {
	color: #39474F;
}

.search ol.results li ~ li {
	margin: 20px 0 0;
	margin: 2rem 0 0;
}

.search ol.results li:after {
	content: '';
	display: block;
	clear: both;
}

.search ol.results li .learn-more {
	margin: 0;
}
/*
.page-template-home-loans .lead .content,
.page-template-mortgage-calculator .lead .content,
.page-template-checking-savings .lead .content,
.page-template-left-image-right-content .lead .content,
.page-template-left-image-right-content-flex .lead .content {
	padding: 0 0 95px;
}

.page-template-home-loans nav.subpage-menu,
.page-template-mortgage-calculator nav.subpage-menu,
.page-template-checking-savings nav.subpage-menu,
.page-template-left-image-right-content nav.subpage-menu,
.page-template-left-image-right-content-flex nav.subpage-menu {
	top: -95px;
	z-index: 20;
}*/

article .top {
	background-color: #00355A;
	padding: 25px 0;
	padding: 2.5rem 0;
	text-align: center;
	position: relative;
	z-index: 5;
}

article .top h2,
article .top p {
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.5;
	color: #F89E53;
	font-weight: 300;
	margin: 0 auto 15px;
	margin: 0 auto 1.5rem;
	max-width: 85%;
}

article .top p {
	color: #fff;
}

article .top a.learn-more {
	margin-top: 15px;
}

.single-customer article .column,
.page-template-left-image-right-content article .column,
.page-template-left-image-right-content-flex article .column {
	position: relative;
	z-index: 5;
}

.single-customer article p.left-image,
.page-template-left-image-right-content article p.left-image,
.page-template-left-image-right-content-flex article p.left-image {
	position: relative;
	margin: 0;
}

.single-customer article p.left-image img,
.page-template-left-image-right-content article p.left-image img,
.page-template-left-image-right-content-flex article p.left-image img {
	position: relative;
	z-index: 5;
	margin: 0;
}

article .column.has-header-icon h2:first-child:before {
	padding: 65px 0 0 65px;
	background: none center center no-repeat;
	background-size: contain;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin: 0 auto 15px;
}

article .column.has-header-icon.chart h2:first-child:before {
	background-image: url('../images/title-chart.png');
	background-image: url('../images/title-chart.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.people h2:first-child:before {
	background-image: url('../images/title-people.png');
	background-image: url('../images/title-people.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.handshake h2:first-child:before {
	background-image: url('../images/title-handshake.png');
	background-image: url('../images/title-handshake.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.target h2:first-child:before {
	background-image: url('../images/title-target.png');
	background-image: url('../images/title-target.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.hand-dollar h2:first-child:before {
	background-image: url('../images/title-discretionary.png');
	background-image: url('../images/title-discretionary.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.check-dollar h2:first-child:before {
	background-image: url('../images/title-non-discretionary.png');
	background-image: url('../images/title-non-discretionary.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.savings h2:first-child:before {
	background-image: url('../images/title-savings.png');
	background-image: url('../images/title-savings.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.checking h2:first-child:before {
	background-image: url('../images/title-checking.png');
	background-image: url('../images/title-checking.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.diploma h2:first-child:before {
	background-image: url('../images/title-diploma.png');
	background-image: url('../images/title-diploma.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.award h2:first-child:before {
	background-image: url('../images/title-award.png');
	background-image: url('../images/title-award.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.wall-award h2:first-child:before {
	background-image: url('../images/title-wall-award.png');
	background-image: url('../images/title-wall-award.svg'), linear-gradient(transparent, transparent);
}

article .column.has-header-icon.nest-egg h2:first-child:before {
	background-image: url('../images/title-nest-egg.png');
	background-image: url('../images/title-nest-egg.svg'), linear-gradient(transparent, transparent);
}

article .column.non-discretionary {
	background-color: #A5D2DD;
}

/**
 * Checking & Savings
 */
.page-template-checking-savings article {
	background-color: #B7C2CC;
}

.page-template-checking-savings article .column {
	position: relative;
	z-index: 5;
}

.page-template-checking-savings article .column ~ .column:before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: -9%;
	width: 118%;
	background-color: #BEACB2;
}

.page-template-credit-cards .lead nav.subpage-menu,
.page-template-northern-trust .lead nav.subpage-menu,
.page-template-home-loans .lead nav.subpage-menu,
.page-template-mortgage-calculator .lead nav.subpage-menu,
.page-template-directory .lead nav.subpage-menu,
.page-template-multicolor-columns .lead nav.subpage-menu,
.page-template-contact .lead nav.subpage-menu,
.page-template-two-columns .lead nav.subpage-menu,
.page-template-checking-savings .lead nav.subpage-menu,
.page-template-trust-and-investment .lead nav.subpage-menu,
.page-template-types-of-accounts .lead nav.subpage-menu {
	width: 118%;
	left: -9%;
	max-width: none;
}

/**
 * Mortgage Calculator
 */
.page-template-mortgage-calculator article {
	padding: 0;
}

#mortgage-calculator {
	display: block;
	clear: both;
	position: relative;
	z-index: 20;
	background-color: #B7C2CC;
}

#mortgage-calculator fieldset {
	max-width: 85%;
	margin: 0 auto;
	text-align: center;
	font-size: 0;
	padding: 15px 0 25px;
	padding: 1.5rem 0 2.5rem;
}

#mortgage-calculator fieldset div {
	clear: both;
	padding: 10px;
}

#mortgage-calculator fieldset div:after {
	content: '';
	display: block;
	clear: both;
}

#mortgage-calculator fieldset label {
	display: block;
	width: 50%;
	text-align: right;
	line-height: 40px;
	line-height: 4rem;
	color: #39474F;
	float: left;
	font-family: 'Fira Sans Book';
	font-size: 12px;
	font-size: 1.2rem;
	padding: 0 20px 0 0;
	padding: 0 2rem 0 0;
	margin: 0 20px 0 0;
	margin: 0 2rem 0 0;
	cursor: pointer;
	white-space: nowrap;
	direction: rtl;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#mortgage-calculator fieldset label small {
	font-size: 8px;
	font-size: 0.8rem;
}

#mortgage-calculator fieldset div input::-webkit-inner-spin-button,
#mortgage-calculator fieldset div input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#mortgage-calculator fieldset div input {
	-moz-appearance: textfield;
}

#mortgage-calculator fieldset div input,
#mortgage-calculator fieldset div select {
	display: block;
	float: left;
	width: 150px;
	width: 15rem;
	width: calc(50% - 4rem);
	line-height: 40px;
	height: 40px;
	background-color: #fff;
	font-family: 'Fira Sans';
	font-size: 14px;
	font-size: 1.4rem;
	border: 0;
	padding: 0 0 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#mortgage-calculator fieldset input[type="submit"] {
	display: block;
	height: 40px;
	height: 4rem;
	line-height: 40px;
	line-height: 4rem;
	font-family: 'Fira Sans';
	font-size: 16px;
	font-size: 1.6rem;
	border: 0;
	padding: 0 15px;
	background-color: #fff;
	color: #39474F;
	border-radius: 5px;
	margin: 10px auto 0;
	margin-top: 1rem;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.mortgage-calculation {
	margin: 20px auto 30px;
	margin: 2rem auto 3rem;
}

.mortgage-calculation thead th:first-child {
	max-width: 0;
	overflow: hidden;
	text-indent: -999px;
}

.mortgage-calculation thead th,
.mortgage-calculation tbody td {
	padding: 10px 7px;
	padding: 1rem 0.7rem;
}

.share {
	text-align: center;
	padding: 0;
	margin: 30px 0 15px;
}

.share:before {
	content: attr(data-caption);
	font-size: 18px;
	font-size: 1.8rem;
	color: #39474F;
	line-height: 1.6;
	margin: 0 auto;
	text-align: center;
	font-weight: 300;
	display: block;
}

.share li {
	display: inline-block;
	width: 30px;
	width: 3rem;
	height: 30px;
	height: 3rem;
	margin: 10px;
	margin: 1rem;
}

.share li a {
	display: block;
	height: 0;
	width: 0;
	padding: 100% 0 0 100%;
	border-radius: 5px;
	background: #39474F none center center no-repeat;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.share li.facebook a {
	background-image: url('../images/social-facebook.png');
	background-image: url('../images/social-facebook.svg'), linear-gradient(transparent, transparent);
}

.share li.twitter a {
	background-image: url('../images/social-twitter.png');
	background-image: url('../images/social-twitter.svg'), linear-gradient(transparent, transparent);
}

.share li.linkedin a {
	background-image: url('../images/social-linkedin.png');
	background-image: url('../images/social-linkedin.svg'), linear-gradient(transparent, transparent);
}

.share li.email a {
	background-image: url('../images/social-email.png');
	background-image: url('../images/social-email.svg'), linear-gradient(transparent, transparent);
}

/**
 * Home Loans
 */
.page-template-home-loans article {
	background-color: #B4BBBF;
}

.page-template-home-loans .column {
	position: relative;
	z-index: 1;
}

.page-template-home-loans .column ~ .column {
	background-color: #808384;
	padding-left: 7.5%;
	padding-right: 7.5%;
}

.page-template-home-loans .column ~ .column h2,
.page-template-home-loans .column ~ .column h3,
.page-template-home-loans .column ~ .column p,
.page-template-home-loans .column ~ .column li {
	color: #fff;
}

#adjustable-rates table {
	table-layout: fixed;
	width: 100%;
}

#adjustable-rates table thead th {
	vertical-align: middle;
}

#adjustable-rates table input[type="submit"],
#adjustable-rates table select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

#adjustable-rates table input[type="submit"] {
	background-color: #F89E53;
	color: #fff;
	font-family: 'Fira Sans';
	padding: 0;
	padding: 0 1.5rem;
	line-height: 30px;
	line-height: 3rem;
	border-radius: 5px;
	display: block;
	border: 0;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
}

#adjustable-rates thead label,
#adjustable-rates thead tr:first-child ~ tr,
#adjustable-rates tbody td {
	display: none;
}

#adjustable-rates[data-columns~="1"] tbody th + td,
#adjustable-rates[data-columns~="2"] tbody th + td + td,
#adjustable-rates[data-columns~="3"] tbody th + td + td + td,
#adjustable-rates[data-columns~="4"] tbody th + td + td + td + td {
	display: table-cell;
}

.fixed-rate {
	width: 85%;
	margin: 0 auto 15px;
	margin-bottom: 1.5rem;
}

.fixed-rate:after {
	content: '';
	display: block;
	clear: both;
}

.fixed-rate dt {
	float: left;
	clear: left;
	display: block;
	width: 50%;
	width: calc(50% - 10px);
	width: calc(50% - 1rem);
	background-color: #748A96;
	line-height: 50px;
	line-height: 5rem;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Fira Sans Book';
	padding: 0 10px 0 0;
	padding: 0 1rem 0 0;
	text-align: right;
}

.fixed-rate dt:after {
	content: ':';
}

.fixed-rate dd {
	float: left;
	display: block;
	width: 50%;
	width: calc(50% - 11px);
	width: calc(50% - 1.1rem);
	background-color: #748A96;
	line-height: 50px;
	line-height: 5rem;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Fira Sans Book';
	padding: 0 0 0 10px;
	padding: 0 0 0 1rem;
	margin: 0 0 0 1px;
	text-align: left;
}

.fixed-rate dt:nth-of-type(odd),
.fixed-rate dd:nth-of-type(odd) {
	background-color: #647883;
}

article a.footnote {
	text-decoration: none;
}

.footnote:before {
	content: '';
	font-family: dashicons;
	vertical-align: top;
	font-size: 12px;
	font-size: 1.2rem;
}

span.footnote:before {
	padding-right: 5px;
}

.footnote.plus:before {
	content: "\f132";
}

.footnote.circle:before {
	content: "\f159";
}

.footnote.star:before {
	content: "\f155";
}

.footnote.star-empty:before {
	content: "\f154";
}

span[id^="footnote-"]:target {
	background-color: #748A96;
	color: #fff;
}

/**
 * Credit Cards
 */
.page-template-credit-cards article {
	background-color: #CAD5DA;
}

.page-template-northern-trust article {
	background-color: #A5D2DD;
}

.page-template-credit-cards .column:before,
.page-template-northern-trust .column:before {
	content: '';
	height: 320px;
	display: block;
	width: 118%;
	margin-left: -9%;
	margin-bottom: 25px;
	margin-bottom: 2.5rem;
	padding: 25px 0;
	padding: 2.5rem 0;
	background: #DEE6CC url('../images/credit-cards-2018.png') center center no-repeat;
	/*background-image: url('../images/credit-cards.svg'), linear-gradient(transparent, transparent);*/
}

.page-template-northern-trust .column:before {
	background-color: #B6AAA8;
	background-image: url('../images/logo-northern-trust.png');
	background-image: url('../images/logo-northern-trust.svg'), linear-gradient(transparent, transparent);
	background-size: 85%;
}

.page-template-credit-cards .column,
.page-template-northern-trust .column {
	padding-top: 0;
}

/**
 * Front page/landing
 */
body.home article {
	padding: 0;
	height: 100%;
}

.person-list-container {
	padding: 30px 0 0;
	position: relative;
	z-index: 1;
	background: #98becc;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1 1" preserveAspectRatio="none"><linearGradient id="grad-ucgg-generated" gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="0%" y2="100%">\
		<stop offset="0%" stop-color="#98becc" stop-opacity="1"/>\
		<stop offset="39%" stop-color="#9cbfcb" stop-opacity="1"/>\
		<stop offset="62%" stop-color="#8eb2be" stop-opacity="1"/>\
		<stop offset="100%" stop-color="#84a9b4" stop-opacity="1"/></linearGradient><rect x="0" y="0" width="1" height="1" fill="url(#grad-ucgg-generated)" /></svg>');
	background: -moz-linear-gradient(top,  #98becc 0%, #9cbfcb 39%, #8eb2be 62%, #84a9b4 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#98becc), color-stop(39%,#9cbfcb), color-stop(62%,#8eb2be), color-stop(100%,#84a9b4));
	background: -webkit-linear-gradient(top,  #98becc 0%,#9cbfcb 39%,#8eb2be 62%,#84a9b4 100%);
	background: -o-linear-gradient(top,  #98becc 0%,#9cbfcb 39%,#8eb2be 62%,#84a9b4 100%);
	background: -ms-linear-gradient(top,  #98becc 0%,#9cbfcb 39%,#8eb2be 62%,#84a9b4 100%);
	background: linear-gradient(to bottom,  #98becc 0%,#9cbfcb 39%,#8eb2be 62%,#84a9b4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#98becc', endColorstr='#84a9b4',GradientType=0 );
}
.person-list-container.darker {
	background: #728e99;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1 1" preserveAspectRatio="none"><linearGradient id="grad-ucgg-generated" gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="0%" y2="100%">\
		<stop offset="0%" stop-color="#728e99" stop-opacity="1"/>\
		<stop offset="39%" stop-color="#738d96" stop-opacity="1"/>\
		<stop offset="62%" stop-color="#678189" stop-opacity="1"/>\
		<stop offset="100%" stop-color="#5e787f" stop-opacity="1"/></linearGradient><rect x="0" y="0" width="1" height="1" fill="url(#grad-ucgg-generated)" /></svg>');
	background: linear-gradient(to bottom, #728e99 0%,#738d96 39%,#678189 62%,#5e787f 100%);
	background: -moz-linear-gradient(top,  #728e99 0%, #738d96 39%, #678189 62%, #5e787f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#728e99), color-stop(39%,#738d96), color-stop(62%,#678189), color-stop(100%,#5e787f));
	background: -webkit-linear-gradient(top,  #728e99 0%,#738d96 39%,#678189 62%,#5e787f 100%);
	background: -o-linear-gradient(top,  #728e99 0%,#738d96 39%,#678189 62%,#5e787f 100%);
	background: -ms-linear-gradient(top,  #728e99 0%,#738d96 39%,#678189 62%,#5e787f 100%);
	background: linear-gradient(to bottom,  #728e99 0%,#738d96 39%,#678189 62%,#5e787f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#728e99', endColorstr='#5e787f',GradientType=0 );
}

.person-list-container .button {
	position: absolute;
	left: 15px;
	top: 50%;
	top: -webkit-calc(50% - 54px);
	top:    -moz-calc(50% - 54px);
	top:         calc(50% - 54px);
	padding: 108px 0 0 34px;
	display: block;
	height: 0;
	width: 0;
	z-index: 5;
	overflow: hidden;
	background: url('../images/our-stories-prev.png') center center no-repeat;
	background-image: url('../images/our-stories-prev.svg'), linear-gradient(transparent, transparent);
}

.person-list-container .button.next {
	left: auto;
	right: 15px;
	background-image: url('../images/our-stories-next.png');
	background-image: url('../images/our-stories-next.svg'), linear-gradient(transparent, transparent);
}

.person-list {
	margin: 0 auto;
	padding: 0 25px;
	height: 100%;
	white-space: nowrap;
	font-size: 0;
	overflow: auto;
	z-index: 1;
}

.person-list:after {
	content: '';
	display: block;
	clear: both;
}

.person-list li {
	margin: 0;
	height: 100%;
	display: inline-block;
	position: relative;
}

.person-list li ~ li {
	margin-left: 25px;
}

.person-list li a {
	display: block;
	height: 100%;
	text-align: center;
}

.person-list li a img {
	margin: 0;
	width: auto;
	height: 80%;
	display: inline-block;
	vertical-align: bottom;
	position: relative;
	z-index: 1;
}

.single .person-list li a img {
	-webkit-filter: grayscale(100%);
	-webkit-transition: 0.2s ease-in-out;
	-moz-filter: grayscale(100%);
	-moz-transition: 0.2s ease-in-out;
	-o-filter: grayscale(100%);
	-o-transition: 0.2s ease-in-out;
	filter: grayscale(100%);
	transition: 0.2s ease-in-out;
	filter: gray;
}

.person-list li.active a img,
.person-list li a:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: none;
}

.person-list li a:before {
	display: inline-block;
	content: '';
	height: 100%;
}

.person-list li a div {
	background-color: #fff;
	position: absolute;
	bottom: 8%;
	z-index: 5;
	left: 50%;
	/*right: 15%;*/
	min-width: 150px;
	white-space: normal;
	padding: 10px;
	text-align: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	opacity: 0;
	border-radius: 5px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.person-list li a div:after {
	content: '';
	display: block;
	border-style: solid;
	border-color: #fff transparent;
	border-width: 0 25px 15px;
	top: -15px;
	left: 50%;
	left: calc(50% - 25px);
	position: absolute;
}

.single .person-list li.active a div {
	opacity: 1;
	bottom: 10%;
}

.person-list li a div span {
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Fira Sans Book';
	color: #231F20;
	line-height: 1.4;
	display: block;
}

.person-list li a div span.name:after {
	content: ', ';
}

.person-list li a div span.year {
	color: #5890B1;
}

.person-list li a div span.location {
	color: #F89E53;
}

.single-customer article {
	padding: 0;
	width: 100%;
}

.home article nav {
	display: none;
}

.person-list li.active a div {
	opacity: 1;
	bottom: 10%;
}

/**
 * Trust & Investment
 */
.page-template-trust-and-investment article {
	overflow: visible;
}

.trust-investment-footer {
	background-color: #fff;
	padding: 25px 7.5%;
	position: relative;
	z-index: 5;
}

.trust-investment-footer h2 {
	font-size: 40px;
	font-size: 4rem;
	line-height: 1.1;
	color: #414042;
	font-weight: 200;
	text-align: center;
}

.trust-investment-footer p {
	font-family: 'Fira Sans Book';
	font-weight: 400;
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.1;
	color: #414042;
	margin: 15px 0 0;
	margin-top: 1.5rem;
	text-align: center;
}

.trust-investment-footer p ~ p {
	font-size: 16px;
	font-size: 1.6rem;
}

.trust-investment-nav {
	padding: 25px 7.5%;
	background-color: #E2E3E4;
}

.trust-investment-nav > ul {
	margin: 0;
	padding: 0;
}

.trust-investment-nav > ul:after {
	content: '';
	display: block;
	clear: both;
}

.trust-investment-nav > ul > li {
	display: block;
}

.trust-investment-nav > ul > li ~ li {
	margin-top: 25px;
}

.trust-investment-nav > ul > li:before {
	content: '';
	display: block;
	margin: 0 auto 10px;
	margin-bottom: 1rem;
	border: 2px solid #C7C8CA;
	background: #fff center center no-repeat;
	width: 116px;
	height: 116px;
	border-radius: 60px;
}

.trust-investment-nav > ul > li.flower:before {
	background-image: url('../images/trust-investment-flower.png');
	background-image: url('../images/trust-investment-flower.svg'), linear-gradient(transparent, transparent);
}

.trust-investment-nav > ul > li.certificate:before {
	background-image: url('../images/trust-investment-certificate.png');
	background-image: url('../images/trust-investment-certificate.svg'), linear-gradient(transparent, transparent);
}

.trust-investment-nav > ul > li.gears:before {
	background-image: url('../images/trust-investment-gears.png');
	background-image: url('../images/trust-investment-gears.svg'), linear-gradient(transparent, transparent);
}

.trust-investment-nav > ul > li.people:before {
	background-image: url('../images/trust-investment-people.png');
	background-image: url('../images/trust-investment-people.svg'), linear-gradient(transparent, transparent);
}

.trust-investment-nav > ul > li div {
	padding: 0 20px;
	margin: 0 0 10px;
	margin-bottom: 1rem;
}

.trust-investment-nav > ul > li h2 {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.25;
	color: #414042;
	text-transform: lowercase;
	font-weight: 300;
	text-align: center;
	margin: 0 0 10px;
	margin-bottom: 1rem;
}

.trust-investment-nav > ul > li p {
	font-family: 'Fira Sans Book';
	font-weight: 400;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #414042;
	text-align: center;
	margin: 0 0 15px;
	margin-bottom: 1.5rem;
}

.trust-investment-nav > ul > li > ul {
	padding: 0;
	margin: 0;
}

.trust-investment-nav > ul > li > ul > li {
	display: block;
	line-height: 36px;
	border: 1px solid #fff;
}

.trust-investment-nav > ul > li > ul > li ~ li {
	border-top: 0;
}

.trust-investment-nav > ul > li > ul > li > a {
	display: block;
	padding: 8px 25px 8px 10px;
	color: #414042;
	font-weight: 300;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.25;
	position: relative;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.trust-investment-nav > ul > li > ul > li > a:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 15;
	top: 10px;
	right: 10px;
	width: 0;
	border-width: 7.5px 0 7.5px 10px;
	border-style: solid;
	border-color: transparent #F89E53;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

/**
 * Directory
 */
.page-template-directory article {
	background-color: #C9B7BD;
	padding-bottom: 30px;
	padding-bottom: 3rem;
}

.page-template-directory article .top {
	margin-bottom: 30px;
	margin-bottom: 3rem;
}

.page-template-directory article .person {
	width: 70%;
	margin: 0 auto;
	background-color: #FFFDED;
	text-align: center;
	padding: 10px 7.5%;
	padding: 1rem 7.5%;
}

.page-template-directory article .person ~ .person {
	margin: 1px auto 0;
}

.page-template-directory article .person h2 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #39474F;
	font-weight: 600;
	margin: 0;
}

.page-template-directory article .person p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #39474F;
	font-weight: 600;
	margin: 0;
}

.page-template-directory article .person p.job-title {
	font-style: italic;
	font-weight: 400;
}

/**
 * Contact
 */
.page-template-contact article {
	padding-bottom: 30px;
	padding-bottom: 3rem;
	background-color: #B3C5C4;
}

.page-template-contact article .top {
	margin-bottom: 30px;
	margin-bottom: 3rem;
}

/**
 * Subpage menu
 */
nav.subpage-menu {
	position: relative;
	z-index: 5;
}

nav.subpage-menu > ul {
	text-align: center;
	padding: 0;
	margin: 0;
}

nav.subpage-menu > ul > li {
	display: inline-table;
	table-layout: fixed;
	width: 150px;
	height: 75px;
	margin: 0 10px 20px;
	margin: 0 1rem 2rem;;
	vertical-align: top;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-spacing: 0;
}

nav.subpage-menu > ul > li > ul {
	display: none;
	opacity: 0;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	z-index: 20;
	background-color: #fff;
	border-radius: 0 0 5px 5px;
	padding: 15px 0;
	text-align: left;
	list-style: none;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	/*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);*/
}

nav.subpage-menu.dark > ul > li > ul {
	background-color: #39474F;
	/*box-shadow: 3px 3px 3px rgba(255, 255, 255, 0.5);*/
}

nav.subpage-menu > ul > li > ul > li {
	padding: 5px 10px;
	padding: 0.5rem 1rem;
	display: block;
}

nav.subpage-menu > ul > li > ul > li > a {
	color: #F89E53;
	font-family: 'Fira Sans Book';
	font-size: 14px;
	font-size: 1.4rem;
	display: block;
	line-height: 1.1;
	text-decoration: none;
}

nav.subpage-menu.dark > ul > li > ul > li > a {
	color: #fff;
}

nav.subpage-menu.dark > ul > li {
	border-color: #39474F;
}

nav.subpage-menu > ul > li > a {
	display: table-cell;
	vertical-align: middle;
	line-height: 1.1;
	font-family: 'Fira Sans Book';
	font-size: 16px;
	font-size: 1.6rem;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	z-index: 5;
	border: 1px solid #fff;
	padding: 0 15px;
	padding: 0 1.5rem;
	text-shadow: 1px 1px 2px rgba(57, 71, 79, 0.9);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	width: 88px;
	text-decoration: none;
}

nav.subpage-menu.dark > ul > li > a {
	color: #39474F;
	border-color: #39474F;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

nav.subpage-menu > ul > li.current-menu-item > a,
nav.subpage-menu > ul > li.current-menu-ancestor > a {
	color: #fff;
	background-color: #F89E53;
	border-color: #F89E53;
	text-shadow: none;
}


nav.subpage-menu > ul > li.has-children > a {
	padding-right: 45px;
	padding-right: 4.5rem;
}

nav.subpage-menu > ul > li.has-children:before {
	content: '';
	display: block;
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	right: 0;
	width: 30px;
	background-color: #fff;
	border-radius: 0 5px 5px 0;
}

nav.subpage-menu.dark > ul > li.has-children:before {
	background-color: #39474F;
}

nav.subpage-menu > ul > li.has-children:after {
	content: '';
	display: block;
	position: absolute;
	z-index: 15;
	top: 30px;
	right: 9.375px;
	width: 0;
	border-width: 7.5px 0 7.5px 11.25px;
	border-style: solid;
	border-color: transparent #F89E53;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

nav.subpage-menu.dark > ul > li.has-children:after {
	border-color: transparent #fff;
}

nav.subpage-menu > ul > li.has-children:hover:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

nav.subpage-menu > ul > li.has-children:hover > ul {
	display: block;
	opacity: 1;
}

/**
 * Footer navigation
 */
.menu-footer-container {
	background-color: #4E819F;
	text-align: center;
	font-size: 0;
	padding: 10px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.menu-footer-container:after {
	clear: both;
	content: '';
	display: block;
}

.menu-footer-container li {
	display: inline-block;
	line-height: 40px;
	margin: 0 10px;
}

.menu-footer-container li a {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 40px;
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
	white-space: nowrap;
}

.menu-footer-container li.icon-fdic a,
.menu-footer-container li.icon-equal-housing a {
	color: #fff;
	text-transform: none;
	font-size: 13px;
}

.menu-footer-container li.current-menu-item a {
	color: #FFF579;
}

.menu-footer-container li.icon-equal-housing a {
	text-align: left;
}

.menu-footer-container li.icon-equal-housing a:before {
	content: '';
	display: block;
	height: 40px;
	width: 35px;
	background: url('../images/icon-equal-housing-white.png') center center no-repeat;
	background-image: url('../images/icon-equal-housing-white.svg'), linear-gradient(transparent, transparent);
	float: left;
	margin: 0 5px 0 0;
}

.menu-footer-container li.icon-fdic span {
	float: right;
	padding: 40px 0 0 50px;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
	background: url('../images/icon-fdic-white.png') center center no-repeat;
	background-image: url('../images/icon-fdic-white.svg'), linear-gradient(transparent, transparent);
	margin: 0 0 0 5px;
}

/**
 * Footer
 */

.newsworthy {
	background-color: #00355A;
	padding: 25px;
	padding: 2.5rem;
	text-align: center;
}

.newsworthy h2 {
	font-weight: 300;
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 1.5;
	color: #F89E53;
	width: 85%;
	margin: 0 auto 10px;
	margin: 0 auto 1rem;
}

.newsworthy p {
	width: 85%;
	max-width: 360px;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.6;
	margin: 0 auto 20px;
	margin: 0 auto 2rem;
}

@media screen and ( min-width: 620px ) {

	.newsworthy {
		white-space: nowrap;
		text-align: center;
		height: 40px;
	}

	.newsworthy h2 {
		display: none;
	}

	.newsworthy p {
		display: inline-block;
		width: auto;
		vertical-align: middle;
		font-size: 12px;
		font-size: 1.2rem;
		margin: 0 30px 0 0;
		margin: 0 3rem 0 0;
		white-space: normal;
		text-align: center;
	}

	.newsworthy .learn-more {
		margin-left: 0;
	}

	.newsworthy .learn-more:after {
		border-width: 5px 7px 5px 0;
		border-color: transparent #F89E53;
		top: 15px;
		right: 100%;
	}

}

body > footer {
	background-color: #00355A;
}

body > footer p {
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 30px;
	width: 85%;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	padding: 5px 0;
}

body > footer p a {
	color: #fff;
}


.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}


.modal-open {
  overflow: hidden;
  position: relative;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
@media (min-width: 768px) {
.modal-dialog {
  width: 600px;
  margin: 30px auto;
}
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0,-25%);
  -ms-transform: translate(0,-25%);
  -o-transform: translate(0,-25%);
  transform: translate(0,-25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}

@media (min-width: 768px) {
.modal-content {
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
  box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #00355A;
  color: white;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}


.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-content p {
  text-align: center;
  margin: 0 0 15px;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  font-size: 1.6em;
  font-size: 1.6rem;
  color: #39474F;
}
.modal .netteller {
	color: #00355A;
}
.modal .netteller:hover {
	text-decoration: underline;
}
