/* Colors

#333    - Body text
#003e7e - Blue
#8e0c3a - Red
#f2f5f8 - Light Blue BG
#ffe293 - Yellow

*/

/* ----------------------------------------------- */
/* All widths (XS through LG) */
/* ----------------------------------------------- */

/* State Indicator for use in JS */
.grid-size-indicator {
    position: absolute;
    top: -999em;
    left: -999em;
}
/* XS */
.grid-size-indicator { z-index: 1; }
/* SM */
@media (min-width: 768px) {
	.grid-size-indicator { z-index: 2; }
}
/* MD */
@media (min-width: 992px) {
	.grid-size-indicator { z-index: 3; }
}
/* LG */
@media (min-width: 1200px) {
	.grid-size-indicator { z-index: 4; }
}

.site-max-width {
	max-width:1170px;
}
.img-responsive {
    height: auto !important;
}
iframe {
	border:0 none; /* frameborder=0 */
	overflow:hidden; /* scrolling=no */
	background-color:transparent; /* allowtransparency */
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-style:normal;
	font-weight:400;
	font-size:15px;
	color:#333;
	line-height:1.5;
	background-color:#003e7e;
}
a,
a:active,
a:hover {
	color:#003e7e;
}
article a {
	text-decoration:underline;
}
article a:hover {
	text-decoration:none;
}
p,
ul,
ol {
    margin-bottom:1.5em;
}
h1,h2,h3,h4,h5,h6 {
	margin-top:0;
}
article h1 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:2.8em; /* 42px */
	color:#8e0c3a;
	line-height:1.1;
	margin-bottom:0.5357em;
}
article h2 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:2em; /* 30px */
	color:#003e7e;
	line-height:1.2;
	margin-bottom:0.75em;
}
article h2.subhead,
article h3 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:1.533em; /* 23px */
	color:#8e0c3a;
	line-height:1.533;
	margin-bottom:0;
}
article h3.subhead {
	color:#003e7e;
}
.text-bold-1 {
	font-weight:700;
	color:#003e7e; /* blue */
}
.text-bold-2 {
	font-weight:700;
	color:#8e0c3a; /* red */
}
.text-bold-3 {
	font-weight:700;
	color:#000; /* black */
}
.text-testimonial {
	font-family: 'Courgette', cursive;
	font-style: normal;
	font-weight: 400;
	font-size: 1.0667em;
}
small {
	font-size:0.867em; /* 13px */
}
.text-footnote {
	color:#777;
}
.text-18px {
	font-size:18px;
}
article .pull-left {
	margin:0 20px 10px 0;
}
article .pull-right {
	margin:0 0 10px 20px;
}
.form-control {
	height:2.267em; /* 34px */
	padding:3px 8px;
	font-size:1em;
	border:1px solid #aaa;
	border-radius:0;
	box-shadow:inset 2px 2px 2px #eee;
}
:-ms-input-placeholder {
   color: #aaa;
}
.placeholder {
  color: #aaa; /* For placeholder fallback */
}

/* ----- Buttons ----- */

.btn {
    /* override */
	padding:7px 16px;
	font-size:1em; /* 15px */
	border-radius:0;
	font-weight:700;
	border:0 none;
	text-decoration:none !important;
}
.btn-sm {
	font-size:1em;
	padding:5px 12px;
}
.page-content .btn {
	margin-top:5px;
	margin-bottom:5px;
}

/* Solid Blue Button */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color:#003e7e;
	color:#fff;
}
.btn-primary:hover {
	background-color:#0051a4;
	color:#fff;
}
/* Solid Red Button */
.btn-primary-2,
.btn-primary-2:focus,
.btn-primary-2:active,
.btn-primary-2:active:focus {
	background-color:#8e0c3a;
	color:#fff;
}
.btn-primary-2:hover {
	background-color:#bb1151;
	color:#fff;
}

/* ----- List styles ----- */

.page-content > ul,
.tab-pane > ul,
.page-content td > ul,
.page-content div > ul {
	padding-left: 1em;
	margin-top:1.5em;
}
.page-content > ul > li,
.tab-pane > ul > li,
.page-content td > ul > li,
.page-content div > ul > li {
	list-style-type:none;
	margin:0 0 .5em 0;
	padding-left:1.5em;
	text-indent:-1.1em;
}
.page-content > ul > li:before,
.tab-pane > ul > li:before,
.page-content td > ul > li:before,
.page-content div > ul > li:before {
	content:"\25CF"; /* Unicode Character Black Circle */
	font-size:16px;
	font-weight:700;
	color:#8e0c3a;
	margin-right:.5em;
}
.page-content > ul > li li,
.tab-pane > ul > li li,
.page-content td > ul > li li,
.page-content div > ul > li li {
	padding-left:0;
	text-indent:0;
}
/* Two Levels Deeps */
.page-content ul ul li,
.page-content ol ul li {
	list-style-type:disc;
}
.page-content ul ol li {
	list-style-type:decimal;
}
.page-content ol ol li {
	list-style-type:lower-alpha;
}
/* Three Levels Deeps */
.page-content ol ol ul li,
.page-content ul ol ul li {
	list-style-type:disc;
}
.page-content ul ul ul li,
.page-content ol ul ul li {
	list-style-type:circle;
}
.page-content ul ol ol li,
.page-content ul ul ol li,
.page-content ol ul ol li {
	list-style-type:lower-alpha;
}
.page-content ol ol ol li {
	list-style-type:lower-roman;
}

/* --------------- Dropdown Menu --------------- */

.page-content ul.dropdown-menu {
    padding:0;
    margin:0;
}
.page-content ul.dropdown-menu li {
    list-style: none;
    margin:0;
    padding:0;
    text-indent: 0;
}
.page-content ul.dropdown-menu li:before {
    display: none;
}
.page-content .dropdown-menu a {
    padding:7px 20px;
    text-decoration: none;
}
.page-content .dropdown-menu a:hover {
    background-color:#e4eaf1;
}

/* --------------- Tables --------------- */

.table caption {
	background-color:#003e7e;
	color:#fff;
	font-size:1.2em;
	font-weight:700;
	padding:6px 8px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	text-align:left;
}
.table > tbody > tr > th {
	background-color:#e4eaf1;
	color:#003e7e;
	vertical-align:bottom;
}
.table > tbody > tr > th.subhead {
	background-color:#fff;
	border-bottom:3px solid #ddd;
}
.table > tbody > tr:first-child > td {
	border-top:0 none;
}
.table > tbody > tr > td {
}
.layout-table > tbody > tr > td {
	border-top:0 none;
	padding:10px;
}
.benefits-table > tbody > tr > td {
	padding-top:20px;
	padding-bottom:20px;
}


/* --------------- Forms --------------- */

.form-table > tbody > tr > th,
.form-table > tbody > tr > td {
	border-top: 0 none;
}
.form-table table td {
	padding:0;
}
.form-table th {
	font-weight:400;
}
.form-table label {
	font-weight:400;
	margin-bottom:0;
}
.form-table-2 > tbody > tr > th,
.form-table-2 > tbody > tr > td {
	border-top: 0 none;
}
.form-table-2 table td {
	padding:0;
}
.form-table-2 th {
	font-weight:400;
}
.form-table-2 label {
	font-weight:400;
	margin-bottom:0;
}
.ErrorLabel,
.EditingFormErrorLabel {
	font-weight:700;
	color:#C00;
}
.EditingFormControlNestedControl input {
	box-sizing:content-box;
}
.FormPanel {
	margin-bottom:1.5em;
}
.form-table .EditingFormControlNestedControl td {
    border:0 none;
	padding:2px 0;
}
.form-table .TextBoxField,
.ssn-input input,
.date-input input,
.date-time-input input,
.phone-input input,
.zip-input input,
.captcha-input input,
.TextAreaField {
    border:1px solid #ccc;
}
.form-table .TextBoxField:focus,
.ssn-input input:focus,
.date-input input:focus,
.date-time-input input:focus,
.phone-input input:focus,
.zip-input input:focus,
.captcha-input input:focus,
.TextAreaField:focus {
    border:1px solid #888;
}
.form-table input,
.form-table textarea {
	width:100%;
}
.form-table .RadioButtonList input,
.RadioButtonList input,
.form-table .CheckBoxListField input,
.CheckBoxListField input,
.form-table input.FormButton {
	width:auto;
	margin-right:5px;
}
.form-table-2 .EditingFormControlNestedControl td {
    border:0 none;
	padding:2px 0;
}
.form-table-2 .TextBoxField,
.ssn-input input,
.date-input input,
.date-time-input input,
.phone-input input,
.zip-input input,
.captcha-input input,
.TextAreaField {
    border:1px solid #ccc;
}
.form-table-2 .TextBoxField:focus,
.ssn-input input:focus,
.date-input input:focus,
.date-time-input input:focus,
.phone-input input:focus,
.zip-input input:focus,
.captcha-input input:focus,
.TextAreaField:focus {
    border:1px solid #888;
}
.form-table-2 input,
.form-table-2 textarea {
	width:100%;
}
.form-table-2 .RadioButtonList input,
.RadioButtonList input,
.form-table-2 .CheckBoxListField input,
.CheckBoxListField input,
.form-table-2 input.FormButton {
	width:auto;
	margin-right:5px;
}
.RadioButtonList label {
	margin-right:10px;
}
.EditingFormControlNestedControl {
	display:inline;
	vertical-align:middle;
}
.phone-input {
    white-space:nowrap;
}
.phone-input input[maxlength="3"] {
	width:2em !important;
}
.phone-input input[maxlength="4"] {
	width:2.6em !important;
}
.captcha-input input {
	max-width:5em;
}
.date-time-input input {
	max-width:10em;
}
.date-time-input .CalendarIcon {
	margin-left:10px;
	margin-top:-6px;
	cursor:pointer;
}
.date-time-input .CalendarAction {
	display:none;
}
@media (max-width: 767px) {
	.state-input select,
	.DropDownField {
		width:100% !important;
	}
}
.form-table .empty-cell {
	padding:0;
}
.form-table-2 .empty-cell {
	padding: 0;
}
.form-table-2 caption {
	background-color: #8e0c3a;
}

.form-table-2 input.FormButton,
.form-table-2 input.FormButton:focus,
.form-table-2 input.FormButton:active,
.form-table-2 input.FormButton:active:focus {
	background-color: #003e7e;
	color: #fff;
}
.form-table-2 input.FormButton:hover {
	background-color: #0051a4;
}

/* --------------- Header Alert ---------------*/

.header-alert {
	background-color:#ffe293;
	padding-top:15px;
	padding-bottom:10px;
	position:relative;
}
.header-alert:after {
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	width:100%;
	height:5px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent, rgba(0,0,0,0.1)); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, transparent, rgba(0,0,0,0.1)); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}
.header-alert p {
	margin-bottom:10px;
}
.header-alert .fa {
	font-size:36px;
	float:left;
	margin-top:6px;
	margin-right:10px;
	color:#003e7e;
}
.header-alert a {
	text-decoration:underline;
}
.header-alert a:hover {
	text-decoration:none;
}

/* --------------- Header --------------- */

header {
	background-color:#fff;
}
.site-logo {
	width:262px;
	margin:32px auto 30px auto;
}
main {
	display:block;
	background-color:#fff;
}

/* ----- Site Search ----- */

.site-search {
	width: 100%;
	max-width:400px;
	margin:0 auto 24px auto;
}
.site-search .searchBox {
	width: 100%;
	padding: 6px 10px 7px 0;
	overflow:hidden;
	border:1px solid #aaa;
	box-shadow:inset 2px 2px 2px #eee;
}
.site-search .searchBox .searchTextBox {
    font-size:1.2em; /* 18px */
	border: 0 none;
	outline: 0 none;
	padding:1px 10px 0 10px;
	margin: 0;
	background: transparent;
    display: block;
    float: left;
    width: calc(100% - 21px);
	line-height:20px;
}
.site-search .searchBox .searchButton {
    display:block;
	float: right;
    height: 21px;
    width: 21px;
}

/* ----- Social Media Icons ----- */

#social-icons {
	list-style-type:none;
	padding:0;
	width: 210px;
	height: 36px;
	margin:0 auto 15px auto;
}
#social-icons li {
	float: left;
	width: 36px;
	height: 36px;
	margin-left:6px;
}
#social-icons a {
	position:relative;
	display: block;
	width: 36px;
	height: 36px;
	line-height:1;
	text-indent:-99999px;
	-webkit-transition: box-shadow 0.3s;
	transition: box-shadow 0.3s;
	text-decoration:none;
}
#social-icons .item-1 a { box-shadow: inset 0 0 0 18px #3a5795;	}
#social-icons .item-2 a { box-shadow: inset 0 0 0 18px #55acee;	}
#social-icons .item-3 a { box-shadow: inset 0 0 0 18px #0077b5;	}
#social-icons .item-4 a { box-shadow: inset 0 0 0 18px #c13584; }
#social-icons .item-5 a { box-shadow: inset 0 0 0 18px #ff0000; }
#social-icons .item-1 a:hover { box-shadow: inset 0 0 0 2px #3a5795; }
#social-icons .item-2 a:hover { box-shadow: inset 0 0 0 2px #55acee; }
#social-icons .item-3 a:hover { box-shadow: inset 0 0 0 2px #0077b5; }
#social-icons .item-4 a:hover { box-shadow: inset 0 0 0 2px #c13584; }
#social-icons .item-5 a:hover { box-shadow: inset 0 0 0 2px #ff0000; }

#social-icons a:before {
	font-family: 'FontAwesome';
	font-size:26px;
	font-weight:400;
	display:block;
	width:36px;
	height:36px;
	padding:6px;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	text-indent:0;
	color:#fff;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
#social-icons .item-1 a:before {
	content:"\f09a"; /* Font Awesome fa-facebook */
	text-align:right;
}
#social-icons .item-2 a:before {
	content:"\f099"; /* Font Awesome fa-twitter */
}
#social-icons .item-3 a:before {
	content:"\f0e1"; /* Font Awesome fa-linkedin */
}
#social-icons .item-4 a:before {
    content: "\f16d";
}
#social-icons .item-5 a:before {
    content: "\f16a";
    left:-1px
}
#social-icons .item-1 a:hover:before { color:#3a5795; }
#social-icons .item-2 a:hover:before { color:#55acee; }
#social-icons .item-3 a:hover:before { color:#0077b5; }
#social-icons .item-4 a:hover:before { color:#c13584; }
#social-icons .item-5 a:hover:before { color:#ff0000; }

/* --------------- Banking Login --------------- */

#online-banking {
	background-color:#f2f5f8;
	padding:40px 45px 20px 45px;
}
#online-banking h2 img {
	width:230px;
	margin:0 auto;
}
#online-banking .login-container {
	margin-bottom:20px;
}
#online-banking .login-container .form-group {
    margin-bottom:5px;
}
#online-banking #ob-btn {
	margin-bottom:20px;
	display:block;
	width:100%;
}
#online-banking .form-group label {
	width:34%;
	float:left;
	text-align:right;
	margin-top:7px;
}
#online-banking .form-group input {
	width:62%;
	float:right;
    margin-bottom: .5rem;
}
#online-banking .login-links {
	font-size:12px;
}

/* Cavion Login */
#online-banking iframe {
	width:100%;
	height:auto;
}

/* --------------- Homepage Columns --------------- */

#home-columns h2 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:2.267em; /* 34px */
	color:#8e0c3a;
	line-height:1.1;
	margin-bottom:0.662em;
}
.homepage-row-2 {
    background-color:#f2f5f8;
}
.home-col-2 {
	background-color:#fff;
}
.home-news,
.home-links {
	margin-top:26px;
	margin-bottom:30px;
}
.home-rates {
	margin-bottom:30px;
}

/* --------------- Home News & News Page --------------- */

.home-news .media,
.news-page-content .media {
	margin-top:0;
}
.home-news .media-left,
.news-page-content .media-left {
	padding-right:16px;
}
.home-news .media-left img,
.news-page-content .media-left img {
	width:84px;
	margin-top:2px;
	margin-bottom:20px;
}
.home-news h3,
.news-page-content h3.media-heading {
	font-size:1.2em; /* 18px */
	font-weight:700;
}
.news-page-content h3.media-heading {
	font-family:Arial, Helvetica, sans-serif;
}
.news-page-content h3.media-heading a {
	text-decoration:none;
}
.news-page-content h3.media-heading a:hover {
	text-decoration:underline;
}
.home-news .btn {
	width:100%;
}
.title-bug {
	text-transform:uppercase;
	margin-bottom:1em;
	font-size:1.2em;
}
.title-bug a {
	text-decoration:none;
}
.title-bug a:hover {
	text-decoration:underline;
}
article h1.news-title {
	font-size:2.667em;
	margin-bottom:0.5625em;
}

/* --------------- Home Rates --------------- */

.home-rate-table > tbody > tr > th {
    background-color:transparent;
	font-size:1.133em;
	border-top:0 none;
	color:#003E7E;
}
.home-rate-table > tbody > tr:nth-child(2) > td {
	border-top:0 none;
}
.home-rate-table .rate-name,
.home-rate-table .rate-header {
	padding-left:0;
}
.home-rate-table .rate-number,
.home-rate-table .rate-header-detail {
	padding-right:0;
	text-align:right;
	white-space:nowrap;
}
.home-rates .btn {
	width:100%;
}

/* --------------- Home Links --------------- */

.home-links li a {
	color:#333;
	font-size:1.2em;
	display:block;
	padding:0.333em 0;
}
.home-links li a:hover {
	text-decoration:none;
	color:#003e7e;
}
.home-links li .fa {
	font-size:1.333em;
	color:#adcdec;
	margin-top:0.167em;
}
.home-links li a:hover .fa {
	color:#003e7e;
}
.home-links .fa-ul {
	margin-left:3em;
}
.home-links .fa-li {
	left:-2.4em;
}
/* Sprite Icons */
.home-links a i.icon-trustage {
	display:inline-block;
	position:absolute;
	top:0.389em;
	left:-2.5em;
	width:26px;
	height:26px;
	background:url(../images/quick-links-sprite.png) no-repeat left top;
	background-size:52px 26px;
}
.home-links a i.icon-trustage {
	background-position:0 0;
}
.home-links a:hover i.icon-trustage {
	background-position:-26px 0;
}

/* --------------- Child Page --------------- */

.page-content {
	padding-top:30px;
	padding-bottom:10px;
}
.sidebar {
	background-color:#f2f5f8;
	padding-top:20px;
	padding-bottom:10px;
}
.child-nav h2 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:2.267em; /* 34px */
	color:#003e7e;
	line-height:1.2;
	margin-left:10px;
	margin-bottom:0.353em;
}
.child-nav {
	margin-bottom:20px;
}
.child-nav ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.child-nav a {
	display:block;
	font-size:1.2em;
	color:#333;
	padding:5px 10px 7px 10px;
	border-top:1px solid #fff;
	border-bottom:1px solid #d9e2ec;
}
.child-nav li:first-child a {
	border-top:0 none;
}
.child-nav li:last-child a {
	border-bottom:0 none;
}
.child-nav a:active,
.child-nav a:focus,
.child-nav a:hover {
	text-decoration:none;
	background-color:#fff;
}

/* --------------- Accordion --------------- */

.panel-heading {
	padding:0;
}
.panel-title > a {
	display:block;
	padding:10px 15px;
	color:#fff;
	background-color:#003e7e;
	text-decoration:none;
	text-shadow:1px 1px 1px rgba(0,0,0,0.15);
	font-weight:700;
	position:relative;
	padding-left:45px;
}
.panel-title > a:hover {
	background-color:#002c5a;
}
.page-content h3.panel-title {
	margin-bottom:0;
}
.panel-title a:before {
	content:'';
	display:block;
	width:25px;
	height:25px;
	position:absolute;
	top:11px;
	left:10px;
	background:url(../images/accordion-sprite.png) no-repeat left top;
	background-size:25px 50px;
}
.panel-title a[aria-expanded="true"]:before {
	background-position:left -25px;
}

/* --------------- Content Tabs  ---------------*/

/* Tabs */
.page-content ul#content-tabs,
.page-content ul.tabs {
	margin:0 0 1.5em 0;
	list-style:none;
	padding:0;
	width:100%;
	float:left;
	border-bottom:4px solid #003e7e;
}
.page-content ul#content-tabs li,
.page-content ul.tabs li {
	list-style-type:none;
	margin:0 5px 0 0;
	padding:0;
	background-color: transparent;
	display:block;
	float:left;
	text-indent:0;
}
.page-content ul#content-tabs li:before,
.page-content ul.tabs li:before {
	content:"";
	display:none;
	margin:0;
}
.page-content #content-tabs a,
.page-content .tabs a {
	color:#003e7e;
	text-decoration:none;
	font-size:1.067em;
	font-weight:700;
	display:inline-block;
	background-color:#e1eef9;
	padding:10px 16px 8px 16px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	white-space:nowrap;
}
.page-content #content-tabs a:hover,
.page-content #content-tabs a.CMSListMenuLinkHighlighted,
.page-content .tabs a:hover,
.page-content .tabs .active a {
	background-color:#003e7e;
	color:#fff;
}
/* Container */
.page-content .tab-content-container {
	clear:left;
	width:100%;
	padding:0;
	margin-bottom:1.5em;
}
.page-content .tab-content-container .tab-content {
	width:100%;
	overflow:hidden;
}

/* Custom tab colors for School District 129 page */
main.school-district-129 .page-content ul.tabs {
	border-color: #022169;
}
main.school-district-129 .page-content .tabs a {
	color:#022169;
    background-color:#e0e4ed;
}
main.school-district-129 .page-content .tabs a:hover,
main.school-district-129 .page-content .tabs .active a {
    color:#fff;
	background-color:#022169;
}


/* --------------- Search Page ---------------*/

.SearchDialog {
    margin-bottom:30px;
}
.SearchDialog td {
    padding: 0 5px 5px 0;
}
.search-result-block {
	margin-bottom:1.5em;
}
.search-result-title a {
	font-weight:700;
	text-decoration:none;
}
.search-result-title a:hover {
	text-decoration:underline;
}
.search-results-details {
	font-size:.867em; /* 13px */
	color:#777;
}
.site-search-relevance {
	width: 50px;
	border: solid 1px #777;
	margin-top: 5px;
	margin-right: 6px;
	float: left;
}
.site-search-relevance div {
	height:4px;
	background-color:#777;
}
.search-result-block .highlight {
	background-color:#FF9;
}
.site-search-create-date {
	display:block;
}
.SearchResults .pager {
    width:100%;
	overflow:hidden;
	padding:10px 0 0 0;
	border-top: 1px solid #ddd;
	margin-bottom:30px;
}
.SearchResults .pager a,
.SearchResults .pager strong {
	color:#003e7e;
	background-color:#fff;
	border:1px solid #003e7e;
	font-size:0.933em; /* 14px */
	font-weight:700;
	padding:7px 12px 8px 12px !important;
	text-decoration:none;
	line-height:1;
	display:block;
	float:left;
	margin:0 4px 6px 0;
}
.SearchResults .pager a:hover,
.SearchResults .pager strong {
    color: #fff;
	background-color:#003e7e;
	border:1px solid transparent;
	font-weight:700;
}
.result-number {
	float:right;
	font-size:0.867em; /* 13px */
	font-weight:700;
}

/* --------------- Testimonials --------------- */

.testimonial {
	margin-bottom:1.5em;
	padding-left:3.5em;
	position:relative;
}
.testimonial:before {
	content:'“';
	position:absolute;
	left:0;
	top:0;
	font-family: Arial, Helvetica, sans-serif;
	font-style:normal;
	font-weight:400;
	font-size:130px;
	color:#e4eaf1;
	line-height:.85;
}
#testimonials .testimonial:before {
	color:#e4eaf1;
}
.testimonial-quote {
	font-style:italic;
    font-size:1.133em; /* 17px */
	color:#777;
}
.testimonial-quote p {
	margin-bottom:0;
}
.testimonial-name {
	color:#000;
	font-weight:700;
}

/* --------------- Top Footer --------------- */

.top-footer {
	background-color: #e1eef9;
	background-image: -webkit-linear-gradient(top, #e1eef9, #adcdec); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, #e1eef9, #adcdec); /* Chrome 26, Firefox 16+, IE 10+, Opera */
	border-top:1px solid #adcdec;
	padding-top:20px;
	position:relative;
}
.top-footer:after {
	content:"";
	display:block;
	width:100%;
	height:7px;
	position:absolute;
	bottom:0;
	left:0;
	background-color: transparent;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.1), transparent); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to top, rgba(0,0,0,0.1), transparent); /* Chrome 26, Firefox 16+, IE 10+, Opera */
	z-index:1;
}
.top-footer h2 {
	font-family:'texgyrescholaregular', 'Century Schoolbook', 'Times New Roman', serif;
	font-style:normal;
	font-weight:400;
	font-size:1.6em; /* 24px */
	color:#003e7e;
	line-height:1.2;
	margin-bottom:0.25em;
}
.top-footer a {
	text-decoration:underline;
}
.top-footer a:hover {
	text-decoration:none;
}

.top-footer .form-control {
    border-color:#adcdec;
	box-shadow:inset 2px 2px 2px #e5f0fa;
}

.email-signup,
.coop-locator,
.become-a-member {
	margin-bottom:26px;
}
.email-signup-text p,
.coop-locator-text p,
.membership-heading p {
	margin-bottom:0.5em;
}

/* ----- Email Signup Form ----- */

.email-signup-text {
	padding-left:80px;
	position:relative;
}
.email-signup-text:before {
	font-family: 'FontAwesome';
	font-size:60px;
	line-height:1;
	content:'\f0e0';
	position:absolute;
	top:-4px;
	left:0;
	color:#003e7e;
}
.email-signup input.SubscriptionTextbox {
	margin-bottom:6px;
	height:2.333em; /* 35px */
}
.email-signup .email-signup-button {
	display:block;
	width:100%;
}

/* ----- CO-OP Locator ----- */

.coop-locator-text {
	padding-left:80px;
	position:relative;
}
.coop-locator-text:before {
	content:'';
	position:absolute;
	top:-1px;
	left:0;
	display:block;
	width:65px;
	height:53px;
	background:url(../images/logo-coop.png) no-repeat left top;
	background-size:65px 53px;
}
.coop-locator-form .textbox {
	width:80%;
	float:left;
	margin-right:2%;
	height:2.333em; /* 35px */
}
.coop-locator-form .btn {
	display:block;
	width:18%;
	float:left;
	padding:6px 0;
	margin-top:1px;
}

/* ----- Become a Member ----- */

.membership-heading {
	padding-left:95px;
	position:relative;
}
.membership-heading:before {
	font-family: 'FontAwesome';
	font-size:56px;
	line-height:1;
	content:'\f0c0';
	position:absolute;
	top:-1px;
	left:15px;
	color:#003e7e;
}
.membership-text,
.locator-disclaimer{
	font-size:.867em; /* 13px */
	margin-bottom:0;
}

/* --------------- Partner Logos --------------- */

.partner-logos {
	background-color:#fff;
	padding-top:15px;
	padding-bottom:15px;
}
.partner-logos ul {
	max-width: 1170px;
	margin:0 auto;
	list-style: none;
	display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.partner-logos li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0.75em 0;
}
.logo-table img {
	width:100%;
	height:auto;
}
@media (min-width: 768px) {
    .partner-logos li {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 992px) {
    .partner-logos li {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* --------------- Footer --------------- */

footer {
	background-color:#003e7e;
	color:#fff;
	padding-top:20px;
	padding-bottom:10px;
}
footer a,
footer a:active,
footer a:focus {
	color:#fff;
	text-decoration:underline;
}
footer a:hover {
	color:#fff;
	text-decoration:none;
}
footer strong {
	color:#ffe293;
}
.ehl-logo {
	width:58px;
}
.asi-logo {
	width:105px;
	margin-left:24px;
}
.ncua-logo {
	width:105px;
	margin-left:24px;
}
.footer-logos {
	font-size:.733em;
}


/* ----------------------------------------------- */
/* XS Only */
/* ----------------------------------------------- */

@media (max-width: 767px) {

    .mobile-banner-ad img {
        display: block;
        max-width: 100%;
        height: auto;
    }

}


/* ----------------------------------------------- */
/* SM Only */
/* ----------------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {

	#online-banking {
		padding:30px 45px 10px 45px;
		border-top:1px solid #fff;
	}
	#online-banking h2 {
		width:230px;
		float:left;
	}
	#online-banking .login-container {
		width:400px;
		width:calc(100% - 250px);
		float:right;
	}
	#online-banking .form-group label {
		width:24%;
		float:left;
		text-align:right;
		margin-top:4px;
	}
	#online-banking .form-group input {
		width:72%;
		float:right;
	}
	#online-banking #ob-btn {
		display:inline-block;
		width:auto;
		float:right;
		margin-bottom:0;
	}
	#online-banking .login-links {
		float:right;
		margin-top:8px;
		margin-right:20px;
	}
	/* Cavion Login */
	#online-banking iframe {
		height:100px;
		width:400px;
		width:calc(100% - 250px);
		float:right;
	}

	.footer-logos-1 {
		float:left;
		width:187px;
		margin-right:20px;
	}

}


/* ----------------------------------------------- */
/* SM and wider */
/* ----------------------------------------------- */

@media (min-width: 768px) {

	/* ----- Site Search ----- */

	.site-search {
		float:right;
		margin-bottom:0;
		max-width:230px;
	}

	/* ----- Social Media Icons ----- */

	#social-icons {
		float:right;
		margin:0 0 0 10px;
	}

	/* --------------- Top Nav --------------- */

	.top-nav ul {
		list-style-type:none;
		margin:0;
		padding:26px 0 15px 0;
		text-align:right;
		font-size:.933em;
	}
	.top-nav li {
		display: inline;
		padding:0 0 0 24px;
	}

	/* --------------- Carousel --------------- */

	.carousel-indicators {
		bottom: -32px;
		left:auto;
		right: 0;
		text-align: right;
		margin: 0 15px 0 0;
		width:100%;
	}
	.carousel-indicators li,
	.carousel-indicators .active {
		border: 4px solid #fff;
		background-color:#fff;
		margin: 0 0 0 5px;
		height: 20px;
		width: 20px;
		box-shadow:0 0 3px rgba(0,0,0,0.3);
	}
	.carousel-indicators .active,
	.carousel-indicators .active:hover {
		background-color: #8e0c3a;
	}
	.carousel-indicators li.togglePausePlay {
		width:2.5em;
		color:#8e0c3a;
	}
	.carousel-indicators li.togglePausePlay .glyphicon {
		top:-3px;
		right:20%;
		font-size:16px;
		vertical-align:top;
	}
	#carousel-homepage .carousel-inner .item img {
		width:100%;
	}
    #carousel-homepage .carousel-control {
        width:30px;
        background-image: none;
    }

	/* --------------- Homepage Columns --------------- */

	.home-news .btn {
		width:auto;
	}
	.home-rates {
		margin-top:26px;
	}

	/* --------------- Email Signup --------------- */

	.email-signup .NewsletterSubscription div {
		float:left;
	}
	.email-signup .FirstNameInput {
		float:left;
		width:49%;
		margin-right:2%;
	}
	.email-signup .LastNameInput {
		float:left;
		width:49%;
	}
	.email-signup .EmailInput {
		float:left;
		width:64%;
		margin-right:2%;
	}
	.email-signup .SubmitButton {
		float:left;
		width:34%;
	}
	.email-signup .email-signup-button {
		margin-top:1px;
		padding:6px 0;
	}

}


/* ----------------------------------------------- */
/* MD and wider */
/* ----------------------------------------------- */

@media (min-width: 992px) {

	/* --------------- Header --------------- */

	header {
		border-bottom:8px solid #8e0c3a;
	}
	.top-nav ul {
		padding-top:14px;
		font-size:1em;
	}
	.site-logo {
		margin-bottom:25px;
	}

	/* --------------- Banking Login --------------- */

	.homepage-row-1 {
		position:relative;
		border-bottom:30px solid #8e0c3a;
	}
	#online-banking {
		position:absolute;
		top:20px;
		left:20px;
		height:auto;
		width:28%;
		max-width:320px;
		padding:20px 20px 0 20px;
		background-color:#fff;
		background-color:rgba(255,255,255,0.9);
		border:1px solid #fff;
		box-shadow:0 0 7px rgba(0,0,0,0.2);
		transition: left 0.5s, top 0.5s;
	}

    #carousel-homepage .carousel-control.left {
        left:30%;
    }

	/* --------------- Homepage Columns --------------- */

	.homepage-row-2 {
		border-top:1px solid #fff;
	}
	#home-columns h2 {
		font-size:1.8em; /* 27px */
	}
	.home-col-2 {
		padding-left:30px;
		padding-right:30px;
	}
	.home-col-3 {
		padding-left:30px;
	}
	.home-news:before,
	.home-news:after {
		content:"";
		display:block;
		width:7px;
		position:absolute;
		top:0;
		bottom:0;
		left:-7px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(right, rgba(0,0,0,0.05), transparent); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
		background-image:         linear-gradient(to left, rgba(0,0,0,0.05), transparent); /* Chrome 26, Firefox 16+, IE 10+, Opera */
		z-index:1;
	}
	.home-news:after {
		left:auto;
		right:-7px;
		background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.05), transparent); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
		background-image:         linear-gradient(to right, rgba(0,0,0,0.05), transparent); /* Chrome 26, Firefox 16+, IE 10+, Opera */
	}

	/* --------------- Child Page --------------- */

	.page-content {
		padding-left:30px;
	}
	.sidebar {
		background-color:transparent;
		padding-top:0;
		padding-bottom:0;
		position:relative;
		z-index:1;
	}
	.sidebar:before {
		content:'';
		display:block;
		position:absolute;
		top:0;
		bottom:0;
		right:0;
		background-color:#f2f5f8;
		z-index:-1;
		width:9999px;
	}
	.sidebar:after {
		content:'';
		display:block;
		position:absolute;
		top:0;
		bottom:0;
		right:0;
		width:7px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(right, rgba(0,0,0,0.05), transparent); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
		background-image:         linear-gradient(to left, rgba(0,0,0,0.05), transparent); /* Chrome 26, Firefox 16+, IE 10+, Opera */
	}

	.child-nav {
		margin:15px -15px 15px 0;
		background-color:#e4eaf1;
		padding:20px 15px;
		border:1px solid #fff;
		border-right:0 none;
	}
	.child-nav a {
		border-top:1px solid #f4f7f9;
		border-bottom:1px solid #cdd8e5;
	}
	.child-nav a:active,
	.child-nav a:focus,
	.child-nav a:hover {
		background-color:#f2f5f8;
	}

	/* --------------- Footer --------------- */

	.logo-table td {
		width:auto;
	}

	.footer-logos {
		text-align:right;
	}

}


/* ----------------------------------------------- */
/* LG and wider */
/* ----------------------------------------------- */

@media (min-width: 1200px) {

	#home-columns h2 {
		font-size:2.267em; /* 34px */
	}

	.coop-locator {
		padding-left:20px;
		padding-right:20px;
	}
	#online-banking {
		top:40px;
		left:40px;
	}

}

/* ----------------------------------------------- */
/* MEGA MENU */
/* ----------------------------------------------- */

/*!
 * Yamm!3 - Yet another megamenu for Bootstrap 3
 * http://geedmo.github.com/yamm3
 *
 * @geedmo - Licensed under the MIT license
 */
.yamm .nav,
.yamm .collapse,
.yamm .dropup,
.yamm .dropdown {
  position: static;
}
.yamm .container {
  position: relative;
}
.yamm .dropdown-menu {
  left: auto;
}
.yamm .yamm-content {
  padding: 20px 30px;
}
.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
}
/* End Yamm!3 */

/* Some basic styling */

.navbar {
  border: 0 none;
  border-radius:0;
  margin-bottom: 0;
  min-height: 0;
  margin-left:-15px;
  margin-right:-15px;
}
#MegaMenu {
	white-space:nowrap;
}
#MegaMenu .dropdown-menu {
	white-space:normal;
}
ul.dropdown-menu,
ul.dropdown-menu li.mm-column ul {
	padding:0;
}
ul.dropdown-menu ul {
	list-style-type:none;
}
.nav li li a,
.nav li li a:focus,
.nav li li a:active {
	padding-top:7px;
	padding-bottom:7px;
	display:block;
}
#MegaMenu .mm-buttons {
	margin-top:10px;
}
#MegaMenu .btn,
#MegaMenu .btn:focus,
#MegaMenu .btn:active {
	margin-bottom:10px;
	font-size:1em;
}
#MegaMenu .mm-column > a {
    font-size:1.2em; /* 18px */
	font-weight:700;
	border-bottom:2px solid #003e7e;
	margin-bottom:0.5em;
}
.mm-links a {
	color:#003e7e;
}

/* XS Only */
@media (max-width: 767px) {

	.navbar-default {
		background-color: #fff;
		border-color: transparent;
		border-top:1px solid #fff;
		cursor:pointer;
	}
	.navbar-header {
		background-color: #8e0c3a;
	}
	.navbar-header[aria-expanded="true"] {
		background-color: #bb1151;
	}
	.navbar-default .navbar-brand,
	.navbar-default .navbar-brand:hover,
	.navbar-default .navbar-brand:focus {
		color:#fff;
		font-size:1.333em; /* 20px */
		font-weight:700;
		text-transform:uppercase;
	}
	.navbar-default .navbar-toggle,
	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus {
		background-color:#fff;
	}
	.navbar-default .navbar-toggle {
		border:0 none;
		padding:9px;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #8e0c3a;
		height:3px;
		width:24px;
	}
	.navbar-default .navbar-header[aria-expanded="true"] .navbar-toggle .icon-bar {
		background-color: #bb1151;
	}
	.navbar-toggle .icon-bar + .icon-bar {
		margin-top:3px;
	}
	#MegaMenu > li {
		border-bottom:1px solid #e4eaf1;
	}
	#MegaMenu > li:hover {
		background-color: #e4eaf1;
	}
	.navbar-default .navbar-nav > li > a,
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li > a:focus {
		color:#003e7e;
	}
	.navbar-default .navbar-nav > .open > a,
	.navbar-default .navbar-nav > .open > a:focus {
		background-color:#003e7e;
		color:#fff;
	}
	.navbar-default .navbar-nav > .open > a:hover {
		background-color:#0051a4;
		color:#fff;
	}
	.yamm .yamm-content {
		background-color:#f2f5f8;
		padding:10px 15px;
	}
	.yamm .yamm-content .mm-links li a {
		border-bottom:1px solid #d9e2ec;
		padding-left:8px;
		padding-right:8px;
	}
	.yamm .yamm-content .mm-links li.last a {
		border-bottom:0 none;
	}
	.yamm .yamm-content .mm-links li a:hover {
		text-decoration:none;
		background-color:#fff;
	}

}

/* SM and wider */
@media (min-width: 768px) {

	/* Center items in main nav bar */
	/* Better than using .center-block because no width needs to be assigned to ul.nav */
	.navbar-default .container-fluid,
	.navbar-collapse {
		padding-left:0;
		padding-right:0;
	}
	#MegaMenu {
	    width:100%;
	}
	header .navbar .nav,
	header .navbar .nav > li {
		float:none;
		display:inline-block;
		vertical-align: top;
	}
	header .navbar .nav > li {
		/*width:20%;*/
	}
	header .navbar-collapse {
		text-align:center;
	}
	header .dropdown-menu {
		text-align: left;
	}
	/* End center styles */

	.nav .caret {
		display:none;
	}
	.navbar-default {
		background-color:transparent;
		border-color: transparent;
	}
	#MegaMenu {
		background-color: #8e0c3a;
		padding-top:4px;
	}
	.navbar-default .navbar-nav > li > a,
	.navbar-default .navbar-nav > li > a:focus {
		font-size:1em;
		font-weight:700;
		text-transform:uppercase;
		margin-right:0;
		padding-top:0.933em;
		padding-bottom:1.133em;
		padding-left:1.667em; /* 36px */
		padding-right:14px;
		background-color:transparent;
		color:#fff;
		line-height:1em; /* 18px */
	}
	.navbar-default .navbar-nav > .open > a,
	.navbar-default .navbar-nav > .open > a:hover,
	.navbar-default .navbar-nav > .open > a:focus,
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li.item-current > a {
		background-color:#fff;
		color:#8e0c3a;
		position:relative;
	}
	.navbar-default .navbar-nav > .open > a:before,
	.navbar-default .navbar-nav > .open > a:hover:before,
	.navbar-default .navbar-nav > .open > a:focus:before,
	.navbar-default .navbar-nav > li > a:hover:before,
	.navbar-default .navbar-nav > li.item-current > a:before {
		content:'';
		position:absolute;
		top:0;
		left:0;
		width:0;
		height:0;
		border-top: 4.6rem solid #8e0c3a; /* 46px */
		border-right: 1.5rem solid transparent; /* 15px */
		z-index:1;
	}

	/* Specify dropdown widths */
	.menu-1 .dropdown-menu {
		width:34em;
	}
	.menu-2 .dropdown-menu {
		/*width:auto;*/
        width:51em;
	}
	.menu-3 .dropdown-menu {
		width:17em;
	}
	.menu-4 .dropdown-menu {
		width:36em;
	}
    .menu-5 .dropdown-menu {
		width:17em;
	}

	#MegaMenu .dropdown-menu {
		box-shadow:0 7px 7px rgba(0, 0, 0, 0.15);
		border-radius:5px;
		border:0 none;
		border-top-left-radius:0;
		border-top-right-radius:0;
	}

	/* Align drop down to individual tabs */
	#MegaMenu .dropdown {
	    position:relative;
	}
	/* Align drop down to whole nav bar */
    #MegaMenu .dropdown.menu-2,
    #MegaMenu .dropdown.menu-4 {
	    position:static;
	}

    #MegaMenu .dropdown.menu-2 .dropdown-menu,
	#MegaMenu .dropdown.menu-4 .dropdown-menu,
    #MegaMenu .dropdown.menu-5 .dropdown-menu {
		left:auto;
		right:0;
	}

}

/* MD and wider */
@media (min-width: 992px) {

	.navbar-default {
		margin-top:-50px;
		margin-left:0;
	  	margin-right:0;
	}
	#MegaMenu {
		position:relative;
		top:9px;
	}
	#MegaMenu:before {
		content:'';
		position:absolute;
		top:0;
		left:0;
		width:0;
		height:0;
		border-top: 2.8em solid #fff; /* 42px */
		border-right: 1em solid transparent; /* 15px */
		z-index:1;
	}

    .navbar-default .navbar-nav > li > a,
	.navbar-default .navbar-nav > li > a:focus {
		padding-left:1.5em; /* 24px */
		padding-right:12px;
	}

	/* Specify dropdown widths */
	.menu-4 .dropdown-menu {
		width:68em;
	}

}

/* LG and wider */
@media (min-width: 1200px) {

    .navbar-default .navbar-nav > li > a,
	.navbar-default .navbar-nav > li > a:focus {
		padding-left:2.25em; /* 36px */
		padding-right:18px;
	}

}

/* ----------------------------------------------- */
/* Customize jQuery Dialog */
/* ----------------------------------------------- */

.ui-dialog {
	margin-left:15px;
	margin-right:15px;
	max-width:650px;
}

.ui-widget-header {
	background-color: #8e0c3a;
	border: 0 none;
	color: #fff;
	font-size:1.2em;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-color: #8e0c3a;
  border: 0 none;
  color: #fff;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	background-color: #bb1151;
	border: 0 none;
	font-weight: normal;
	color: #fff;
}

.ui-widget-content {
	border: 1px solid #ccc;
}
.ui-button-text {
	font-weight:700;
}
.ui-button-text-only .ui-button-text {
	padding: 6px 15px 7px 15px;
}
.ui-dialog .ui-dialog-content {
	padding-top:1.5em;
}

/* --------------- Font Face ---------------*/

@font-face {
    font-family: 'texgyrescholaregular';
    src: url('texgyreschola/texgyreschola-regular-webfont.eot'); /* IE9 Compat Modes */
    src: url('texgyreschola/texgyreschola-regular-webfont.eot?#iefix') format('embedded-opentype'), /* IE6 - IE8 */
         url('texgyreschola/texgyreschola-regular-webfont.woff') format('woff'), /* Modern Browsers */
         url('texgyreschola/texgyreschola-regular-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
         url('texgyreschola/texgyreschola-regular-webfont.svg#texgyrescholaregular') format('svg'); /* Legacy iOS */
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'texgyrescholaitalic';
    src: url('texgyreschola/texgyreschola-italic-webfont.eot');
    src: url('texgyreschola/texgyreschola-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('texgyreschola/texgyreschola-italic-webfont.woff') format('woff'),
         url('texgyreschola/texgyreschola-italic-webfont.ttf') format('truetype'),
         url('texgyreschola/texgyreschola-italic-webfont.svg#texgyrescholaitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}
