@charset "UTF-8";
* {
  box-sizing: border-box;
}
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #121212;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #121212;
  font-style: italic;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
svg use {
  height: auto;
  width: 100%;
}
.hide {
  display: none !important;
}
.offscreen {
  top: -9999em;
  left: -9999em;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
ul.unstyled, ol.unstyled {
  margin-left: 0;
  list-style: none;
}
ul.inline, ol.inline {
  margin-left: 0;
  list-style: none;
}
ul.inline > li, ol.inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.block {
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@-ms-viewport {
  width: device-width;
}
.display-table {
  display: table !important;
}
.display-table.fixed {
  table-layout: fixed;
}
.table-row {
  display: table-row !important;
  width: 100%;
}
.table-cell {
  display: table-cell !important;
}
.align-middle {
  vertical-align: middle;
}
@media only screen and (max-width: 1399px) {
  .desktop-only {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .no-desktop {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .no-mobile {
    display: none !important;
  }
}
/* Utility Mixins */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-in, .rn-carousel-control {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in .5s;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in .5s;
  animation: fadeIn ease-in .5s;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade-out {
  opacity: 0;
  -webkit-animation: fadeOut ease-in .15s;
  -moz-animation: fadeOut ease-in .15s;
  animation: fadeOut ease-in .15s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.lt-ie10 .fade-in, .lt-ie10 .rn-carousel-control {
  opacity: 1;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.loading {
  position: relative;
  min-height: 450px;
}
.loading:before {
  content: 'Loadingâ€¦';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  z-index: 10000;
}
.loading:not(:required):before {
  content: '';
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #121212;
  border-bottom-color: #121212;
  animation: loading .8s ease infinite;
  -webkit-animation: loading .8s ease infinite;
  z-index: 10000;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
}
small {
  font-size: 85%;
}
strong {
  font-weight: 700;
  font-family: 'Source Sans Pro', sans-serif;
}
em {
  font-style: oblique;
  font-weight: 500;
  font-family: 'Source Sans Pro', sans-serif;
}
cite {
  font-style: normal;
}
a {
  color: #007697;
  text-decoration: none;
  cursor: pointer;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}
a:visited {
  opacity: 0.75;
}
a:hover {
  color: #000f2b;
  text-decoration: underline;
}
a:focus {
  outline: none;
}
span.icon:hover {
  text-decoration: none !important;
}
h1, h2, h3, h4, h5, h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: 300;
  line-height: 1.2;
  color: inherit;
  text-rendering: optimizelegibility;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-weight: 500;
  line-height: 1;
  color: #999999;
}
h2.subhead {
  padding: 20px 0;
}
h1 {
  font-size: 40px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 25px;
  }
}
h1.fm-section-title {
  font: 24px "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
  margin: 0 0 10px;
  font-weight: 500;
}
h2 {
  font-size: 32px;
	font-weight: 500;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}
h3 {
  font-size: 24px;
	font-weight: 500;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}
h4 {
  font-size: 20px;
	font-weight: 500;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 11.9px;
}
h1 small {
  font-size: 24.5px;
}
h2 small {
  font-size: 17.5px;
}
h3 small {
  font-size: 14px;
}
h4 small {
  font-size: 14px;
}
p {
  line-height: 22px;
  margin: 0 0 20px;
  font-size: 16px;

}
ul, ol {
  padding: 0;
  margin: 0 0 10px 25px;
}
ul ul, ul ol, ol ol, ol ul {
  margin-bottom: 10px;
}
li {
  line-height: 20px;
}
dl {
  margin-bottom: 20px;
}
dt, dd {
  line-height: 20px;
}
dt {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
dd {
  margin-left: 10px;
}
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ffffff;
}
abbr[title], abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  font-size: 26px;
  line-height: 34px;
  border: none;
  position: relative;
  margin: 0 2px 40px;
}
blockquote footer {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #000f2b;
  position: absolute;
}
blockquote footer:before {
  content: '';
}
blockquote cite {
  font-size: 14px;
  display: block;
  position: absolute;
  top: 110%;
  line-height: 18px;
}
blockquote:before, blockquote:after {
  font-size: 16px;
  line-height: 16px;
  vertical-align: 5px;
  position: relative;
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
blockquote:before {
  content: "\f10d";
  padding-right: 5px;
}
blockquote:after {
  content: "\f10e";
  padding-left: 5px;
}
address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}
.font-sans {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
}
.font-sans.font-oblique, .font-oblique {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-style: oblique;
}
.font-sans.font-bold, .font-bold {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
.font-sans.font-bold.font-oblique, .font-bold.font-oblique {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
.font-sans.font-light, .font-light {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}
.font-sans.font-light.font-oblique, .font-light.font-oblique {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}
.font-sans.font-black, .font-black {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 800;
}
.font-sans.font-black.font-oblique, .font-black.font-oblique {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 800;
}
.font-serif {
  font-family: "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-oblique {
  font-family: 'Glypha LT Pro W01 Italic', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-bold {
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-bold.font-oblique {
  font-family: 'Glypha LT Pro W01 Bold Italic', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-light {
  font-family: 'Glypha LT Pro W01 Light', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-light.font-oblique {
  font-family: 'Glypha LT Pro W01 Light Italic', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-thin {
  font-family: 'Glypha LT Pro W01 Thin', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-thin.font-oblique {
  font-family: 'Glypha LT Pro W01 Thin Italic', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-black {
  font-family: 'Glypha LT Pro W01 Black', "Georgia", "Century", serif;
  font-weight: 500;
}
.font-serif.font-black.font-oblique {
  font-family: 'Glypha LT Pro W01 Black Italic', "Georgia", "Century", serif;
  font-weight: 500;
}
/*lists*/
nav ul, nav ol {
  list-style: none;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
  font-size: 16px;
}
form {
  margin: 0 0 20px;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
fieldset ul.inline {
  margin: 0;
  padding: 0;
}
legend {
  display: inline;
  width: 100%;
  padding: 0;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 40px;
  color: #333333;
  border: 0;
}
legend small {
  font-size: 16px;
  color: #999999;
}
label, input, button, select, textarea {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
input, button, select, textarea {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
}
label {
  display: block;
  margin-bottom: 5px;
}
input[type="search"] {
  -webkit-appearance: searchfield;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  display: inline-block;
  height: 40px;
  padding: 7px 8px 8px;
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 20px;
  color: #01172d;
  border-radius: 0;
  vertical-align: middle;
}
input, textarea, .uneditable-input {
  width: 100%;
}
textarea {
  height: auto;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #e5f1f4;
  border: 1px solid #e5f1f4;
  box-shadow: inset 0 0 0 transparent;
  transition: border linear .2s, box-shadow linear .2s;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  border-color: rgba(1, 23, 45, 0.2);
  outline: 0;
  outline: thin dotted \9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
input[type="radio"], input[type="checkbox"] {
  margin: 1px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] {
  width: auto;
	font-family: 'Source Sans Pro', sans-serif !important;
}
select, input[type="file"] {
  height: 40px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
select {
  width: 220px;
  border: none;
  background-color: #e5f1f4;
  cursor: pointer;
}
select[multiple], select[size] {
  height: auto;
}
select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.styled-select {
  position: relative;
}
.styled-select:after {
  content: '';
  display: block;
  border-width: 5px;
  border-style: solid;
  border-color: #000f2b transparent transparent;
  position: absolute;
  right: 15px;
  top: 18px;
}
.styled-select select {
  padding-right: 35px;
  width: 100%;
}
.styled-select select[disabled] {
  color: #909396;
}
.uneditable-input, .uneditable-textarea {
  color: #999999;
  background-color: #fcfcfc;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
}
.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
.uneditable-textarea {
  width: auto;
  height: auto;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}
.radio, .checkbox {
  min-height: 20px;
  padding-left: 20px;
}
.radio input[type="radio"], .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.checkbox {
  cursor: pointer;
  padding: 0;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"] + span:before {
  content: '';
  display: inline-block;
  height: 17px;
  width: 17px;
  margin-right: 5px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAQCAMAAACvHOZVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4JpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCOEQzM0JGQTQ5MjA2ODExODA4MzgxNkNBM0RBRjAzRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0MjEwMjM3QUQ0RjgxMUU1ODM3RUY4QjczN0EzOUQyQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0MjEwMjM3OUQ0RjgxMUU1ODM3RUY4QjczN0EzOUQyQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmU3ZTczZTdjLTA4NjgtNDNkZS1hYmJiLWNmOTYxZGI1MjQ1MyIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmQ0NmU2M2ZiLTgzMjEtMTE3OC05NTU0LWQ2Y2I1MjQzYmQyNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkqIXPYAAAAzUExURQEXLUFRYoCLlr/Fyp+osM/T1xEmOu/w8o+ZozFDVWFufFFgb3F9id/i5SE0R6+2vf///5kJamIAAAARdFJOU/////////////////////8AJa2ZYgAAAIdJREFUeNqEkVsWwyAIBQHFZ9Ky/9WWWGNME9L58APnIFxB/gEiDndKbDUaBVyiGiuQ+/KueRM8TBQ1CEfDCKwnzgacDQE3G8HnZyOwNrWMGpqwjXRvJOHQBdMQ7oL1ij+2tib1IxYzj5SOPNawUAdbppfEhOv0C0r6Tf0K5f3+VeKtceYjwAB+ThKBNq/gYwAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: top;
  position: relative;
  top: 2px;
}
.checkbox input[type="checkbox"]:checked + span::before {
  background-position: -16px 0;
}
.radio.inline, .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
  background-color: transparent;
}
.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border: 1px solid #cccccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.btn:active, .btn.active {
  background-color: #cccccc \9;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover, .btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
button.btn, input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.styled-radio {
  display: none;
}
form.show-errors .styled-radio.ng-invalid + label {
  color: #b03535;
  top: 0;
  font-size: 14px;
}
.styled-radio + label {
  position: relative;
  font-size: 14px;
}
.styled-radio + label:before {
  content: '';
  position: relative;
  -webkit-appearance: none;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  border-radius: 50px;
  display: inline-block;
  top: 3px;
  margin-right: 5px;
}
.styled-radio:checked + label:after {
  content: ' ';
  width: 8px;
  height: 8px;
  border-radius: 50px;
  position: absolute;
  top: 7px;
  background: #007697;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  text-shadow: 0px;
  left: 4px;
  font-size: 32px;
}
.styled-radio:checked + label:before {
  background-color: #e9ecee;
  color: #007697;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1), inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.styled-radio + label:active:before, .styled-radio:checked + label:active:before {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.blue-block {
  padding: 15px 15px 0;
  background: #000f2b;
  margin: 0 0 30px;
}
.blue-block.with-search {
  padding-right: 60px;
  position: relative;
}
@media (max-width: 720px) {
  .blue-block.with-search {
    padding-right: 15px;
  }
}
.blue-block .display-table {
  width: 100%;
}
.blue-block label {
  color: #fff;
  width: 100px;
  line-height: 40px;
  vertical-align: top;
}
.blue-block label.table-cell {
  padding: 0 10px 0 30px;
  width: 1%;
  white-space: nowrap;
}
.blue-block label.table-cell:first-of-type {
  padding-left: 0;
}
@media (max-width: 720px) {
  .blue-block label.table-cell {
    width: 100px;
    padding-left: 0;
  }
}
.blue-block select, .blue-block input[type=text] {
  color: #fff;
  background: #26334b;
  width: 100%;
  margin: 0 0 15px;
  border: 1px solid #26334b;
}
.blue-block .styled-select:after {
  border-top-color: #fff;
}
.blue-block button {
  position: absolute;
  right: 0;
  top: 50%;
  background: none;
  width: 60px;
  height: 70px;
  margin-top: -35px;
  line-height: 70px;
  text-align: center;
}
.blue-block button:hover {
  color: #fff;
}
@media (max-width: 720px) {
  .blue-block button {
    position: relative;
    margin: 0 auto 15px;
    height: 30px;
    line-height: 30px;
    width: 90px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.blue-block button span {
  display: none;
}
@media (max-width: 720px) {
  .blue-block button span {
    display: inline-block;
  }
}
.blue-block button i {
  top: 50%;
  right: 50%;
  margin: -15px -15px 0 0;
  background: transparent;
  color: #00acdc;
}
.blue-block button i:hover {
  color: #ffffff;
}
@media (max-width: 720px) {
  .blue-block button i {
    right: 0;
    top: 4px;
    margin: 0;
  }
}
@media (max-width: 720px) {
  .blue-block .table-cell {
    display: block !important;
    width: auto;
  }
}
form.show-errors .ng-invalid {
  border: 2px solid #b03535;
}
form.show-errors .ng-invalid + label {
  position: relative;
  width: auto;
  height: auto;
  color: #b03535;
  clip: auto;
  font-size: 12px;
  display: block;
  top: -20px;
}
main {
  min-height: 100%;
  position: relative;
}
main #page-wrapper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 250px;
}
@media (min-width: 768px) {
  main #page-wrapper {
    padding-bottom: 230px;
  }
}
@media (min-width: 992px) {
  main #page-wrapper {
    padding-bottom: 160px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .container {
    width: 1150px;
  }
}
.full-width-max {
  max-width: 1800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fm-main-content {
    display: flex;
    flex-flow: column;
  }
  .fm-main-content.fm-main-content-block {
    display: block;
  }
  .fm-main-content .fm-content {
    order: 2;
  }
  .fm-main-content .fm-top-rail {
    order: 1;
  }
  .fm-main-content .fm-bottom-rail {
    order: 4;
  }
  .fm-main-content .fm-rail {
    order: 3;
  }
}
.content-row {
  clear: both;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
@media (min-width: 768px) {
  .content-row {
    padding-top: 30px;
  }
  .content-row.cr-padding-t0 {
    padding-top: 0;
  }
}
.content-row > * {
  padding: 0 10px;
}
@media (max-width: 767px) {
  .fm-top-rail, .fm-bottom-rail {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .fm-bottom-rail > *:first-child {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fm-rail {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .fm-rail {
    margin-top: 20px;
  }
}
.rail-row {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .equal-height-sm-row.ehsr-margin-b0 {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .equal-height-sm-row {
    display: table;
    table-layout: fixed;
    height: 100%;
    padding: 0;
    border-spacing: 20px 0;
    border-collapse: separate;
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
  .equal-height-sm-row.ehsr-margin-b0 {
    margin-bottom: 0;
  }
  .row-sm-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .col-sm-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-sm-top {
    vertical-align: top;
  }
  .col-sm-middle {
    vertical-align: middle;
  }
  .col-sm-bottom {
    vertical-align: bottom;
  }
}
[class*="fm-overhang"] {
  position: absolute;
}
@media (min-width: 768px) {
  .fm-overhang-left {
    left: -5px;
  }
}
@media (min-width: 992px) {
  .fm-overhang-left {
    left: -15px;
  }
}
@media (min-width: 1200px) {
  .fm-overhang-left {
    left: -50px;
  }
}
@media (min-width: 768px) {
  .fm-overhang-right {
    left: auto;
    right: -5px;
  }
}
@media (min-width: 992px) {
  .fm-overhang-right {
    right: -15px;
  }
}
@media (min-width: 1200px) {
  .fm-overhang-right {
    right: -50px;
  }
}
body {
  background: #EDEBE9;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}
.article-wrapper {
  background: #ffffff;
}
.banner {
  background: #000f2b;
  color: #fff;
  font-size: 16px;
  text-align: center;
  min-width: 160px;
  padding: 10px;
  z-index: 15;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}
.b-white {
  background: #ffffff;
  color: #000f2b;
}
.b-teal {
  background: #007697;
}
.carousel-nav {
  height: 8px;
  width: 8px;
  background: #007697;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
}
.carousel-nav.active {
  height: 12px;
  width: 12px;
  background: transparent;
  border: 2px solid #007697;
  top: 2px;
  cursor: default;
}
.carousel-nav.c-white {
  background: #fff;
}
.carousel-nav.c-white.active {
  border-color: #fff;
  background: transparent;
}
.rn-carousel-control {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  color: #007697;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
  border: 2px solid #007697;
  border-radius: 50%;
}
.rn-carousel-control:hover {
  color: #000f2b;
  border-color: #000f2b;
}
@media (max-width: 767px) {
  .rn-carousel-control {
    font-size: 1.4rem;
  }
}
.rn-carousel-control.rn-carousel-control-prev:before {
  content: "\e901";
}
.rn-carousel-control.rn-carousel-control-next:before {
  content: "\e903";
}
.dark-bg .rn-carousel-control {
  color: #ffffff;
  border-color: #ffffff;
}
.dark-bg .rn-carousel-control:hover {
  color: #007697;
  border-color: #007697;
}
.cta.special {
  height: 54px;
  width: 60px;
  text-align: center;
  line-height: 54px;
}
.cta.special .icon {
  padding: 0;
}
.cta.special.s-dark {
  height: auto;
  width: auto;
  text-align: right;
  font-size: 20px;
  padding: 10px;
  background: #000f2b;
  color: #00acdc;
  line-height: 20px;
}
.cta.special.s-dark .icon {
  top: 0;
}
.cta.special.s-dark:hover {
  color: #ffffff !important;
}
.cta.special:hover {
  color: #000f2b !important;
}
@media only screen and (max-width: 400px) {
  .site-logo {
    position: relative;
    left: 0;
    width: 63%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 401px) {
  .site-logo {
    position: relative;
    left: 0;
    width: auto;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.site-logo svg {
  width: 190px;
  height: 57px;
  padding: 0;
}
.site-logo svg, .site-logo svg use {
  fill: #ffffff;
  stroke: #ffffff;
}
@media only screen and (max-width: 400px) {
  .site-logo svg {
    width: 150px;
    height: auto;
  }
}
[fm-sticky-header] .wrapper {
  display: block;
  background: #EDEBE9;
  z-index: 1;
}
[fm-sticky-header] .wrapper.fixed {
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
}
[fm-sticky-header] .wrapper.fixed.absolute {
  position: absolute;
  z-index: 98;
}
/* Rotate when changing between +/- */
.icon[class*="fm-plus"], .icon[class*="fm-minus"] {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transition: -moz-transform 0.2s ease-in;
  -o-transition: -o-transform 0.2s ease-in;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
}
.icon[class*="fm-plus"] {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.icon.circle {
  border: 2px solid #007697;
  border-radius: 50%;
  line-height: 26px;
  font-size: 26px;
}
a:hover .icon.circle {
  border-color: #000f2b;
}
.dropdown-toggle {
  cursor: pointer;
  height: 100%;
  position: relative;
  top: 0;
  width: 36px;
  background-color: transparent;
  border: none;
  height: 55px;
  position: absolute;
  right: 5px;
}
.dropdown-toggle:hover:before, .dropdown-toggle:hover:after {
  background: #075d7a;
}
.dropdown-toggle:before, .dropdown-toggle:after {
  background: #007697;
  content: '';
  height: 2px !important;
  position: absolute;
  -moz-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44), opacity 0.25s linear;
  -o-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44), opacity 0.25s linear;
  -webkit-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44), opacity 0.25s linear;
  transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44), opacity 0.25s linear;
  width: 18px;
}
.dropdown-toggle:after {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media only screen and (max-width: 1199px) {
  .dropdown-toggle {
    right: 12px;
    top: 7px;
  }
}
li.open .dropdown-toggle:after {
  opacity: 0;
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
li.open .dropdown-toggle:before {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fm-subtitle {
  color: #000f2b;
  font-size: 16px;
  display: inline-block;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
  width: 100%;
  position: relative;
  padding: 5px 0;
  margin: 0 0 10px;
  border-bottom: 2px solid #007697;
}
.fm-list-title {
  position: relative;
}
.fm-list-title h2 {
  font-size: 18px;
  margin: 0 0 5px;
}
.fm-list-title .view-all {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 12px;
}
.video {
  max-width: 100%;
  height: auto;
}
.video-link:after {
  content: "\e90b";
  font-size: 75%;
  padding: 5px 10px;
  position: absolute;
}
.icon-after:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* avoid underlines */
  display: inline-block;
  text-decoration: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cta {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #007697;
  display: block;
  text-align: right;
}
.cta:hover {
  color: #ffffff;
}
.cta .icon {
  font-size: 28px;
  padding: 0 20px;
  position: relative;
  top: 5.5px;
}
.cta.dark-bg {
  background: #000f2b !important;
  color: #00acdc !important;
}
.cta.dark-bg:hover {
  color: #00acdc !important;
}
.cta-wrapper {
  position: relative;
  height: 50px;
}
.dark-bg {
  background: #000f2b;
  color: #ffffff;
}
.dark-bg .fm-title a {
  color: #ffffff;
}
.dark-bg .fm-title a:hover {
  color: #007697;
}
.dark-bg .fm-title a:visited {
  opacity: 0.75;
}
.dark-bg a {
  color: #00acdc;
}
.dark-bg a:hover {
  color: #ffffff;
}
.dark-bg a:visited {
  opacity: 0.75;
}
.dark-bg a.color-white {
  color: #ffffff;
}
.dark-bg a.color-white:hover {
  color: #00acdc;
}
.white-bg {
  background: #ffffff;
  color: #000f2b;
}
.white-bg.wbg-margin-t40 {
  margin-top: 40px;
}
.white-bg p.p-text {
  line-height: 1.8em;
  margin-bottom: 5px;
}
.white-bg p.p-last {
  margin: 10px 0 0 0;
}
.white-bg p:last-child {
  margin-bottom: 0;
}
.white-bg p a.link-right {
  display: block;
  text-align: right;
}
.color-white {
  color: #ffffff;
}
.color-white a, a.color-white {
  color: #ffffff;
}
.color-white a:hover, a.color-white:hover {
  color: #007697;
}
.color-dark {
  color: #000f2b;
}
.color-dark a, a.color-dark {
  color: #00acdc;
}
.color-dark a:hover, a.color-dark:hover {
  color: #ffffff;
}
.color-dark a:visited, a.color-dark:visited {
  opacity: 0.75;
}
.color-brand {
  color: #007697;
}
.color-brand a, a.color-brand {
  color: #007697;
}
.color-brand a:hover, a.color-brand:hover {
  color: #000f2b;
}
.color-desc {
  text-align: center;
  padding: 10px 0;
}
.color-square {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  color: #ffffff;
}
.color-square span {
  font-size: 18px;
  padding-top: 40%;
  width: 100%;
  text-align: center;
  display: block;
}
.color-dark-blue {
  background: #000f2b;
}
.color-light {
  background: #e4e4e4;
}
.color-body-bg {
  background: #EDEBE9;
}
.color-link-light {
  background: #007697;
}
.color-link-dark {
  background: #00acdc;
}
.color-light-blue {
  background: #e5f1f4;
}
.color-hr {
  background: rgba(0, 0, 0, 0.3);
}
.color-gray {
  background: #324456;
}
.color-dark-gray {
  background: #46525e;
}
.color-error {
  background: #b03535;
}
.padding-10 {
  padding: 30px;
}
.padding-20 {
  padding: 20px;
}
.padding-30 {
  padding: 30px;
}
.padding-80 {
  padding: 40px 80px;
}
@media (max-width: 768px) {
  .padding-80 {
    padding: 30px;
  }
}
.bottom-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.styled-select select {
  color: #fff;
  background: #26334b;
  width: 100%;
  margin: 0 0 15px;
  -moz-appearance: none;
}
.styled-select select::-ms-expand {
  display: none;
}
.styled-select:after {
  border-top-color: #fff;
  pointer-events: none;
}
.styled-select:before {
  display: block;
  position: absolute;
  content: '';
  right: 30px;
  top: 3px;
  height: 34px;
  width: 25px;
  background: #26334b;
  z-index: 5;
  pointer-events: none;
}
.more {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #007697;
  text-shadow: none;
  background: none;
  border: none;
  padding: 5px 40px 5px 8px;
  position: relative;
  display: inline-block;
}
.more i {
  position: absolute;
  top: 4px;
  right: 5px;
  font-size: 28px;
  display: block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
}
.more:hover {
  color: #000f2b;
}
.block {
  margin-bottom: 30px;
}
ul.link-listing > li {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  list-style-type: none !important;
}
ul.link-listing > li > a {
  display: block;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  position: relative;
}
ul.link-listing > li > a > .list-icon {
  font-size: 18px;
  position: absolute;
  right: 2px;
  color: #007697;
  cursor: pointer;
  top: calc(50% - 9px);
}
ul.link-listing > li.active > a {
  color: #000f2b;
}
ul.link-listing > li:first-child {
  border: none;
}
ul.link-listing:not(.custom-icons) > li > a:after {
  display: block;
  width: 10px;
  height: 16px;
  font-size: 18px;
  line-height: 16px;
  content: "\e903";
  font-family: 'icomoon';
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
}
.fm-menu-toggle {
  background: transparent;
  outline: none;
  border: none;
  position: relative;
  padding: 15px 0 12px 0;
  width: 30px;
}
.fm-menu-toggle .icon-bar {
  left: calc(50% - 7px);
  width: 14px;
  background: #00acdc;
  display: block;
  height: 2px;
  margin: 0 auto;
  position: absolute;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.fm-menu-toggle .outline {
  left: calc(50% - 15px);
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #00acdc;
  top: calc(50% - 8px);
}
.fm-menu-toggle .icon-bar.two {
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.fm-menu-toggle .icon-bar.three {
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.fm-menu-toggle.openNav .icon-bar.one {
  -moz-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}
.fm-menu-toggle.openNav .icon-bar.three {
  -moz-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  -webkit-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
.overflow-wrapper {
  overflow: auto;
  max-width: 100%;
  max-height: 100%;
}
.footer {
  height: 70px;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-bottom: 90px;
  }
}
.footer .links a {
  color: #fff;
}
.footer .links a:hover {
  color: #007697;
}
.footer .footer-lead {
  background: #000f2b;
  height: 100%;
  width: 400px;
  display: inline-block;
  padding: 15px 30px;
  position: relative;
}
.footer .footer-lead a {
  margin-top: 11px;
  vertical-align: middle;
  color: #fff;
  margin-left: 20px;
  padding: 0;
	font-size: 16px;
}
@media (max-width: 767px) {
  .footer .footer-lead a {
    margin-left: 10px;
  }
}
.footer .footer-lead a svg {
  position: absolute;
  fill: #fff;
  width: 31px;
  height: 31px;
  left: 130px;
  top: 20px;
}
.footer .footer-lead a:hover {
  color: #007697;
}
.footer .footer-lead a:hover svg {
  fill: #007697;
}
.footer .footer-lead .copyright {
  display: none;
}
@media (max-width: 1199px) {
  .footer .footer-lead .copyright {
    display: block;
  }
}
@media (max-width: 1199px) {
  .footer .footer-lead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-lead {
    padding: 15px 0;
    text-align: center;
  }
  .footer .footer-lead > * {
    display: inline-block;
  }
  .footer .footer-lead a svg {
    left: 95px;
  }
}
.footer .footer-menus {
  width: calc(100% - 400px);
  display: inline-block;
  height: 100%;
  padding: 15px;
  background: #000f2b;
}
@media (max-width: 1199px) {
  .footer .footer-menus {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-menus {
    height: auto;
  }
}
.footer .footer-menus .footer-menu {
  height: 100%;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer .footer-menus .footer-menu {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .footer .footer-menus .footer-menu {
    margin: 0 auto;
    width: 100%;
  }
}
.footer .footer-menus li {
  padding: 0 20px;
  border: none;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .footer .footer-menus li {
    width: 50%;
    float: left;
    border: none;
  }
}
.footer .footer-menus li:last-child {
  border: none;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .footer .footer-menus li:last-child {
    position: absolute;
    top: -68px;
    right: 5px;
  }
}
.footer .logo {
  height: 100%;
}
.footer .copyright {
  height: 100%;
  padding-left: 40px;
  border-left: 1px solid rgba(204, 209, 213, 0.7);
}
@media (max-width: 1199px) {
  .footer .copyright {
    display: none;
    border: none;
    float: right;
    padding-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .footer .copyright {
    margin-left: 10px;
  }
}
.navbar {
  height: 70px;
}
.navbar .wrapper {
  background: #000f2b;
  height: 70px;
}
.navbar .wrapper.fixed {
  background: #000f2b;
}
/* Logo and Mobile Menu */
.navbar-header {
  height: 100%;
  position: absolute;
  padding-left: 30px;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .navbar-header {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-header {
    padding-left: 15px;
  }
}
.navbar-header .fm-menu-toggle {
  position: relative;
  width: 27px;
  top: 14px;
  margin: 0 10px;
}
.site-logo {
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  .site-logo {
    margin: 0;
  }
}
/* Nav Container */
.navbar-offcanvas {
  /* Icon treatments */
}
@media only screen and (max-width: 1399px) {
  .navbar-offcanvas {
    height: calc(100vh - 70px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    left: auto;
    right: -275px;
    width: 275px;
    top: 70px;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  .navbar-offcanvas.open-nav {
    right: 0;
  }
  .navbar-offcanvas .dropdown-toggle {
    right: 0;
    top: 0;
    width: 55px;
    padding-right: 30px;
    height: 70px;
  }
  .navbar-offcanvas .dropdown-toggle:before, .navbar-offcanvas .dropdown-toggle:after {
    background: #007697;
  }
}
@media (min-width: 1400px) {
  .navbar-offcanvas {
    width: 100%;
  }
}
.navbar-offcanvas .icon {
  font-size: 30px;
}
.navbar-offcanvas button[type="button"] {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .navbar-offcanvas button[type="button"] {
    color: #007697;
  }
  .navbar-offcanvas button[type="button"]:hover {
    color: #000f2b;
  }
}
/* Drop-down Nav Menu */
.main-menu {
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .main-menu > li {
    display: block;
    width: 100%;
  }
}
.main-menu > li.open ul {
  max-height: 100vh;
}
@media (min-width: 1399px) {
  .main-menu > li:hover ul {
    max-height: 100vh;
    min-width: 200%;
    max-width: 300px;
  }
}
.main-menu > li a {
  padding: 0 20px;
  line-height: 70px;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 1399px) {
  .main-menu > li a {
    font-size: 16px;
  }
}
.main-menu > li a:hover {
  color: #007697 !important;
}
.main-menu > li button {
  position: absolute;
  height: 70px;
  top: 0;
  width: 65px;
  right: 0;
  padding: 0;
  color: #00acdc;
}
.main-menu > li ul {
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1399px) {
  .main-menu > li ul {
    position: relative;
    width: 100%;
    box-shadow: none;
    background: rgba(230, 230, 230, 0.5);
  }
}
.main-menu > li ul li:hover {
  background: #e4e4e4;
}
.main-menu > li ul li a {
  line-height: 20px;
  color: #007697;
}
@media only screen and (max-width: 1399px) {
  .main-menu > li ul li a {
    font-size: 14px;
  }
}
.main-menu > li ul li a:hover {
  text-decoration: underline;
  color: #000f2b;
}
/* All FannieMae Sites Button */
.menu-sites {
  height: 40px;
  margin-top: 15px;
  width: 100%;
}
@media (min-width: 1400px) {
  .menu-sites {
    width: 230px;
  }
}
@media (min-width: 1400px) {
  .menu-sites {
    border-left: 1px solid #324456;
  }
}
.menu-sites .toggle-sites {
  color: #00acdc;
  text-transform: none;
  font-size: 14px;
  line-height: 40px;
  padding: 0 60px 0 10px;
  height: 40px;
  display: inline-block;
  text-align: left;
  width: 100%;
}
.menu-sites .toggle-sites:hover {
  color: #ffffff;
}
.menu-sites .toggle-sites span.icon {
  position: absolute;
  right: 30px;
  top: 6px;
}
@media only screen and (max-width: 1399px) {
  .menu-sites .toggle-sites {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    text-align: left;
    padding: 0 20px;
  }
}
/* All FannieMae Sites Menu */
@media (min-width: 1200px) {
  .sites-list {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .open .sites-list {
    opacity: .95 !important;
  }
}
.sites-list, .open .sites-list {
  top: 100%;
  margin-top: 15px;
  line-height: 1.75;
  opacity: 1;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (min-width: 1200px) {
  .sites-list, .open .sites-list {
    width: 385px;
    opacity: 0;
    padding: 0 30px;
    min-height: 552.63158px;
    background: #000f2b;
  }
  .fixed .sites-list, .fixed .open .sites-list {
    background: #0d2338;
  }
}
.sites-list a:hover h2, .open .sites-list a:hover h2 {
  color: #ffffff;
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  .sites-list a:hover h2, .open .sites-list a:hover h2 {
    color: #121212;
  }
  .sites-list a:hover h2:hover, .open .sites-list a:hover h2:hover {
    color: #007697;
  }
}
.sites-list a:hover .dropdown-toggle:before, .sites-list a:hover .dropdown-toggle:after, .open .sites-list a:hover .dropdown-toggle:before, .open .sites-list a:hover .dropdown-toggle:after {
  background: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .sites-list a:hover .dropdown-toggle:before, .sites-list a:hover .dropdown-toggle:after, .open .sites-list a:hover .dropdown-toggle:before, .open .sites-list a:hover .dropdown-toggle:after {
    background: #121212;
  }
}
.sites-list a:focus, .open .sites-list a:focus {
  color: #007697;
}
.sites-list h1, .open .sites-list h1 {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  line-height: 1;
  border-bottom: 2px solid #00acdc;
  margin: 30px 20px 0;
  padding: 0 0 10px;
}
@media (min-width: 1200px) {
  .sites-list h1, .open .sites-list h1 {
    margin: 30px 0 0;
    color: #e4e4e4;
  }
}
@media (max-width: 1199px) {
  .sites-list h1, .open .sites-list h1 {
    border-color: #007697;
  }
}
.sites-list h2, .open .sites-list h2 {
  font-size: 16px;
  margin: 0;
  color: #00acdc;
}
.sites-list h2:hover, .open .sites-list h2:hover {
  color: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .sites-list h2, .open .sites-list h2 {
    padding: 25px 25px 25px 20px;
    color: #000f2b;
  }
  .sites-list h2:hover, .open .sites-list h2:hover {
    color: #007697;
  }
}
.sites-list .subhead, .open .sites-list .subhead {
  color: #000f2b;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .sites-list .subhead, .open .sites-list .subhead {
    color: #ffffff;
  }
}
.sites-list button.icon, .open .sites-list button.icon {
  font-size: 30px;
  position: absolute;
  padding: 0;
  top: 20px;
  right: 20px;
  color: #007697;
}
.sites-list button.icon:hover, .open .sites-list button.icon:hover {
  color: #000f2b;
}
@media (min-width: 1200px) {
  .sites-list button.icon, .open .sites-list button.icon {
    right: 0;
    top: 9px;
    color: #00acdc;
  }
  .sites-list button.icon:hover, .open .sites-list button.icon:hover {
    color: #ffffff;
  }
}
@media (min-width: 1200px) {
  .sites-list li.open ul, .open .sites-list li.open ul {
    margin-top: 10px;
  }
}
.sites-list ul, .open .sites-list ul {
  border-collapse: collapse;
  border: none;
}
.sites-list ul li, .open .sites-list ul li {
  border-color: rgba(70, 82, 94, 0.5);
}
@media (min-width: 1200px) {
  .sites-list ul li, .open .sites-list ul li {
    padding: 15px 0;
  }
  .sites-list ul li:first-child, .open .sites-list ul li:first-child {
    border: none;
  }
}
.sites-list ul li:after, .open .sites-list ul li:after {
  content: '' !important;
}
@media only screen and (max-width: 1199px) {
  .sites-list ul li a h2, .open .sites-list ul li a h2 {
    padding: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .sites-list .submenu, .open .sites-list .submenu {
    margin: 0;
    background: rgba(230, 230, 230, 0.5);
    opacity: 1;
  }
}
.sites-list .submenu li, .open .sites-list .submenu li {
  padding: 0;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .sites-list .submenu li, .open .sites-list .submenu li {
    border-bottom: 1px solid #e4e4e4;
  }
}
.sites-list .submenu li a, .open .sites-list .submenu li a {
  padding: 0 0 0 20px !important;
  font-size: 14px;
  color: #00acdc;
}
@media only screen and (max-width: 1199px) {
  .sites-list .submenu li a, .open .sites-list .submenu li a {
    padding: 15px 20px !important;
    display: block;
    color: #007697;
  }
  .sites-list .submenu li a:hover, .open .sites-list .submenu li a:hover {
    color: #000f2b;
  }
}
.sites-list .submenu li a:hover, .open .sites-list .submenu li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* Search Form */
input[type="search"].header-search-input {
  position: absolute;
  border: none;
  outline: none;
  background: #fff;
  height: 40px;
  top: 15px;
  margin: 0;
  padding: 0 10px;
  border-radius: 0;
  top: 0;
  left: 10px;
  width: calc(100% - 90px);
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input[type="search"].header-search-input:-moz-placeholder {
  color: #007697;
  font-style: italic;
}
input[type="search"].header-search-input::-moz-placeholder {
  color: #007697;
  font-style: italic;
}
input[type="search"].header-search-input:-ms-input-placeholder {
  color: #007697;
  font-style: italic;
}
input[type="search"].header-search-input::-webkit-input-placeholder {
  color: #007697;
  font-style: italic;
}
.header-search-btn, input[type="submit"].header-search-submit {
  height: 70px;
  padding: 0;
  margin: 0;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
input[type="submit"].header-search-submit {
  position: absolute;
  background: #fff;
  /* IE needs this */
  color: transparent;
  top: 0;
  right: 10px;
  width: 40px;
  z-index: 1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
}
button[type="button"].header-search-btn {
  width: 60px;
  color: #00acdc;
  position: relative;
}
button[type="button"].header-search-btn:hover {
  color: #ffffff;
}
button[type="button"].header-search-btn span.icon {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.header-search-form {
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #000f2b;
  margin: 0;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  -webkit-backface-visibility: hidden;
}
.fixed .header-search-form {
  background: #0d2338;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header-search-form.header-search-open, .no-js .header-search-form {
  height: 50px;
}
.header-search-form .icon {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 30px;
  padding: 5px 10px;
  color: #00acdc;
}
@media (min-width: 1200px) {
  .header-search-form .icon {
    padding: 5px 20px;
  }
}
.header-search-form .icon:hover {
  color: #ffffff;
}
.fm-accordion {
  width: 100%;
  margin: 20px 0 0;
  display: block;
}
.fm-accordion button.fm-accordion-toggle-all {
  display: inline;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  line-height: 100%;
  padding-right: 40px;
}
.fm-accordion button.fm-accordion-toggle-all .icon {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: -3px;
  border: 2px solid #000f2b;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .fm-accordion button.fm-accordion-toggle-all .icon {
    font-size: 30px;
    top: -6px;
  }
}
.fm-accordion .rich-text-block p {
  font-size: 16px;
  line-height: 25px;
}
.fm-accordion .rich-text-block ul {
  margin-bottom: 20px;
}
.fm-accordion .fm-subtitle {
  padding: 15px 125px 10px 0;
}
@media (min-width: 768px) {
  .fm-accordion .fm-subtitle {
    padding: 15px 0;
  }
}
.fm-accordion ul.link-listing {
  margin: 0;
  padding: 0;
}
.fm-accordion ul.link-listing > li {
  line-height: 20px;
}
.fm-accordion ul.link-listing > li > a {
  padding-right: 30px;
  font-size: 16px;
}
.fm-accordion ul.link-listing > li > a > .icon {
  right: 5px;
}
.fm-accordion .fm-accordion-content {
  max-height: 0;
  overflow: hidden;
  -moz-transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  -o-transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
}
.fm-accordion li.open .fm-accordion-content {
  max-height: 9000px;
}
.article-header {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
.article-header h1 {
  font-size: 28px;
	font-weight: 500;
  line-height: 34px;
  margin: 0;
}
.article-header h2 {
  font-size: 18px;
  line-height: 25px;
  margin: 0;
}
.article-header .article-category {
  font-size: 16px;
  margin-bottom: 10px;
}
.article-header .article-date {
  font-size: 14px;
  margin: 10px 0 0;
}
.article-share {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
  zoom: 1;
}
.article-share:before, .article-share:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.article-share:after {
  clear: both;
}
.article-share .fa {
  margin: 0 5px;
}
.article-share .more {
  float: left;
  line-height: 19.2px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .article-share .more {
    float: none;
    display: block;
    white-space: nowrap;
    margin-bottom: 30px;
  }
}
.article-share .more .fa {
  margin: 0;
  line-height: 10px;
}
.article-share .more + .st_sharethis_custom {
  float: right;
}
@media (max-width: 767px) {
  .article-share .more + .st_sharethis_custom {
    float: none;
  }
}
.article-teaser {
  padding-bottom: 10px;
}
.article-teaser h2 {
  margin: 0;
  font-size: 26px;
}
.article-teaser h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.article-teaser .fm-date {
  margin-bottom: 30px;
}
.article-teaser .rich-text-block p {
  font-size: 18px;
}
.article-teaser .rich-text-block hr {
  margin-top: 65px;
}
figure.bio-teaser {
  display: block;
  background: #f2f2f2;
  position: relative;
  width: 100%;
  margin: 20px 0;
  height: 115px;
}
figure.bio-teaser img {
  float: left;
  width: auto !important;
}
figure.bio-teaser a {
  display: block;
}
figure.bio-teaser figcaption {
  height: calc(100% - 20px);
  font-size: 18px;
  display: inline-block;
  position: absolute;
  margin: 10px;
  font-size: 14px;
  overflow: hidden;
  background-color: transparent !important;
  padding: 0 !important;
}
figure.bio-teaser .bio-name {
  margin: 0 0 5px;
  font-size: 22px;
}
@media (max-width: 767px) {
  figure.bio-teaser .bio-name {
    font-size: 18px;
  }
}
figure.bio-teaser p.bio-title {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  figure.bio-teaser p.bio-title {
    margin-right: 30px;
  }
}
figure.bio-teaser .cta.special {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
}
@media (max-width: 1199px) {
  .rail-list figure.bio-teaser {
    height: auto;
  }
}
@media (max-width: 1199px) {
  .rail-list figure.bio-teaser img {
    display: none;
  }
}
@media (max-width: 1199px) {
  .rail-list figure.bio-teaser figcaption {
    position: relative;
    height: auto;
  }
}
.rich-text-block figure.bio-teaser {
  height: 160px;
  margin-bottom: 20px;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .rich-text-block figure.bio-teaser {
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .rich-text-block figure.bio-teaser {
    height: 200px;
  }
}
@media (min-width: 768px) {
  .rich-text-block figure.bio-teaser img {
    max-width: 30%;
  }
}
@media (min-width: 992px) {
  .rich-text-block figure.bio-teaser img {
    max-width: 50%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .rich-text-block figure.bio-teaser figcaption {
    height: 100%;
    float: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px !important;
    margin: 0;
    position: relative;
    max-width: 70%;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .rich-text-block figure.bio-teaser figcaption {
    max-width: 50%;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .rich-text-block figure.bio-teaser .bio-name {
    font-size: 26px;
    margin: 0 0 10px;
  }
}
@media (min-width: 992px) {
  .rich-text-block figure.bio-teaser p.bio-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .rich-text-block figure.bio-teaser .cta.special {
    font-size: 30px;
  }
}
.breadcrumb-social-wrap {
  position: relative;
  zoom: 1;
  margin: 20px 15px 20px;
  vertical-align: middle;
}
.breadcrumb-social-wrap:before, .breadcrumb-social-wrap:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.breadcrumb-social-wrap:after {
  clear: both;
}
@media (max-width: 991px) {
  .breadcrumb-social-wrap {
    margin: 20px 0 20px;
  }
}
@media (min-width: 1440px) {
  .breadcrumb-social-wrap .full-width-max {
    padding: 0 35px;
  }
}
.breadcrumb {
  float: left;
}
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  padding: 5px 0;
}
.breadcrumb li {
  display: inline-block;
  font-size: 12px;
  color: #808080;
  position: relative;
  margin: 0 5px;
  line-height: 18px;
}
.breadcrumb li:first-child {
  margin-left: 0;
}
.breadcrumb li:after {
  color: #121212;
  content: "\f0da";
  font-family: FontAwesome;
  font-weight: 500;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  position: relative;
  right: -7px;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  color: #121212;
}
.breadcrumb a:hover:after {
  text-decoration: none;
}
section.chart-viewer {
  table-layout: fixed;
  width: calc(100% + 60px);
  margin: 0 -30px;
  border-spacing: 30px 0;
  border-collapse: separate;
}
@media (max-width: 768px) {
  section.chart-viewer {
    display: block;
    margin-bottom: 30px;
  }
}
section.chart-viewer .fm-subtitle {
  margin-bottom: 0;
}
section.chart-viewer .nav-block {
  display: table-cell;
  vertical-align: top;
  width: 33%;
  position: relative;
  margin: 0;
}
@media (max-width: 768px) {
  section.chart-viewer .nav-block {
    display: block;
    width: auto;
    padding-bottom: 0;
  }
}
section.chart-viewer .chart-block {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 768px) {
  section.chart-viewer .chart-block {
    display: block;
    padding-top: 0;
    margin: 0;
  }
}
section.chart-viewer .chart-block li {
  display: none;
}
section.chart-viewer .chart-block li.active {
  display: block;
}
section.chart-viewer .chart-block p {
  margin: 0;
}
section.chart-viewer .link-listing li {
  position: relative;
}
section.chart-viewer .link-listing li:first-child {
  border-top: none;
}
section.chart-viewer .link-listing li.active:after {
  z-index: 2;
  content: '';
  display: block;
  border-width: 20px 16px;
  border-color: transparent transparent transparent white;
  border-style: solid;
  border-right-width: 24px;
  position: absolute;
  right: -70px;
  top: 0;
}
@media (max-width: 768px) {
  section.chart-viewer .link-listing li.active:after {
    display: none;
  }
}
section.contact-us p {
  margin-bottom: 20px;
}
section.contact-us textarea {
  resize: vertical;
}
section.contact-us h3 {
  font-size: 20px;
}
section.contact-us .submit {
  margin-top: 30px;
}
section.contact-us .submit hr {
  margin: 10px 0;
}
table {
  width: 100%;
  max-width: 100%;
  overflow: auto;
  margin: 0 0 20px;
}
table th {
  background-color: #e5f1f4;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700 !important;
  text-align: left;
  color: #000f2b;
}
table tbody, table tr, table th, table td {
  padding: 0;
  text-align: left;
  white-space: normal;
}
table tr {
  margin-bottom: 1em;
  border: 1px solid #EDEBE9;
  color: #000f2b;
}
table tr:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  table tr:nth-of-type(even) {
    background-color: #e5f1f4;
  }
}
table th, table td {
  padding: .5em 1em;
  vertical-align: middle;
	font-size: 16px;
  font-weight: 500;
  border: 1px solid #EDEBE9;
}
@media (min-width: 992px) {
  .responsive-table {
    font-size: .9em;
  }
}
@media (min-width: 1200px) {
  .responsive-table {
    font-size: 1em;
  }
}
.responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
}
.responsive-table tbody, .responsive-table tr, .responsive-table th, .responsive-table td {
  display: block;
}
@media (min-width: 992px) {
  .responsive-table thead tr, .responsive-table tbody tr {
    display: table-row;
  }
}
.responsive-table thead th, .responsive-table thead td, .responsive-table tbody th, .responsive-table tbody td {
  display: block;
}
@media (min-width: 768px) {
  .responsive-table thead th, .responsive-table thead td, .responsive-table tbody th, .responsive-table tbody td {
    padding: .75em .5em;
  }
}
@media (min-width: 992px) {
  .responsive-table thead th, .responsive-table thead td, .responsive-table tbody th, .responsive-table tbody td {
    display: table-cell;
    padding: .5em;
    padding-left: 2em;
  }
}
@media (min-width: 1200px) {
  .responsive-table thead th, .responsive-table thead td, .responsive-table tbody th, .responsive-table tbody td {
    padding: .75em .5em;
    padding-left: 2em;
  }
}
@media (min-width: 1920px) {
  .responsive-table thead th, .responsive-table thead td, .responsive-table tbody th, .responsive-table tbody td {
    padding: .75em;
    padding-left: 2em;
  }
}
.responsive-table caption {
  margin-bottom: 1em;
  font-size: 1em;
  text-align: center;
}
@media (min-width: 992px) {
  .responsive-table caption {
    font-size: 1.5em;
  }
}
@media (min-width: 992px) {
  .responsive-table tbody {
    display: table-row-group;
  }
}
.responsive-table tbody tr {
  border-width: 2px;
}
@media (min-width: 992px) {
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
}
.responsive-table tbody th[scope="row"] {
  background-color: #e5f1f4;
  text-align: right;
}
@media (min-width: 992px) {
  .responsive-table tbody th[scope="row"] {
    background-color: transparent;
    text-align: left;
  }
}
.responsive-table tbody th[scope="row"]:before {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
.responsive-table tbody td {
  text-align: right;
}
@media (min-width: 768px) {
  .responsive-table tbody td {
    border-bottom: 1px solid #EDEBE9;
  }
}
@media (min-width: 992px) {
  .responsive-table tbody td {
    text-align: left;
  }
}
.responsive-table tbody td[data-type=currency] {
  text-align: right;
}
.responsive-table tbody td[data-title]:before, .responsive-table tbody th[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: .8em;
  color: #000f2b;
}
@media (min-width: 768px) {
  .responsive-table tbody td[data-title]:before, .responsive-table tbody th[data-title]:before {
    font-size: .9em;
  }
}
@media (min-width: 992px) {
  .responsive-table tbody td[data-title]:before, .responsive-table tbody th[data-title]:before {
    content: none;
  }
}
.responsive-table.grid-table tbody td {
  text-align: left;
}
.fm-video-wrapper {
  height: auto;
  width: 100%;
  position: relative;
  display: block;
}
.fm-video-wrapper video, .fm-video-wrapper video source {
  z-index: 0 !important;
}
.fm-video-wrapper video::-webkit-media-controls {
  display: none !important;
}
figure .fm-play-circle, figure .fm-pause-circle, img + .fm-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 10;
  cursor: pointer;
  font-size: 45px;
  color: #ffffff;
  background: #000f2b;
  padding: 5px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  figure .fm-play-circle, figure .fm-pause-circle, img + .fm-play-circle {
    font-size: 60px;
  }
}
figure .fm-pause-circle {
  -moz-animation: fadeOut 2s forwards;
  -webkit-animation: fadeOut 2s forwards;
  animation: fadeOut 2s forwards;
}
@media (min-width: 1200px) {
  figure .fm-pause-circle:hover {
    -moz-animation: fade-in 0.5s forwards;
    -webkit-animation: fade-in 0.5s forwards;
    animation: fade-in 0.5s forwards;
  }
}
.fm-select-wrapper {
  position: relative;
}
.fm-select-wrapper .fm-styled-select {
  height: 40px;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  padding: 10px;
  position: relative;
  line-height: 20px;
  cursor: pointer;
}
.fm-select-wrapper .fm-styled-select:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 17px;
  right: 15px;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.fm-select-wrapper .fm-styled-select.open:after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fm-select-wrapper .fm-select-submenu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  color: #000f2b;
  visibility: hidden;
  z-index: 1;
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
.fm-select-wrapper .fm-select-submenu li {
  cursor: pointer;
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.fm-select-wrapper .fm-select-submenu li:last-child {
  border-bottom: none;
}
.fm-select-wrapper .open ~ .fm-select-submenu {
  visibility: visible;
}
.featured-hero {
  width: 100%;
}
.featured-hero figure {
  width: 100%;
}
.featured-hero figcaption {
  overflow: auto;
  position: relative;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .featured-hero figcaption {
    padding-bottom: 100px;
  }
}
.featured-hero figcaption h1 {
  font-size: 18px;
}
@media (min-width: 992px) {
  .featured-hero figcaption h1 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .featured-hero figcaption h1 {
    font-size: 26px;
  }
}
.featured-hero figcaption .article-share {
  position: absolute;
  bottom: 0;
  width: calc(100% - 60px);
}
@media (max-width: 991px) {
  .featured-hero figcaption .article-share {
    padding: 15px;
  }
}
.featured-hero img, .featured-hero figcaption {
  height: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .featured-hero img, .featured-hero figcaption {
    width: auto;
    height: 240.768px;
  }
}
@media (min-width: 992px) {
  .featured-hero img, .featured-hero figcaption {
    height: 310.992px;
  }
}
@media (min-width: 1200px) {
  .featured-hero img, .featured-hero figcaption {
    height: 376.2px;
  }
}
section.featured-subpages {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  margin: 0 10px;
}
@media (max-width: 768px) {
  section.featured-subpages {
    margin: 0 10px 30px;
  }
}
section.featured-subpages .block {
  min-height: 420px;
  position: relative;
}
section.featured-subpages img {
  position: absolute;
  top: -20px;
  max-height: none;
}
@media (max-width: 768px) {
  section.featured-subpages img {
    position: static;
    width: 400px;
    margin: 0 auto 10px;
    display: block;
  }
}
section.featured-subpages.img-right {
  padding-right: 400px;
}
section.featured-subpages.img-right img {
  right: 0;
}
@media (max-width: 768px) {
  section.featured-subpages.img-right {
    padding-right: 0;
  }
}
section.featured-subpages.img-left {
  padding-left: 400px;
}
section.featured-subpages.img-left img {
  left: 0;
}
@media (max-width: 768px) {
  section.featured-subpages.img-left {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  section.featured-subpages .link-listing {
    margin: 0 0 30px;
  }
}
section.grid-listing {
  position: relative;
}
section.grid-listing ul {
  zoom: 1;
}
section.grid-listing ul:before, section.grid-listing ul:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
section.grid-listing ul:after {
  clear: both;
}
section.grid-listing li.block {
  margin-right: 2%;
  width: 32%;
  float: left;
  height: 290px;
  overflow: hidden;
  position: relative;
}
section.grid-listing li.block.sgl-4blocks {
  margin-right: 2%;
  width: 23.5%;
}
section.grid-listing li.block:nth-child(3n+3) {
  margin-right: 0;
}
section.grid-listing li.block:nth-child(3n+3).sgl-4blocks, section.grid-listing li.block:nth-child(even).sgl-4blocks {
  margin-right: 2%;
}
section.grid-listing li.block:nth-child(3n+4).sgl-4blocks {
  margin-right: 0;
}
section.grid-listing li.block .fm-title {
  font-size: 24px;
}
@media (max-width: 900px) {
  section.grid-listing li.block, section.grid-listing li.block.sgl-4blocks {
    width: 48%;
    margin-right: 4%;
  }
  section.grid-listing li.block:nth-child(3n+3), section.grid-listing li.block:nth-child(3n+3).sgl-4blocks {
    margin-right: 4%;
  }
  section.grid-listing li.block:nth-child(even), section.grid-listing li.block:nth-child(even).sgl-4blocks {
    margin-right: 0;
  }
  section.grid-listing li.block .fm-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  section.grid-listing li.block, section.grid-listing li.block.sgl-4blocks {
    margin-right: 0;
    float: none;
    width: auto;
    height: auto;
  }
  section.grid-listing li.block:nth-child(3n+3), section.grid-listing li.block:nth-child(3n+3).sgl-4blocks {
    margin-right: 0;
  }
  section.grid-listing li.block:nth-child(even), section.grid-listing li.block:nth-child(even).sgl-4blocks {
    margin-right: 0;
  }
}
section.grid-listing li.block .cta {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
}
section.grid-listing li.block .cta i {
  padding: 0;
}
section.grid-listing li.block .cta:hover {
  color: #000f2b;
}
section.grid-listing .load-more {
  margin: 10px;
}
.fm-homepage-carousel {
  margin: 0 -15px;
  position: relative;
  background: #000f2b;
  overflow: hidden;
}
.pane-homepage-slider-slider-home {
  height: 285px;
  max-height: calc(100vh - 70px);
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home {
    height: 205px;
    max-height: none;
  }
}
@media (min-width: 992px) {
  .pane-homepage-slider-slider-home {
    height: 220.84211px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home {
    height: 290.84211px;
  }
}
@media (min-width: 1440px) {
  .pane-homepage-slider-slider-home {
    height: 340.84211px;
  }
}
@media (min-width: 1800px) {
  .pane-homepage-slider-slider-home {
    height: 410.84211px;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home {
    height: 480.84211px;
  }
}
@media (min-width: 2500px) {
  .pane-homepage-slider-slider-home {
    height: 550.84211px;
  }
}
.pane-homepage-slider-slider-home .fm-carousel-figure {
  height: 100%;
  padding-bottom: 50px;
  position: relative;
  max-height: 340px;
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-figure {
    padding-bottom: 50px;
  }
}
.pane-homepage-slider-slider-home .fm-carousel-figure img, .pane-homepage-slider-slider-home .fm-carousel-figure video {
  position: absolute;
  width: 100%;
  height: auto;
  max-height: none;
  display: none;
  /**
  top: 50%;
  left: 50%;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  **/
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-figure img, .pane-homepage-slider-slider-home .fm-carousel-figure video {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    /**
  top: 50%;
  left: 50%;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  **/
  }
}
.pane-homepage-slider-slider-home .fm-carousel-caption {
  color: #ffffff;
  font-family: 'Glypha LT Pro W01 Bold', "Georgia", "Century", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  position: relative;
  left: 5%;
  width: calc(100% - 10%);
  max-height: 100%;
  overflow: hidden;
  padding: 14px 5% 14px 14px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption {
    left: 5%;
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption {
    font-size: 40px;
    line-height: 50px;
    padding-right: 260px;
  }
}
@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption {
    font-size: 50px;
    line-height: 50px;
    padding-right: 260px;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption {
    font-size: 60px;
    line-height: 50px;
    padding-right: 260px;
  }
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h1 {
    left: 5%;
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h1 {
    font-size: 32px;
    line-height: 36px;
    padding-right: 260px;
  }
}
@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h1 {
    font-size: 36px;
    line-height: 40px;
    padding-right: 260px;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h1 {
    font-size: 40px;
    line-height: 44px;
    padding-right: 260px;
  }
}
@media (min-width: 2400px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h1 {
    font-size: 44px;
    line-height: 48px;
    padding-right: 260px;
  }
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h2 {
    left: 5%;
    font-size: 28px;
    line-height: 32px;
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h2 {
    font-size: 32px;
    line-height: 36px;
    padding-right: 0px;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h2 {
    font-size: 36px;
    line-height: 40px;
    padding-right: 260px;
    width: 100%;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h2 {
    font-size: 40px;
    line-height: 44px;
    padding-right: 260px;
    width: 85%;
  }
}
@media (min-width: 2400px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h2 {
    font-size: 44px;
    line-height: 48px;
    padding-right: 260px;
    width: 80%;
  }
}
.pane-homepage-slider-slider-home .fm-carousel-caption h2 {
  font-weight: 500;
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h3 {
    left: 5%;
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h3 {
    font-size: 28px;
    line-height: 30px;
    padding-right: 260px;
  }
}
@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h3 {
    font-size: 32px;
    line-height: 36px;
    padding-right: 260px;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h3 {
    font-size: 36px;
    line-height: 40px;
    padding-right: 260px;
  }
}
@media (min-width: 2400px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h3 {
    font-size: 40px;
    line-height: 44px;
    padding-right: 260px;
  }
}
@media (min-width: 768px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    left: 5%;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 20px;
    line-height: 28px;
    padding-right: 0;
  }
}
@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 22px;
    line-height: 30px;
    padding-right: 260px;
    width: 85%;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 22px;
    line-height: 30px;
    padding-right: 260px;
    width: 80%;
  }
}
@media (min-width: 2400px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 22px;
    line-height: 30px;
    padding-right: 260px;
    width: 80%;
  }
}
.pane-homepage-slider-slider-home .fm-carousel-caption h4 {
  font-weight: 600;
}
.pane-homepage-slider-slider-home .fm-carousel-caption h4 sup {
  font-size: 14px;
}
.pane-homepage-slider-slider-home .fm-carousel-caption .icon:before {
  font-size: 75%;
}
.pane-homepage-slider-slider-home .fm-carousel-caption a {
  color: #ffffff;
}
.fm-carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 5%;
  margin-left: 14px;
  z-index: 5;
}
@media (min-width: 768px) {
  .fm-carousel-controls {
    left: 5%;
    bottom: 20px;
  }
}
.image-promo figure {
  position: relative;
}
@media (max-width: 767px) {
  .image-promo figure {
    margin-top: 30px;
  }
}
.image-promo figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 50px);
}
.image-promo .white-bg .cta {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000f2b;
  color: #00acdc;
}
.image-promo .white-bg .cta:hover {
  text-decoration: underline;
  color: #00acdc;
}
.image-promo img {
  width: 100%;
  height: auto;
}
.image-promo h1 {
  font-size: 16px;
}
.fm-basic-carousel-wrap {
  zoom: 1;
  position: relative;
  margin: 0 0 30px 60px;
}
.fm-basic-carousel-wrap:before, .fm-basic-carousel-wrap:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.fm-basic-carousel-wrap:after {
  clear: both;
}
@media (max-width: 767px) {
  .fm-basic-carousel-wrap {
    margin: 0 0 30px;
  }
}
.fm-basic-carousel {
  zoom: 1;
  position: absolute;
  z-index: 1;
  padding: 30px 0;
  left: 0;
  height: 100%;
  width: 50%;
}
.fm-basic-carousel:before, .fm-basic-carousel:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.fm-basic-carousel:after {
  clear: both;
}
@media (max-width: 767px) {
  .fm-basic-carousel {
    position: relative;
    float: none;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.fm-basic-carousel h1 {
  position: absolute;
  left: -15px;
  top: 30px;
  display: inline-block;
  min-width: 160px;
  z-index: 15;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}
@media (max-width: 767px) {
  .fm-basic-carousel h1 {
    top: 20px;
  }
}
.fm-basic-carousel ul {
  height: 100%;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .fm-basic-carousel ul {
    height: 375px;
  }
}
.fm-basic-carousel ul li {
  background: #fff;
  width: 100%;
  padding: 20% 60px 50px;
  color: #01172d;
  font-size: 26px;
  line-height: 1.1;
}
@media (max-width: 970px) {
  .fm-basic-carousel ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .fm-basic-carousel ul li {
    width: 100%;
    padding: 100px 40px 70px;
  }
}
.fm-basic-carousel .fm-carousel-controls {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 5;
  margin: 0;
}
@media (max-width: 767px) {
  .fm-basic-carousel .fm-carousel-controls {
    left: 30px;
  }
}
.fm-basic-carousel-images {
  float: right;
  z-index: 5;
}
.fm-basic-carousel-images img {
  display: none;
}
.fm-basic-carousel-images img.active {
  display: block;
}
@media (max-width: 1199px) {
  .fm-basic-carousel-images {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .fm-basic-carousel-images {
    width: 650px;
    max-width: 100%;
    float: none;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .fm-basic-carousel-wrap.theme-2 {
    margin: 0 60px 30px 0;
  }
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel h1 {
  left: auto;
  right: -15px;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel a {
  color: #ffffff;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel a:hover {
  color: #ffffff;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel a:visited {
  opacity: 0.75;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel li {
  color: #fff;
  background: #000f2b;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel .rn-carousel-control {
  color: #ffffff;
  border-color: #ffffff;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel .rn-carousel-control:hover {
  color: #007697;
  border-color: #007697;
}
.fm-basic-carousel-wrap.theme-3 .fm-basic-carousel {
  right: 0;
  left: auto;
}
.fm-basic-carousel-wrap.theme-3 .fm-basic-carousel-images {
  position: relative;
  z-index: 0;
  float: left;
}
@media (max-width: 720px) {
  .job-search .blue-block button {
    width: 100%;
    right: 0;
    margin-left: 0;
    left: auto;
  }
}
.locator-form {
  min-height: 410px;
  padding-bottom: 45px;
}
.locator-form h2 legend {
  font-size: 16px;
  margin: 0 0 10px;
}
.locator-form .more {
  position: absolute;
  bottom: 40px;
  right: 25px;
}
@media (max-width: 767px) {
  .locator-form .more {
    bottom: 15px;
  }
  .col-xs-12.2blocks-padding-left {
    padding: 0;
  }
  .col-xs-12.2blocks-padding-right {
    padding: 0;
  }
}
.locator-form input[type=text] {
  margin: 0 0 30px;
}
.locator-form ul.inline {
  margin-bottom: 10px;
}
.locator-form ul.inline li {
  padding: 0 10px;
}
.more-in {
  margin: 0;
}
.more-in h1 {
  margin-top: 0;
  font-size: 16px;
}
.more-in select::-ms-expand {
  display: none;
}
.quick-search-form {
  background: #000f2b;
  color: #ffffff;
  padding: 20px;
}
.news-teaser {
  position: relative;
  padding: 0;
  margin: 0 10px;
}
.news-teaser .news-teaser-container {
  padding: 90px 30px 30px;
  margin: 30px 0 0 0;
  line-height: 1.8em;
}
.news-teaser .news-teaser-container.ntc-margin-t0 {
  margin-top: 0;
}
.news-teaser .news-teaser-container.ntc-margin-t0b30 {
  margin-top: 0;
  margin-bottom: 30px;
}
.news-teaser .news-teaser-container.ntc-margin-tb {
  margin: 0 0 40px 0;
}
.news-teaser .news-teaser-container.ntc-margin-t40 {
  margin: 40px 0 0 0;
}
.news-teaser .news-teaser-container .ntc-padding-b10 {
  padding-bottom: 10px;
}
.news-teaser .news-teaser-container p.p-margin-b5 {
  margin-bottom: 5px;
}
.news-teaser .news-teaser-container p:last-child {
  margin-bottom: 0;
}
.news-teaser .news-teaser-container ul {
  margin-left: 25px;
}
.news-teaser .news-teaser-container ul li {
  list-style: disc;
}
.news-teaser .news-teaser-container ul.link-listing > li > a {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .fm-main-content.fmmc-margin-t20 {
    margin-top: 0;
  }
  .quick-search-form.qsf-margin-t40 {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .fm-main-content.fmmc-margin-t20 {
    margin-top: 0;
  }
  .quick-search-form.qsf-margin-t40 {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .fm-main-content.fmmc-margin-t20 {
    margin-top: 20px;
  }
  .quick-search-form.qsf-margin-t40 {
    margin-top: 0;
  }
  .news-teaser .news-teaser-container.ntc-margin-tb {
    margin-top: 20px;
  }
}
/* START: News Teaser 2 Columns */
.news-teaser .news-teaser-container .news-teaser-content {
  overflow: hidden;
  width: 590px;
}
.news-teaser .news-teaser-container .news-teaser-content-left {
  float: left;
  width: 270px;
  margin-right: 20px;
}
.news-teaser .news-teaser-container .news-teaser-content-right {
  float: left;
  width: 290px;
}
.news-teaser .news-teaser-container .news-teaser-content-right p.last-p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .news-teaser .news-teaser-container .news-teaser-content-right {
    clear: both;
  }
}
@media (min-width: 768px) {
  .news-teaser .news-teaser-container .news-teaser-content-right {
    clear: none;
  }
}
/* END: News Teaser 2 Columns */
.news-teaser .equal-height-sm-row {
  border-spacing: 0;
  padding: 60px 30px;
  margin: 0;
  width: 100%;
  margin: 15px 0;
  min-height: 275px;
}
.news-teaser .equal-height-sm-row.block-container-1row {
  min-height: 255px;
  height: 310px;
}
.news-teaser .equal-height-sm-row.block-container-2rows {
  min-height: 310px;
  height: 310px;
}
.news-teaser .block-container-1row p, .news-teaser .block-container-2rows p {
  margin-bottom: 0px;
  line-height: 1.8em;
}
.news-teaser .block-container-2rows p.block-container-title, .news-teaser .block-container-2rows p.block-container-sub-title {
  font-size: 16px;
}
@media (min-width: 768px) {
  .news-teaser .equal-height-sm-row {
    padding: 90px 30px;
    margin: 0;
    min-height: none;
  }
  .news-teaser .equal-height-sm-row.block-container-1row {
    padding: 90px 30px 30px 30px;
    min-height: 355px;
    height: 355px;
  }
  .news-teaser .equal-height-sm-row.block-container-2rows {
    padding: 90px 30px 30px 30px;
    min-height: 1120px;
    height: 1120px;
  }
  .col-sm-6.2blocks-padding-left {
    padding: 0 10px 0 0;
  }
  .col-sm-6.2blocks-padding-right {
    padding: 0 0 0 10px;
  }
}
.news-teaser.twitter-theme h2 a:not(.color-brand) {
  color: #000f2b;
}
.news-teaser.twitter-theme h2 a:not(.color-brand):hover {
  color: #007697;
}
.news-teaser.dark-bg a {
  color: #ffffff;
}
.news-teaser.dark-bg a:hover {
  color: #007697;
}
.news-teaser.dark-bg a.more {
  color: #00acdc;
}
.news-teaser.dark-bg a.more:hover {
  color: #ffffff;
}
.news-teaser.dark-bg .fm-date {
  color: #ffffff;
}
.news-teaser.dark-bg .block {
  border-color: rgba(255, 255, 255, 0.5);
}
.news-teaser a.more {
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: #007697;
}
.news-teaser a.more:hover {
  color: #000f2b;
}
@media (min-width: 768px) {
  .news-teaser a.more {
    right: 30px;
    bottom: 30px;
  }
}
.news-teaser h1 {
  position: absolute;
  top: 30px;
  left: 15px;
  font-size: 16px;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}
.news-teaser p.text-only-block {
  padding: 90px 30px 30px 30px;
  line-height: 1.8;
  margin-bottom: 0;
}
.news-teaser p.image-only-block {
  padding: 90px 30px 30px 30px;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .news-teaser h1 {
    top: 60px;
    left: 60px;
  }
}
.news-teaser h1.offset {
  top: 20px;
  left: -10px;
  padding: 5px 20px;
}
.news-teaser.twitter-theme h1 {
  background: transparent;
  color: #000f2b;
  padding: 0;
  margin: 0;
  text-align: left;
}
.news-teaser h2 {
  font-size: 18px;
}
@media (min-width: 992px) {
  .news-teaser h2 {
    font-size: 24px;
  }
}
.news-teaser .block {
  min-height: 200px;
  padding: 15px 15px 15px 0;
  border-color: rgba(0, 0, 0, 0.3);
  border-style: solid;
  border-width: 0 0 1px 0;
}
.news-teaser .block-container-1row .block, .news-teaser .block-container-2rows .block {
  padding: 30px;
  height: auto;
}
.news-teaser .block {
  border-width: 0;
}
@media (max-width: 768px) {
  .news-teaser-container-left, .news-teaser-container-right {
    width: 100%;
    clear: both;
    margin: 0;
  }
  .news-teaser-container-left .news-teaser, .news-teaser-container-right .news-teaser {
    margin: 0;
  }
  .news-teaser-container-left p, .news-teaser-container-right p {
    padding: 90px 30px 30px 30px;
    line-height: 1.8em;
  }
}
@media (min-width: 768px) {
  .news-teaser .block {
    border-width: 0 1px 0 0;
    position: relative !important;
    transform: none !important;
    display: table-cell !important;
  }
  .news-teaser .block-container-1row .block, .news-teaser .block-container-2rows .block {
    height: 100%;
    border-width: 0 1px 0 0;
  }
  .news-teaser .block.block-container-left {
    padding: 0 30px 0 0;
    min-height: 201px;
    height: 201px;
    overflow: hidden;
  }
  .news-teaser .block.block-container-right {
    padding: 0 0 0 30px;
    min-height: 201px;
    height: 201px;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row1-left {
    padding: 0 30px 30px 0;
    min-height: 500px;
    height: 500px;
    overflow: auto;
    display: inline;
    float: left;
    width: 50%;
    border-width: 0 1px 1px 0;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row1-right {
    padding: 0 0 30px 30px;
    min-height: 500px;
    height: 500px;
    overflow: auto;
    display: inline;
    float: left;
    width: 50%;
    border-width: 0 0 1px 0;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row2-left {
    padding: 30px 30px 0 0;
    min-height: 500px;
    height: 500px;
    overflow: auto;
    display: inline;
    float: left;
    width: 50%;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row2-right {
    padding: 30px 0 0 30px;
    min-height: 500px;
    height: 500px;
    overflow: auto;
    display: inline;
    float: left;
    width: 50%;
    overflow: hidden;
  }
  .news-teaser-container-left {
    width: calc(50% - 10px);
    clear: none;
    margin-right: 10px;
  }
  .news-teaser-container-right {
    width: calc(50% - 10px);
    clear: none;
    margin-left: 30px;
  }
  .news-teaser-container-left .news-teaser p, .news-teaser-container-right .news-teaser p {
    padding: 90px 30px 30px 30px;
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .news-teaser .block {}
  .news-teaser .equal-height-sm-row.block-container-1row {
    min-height: 221px;
    height: 221px;
  }
  .news-teaser .equal-height-sm-row.block-container-2rows {
    min-height: 860px;
    height: 860px;
  }
  .news-teaser .block.block-container-left {
    padding: 0 30px 0 0;
    min-height: 101px;
    height: 101px;
    overflow: hidden;
  }
  .news-teaser .block.block-container-right {
    padding: 0 0 0 30px;
    min-height: 101px;
    height: 101px;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row1-left {
    padding: 0 30px 30px 0;
    min-height: 370px;
    height: 370px;
    display: inline;
    float: left;
    width: 50%;
    border-width: 0 1px 1px 0;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row1-right {
    padding: 0 0 30px 30px;
    min-height: 370px;
    height: 370px;
    display: inline;
    float: left;
    width: 50%;
    border-width: 0 0 1px 0;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row2-left {
    padding: 30px 30px 0 0;
    min-height: 370px;
    height: 370px;
    display: inline;
    float: left;
    width: 50%;
    overflow: hidden;
  }
  .news-teaser .block.block-container-row2-right {
    padding: 30px 0 0 30px;
    min-height: 370px;
    height: 370px;
    display: inline;
    float: left;
    width: 50%;
    overflow: hidden;
  }
}
@media (min-width: 1400px) {
  .news-teaser .equal-height-sm-row.block-container-1row {
    min-height: 221px;
    height: 221px;
  }
  .news-teaser .block.block-container-left {
    min-height: 51px;
    height: 51px;
  }
  .news-teaser .block.block-container-right {
    min-height: 51px;
    height: 51px;
  }
  .news-teaser .equal-height-sm-row.block-container-2rows {
    min-height: 646px;
    height: 646px;
  }
  .news-teaser .block.block-container-row1-left {
    min-height: 263px;
    height: 263px;
  }
  .news-teaser .block.block-container-row1-right {
    min-height: 263px;
    height: 263px;
  }
  .news-teaser .block.block-container-row2-left {
    min-height: 263px;
    height: 263px;
  }
  .news-teaser .block.block-container-row2-right {
    min-height: 263px;
    height: 263px;
  }
}
.news-teaser .block:last-of-type {
  border: none;
}
.news-teaser .fm-carousel-controls {
  bottom: 18px;
  left: 0;
}
.news-teaser .fm-carousel-controls span {
  background-color: #007697;
}
.news-teaser .fm-carousel-controls span.active {
  border-color: #007697;
  background-color: transparent;
}
.news-teaser .cta + .fm-carousel-controls span {
  background-color: #ffffff;
}
.news-teaser .cta + .fm-carousel-controls span.active {
  border-color: #ffffff;
  background-color: transparent;
}
section.overview {
  background: #000f2b;
  color: #fff;
  margin: 0 -15px 0;
  position: relative;
  min-height: 220px;
}
@media (max-width: 991px) {
  section.overview {
    margin-bottom: 0;
  }
}
section.overview .caption {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
section.overview .caption h1 {
  font-size: 32px;
  font-family: "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
  margin-left: 0px;
}
@media (min-width: 768px) {
  section.overview .caption h1 {
    font-size: 52px;
    margin-left: 30px;
  }
}
section.overview .caption p {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 768px) {
  section.overview .caption p {
    font-size: 24px;
    line-height: 28px;
    padding: 0px 30px;
  }
}
section.overview .image-wrap {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
section.overview img.hero {
  max-width: none;
  max-height: none;
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 600px) {
  section.overview img.hero {
    width: 1280px;
  }
}
@media (min-width: 1080px) {
  section.overview img.hero {
    width: 2000px;
  }
}
section.overview.with-image {
  margin-bottom: 10px;
}
section.overview.with-image .image-wrap {
  min-height: 220px;
  transition: min-height .2s;
}
@media (max-width: 600px) {
  section.overview.with-image .image-wrap {
    min-height: 300px;
  }
}
@media (min-width: 1080px) {
  section.overview.with-image .image-wrap {
    min-height: 380px;
  }
}
section.overview.with-image .caption {
  position: absolute;
  width: 760px;
  margin: 0 auto;
  bottom: -10px;
  left: 50%;
  margin-left: -380px;
  top: auto;
  transform: none;
}
section.overview.with-image .caption p {
  padding: 30px;
  margin: 0;
  background: #01172d;
}
@media (max-width: 760px) {
  section.overview.with-image .caption {
    width: auto;
    margin: 0;
    position: static;
    padding: 30px;
  }
  section.overview.with-image .caption p {
    padding: 0;
  }
}
.fm-primary-feature {
  position: relative;
}
@media (max-width: 767px) {
  .fm-primary-feature {
    margin: 25px 0;
  }
}
.fm-primary-feature .fm-primary-feature-img {
  width: 100%;
  height: auto;
}
.fm-primary-feature .fm-primary-feature-caption {
  position: relative;
  margin: 0 15px;
  margin-top: -25%;
  width: calc(100% - 30px);
}
@media (min-width: 768px) {
  .fm-primary-feature .fm-primary-feature-caption {
    position: absolute;
    margin: 0;
    width: 70%;
    bottom: 40px;
    padding-bottom: 60%;
  }
}
@media (min-width: 992px) {
  .fm-primary-feature .fm-primary-feature-caption {
    width: 60%;
    padding-bottom: 55%;
  }
}
@media (min-width: 1400px) {
  .fm-primary-feature .fm-primary-feature-caption {
    width: 60%;
    padding-bottom: 45%;
  }
}
.fm-primary-feature .fm-primary-feature-caption .fm-secondary-feature {
  margin-top: 0;
}
@media (min-width: 768px) {
  .fm-primary-feature .fm-primary-feature-caption .fm-secondary-feature {
    height: 100%;
    position: absolute;
  }
}
.promo p {
  font-size: 14px;
  line-height: 20px;
}
.promo h2 {
  border-bottom: 2px solid #007697;
  font-size: 16px;
  padding: 0 0 5px 0;
}
.promo .links {
  margin: 0 0 20px;
}
.promo .links li {
  font-size: 18px;
}
.promo ul.link-listing {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
.rail-list .more {
  margin-top: 10px;
}
.rail-list h1.fm-subtitle {
  margin: 0;
}
.rail-list .fm-date {
  margin: -10px 0 10px;
}
.rail-list ul.link-listing > li > a > .list-icon.fa-download {
  font-size: 14px;
}
.rail-navigation .fm-subtitle {
  padding-bottom: 5px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 767px) {
  .rail-navigation .fm-subtitle {
    border-bottom: none;
    padding: 0;
  }
}
.rail-navigation ul.link-listing li {
  border-color: rgba(255, 255, 255, 0.3);
}
.rail-navigation ul.link-listing li a {
  color: #00acdc;
  font-size: 17px !important;
}
.rail-navigation ul.link-listing li a.active {
  cursor: default;
  color: #ffffff;
}
.rail-navigation ul.link-listing li a.active:after {
  opacity: .5;
}
.rail-navigation ul.link-listing li.open > a:not(.active) {
  text-decoration: underline;
  color: #ffffff;
}
.rail-navigation ul.link-listing li.open > a:not(.active):after {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .rail-navigation ul.link-listing {
    max-height: 0;
    overflow: hidden;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
  .rail-navigation ul.link-listing > li:first-child {
    padding-top: 20px;
  }
}
.rail-navigation .rail-nav-open .link-listing {
  max-height: 1000px;
}
.rail-navigation .submenu li {
  padding: 0 20px;
  border: none;
}
.rail-navigation .submenu li:last-child {
  margin-bottom: 15px;
}
.rail-navigation .submenu li a {
  font-size: 14px;
  padding: 5px 0 0;
}
.rail-navigation .rail-nav-header {
  position: relative;
}
.rail-navigation .fm-menu-toggle {
  top: -10px;
  right: 0;
  position: absolute;
}
@media (min-width: 768px) {
  .rail-navigation .fm-menu-toggle {
    display: none;
  }
}
.rich-text-block p {
  margin: 0 0 20px;
  color: #121212;
  line-height: 25px;
	font-size: 16px;
	    font-family: 'Source Sans Pro', sans-serif;
	font-weight: 500;
}
.rich-text-block p.p-margin-b0 {
  margin-bottom: 0;
}
.rich-text-block h2 {
  font-size: 29px;
  margin: 0 0 20px;
  font-weight: 500;
}
.rich-text-block h3 {
  font-size: 20px;
	font-weight: 600;
  margin: 0 0 20px;
}
.rich-text-block ul, .rich-text-block ol {
  padding: 0 20px 20px 20px;
}
@media (min-width: 768px) {
  .rich-text-block ul, .rich-text-block ol {
    margin-left: 20px;
  }
}
.rich-text-block ul li, .rich-text-block ol li {
  font-size: 16px;
  line-height: 25px;
}
.rich-text-block ol > li {
  list-style: inherit;
}
.rich-text-block ul > li {
  list-style-type: disc;
}
.rich-text-block figure {
  width: 100%;
  margin-bottom: 30px;
}
.rich-text-block figure img, .rich-text-block figure video {
  width: 100%;
  vertical-align: middle;
}
.rich-text-block figure figcaption {
  background-color: #e5f1f4;
  padding: 30px;
}
.rich-text-block figure figcaption h3 {
  margin: 5px 0;
}
.rich-text-block figure figcaption p {
  margin: 0;
}
.rich-text-block figure figcaption p + .small {
  margin-top: 20px;
}
.rich-text-block input[type="radio"], .rich-text-block input[type="checkbox"] {
  margin: 0 5px 3px;
}
.rich-text-block .icon {
  font-size: 26px;
}
.search-call-out {
  width: 100%;
}
.search-call-out span {
  float: left;
  margin-bottom: 10px;
  width: 100%;
  display: block;
}
.search-call-out .search-links {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.search-call-out .search-links > li {
  vertical-align: middle;
  position: relative;
  display: block;
}
.search-call-out .search-links > li:last-child {
  border: none;
  padding-right: 0;
}
@media (min-width: 768px) {
  .search-call-out .search-links > li {
    height: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: table-cell;
    text-align: center;
  }
}
.search-call-out a {
  padding: 0 30px 0 0;
  text-align: center;
  color: #00acdc;
  position: relative;
}
.search-call-out a:hover {
  color: #ffffff;
}
@media (min-width: 768px) {
  .search-call-out a {
    padding: 0;
  }
}
.search-call-out a.dropdown:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #00acdc transparent transparent transparent;
  right: 0;
  top: calc(50% - 3px);
  position: absolute;
  -moz-transition: -moz-transform 0.4s ease-in;
  -o-transition: -o-transform 0.4s ease-in;
  -webkit-transition: -webkit-transform 0.4s ease-in;
  transition: transform 0.4s ease-in;
}
@media (min-width: 768px) {
  .search-call-out a.dropdown:after {
    right: -15px;
  }
}
.search-call-out a:hover:after {
  border-color: #ffffff transparent transparent transparent;
}
.search-call-out .open a.dropdown:after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.search-call-out .submenu {
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-call-out .submenu {
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    background: #ffffff;
  }
}
.search-call-out .submenu li {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  text-align: left;
}
@media (min-width: 768px) {
  .search-call-out .submenu li {
    padding: 10px;
  }
}
.search-call-out .submenu a {
  padding: 0;
}
@media (min-width: 768px) {
  .search-call-out .submenu a {
    color: #007697;
  }
  .search-call-out .submenu a:hover {
    color: #000f2b;
  }
}
.search-call-out .open .submenu {
  max-height: 100px;
}
.fm-title {
  font-size: 18px;
  display: block;
  margin: 20px 0 10px;
}
@media (min-width: 992px) {
  .fm-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .fm-title {
    font-size: 23px;
	  line-height: 26px;
  }
}
.fm-date {
  font-size: 14px;
  display: block;
padding-bottom: 10px; 
}
.fm-type {
  display: block;
  font-size: 16px;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}
@media (min-width: 992px) {
  .fm-type {
    font-size: 20px;
  }
}
.fm-link {
  font-size: 18px;
}
.fm-title ~ .fm-link {
  margin-bottom: 0;
}
.cta {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.white-bg .cta {
  background: #007697;
  color: #ffffff;
}
.white-bg .cta:hover {
  color: #ffffff;
}
.fm-secondary-feature {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .fm-secondary-feature {
    margin-top: 30px;
    min-height: 255px;
  }
}
.fm-secondary-feature.white-bg .fm-title a:not(.color-brand) {
  color: #000f2b;
}
.fm-secondary-feature.white-bg .fm-title a:not(.color-brand):hover {
  color: #007697;
}
section.secondary-subpages {
  min-height: 400px;
  padding-bottom: 40px;
  position: relative;
}
.social-share ul {
  float: right;
}
@media (max-width: 767px) {
  .social-share ul {
    float: none;
    text-align: center;
  }
}
.social-share li {
  color: #121212;
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  margin: 0 5px;
}
.social-share li:last-child {
  margin-right: 0;
}
#st-1 .st-btn[data-network='email'] {
  display: inline-block !important;
}
.social-share span {
  color: #121212;
  border-radius: 3px;
  padding: 5px;
  font-size: 18px;
  display: inline-block;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.social-share span:hover {
  text-decoration: none;
  color: #007697;
}
section.subpage-teaser-listing .display-table {
  border-spacing: 20px;
  margin: 0 -20px;
  width: calc(100% + 40px);
}
section.subpage-teaser-listing .display-table.dt-border-spacing p:last-child {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  section.subpage-teaser-listing h1.fm-section-title {
    margin-top: 40px;
  }
  section.subpage-teaser-listing .display-table.dt-border-spacing {
    border-spacing: 20px 0;
  }
  section.subpage-teaser-listing .display-table.dt-border-spacing p:last-child {
    margin-bottom: 10px;
  }
}
section.subpage-teaser-listing .display-table.display-table-col-2 {
  border-spacing: 25px;
  margin: -15px 0 15px -25px;
  width: calc(100% + 50px);
}
@media (min-width: 768px) {
  section.subpage-teaser-listing .display-table {
    border-spacing: 20px 70px;
    margin: -70px -20px -40px;
  }
}
section.subpage-teaser-listing .table-row {
  margin-bottom: 50px;
}
section.subpage-teaser-listing .block {
  position: relative;
  margin-bottom: 60px;
}
section.subpage-teaser-listing .block.block-margin-b0 {
  margin-bottom: 0;
}
section.subpage-teaser-listing .block.block-margin-t25 {
  margin-top: 25px;
}
section.subpage-teaser-listing .content {
  padding-bottom: 35%;
}
section.subpage-teaser-listing .content.content-padding-b30 {
  padding-bottom: 30px;
}
section.subpage-teaser-listing p {
  font-size: 16px;
  line-height: 25px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  section.subpage-teaser-listing p, section.subpage-teaser-listing p:last-child {
    margin-bottom: 30px;
  }
}
section.subpage-teaser-listing h2.fm-title {
  margin: 0;
}
section.subpage-teaser-listing .subpage-teaser-image {
  display: block;
  position: absolute;
  bottom: -30px;
  left: 0;
  padding: 0 30px;
  width: 100%;
}
section.subpage-teaser-listing img {
  display: block;
  position: relative;
  -webkit-filter: saturate(100%);
  filter: saturate(100%);
  transition: all .2s;
}
section.subpage-teaser-listing img:hover {
  -webkit-filter: saturate(200%);
  filter: saturate(200%);
}
section.testimonials {
  margin: 50px 0 30px;
  position: relative;
  min-height: 500px;
}
@media (min-width: 768px) {
  section.testimonials {
    margin: 50px 10px 30px;
    min-height: 410px;
  }
}
section.testimonials .fm-basic-carousel {
  float: none;
  right: auto;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
section.testimonials .fm-basic-carousel h1 {
  background: #fff;
  color: #000f2b;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}
section.testimonials .fm-basic-carousel ul {
  width: 100%;
  background: #000f2b;
  min-height: 500px;
}
@media (min-width: 768px) {
  section.testimonials .fm-basic-carousel ul {
    min-height: 410px;
  }
}
/*** START - Perspectives Page - Grid With 3 Columns Component CSS, 08/19/2016 by sjvesapogu ***/
@media (max-width: 767px) {
  .grid-3col-container {
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 30px 0 0 0;
    background-color: none;
    border: 0;
  }
  .grid-3col-container .grid-col-wrapper {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 30px 0;
    background-color: #ffffff;
    border: 1px solid #000f2b;
  }
  .grid-3col-container .grid-col-wrapper h1 {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    margin: 0;
    color: #ffffff;
    background-color: #000f2b;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
  }
  .grid-3col-container .grid-col-wrapper div {
    min-height: 50px;
    margin: 10px;
    line-height: 1.5em;
    border-right: 0;
  }
  .grid-3col-container .grid-col-wrapper div.gcw-border-r0 {
    border-right: 0;
  }
  .grid-3col-container .grid-col-wrapper div p {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .grid-3col-container {
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 30px 0 0 0;
    background-color: #ffffff;
    border: 1px solid #000f2b;
  }
  .grid-3col-container .grid-col-wrapper {
    float: left;
    width: 33.33%;
    padding: 0;
    margin: 0;
    background-color: none;
    border: 0;
  }
  .grid-3col-container .grid-col-wrapper h1 {
    width: 100%;
    min-height: 62px;
    padding: 8px 10px;
    margin: 0;
    color: #ffffff;
    background-color: #000f2b;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
  }
  .grid-3col-container .grid-col-wrapper div {
    min-height: 100px;
    margin: 10px;
    line-height: 1.5em;
    border-right: 1px solid #000f2b;
  }
  .grid-3col-container .grid-col-wrapper div.gcw-border-r0 {
    border-right: 0;
  }
  .grid-3col-container .grid-col-wrapper div p {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .grid-3col-container {
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 30px 0 0 0;
    background-color: #ffffff;
    border: 1px solid #000f2b;
  }
  .grid-3col-container .grid-col-wrapper {
    float: left;
    width: 33.33%;
    padding: 0;
    margin: 0;
    background-color: none;
    border: 0;
  }
  .grid-3col-container .grid-col-wrapper h1 {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    margin: 0;
    color: #ffffff;
    background-color: #000f2b;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
  }
  .grid-3col-container .grid-col-wrapper div {
    min-height: 100px;
    margin: 10px;
    line-height: 1.5em;
    border-right: 1px solid #000f2b;
  }
  .grid-3col-container .grid-col-wrapper div.gcw-border-r0 {
    border-right: 0;
  }
  .grid-3col-container .grid-col-wrapper div p {
    margin-bottom: 10px;
  }
}
/*** END - Perspectives Page - Grid With 3 Columns Component CSS, 08/19/2016 by sjvesapogu ***/
section.testimonials .fm-basic-carousel ul li {
  background: transparent;
  color: #fff;
  padding: 0 50px;
  margin: 30px 0;
}
@media (min-width: 1000px) {
  section.testimonials .fm-basic-carousel ul li {
    margin: 0;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1400px) {
  section.testimonials .fm-basic-carousel ul li {
    padding-left: 150px;
    padding-right: 150px;
  }
}
section.testimonials .fm-basic-carousel .rn-carousel-control {
  top: 50%;
  color: #00acdc;
  border-color: #00acdc;
}
section.testimonials .fm-basic-carousel .rn-carousel-control:hover {
  color: #ffffff;
  border-color: #ffffff;
}
section.testimonials .fm-basic-carousel .fm-carousel-controls {
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
section.testimonials .fm-basic-carousel .fm-carousel-controls span {
  border-color: #00acdc;
  background-color: #00acdc;
}
section.testimonials .fm-basic-carousel .fm-carousel-controls span.active {
  background: transparent;
}
section.testimonials blockquote {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 26px;
}
@media (max-width: 767px) {
  section.testimonials blockquote {
    font-size: 18px;
    margin-top: -50px;
  }
}
nav.top-navigation {
  margin: 0 -15px;
  position: relative;
  text-align: center;
  height: 80px;
  z-index: 5;
}
/* START - Secondary Nav Independent of Header Navigation */
nav.top-navigation .top-navigation-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  padding: 10px 0;
  z-index: 5;
  background-color: #EDEBE9;
}
/* END - Secondary Nav Independent of Header Navigation */
nav.top-navigation .wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  padding: 10px 0;
  z-index: 5;
}
nav.top-navigation .wrapper.fixed {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}
nav.top-navigation .wrap {
  position: relative;
  display: inline-block;
}
nav.top-navigation ul.visible-links {
  white-space: nowrap;
  display: inline-block;
  padding: 20px 0 10px;
  transition: padding .2s;
}
nav.top-navigation ul.visible-links li {
  display: inline-block;
  padding: 0 15px;
  border-left: 1px solid #ccc;
  line-height: 20px;
  margin: 0 0 10px;
  position: relative;
}
nav.top-navigation ul.visible-links li:first-child {
  border-left: none;
}
nav.top-navigation ul.visible-links li.nav-toggle {
  border-left: none;
  margin: 0;
  cursor: pointer;
}
nav.top-navigation ul.visible-links li.nav-toggle.open:after {
  position: absolute;
  top: -20px;
  left: 0;
  background: #ffffff;
  content: '';
  height: 80px;
  width: 100%;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
nav.top-navigation button {
  right: 0;
  top: -10px;
  padding: 0;
}
nav.top-navigation button .icon-bar {
  background: #007697;
}
nav.top-navigation button .outline {
  border: 2px solid #007697;
}
nav.top-navigation span.label {
  visibility: hidden;
}
nav.top-navigation span.count {
  position: absolute;
  top: 50%;
  right: calc(50% - 22px);
  border-radius: 50%;
  display: block;
  height: 14px;
  width: 14px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  background: #007697;
  color: #fff;
}
nav.top-navigation ul.hidden-links {
  position: absolute;
  overflow: hidden;
  right: 0px;
  top: 100%;
  background: #fff;
  text-align: right;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 15;
  max-height: 0;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
nav.top-navigation ul.hidden-links li {
  display: block;
  border-bottom: 1px solid #ccc;
}
nav.top-navigation ul.hidden-links li a {
  display: block;
  padding: 20px;
}
nav.top-navigation ul.hidden-links.open {
  max-height: 500px;
}
body.fonts-alternate {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2em;
}
body.fonts-alternate .site-logo svg {
  width: 190px;
  height: 40px;
}
body.fonts-alternate .footer {
  font-size: 24px;
}
body.fonts-alternate .footer .footer-lead {
  width: 600px;
}
@media (min-width: 768px) {
  body.fonts-alternate .footer .footer-menus {
    width: calc(100% - 600px);
  }
}
@media (max-width: 767px) {
  body.fonts-alternate .footer .site-logo {
    padding-top: 5px;
    position: absolute;
    top: 25px;
  }
}
body.fonts-alternate .main-menu > li a {
  font-size: 24px;
}
body.fonts-alternate .sites-list h1, body.fonts-alternate .open .sites-list h1, body.fonts-alternate .menu-sites .toggle-sites {
  font-size: 24px;
}
body.fonts-alternate .sites-list h2, body.fonts-alternate .open .sites-list h2 {
  font-size: 27px;
}
body.fonts-alternate .sites-list .submenu li a, body.fonts-alternate .open .sites-list .submenu li a {
  font-size: 24px;
}
body.fonts-alternate .sites-list .subhead, body.fonts-alternate .open .sites-list .subhead {
  font-size: 20px;
}
@media (min-width: 1200px) {
  body.fonts-alternate .sites-list, body.fonts-alternate .open .sites-list {
    width: 425px;
  }
}
body.fonts-alternate input[type="search"].header-search-input {
  font-size: 24px;
  line-height: 40px;
}
body.fonts-alternate .pane-homepage-slider-slider-home .fm-carousel-caption {
  font-size: 60px;
  line-height: 65px;
}
@media (max-width: 767px) {
  body.fonts-alternate .pane-homepage-slider-slider-home .fm-carousel-caption {
    left: 10px;
    width: calc(100% - 20px);
  }
}
@media (min-width: 1200px) {
  body.fonts-alternate .pane-homepage-slider-slider-home .fm-carousel-caption {
    font-size: 89px;
    line-height: 90px;
  }
}
@media (min-width: 1200px) {
  body.fonts-alternate .menu-sites {
    width: 310px;
  }
}
body.fonts-alternate .fm-type {
  font-size: 27px;
}
body.fonts-alternate .fm-title {
  font-size: 30px;
}
@media (min-width: 992px) {
  body.fonts-alternate .fm-title {
    font-size: 40px;
  }
}
body.fonts-alternate .fm-date {
  font-size: 20px;
}
body.fonts-alternate .cta {
  font-size: 27px;
}
@media (min-width: 992px) {
  body.fonts-alternate .fm-primary-feature .fm-primary-feature-caption {
    padding-bottom: 75%;
  }
}
body.fonts-alternate section.overview .caption h1 {
  font-size: 54px;
}
@media (min-width: 768px) {
  body.fonts-alternate section.overview .caption h1 {
    font-size: 88px;
  }
}
body.fonts-alternate .breadcrumb li {
  font-size: 20px;
}
body.fonts-alternate .article-header .article-category {
  font-size: 27px;
}
body.fonts-alternate .article-header h1 {
  font-size: 57px;
  line-height: 60px;
}
body.fonts-alternate .article-header h2 {
  font-size: 30px;
}
body.fonts-alternate .article-header .article-date {
  font-size: 20px;
}
body.fonts-alternate .rail-list h1.fm-subtitle {
  font-size: 27px;
}
body.fonts-alternate .rail-list .more {
  font-size: 27px;
}
body.fonts-alternate figure.bio-teaser {
  height: 130px;
  word-wrap: break-word;
}
body.fonts-alternate figure.bio-teaser a {
  font-size: 24px;
}
body.fonts-alternate figure.bio-teaser .bio-name {
  font-size: 37px;
}
body.fonts-alternate figure.bio-teaser .bio-name {
  font-size: 24px;
}
body.fonts-alternate .article-share {
  font-size: 27px;
}
/* Dynamic Nav */
.higherLevelNav {
  font-size: 14px;
  padding: 0;
  border: none;
}
.thirdLevelNav {
  color: red;
}
/* Debt Index */
#debtDash {
  background: #000f2b none repeat scroll 0 0;
  color: #fff;
  margin: 0 0 20px;
  padding: 10px;
}
#debtDash h3 {
  background: #007697 none repeat scroll 0 0;
  color: #fff;
  font-size: 14px;
  left: -20px;
  margin: 0 0 20px;
  padding: 5px 0px 5px 30px;
  position: relative;
  text-transform: uppercase;
  width: 190px;
}
#debtDash ul {
  margin: 0 0 20px 30px;
  padding: 0;
}
#debtDash li {
  padding: 0px 5px 0px 5px;
  margin: 0;
}
#debtDash li a {
  font-weight: 500;
  color: #00acdc;
}
#debtCal {
  min-width: 100%;
  width: auto;
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  margin: 0 0 16px 0;
  overflow: visible;
  box-shadow: 0px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #000f2b;
  background: #fff;
}
#debtCal h3 {
  font-size: 16px;
  padding: 20px;
  margin: 0;
  background: #000f2b none repeat scroll 0 0;
  color: #fff;
  text-align: center;
}
#debtCal p {
  padding: 2px;
  display: block;
}
#debtCal p.calArc {
  padding: 10px 0;
  height: 16px;
  display: block;
  border-top: 1px solid #dfedea;
  text-align: center;
}
#debtCal a.calArc {
  color: #007697;
}
#debtCal ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  overflow: visible;
}
#debtCal li {
  width: 16.666666667%;
  margin: 0;
  padding: 0;
  display: block;
  float: left;
  border-right: 1px solid #dfedea;
  height: 85px;
  text-align: center;
}
#debtCal li.rtcol {
  border: none;
}
#debtCal h4 {
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  background: #e5f1f4 none repeat scroll 0 0;
  margin: 0;
  padding: 10px;
  color: #007697;
  display: block;
}
ul.results_list {
  padding-top: 20px;
  border-top: 2px solid rgb(0, 118, 151);
}
li.search_result_item {
  border-bottom: 2px solid #ccc;
  margin-bottom: 10px;
}
li.press_release_item {
  border-bottom: 2px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
/*** START - QA Results CSS, 09/14/2016 by sjvesapogu ***/
.qa-results-disclaimer {
  margin: 0px 0px 20px;
  padding: 10px;
  border: #cccccc 1px solid;
}
.qa-results-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}
.qa-results-wrapper-title {
  background-color: #000f2b;
  color: #ffffff;
  width: 100%;
  margin-bottom: 0px;
  padding: 5px 0px 5px 10px;
}
.qa-results-container {
  display: table;
  width: 100%;
  border-left: #cccccc 1px solid;
  border-right: #cccccc 1px solid;
  border-bottom: #cccccc 1px solid;
}
.qa-results-container-left {
  display: table-cell;
  width: 50%;
}
.qa-results-container-right {
  display: table-cell;
  width: 50%;
  border-left: #cccccc 1px solid;
}
.qa-results-container-title {
  font-size: 14px;
  padding: 7px 7px 0px;
  margin-bottom: 3px;
}
.qa-results-container-content {
  padding: 0px 7px 7px;
  margin-bottom: 0;
}
/*** END - QA Results CSS, 09/14/2016 by sjvesapogu ***/
/*** START - Diversity and Inclusion Page CSS, 09/21/2016 by sjvesapogu ***/
.di-comments {
  float: left;
  min-height: 360px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #d9d7dc;
}
.di-comments {
  min-height: auto;
}
.di-comments.dic-margin-l20 {
  margin-left: 10px;
}
.di-comments.dic-margin-r20 {
  margin-right: 10px;
}
.di-comments-left-div {
  margin-top: 15px;
}
.di-comments-right-div {
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .di-comments.dic-margin-l20 {
    margin-left: 20px;
  }
  .di-comments.dic-margin-r20 {
    margin-right: 20px;
  }
  .di-comments-left-div {
    margin-top: 49px;
  }
}
/*** END - Diversity and Inclusion Page CSS, 09/21/2016 by sjvesapogu ***/
/*** START - Below mentioned html pages CSS, 01/26/2016 by sjvesapogu ***/
/*loan-performance-data.html*/
.col2-content-blocks {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
.col2-content-blocks ul {
  padding-bottom: 0px;
}
.col2-content-blocks-left {
  float: left;
  width: calc(60% - 30px);
  margin-right: 30px;
  margin-bottom: 0;
}
.col2-content-blocks-right {
  float: left;
  width: 40%;
}
.col2-content-blocks-right p {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .col2-content-blocks-left {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .col2-content-blocks-right {
    float: left;
    width: 100%;
  }
}
/* credit-risk-data-dynamics.html */
.col3-content-blocks {
  overflow: hidden;
  width: 100%;
}
.col3-content-blocks-left {
  margin: 0px 10px 0px 0px;
  padding: 0px;
  width: calc(33% - 10px);
  float: left;
}
.col3-content-blocks-middle {
  margin: 0px 10px;
  padding: 0px;
  width: calc(34% - 20px);
  float: left;
}
.col3-content-blocks-right {
  margin: 0px 0px 0px 10px;
  padding: 0px;
  width: calc(33% - 10px);
  float: left;
}
.col3-content-blocks h4 {
  margin: 0px;
  padding: 8px 15px;
  height: 81px;
  text-align: center;
  color: #ffffff;
  background-color: #000f2b;
}
.col3-content-blocks .col3-content-blocks-body {
  margin: 0px;
  padding: 15px 15px 10px 5px;
  height: 590px;
  color: #333333;
  background-color: #d9d7dc;
}
.col3-content-blocks .col3-content-blocks-body ul {
  padding-right: 0px;
  margin-left: 0px;
}
.col3-content-blocks .col3-content-blocks-body ul li {
  margin-bottom: 10px;
}
.col3-content-blocks .col3-content-blocks-body ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .col3-content-blocks-left {
    margin: 0;
    width: 100%;
  }
  .col3-content-blocks-middle {
    margin: 30px 0 0 0;
    width: 100%;
  }
  .col3-content-blocks-right {
    margin: 30px 0 0 0;
    width: 100%;
  }
  .col3-content-blocks h4, .col3-content-blocks .col3-content-blocks-body {
    height: auto;
  }
  .col3-content-blocks .col3-content-blocks-body {
    padding-bottom: 0;
  }
}
.image-content-block {
  margin: 0px 0px 15px;
  padding: 0px 0px 10px;
  width: 100%;
  overflow: hidden;
}
.image-content-block-title {
  font-size: 16px;
  width: 140px;
  float: left;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin: 0px 15px 0px 0px;
  background-color: #000f2b;
  padding: 15px 10px;
}
.image-content-block-title p {
  margin-bottom: 0;
}
.image-content-block-title a, .image-content-block-title a img {
  display: block;
}
.image-content-block-body {
  width: calc(100% - 155px);
  float: left;
}
.image-content-block-body p.text1 {
  line-height: 1.4em;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 2px solid #007697;
}
.image-content-block-body p.text2 {
  line-height: 1.4em;
  padding-bottom: 0px;
  font-size: 12px;
  margin-bottom: 3px;
}
.image-content-block-body p.text3 {
  padding-bottom: 0px;
  font-size: 12px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .image-content-block-title {
    height: auto;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 15px 10px;
  }
  .image-content-block-title a img {
    margin: 0 auto;
  }
  .image-content-block-body {
    width: 100%;
  }
}
.action-button-block {
  margin: 5px 0px 20px 20px;
  padding: 10px;
  border: 1px solid rgb(0, 15, 43);
  border-image: none;
  width: 250px;
  text-align: left;
  float: right;
}
.action-button-block div {
  margin: 0px 0px 10px;
  width: 100%;
  font-weight: bold;
  float: right;
  background-color: rgb(0, 118, 151);
}
.action-button-block div a {
  padding: 15px 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 22px;
  float: left;
  position: relative;
}
.action-button-block div a .action-button-text {
  width: calc(100% - 27px);
  text-align: left;
  float: left;
  display: block;
}
.action-button-block div a img {
  margin-top: 5px;
  margin-left: 5px;
  float: right;
  display: block;
}
.action-button-block .action-button-disclaimer {
  padding: 0px 8px;
  color: rgb(0, 15, 43);
  clear: both;
  font-size: 12px;
  display: block;
}
@media (max-width: 767px) {
  .action-button-block {
    width: 100%;
    float: left;
    margin: 20px 0;
  }
}
/* /portal/funding-the-market/credit-risk/credit-risk-management.html */
/* Gain confidence in our approach */
.crs-third-party-container {
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow: hidden;
}
.crs-third-party-container-left {
  float: left;
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.crs-third-party-container-left .crs-third-party-button {
  margin: 0px;
  width: 100%;
  font-weight: bold;
  float: right;
  background-color: rgb(0, 118, 151);
}
.crs-third-party-button a.crs-third-party-link {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 16px;
  float: left;
  position: relative;
}
a.crs-third-party-link span.crs-third-party-text {
  width: calc(100% - 27px);
  text-align: left;
  line-height: 1.4em;
  float: left;
  display: block;
}
a.crs-third-party-link span.crs-third-party-image {
  margin-top: 1px;
  margin-left: 5px;
  float: right;
  display: block;
}
.crs-third-party-container-right {
  float: left;
  width: 100%;
}
.crs-third-party-container-right p.crs-third-party-right-text {
  padding-bottom: 0px;
  margin-bottom: 8px;
}
.crs-third-party-container-right a.crs-third-party-right-link {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .crs-third-party-container-left {
    width: 200px;
    margin: 0px 20px 0px 0px;
  }
  .crs-third-party-container-right {
    width: calc(100% - 220px);
  }
}
/*** END - Below mentioned html pages CSS, 01/26/2016 by sjvesapogu ***/
/*** START - Search Results Right Rail CSS, 01/27/2017 by sjvesapogu ***/
.search-promo-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 30px;
  margin-top: -20px;
  background-color: #ffffff;
}
.search-promo-wrapper .fm-subtitle.fms-padding-t0 {
  padding-top: 0;
}
.search-promo-wrapper .search-promo-container {
  overflow: hidden;
  width: 100%;
}
/* Promo Logo */
.search-promo-container .search-promo-image-wrapper {
  display: table;
  width: 100%;
  padding: 20px 0 10px 0;
  border-top: 1px solid #b2b2b2;
  height: 80px;
  display: block;
}
.search-promo-container .search-promo-image-wrapper.spiw-first {
  padding-top: 0;
  border-top: 0;
  margin-top: 5px;
}
.search-promo-container .search-promo-image-wrapper .search-promo-image {
  width: 243px;
}
@media only screen and (min-width: 768px) {
  .search-promo-container .search-promo-image-wrapper .search-promo-image {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .search-promo-container .search-promo-image-wrapper .search-promo-image {
    width: 243px;
  }
}
/* Promo Text Title & Description */
.search-promo-wrapper .search-promo-container .search-promo-text-wrapper {
  display: table;
  width: 100%;
  margin: 0 0 20px 0;
}
.search-promo-wrapper .search-promo-container .search-promo-text-wrapper.sptw-margin-b10 {
  margin-bottom: 10px;
}
.search-promo-wrapper .search-promo-container .search-promo-text-wrapper.sptw-margin-b0 {
  margin-bottom: 0;
}
.search-promo-container a.search-promo-text-wrapper:hover {
  text-decoration: none;
}
.search-promo-container a.search-promo-text-wrapper:hover span.search-promo-text {
  text-decoration: underline;
}
.search-promo-container a.search-promo-text-wrapper:hover span.search-promo-arrow {
  text-decoration: none;
}
.search-promo-container .search-promo-text-wrapper .search-promo-text {
  display: table-cell;
  width: calc(100% - 40px);
}
.search-promo-container .search-promo-text-wrapper .search-promo-text span.search-promo-title {
  display: block;
  font-size: 14px;
  padding-bottom: 3px;
}
.search-promo-container .search-promo-text-wrapper .search-promo-text span.search-promo-description {
  display: block;
  font-size: 14px;
}
.search-promo-container .search-promo-text-wrapper .search-promo-arrow {
  display: table-cell;
  width: 39px;
  padding-right: 1px;
  font-size: 26px;
  vertical-align: middle;
  text-align: right;
}
/*** END - Search Results Right Rail CSS, 01/27/2017 by sjvesapogu ***/
/* START - Action Button CSS, 02/09/2017 by sjvesapogu */
/* /fanniemae/about-fm/leadership/duncan.page */
.action-button-container {
  display: inline-block;
  overflow: hidden;
  margin: 0 20px 20px 0;
  background-color: #007697;
}
.action-button-container.abc-width-109 {
  width: 109px;
}
.action-button-container.abc-width-125 {
  width: 125px;
}
.action-button-container .abc-margin-r0 {
  margin-right: 0;
}
.action-button-container a {
  display: table;
  text-decoration: none;
  width: 100%;
  padding: 7px 9px;
  color: #ffffff;
}
.action-button-container .action-button-text {
  display: table-cell;
  width: calc(100% - 26px);
  padding-top: 1px;
  font-size: 14px;
}
.action-button-container .action-button-arrow {
  display: table-cell;
  width: 26px;
  font-size: 22px;
  vertical-align: middle;
  text-align: right;
}
/* END - Action Button CSS, 02/09/2017 by sjvesapogu */
/*** START - Diverse Suppliers, 04/04/2017 by sjvesapogu ***/
/* START - FM Toggle Container */
.fm-toggle-container {
  overflow: hidden;
  width: 100%;
}
/* FM Toggle Wrapper */
.fm-toggle-container .fm-toggle-wrapper {
  overflow: hidden;
  width: 100%;
}
.fm-toggle-container .fm-toggle-wrapper:last-child {
  margin-bottom: 25px;
}
/* FM Toggle Header */
.fm-toggle-container a.fm-toggle-header {
  position: relative;
  display: block;
  font-weight: bold;
  color: #007697;
  text-decoration: none;
  padding: 9px 30px 10px 15px;
  border-top: 1px solid #007697;
  box-sizing: border-box;
}
.fm-toggle-container .fm-toggle-wrapper:last-child a.fm-toggle-header {
  border-bottom: 1px solid #007697;
}
.fm-toggle-container a.fm-toggle-header.fm-toggle-header-bb1 {
  border-bottom: 1px solid #007697;
}
.fm-toggle-container a.fm-toggle-header.active {
  color: #ffffff;
  background-color: #007697;
}
/* FM Toggle Header Plus/Minus */
.fm-toggle-container a.fm-toggle-header .fm-plus-minus {
  position: absolute;
  top: 8px;
  right: 0;
  width: 26px;
  height: 26px;
}
.fm-toggle-container a.fm-toggle-header .fm-plus-minus:after {
  content: "+";
  color: #007697;
  font: normal 24px/21px 'Arial';
}
.fm-toggle-container a.fm-toggle-header.active .fm-plus-minus {
  color: #ffffff;
  font: normal 24px/21px 'Arial';
}
.fm-toggle-container a.fm-toggle-header.active .fm-plus-minus:after {
  content: "-";
  color: #ffffff;
  font: normal 24px/21px 'Arial';
  width: 24px;
}
/* FM Toggle Content */
.fm-toggle-container .fm-toggle-content {
  overflow: hidden;
  color: #121212;
  padding: 10px 15px 20px;
}
.fm-toggle-container .fm-toggle-wrapper:last-child .fm-toggle-content {
  border-bottom: 1px solid #007697;
}
.fm-toggle-container .fm-toggle-content.fm-toggle-content-pb10 {
  padding-bottom: 10px;
}
.fm-toggle-container .fm-toggle-content p:last-child {
  margin-bottom: 0;
}
.fm-toggle-container .fm-toggle-content table {
  margin-bottom: 0;
}
/* END - FM Toggle Container */
/* Second toggle */
.fm-toggle-container.header-no-style .fm-toggle-wrapper:last-child {
  margin-bottom: 15px;
}
.fm-toggle-container.header-no-style a.fm-toggle-header {
  border: 0px;
  border-image: none;
  font-size: 16px;
  color: #121212;
  padding: 9px 15px 5px 15px;
}
.fm-toggle-container.header-no-style .fm-toggle-wrapper:last-child a.fm-toggle-header {
  border-bottom: 0;
}
.fm-toggle-container.header-no-style a.fm-toggle-header.active {
  color: #121212;
  background-color: #ffffff;
}
.fm-toggle-container.header-no-style a.fm-toggle-header .fm-plus-minus {
  left: 0px;
  top: 8px;
  right: auto;
}
.fm-toggle-container.header-no-style a.fm-toggle-header .fm-plus-minus::after {
  color: #121212;
}
.fm-toggle-container.header-no-style a.fm-toggle-header.active .fm-plus-minus {
  color: #121212;
}
.fm-toggle-container.header-no-style a.fm-toggle-header.active .fm-plus-minus:after {
  color: #121212;
}
.fm-toggle-container.header-no-style .fm-toggle-wrapper:last-child .fm-toggle-content {
  border-bottom: 0;
}
/*** END - Diverse Suppliers, 04/04/2017 by sjvesapogu ***/
/*** START - CTA Envelope Button, 04/06/2017 by sjvesapogu ***/
.cta-envelope-button-container {
  display: block;
  width: 160px;
  background-color: #007697;
  color: #ffffff;
  padding: 5px;
  margin: 0 auto 20px;
}
a:link.cta-envelope-button-container {
  color: #ffffff;
}
a:visited.cta-envelope-button-container {
  color: #ffffff;
}
.cta-envelope-button-container .cta-envelope-button {
  display: inline-block;
  width: 100%;
  padding: 4px 8px;
  border: 2px solid #ffffff;
}
.cta-envelope-button span.cta-envelope-button-text {
  float: left;
  width: calc(100% - 40px);
  padding-top: 6px;
  line-height: 1.2em;
}
@-moz-document url-prefix() {
  .cta-envelope-button span.cta-envelope-button-text {
    padding-top: 4px;
  }
}
a:hover.cta-envelope-button-container .cta-envelope-button span.cta-envelope-button-text {
  color: #ffffff;
  text-decoration: underline;
}
.cta-envelope-button i.cta-envelope-button-icon {
  width: 40px;
  margin-left: 0;
  font-size: 30px;
  text-align: right;
}
@-moz-document url-prefix() {
  .cta-envelope-button i.cta-envelope-button-icon {
    margin-top: -3px
  }
}
a:active.cta-envelope-button-container {
  color: #ffffff;
}
/*** END - CTA Envelope Button, 04/06/2017 by sjvesapogu ***/
/*** START - Contracting Opportunities Ordered List, 04/11/2017 by sjvesapogu ***/
.co-container {
  width: 85%;
  color: #121212;
  padding-left: 30px;
  font-size: 16px;
  margin-left: 20px;
}
.co-container li {
  list-style: disc;
  line-height: 25px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-left: 15px;
}
.co-container li:last-child {
  padding-bottom: 0;
}
@media only screen and (max-width: 500px) {
  .co-container {
    padding-left: 0;
  }
}
/*** END - Contracting Opportunities Ordered List, 04/11/2017 by sjvesapogu ***/
/*** START - Contact Us Page CSS, 07/19/2017 by sjvesapogu ***/
/* START - Contact Information by Group - Empty Block Image */
section.subpage-teaser-listing img.contact-us-block-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
section.subpage-teaser-listing img.contact-us-block-image:hover {
  -webkit-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  section.subpage-teaser-listing img.contact-us-block-image {
    position: relative;
  }
}
@media (min-width: 768px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 241px;
  }
}
@media (min-width: 878px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 221px;
  }
}
@media (min-width: 916px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 201px;
  }
}
@media (min-width: 976px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 176px;
  }
}
@media (min-width: 992px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 231px;
  }
}
@media (min-width: 1200px) {
  _:-ms-fullscreen, :root .contact-us-block-image {
    min-height: 206px;
  }
}
/* END - Contact Information by Group - Empty Block Image */
/*** END - Contact Us Page CSS, 07/19/2017 by sjvesapogu ***/
/*** START - Responsive Table Row Wise CSS, 08/02/2017 by sjvesapogu ***/
/* /portal/research-insights/forecast/monthly-archive.html */
/* /portal/research-insights/forecast/weekly-archive.html */
table.responsive-table.responsive-table-row thead tr th, table.responsive-table.responsive-table-row thead tr td, table.responsive-table.responsive-table-row tbody tr td, table.responsive-table.responsive-table-row tbody tr th {
  vertical-align: top;
  padding: 10px;
}
@media (min-width: 992px) {
  table.responsive-table.responsive-table-row tbody tr td {
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  table.responsive-table.responsive-table-row tbody tr {
    border-width: 0;
    margin-bottom: 0;
  }
  table.responsive-table.responsive-table-row tbody tr:last-child {
    border-bottom: 1px solid #EDEBE9;
  }
  table.responsive-table.responsive-table-row tbody tr td {
    width: 100%;
    border-bottom: 0;
    text-align: left;
  }
}
/* START - Alternative CSS for change from tables to DIVs */
.forecast-monthly .container-fluid .row, .forecast-weekly .container-fluid .row {
  border-left: 1px solid #EDEBE9;
  display: flex;
  flex-wrap: wrap; /* Wrap after the items fill the row */
}
.forecast-monthly .container-fluid .row .forecast-monthly-container, .forecast-weekly .container-fluid .row .forecast-weekly-container {
  padding: 10px;
  border-right: 1px solid #EDEBE9;
  border-bottom: 1px solid #EDEBE9;
}
.forecast-monthly .container-fluid .row div:nth-child(n+1) {
  background-color: #ffffff;
}
.forecast-monthly .container-fluid .row div:nth-child(n+4) {
  background-color: #e5f1f4;
}
.forecast-monthly .container-fluid .row div:nth-child(n+7) {
  background-color: #ffffff;
}
.forecast-monthly .container-fluid .row div:nth-child(n+10) {
  background-color: #e5f1f4;
}
@media (max-width: 991px) {
  .forecast-monthly .container-fluid .row div:nth-child(n+4) {
    background-color: #ffffff;
  }
  .forecast-monthly .container-fluid .row div:nth-child(n+10) {
    background-color: #ffffff;
  }
}
.forecast-weekly .container-fluid .row div:nth-child(n+1) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div:nth-child(n+3) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div:nth-child(n+5) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div:nth-child(n+7) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div:nth-child(n+9) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div:nth-child(n+11) {
  background-color: #e5f1f4;
}
@media (max-width: 991px) {
  .forecast-weekly .container-fluid .row div:nth-child(n+3) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div:nth-child(n+7) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div:nth-child(n+11) {
    background-color: #ffffff;
  }
}
/* END - Alternative CSS for change from tables to DIVs */
.fm-toggle-content.forecast-monthly, .fm-toggle-content.forecast-weekly {
  padding: 0 0 20px 0;
}
.forecast-monthly p.forecast-monthly-title {
  line-height: 1.4;
  margin-bottom: 8px;
  display: inline-block;
}
.forecast-monthly ul.forecast-monthly-links {
  padding: 0 0 0 14px;
  margin-left: 0px;
}
.forecast-monthly ul.forecast-monthly-links li {
  line-height: 1.5em;
}
.forecast-weekly p.forecast-weekly-title {
  line-height: 1;
  margin-bottom: 10px;
}
.forecast-weekly a.forecast-weekly-links {
  line-height: 1.4;
  margin-bottom: 3px;
  display: inline-block;
}
.forecast-weekly ul.forecast-weekly-description {
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 14px;
  margin-left: 0px;
}
.forecast-weekly ul.forecast-weekly-description:last-child {
  padding-bottom: 0px;
}
.forecast-weekly ul.forecast-weekly-description li {
  line-height: 1.5em;
}
/*** END - Responsive Table Row Wise CSS, 08/02/2017 by sjvesapogu ***/
/* START - Responsive CSS for dus-disclose-information-center Page, 08/04/2017 by sjvesapogu */
#debtDash.db-left {
  width: calc(50% - 15px);
  margin-right: 15px;
}
#debtDash.db-right {
  width: calc(50% - 15px);
  margin-left: 15px;
}
@media all and (max-width: 992px) {
  #debtDash.db-left, #debtDash.db-right {
    width: 100%;
    margin: 0;
    clear: both;
    float: none;
  }
  #debtDash.db-right {
    margin: 20px 0;
  }
}
/* END - Responsive CSS for dus-disclose-information-center Page, 08/04/2017 by sjvesapogu */
/* START - Awards & Achievements Page CSS, 11/01/2017 by sjvesapogu */
.generic-flex-table .container-fluid {
  margin-bottom: 20px;
}
.generic-flex-table .container-fluid .row {
  border-left: 1px solid #EDEBE9;
  display: flex;
  flex-wrap: wrap; /* Wrap after the items fill the row */
}
.generic-flex-table .container-fluid .row .generic-flex-table-cell {
  padding: 10px;
  border-right: 1px solid #EDEBE9;
  border-bottom: 1px solid #EDEBE9;
  text-align: center;
}
.awards-achievements-table .aat-height97 {
  height: 97px;
}
.awards-achievements-table .aat-height108 {
  height: 108px;
}
.awards-achievements-table .aat-height112 {
  height: 112px;
}
.awards-achievements-table .aat-position {
  position: relative;
}
.awards-achievements-table .aat-position img {
  position: absolute;
  left: 0%;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.awards-achievements-table .generic-flex-table-cell div:last-child {
  margin-top: 10px;
}
@media screen and (max-width:991px) {
  .awards-achievements-table .aat-height97, .awards-achievements-table .aat-height108, .awards-achievements-table .aat-height112 {
    height: auto;
  }
  .awards-achievements-table .aat-position img {
    position: relative;
    left: 0%;
    top: 0%;
    -ms-transform: none;
    transform: none;
  }
  .awards-achievements-table .generic-flex-table-cell div:last-child {
    margin-top: 10px;
  }
}
.fm-toggle-container .fm-toggle-content.awards-achievements-table {
  padding: 0;
}
.fm-toggle-container .fm-toggle-content.awards-achievements-table table {
  margin-bottom: 20px;
}
/* END - Awards & Achievements Page CSS, 11/01/2017 by sjvesapogu */
/* START - DUS Disclose Information Center Page CSS, 12/01/2017 by sjvesapogu */
.image-content-block-title.icbt-dus-disclose-title {
  width: 300px;
  height: 100%;
  padding: 0;
  margin: 0px 30px 0px 0px;
}
.image-content-block-body.icbb-dus-disclose-body {
  width: calc(100% - 330px);
}
@media (max-width: 991px) {
  .image-content-block-title.icbt-dus-disclose-title {
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
  }
  .image-content-block-title.icbt-dus-disclose-title img {
    margin: 0 auto;
  }
  .image-content-block-body.icbb-dus-disclose-body {
    width: 100%;
  }
}
@media (max-width: 991px) {
  #debtDash .container-fluid .row .col-xs-12:first-child ul {
    margin-bottom: 0;
  }
  #debtDash .container-fluid .row .col-xs-12:last-child {
    padding: 0;
  }
}
/* END - DUS Disclose Information Center Page CSS, 12/01/2017 by sjvesapogu */
/* START - Corporate News Page CSS, 01/24/2018 by sjvesapogu */
/* corporate-news/2018/multifamily-volumes-6660.html */
table.top-producers {
  width: 70%;
}
@media all and (max-width:1200px) {
  table.top-producers {
    width: 100%;
  }
}
@media all and (min-width:992px) {
  table.top-producers tr:nth-of-type(2n) {
    background-color: #ffffff;
  }
}
table.top-producers tr, table.top-producers th, table.top-producers td {
  border: 0;
}
table.top-producers th {
  padding: 0 0 20px 0;
  vertical-align: top;
  background-color: #ffffff;
}
table.top-producers td {
  padding: 0 0 10px 20px;
  vertical-align: top;
}
table.top-producers td:first-child {
  width: 45px;
}
@media all and (max-width:600px) {
  table.top-producers td {
    padding: 0 10px 10px 0;
  }
}
/* END - Corporate News Page CSS, 01/24/2018 by sjvesapogu */
/* START - MBS Prospectuses Page CSS, 04/25/2018 by sjvesapogu */
.fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header {
  font-weight: 500;
  background-color: #ffffff;
  padding: .5em 1em;
  border-top: 0;
  border-bottom: 0;
}
.fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header.active {
  background-color: #007697;
}
.fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header.mfth-white-bg-color.active {
  background-color: #007697;
}
@media (min-width: 768px) {
  .fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header {
    padding: .75em .5em;
  }
}
@media (min-width: 992px) {
  .fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header {
    background-color: #e5f1f4;
    padding: .5em;
    padding-left: 2em;
  }
  .fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header.mfth-white-bg-color {
    background-color: #ffffff;
  }
}
@media (min-width: 1200px) {
  .fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header {
    padding: .75em .5em;
    padding-left: 2em;
  }
}
.mbs-prospectus-container .mbs-prospectus-left {
  padding-left: 0;
}
.mbs-prospectus-container .mbs-prospectus-right {
  padding-right: 0;
}
@media (max-width: 991px) {
  .mbs-prospectus-container .mbs-prospectus-left {
    padding-right: 0;
  }
  .mbs-prospectus-container .mbs-prospectus-right {
    padding-left: 0;
  }
}
.mbs-prospectus-container .mbs-prospectus-left .mbs-prospectus-table, .mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-table {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  table.responsive-table.mbs-prospectus-table tbody tr {
    border-width: 0;
    margin-bottom: 0;
  }
  table.responsive-table.mbs-prospectus-table tbody tr:last-child {
    border-bottom: 1px solid #EDEBE9;
  }
  table.responsive-table.mbs-prospectus-table tbody tr td {
    width: 100%;
    border-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 991px) {
  table.responsive-table.mbs-prospectus-table tbody tr.mpt-white-bg-color {
    background-color: #ffffff;
  }
  table.responsive-table.mbs-prospectus-table tbody tr td {
    width: 50%;
  }
}
.mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container {
  width: calc(100% + 2px);
  padding: 0;
  margin-left: -1px;
}
.mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container table {
  margin-bottom: 0;
}
.mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container table tr td {
  padding-left: 1.75em;
}
@media (min-width: 768px) {
  .mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container table tr td {
    padding-left: 1.25em;
  }
}
@media (min-width: 992px) {
  .mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container table tr td {
    padding-left: 2.75em;
  }
}
@media (min-width: 1200px) {
  .mbs-prospectus-container .mbs-prospectus-right .mbs-prospectus-multifamily-container table tr td {
    padding-left: 2.75em;
  }
}
/* END - MBS Prospectuses Page CSS, 04/25/2018 by sjvesapogu */
/* START - Monthly Summary Page CSS, 04/27/2018 by sjvesapogu */
.generic-link-button {
  display: table;
  margin-bottom: 30px;
}
.generic-link-button .generic-link-button-text {
  font-size: 16px;
  margin-top: -5px;
  float: left;
}
.generic-link-button .generic-link-button-arrow {
  padding-bottom: 1px;
  padding-left: 10px;
  float: left;
}
.generic-link-button .generic-link-button-arrow span {
  display: none;
}
@media (max-width: 991px) {
  .forecast-weekly .container-fluid .row .forecast-weekly-container.monthly-summary-table-row {
    line-height: 1.4em;
  }
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+1) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+2) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+3) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+4) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+5) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+6) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+7) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+8) {
  background-color: #e5f1f4;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+9) {
  background-color: #ffffff;
}
.forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+10) {
  background-color: #e5f1f4;
}
@media (max-width: 991px) {
  .forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+2) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+4) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+6) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+8) {
    background-color: #ffffff;
  }
  .forecast-weekly .container-fluid .row div.monthly-summary-table-row:nth-child(n+10) {
    background-color: #ffffff;
  }
}
/* END - Monthly Summary Page CSS, 04/27/2018 by sjvesapogu */
/*** START - Tile Content Container CSS, 05/15/2018 by sjvesapogu **/
/* Biz Partners and Homeowners & Renters pages */
.tile-content-wrapper {
  width: calc(100% + 40px);
  margin: 0 0 0 -20px;
}
.tile-content-wrapper .tile-content-container {
  border-spacing: 30px 0;
}
.tile-content-container .fm-secondary-feature {
  padding: 0px;
}
.tile-content-container .fm-secondary-feature img {
  width: 100%;
  margin: 0px 0px 20px;
}
.tile-content-container .fm-secondary-feature .fm-type {
  padding: 0px 30px;
}
.tile-content-container .fm-secondary-feature .fm-type sup {
  font-size: 10px;
}
.tile-content-container .fm-secondary-feature .fm-title {
  margin: 0px;
  padding: 20px 30px 80px;
}
.tile-content-container .fm-secondary-feature .fm-title p {
  font-size: 16px;
}
.tile-content-container .fm-secondary-feature .fm-title p sup {
  font-size: 10px;
}
.tile-content-container .cta {
  display: table;
  border-spacing: 0;
  padding: 10px 20px;
}
.tile-content-container .cta span.tcc-cta-text {
  float: left;
  width: calc(100% - 50px);
  padding: 4px 0 0 0;
  line-height: 1.2em;
}
.tile-content-container .cta span.icon {
  float: right;
  width: 50px;
  padding: 0 0 0 20px;
  top: 0px;
}
@media (max-width: 768px) {
  .tile-content-wrapper {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  .tile-content-container .fm-secondary-feature {
    margin-top: 30px;
  }
}
/* START - Tile adjustment when the button text goes double line */
/* Biz Partners */
@media (max-width: 1200px) {
  .tile-content-container .fm-secondary-feature.bp1 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp1 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
  .tile-content-container .fm-secondary-feature.bp2 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp2 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 803px) {
  .tile-content-container .fm-secondary-feature.bp4 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp4 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 768px) {
  .tile-content-container .fm-secondary-feature.bp3 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp3 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .tile-content-container .fm-secondary-feature.bp4 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.bp4 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
  .tile-content-container .fm-secondary-feature.bp3 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.bp3 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
  .tile-content-container .fm-secondary-feature.bp2 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.bp2 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
  .tile-content-container .fm-secondary-feature.bp1 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.bp1 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
}
@media (max-width: 525px) {
  .tile-content-container .fm-secondary-feature.bp1 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp1 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 507px) {
  .tile-content-container .fm-secondary-feature.bp2 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp2 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 401px) {
  .tile-content-container .fm-secondary-feature.bp4 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp4 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 376px) {
  .tile-content-container .fm-secondary-feature.bp3 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.bp3 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
/* Homeowners & Renters pages */
@media (max-width: 768px) {
  .tile-content-container .fm-secondary-feature.hor2 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.hor2 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
  .tile-content-container .fm-secondary-feature.hor3 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.hor3 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .tile-content-container .fm-secondary-feature.hor2 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.hor2 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
  .tile-content-container .fm-secondary-feature.hor3 .fm-title {
    padding: 20px 30px 80px;
  }
  .tile-content-container .fm-secondary-feature.hor3 .cta span.tcc-cta-text {
    padding-top: 4px;
  }
}
@media (max-width: 373px) {
  .tile-content-container .fm-secondary-feature.hor2 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.hor2 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
@media (max-width: 372px) {
  .tile-content-container .fm-secondary-feature.hor3 .fm-title {
    padding: 20px 30px 90px;
  }
  .tile-content-container .fm-secondary-feature.hor3 .cta span.tcc-cta-text {
    padding-top: 0px;
  }
}
/* END - Tile adjustment when the button text goes double line */
/*** END - Tile Content Container CSS, 05/15/2018 by sjvesapogu ***/
/*** START - Callout Box, 05/31/2017 by sjvesapogu ***/
.callout-box {
  background: #e5e7e9;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #000f2b;
}
.callout-box h1.callout-box-heading {
  font-size: 18px;
  padding-top: 0;
  margin-bottom: 15px;
}
.callout-box p.callout-box-description {
  line-height: 1.4em;
  padding: 0;
  margin-bottom: 15px;
}
.callout-box p.callout-box-description:last-child {
  margin-bottom: 0;
}
.callout-box ul.callout-box-points {
  padding: 0 0 0 15px;
  margin: 0;
}
.callout-box ul.callout-box-points li {
  color: #121212;
  line-height: 1.4em;
  padding-bottom: 10px;
  margin-left: 12px;
}
.callout-box ul.callout-box-points li:last-child {
  padding-bottom: 0;
}
.callout-box-list {
  width: 100%;
  overflow: hidden;
}
.callout-box-list-left {
  width: 58%;
  float: left;
}
.callout-box-list-right {
  float: left;
  width: calc(42% - 15px);
  padding: 20px;
  margin-left: 15px;
  background-color: #000f2b;
}
.callout-box h1.callout-promo-heading {
  color: #ffffff;
  padding-top: 0;
}
.callout-box p.callout-promo-description {
  color: #ffffff;
  line-height: 1.3;
  padding: 0;
  margin-bottom: 10px;
}
.callout-box ul.callout-promo-points {
  padding: 0;
  margin: 0;
}
.callout-box ul.callout-promo-points li {
  list-style: none;
}
.callout-box ul.callout-promo-points li a {
  color: #00acdc;
  font-size: 16px;
}
@media only screen and (min-width: 361px) {
  .callout-box {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 600px) {
  .callout-box {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .callout-box-list-left {
    width: 100%;
  }
  .callout-box-list-right {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
/*** END - Callout Box, 05/31/2017 by sjvesapogu ***/
/*** START - Generic CSS Classes, 06/29/2018 by sjvesapogu ***/
/* START - Disclaimer */
.generic-disclaimer {
  border: 1px solid #121212;
  margin: 0 0 20px;
  padding: 20px;
}
.generic-disclaimer.gd-margin-b0 {
  margin-bottom: 0;
}
.generic-disclaimer p {
  color: #121212;
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.generic-disclaimer p:last-child {
  margin-bottom: 0;
}
.generic-disclaimer p em.generic-disclaimer-heading {
  font-weight: bold;
  margin-right: 3px;
}
/* END - Disclaimer */
/* START - Message Box */
.generic-message-box {
  overflow: hidden;
  width: 100%;
  background-color: #d9d7dc;
  padding: 30px;
  margin: 0 0 20px 0;
}
.generic-message-box.gmb-margin-b0 {
  margin-bottom: 0;
}
.generic-message-box h1.fm-subtitle {
  padding-top: 0px;
}
.generic-message-box p {
  line-height: 1.4em;
  margin-bottom: 15px;
}
.generic-message-box p:last-child {
  margin-bottom: 0;
}
.generic-message-box p.gmb-p-margin-b10 {
  margin-bottom: 10px;
}
.generic-message-box ul {
  padding: 0 0 0 15px;
  margin: 0 0 20px 0;
}
.generic-message-box ul li {
  color: #121212;
  line-height: 1.4em;
  padding-bottom: 2px;
  margin-left: 12px;
}
.generic-message-box ul li:last-child {
  padding-bottom: 0;
}
/* END - Message Box */
/* DUS Disclose Information Center page - Message Box */
/* START - Left & Right Message Box */
.generic-message-box .generic-message-box-left {
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  border-right: 0;
  border-bottom: 1px solid #007697;
  min-height: auto;
}
.generic-message-box .generic-message-box-right {
  padding: 0;
  min-height: auto;
}
@media (min-width: 992px) {
  .generic-message-box .generic-message-box-left {
    padding: 0 30px 0 0;
    margin-bottom: 0;
    border-right: 1px solid #007697;
    border-bottom: 0;
    min-height: 195px;
  }
  .generic-message-box .generic-message-box-right {
    padding: 0 0 0 30px;
  }
}
@media (min-width: 1200px) {
  .generic-message-box .generic-message-box-left {
    min-height: 177px;
  }
}
@media (min-width: 1401px) {
  .generic-message-box .generic-message-box-left {
    min-height: 161px;
  }
}
/* Title */
.generic-message-box-left h1, .generic-message-box-right h1 {
  font-size: 18px;
  margin-bottom: 15px;
}
/* Text */
.generic-message-box-left .generic-message-box-text, .generic-message-box-right .generic-message-box-text {
  color: #121212;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .generic-message-box-right .generic-message-box-text:nth-child(n+2) {
    padding-right: 20px;
  }
}
@media (min-width: 1401px) {
  .generic-message-box-right .generic-message-box-text:nth-child(n+2) {
    padding-right: 0;
  }
}
/* Button */
.generic-message-box-left .white-bg a.cta, .generic-message-box-right .white-bg a.cta {
  width: auto;
  height: 34px;
  padding: 0 12px;
  text-align: left;
  line-height: 32px;
}
.generic-message-box-right .white-bg a.cta {
  position: relative;
  float: left;
}
@media (max-width: 991px) {
  .generic-message-box-left .white-bg a.cta {
    position: relative;
    float: left;
    left: 0;
  }
}
.generic-message-box-left .white-bg a.cta span.icon, .generic-message-box-right .white-bg a.cta span.icon {
  top: 3px;
  font-size: 20px;
  width: 28px;
  padding: 0 0 0 7px;
}
/* END - Left & Right Message Box */
/* DUS Disclose Information Center page - DUS Disclose Specifications */
/* START - Responsive Table With Text links */
.generic-table-list .container-fluid .row {
  border-left: 1px solid #D9D7DC;
  display: flex;
  flex-wrap: wrap; /* Wrap after the items fill the row */
}
.generic-table-list .generic-table-list-col {
  padding: 30px;
  border-top: 1px solid #D9D7DC;
  border-right: 1px solid #D9D7DC;
  border-bottom: 1px solid #D9D7DC;
}
@media (max-width: 991px) {
  .generic-table-list .generic-table-list-col:nth-child(n+2) {
    border-top: 0;
  }
}
.generic-table-list-col h4 {
  margin: 0 0 5px 0;
}
.generic-table-list-col p {
  margin: 15px 0 5px 0;
  line-height: 1.2em;
}
.generic-table-list-col div.gtlc-links {
  padding: 10px 0;
  border-bottom: 1px solid #d9d7dc;
}
.generic-table-list-col div:last-child.gtlc-links {
  padding: 10px 0 0 0;
  border-bottom: 0;
}
.generic-table-list-col div.gtlc-links a {
  line-height: 1.4;
}
.generic-table-list-col div.gtlc-links span {
  margin-left: 6px;
}
/* Training Center */
.generic-table-list-col h4.gtlc-single-col {
  margin: 0 0 15px 0;
}
.generic-table-list-col .generic-table-list-col-left {
  padding: 0;
  border-right: 0;
}
.generic-table-list-col .generic-table-list-col-right {
  padding: 0;
  border-left: 0;
}
.generic-table-list-col-left div:first-child.gtlc-links {
  padding: 0 0 10px 0;
}
.generic-table-list-col-right div:first-child.gtlc-links {
  padding: 10px 0;
}
.generic-table-list-col-left div:last-child.gtlc-links {
  padding: 10px 0;
  border-bottom: 1px solid #d9d7dc;
}
@media (min-width: 992px) {
  .generic-table-list-col .generic-table-list-col-left {
    padding: 0 30px 0 0;
    border-right: 1px solid #d9d7dc;
  }
  .generic-table-list-col .generic-table-list-col-right {
    padding: 0 0 0 30px;
    border-left: 0;
  }
  .generic-table-list-col-left div:first-child.gtlc-links {
    padding: 0 0 10px 0;
  }
  .generic-table-list-col-right div:first-child.gtlc-links {
    padding: 0 0 10px 0;
  }
  .generic-table-list-col-left div:last-child.gtlc-links {
    padding: 10px 0 0 0;
    border-bottom: 0;
  }
}
/* END - Responsive Table With Text links */
/* DUS Disclose Information Center page - Videos */
/* START - Video Container - Video Image Link & Description */
.generic-video-container {
  margin-bottom: 30px;
}
.generic-video-container:last-child {
  margin-bottom: 0;
}
.generic-video-container a {
  display: block;
}
@media (max-width: 991px) {
  .generic-video-container .col-xs-12 {
    padding: 0;
    margin-bottom: 30px;
  }
  .generic-video-container .col-xs-12:last-child {
    margin-bottom: 0;
  }
}
.generic-video-container .generic-video-text {
  background-color: #d9d7dc;
  padding: 20px;
  margin-top: -3px;
}
.generic-video-container .generic-video-text.gvt1 {
  height: auto;
}
.generic-video-container .generic-video-text.gvt4 {
  height: auto;
}
@media (min-width: 992px) {
  .generic-video-container .generic-video-text.gvt1 {
    height: 196px;
  }
  .generic-video-container .generic-video-text.gvt4 {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .generic-video-container .generic-video-text.gvt1 {
    height: 180px;
  }
  .generic-video-container .generic-video-text.gvt4 {
    height: 146px;
  }
}
@media (min-width: 1401px) {
  .generic-video-container .generic-video-text.gvt1 {
    height: 129px;
  }
  *::-ms-backdrop, .generic-video-container .generic-video-text.gvt1 {
    height: 146px;
  } /* IE11 */
}
.generic-video-text .generic-video-text1 {
  margin: 0 0 5px 0;
  line-height: 1.2em;
}
.generic-video-text .generic-video-text2 {
  margin: 0;
  line-height: 1.2em;
}
/* END - Video Container - Video Image Link & Description */
/* START - Generic Image and Text Rotator CSS, 07/18/2018 by sjvesapogu */
@media all and (max-width:991px) {
  section.chart-viewer .nav-block {
    display: block;
    width: auto;
    padding-bottom: 0;
  }
  .no-mobile {
    display: none !important;
  }
  section.chart-viewer .chart-block {
    display: block;
    padding-top: 0;
    margin: 0;
  }
  section.chart-viewer .fm-subtitle {
    margin-bottom: 15px;
  }
}
@media all and (min-width:769px) {
  .mobile-only {
    display: block !important;
  }
  .content-row.cr-container {
    padding-top: 0;
    margin-bottom: 30px;
  }
}
@media all and (min-width:992px) {
  .mobile-only {
    display: none !important;
  }
  .content-row.cr-container {
    padding-top: 0;
    margin-bottom: 30px;
  }
  ul.link-listing.ll-padding-r30 > li > a {
    padding-right: 30px;
  }
}
/* END - Generic Image and Text Rotator CSS, 07/18/2018 by sjvesapogu */
/*** START - Generic Responsive Table With Header CSS, 12/14/2018 by sjvesapogu ***/
/* work-remote-zsacler.html */
table.responsive-table.generic-responsive-table-with-header tbody tr td {
  vertical-align: top;
  padding: 0;
}
table.responsive-table.generic-responsive-table-with-header tbody tr td p {
  background-color: #e5f1f4;
  padding: 0.5em 1em;
  margin: 0;
}
table.responsive-table.generic-responsive-table-with-header tbody tr td ul {
  padding: 0 0 0 13px;
  margin: 0.5em 1em;
}
table.responsive-table.generic-responsive-table-with-header tbody tr td ul li ul {
  padding-bottom: 0px;
}
@media (min-width: 992px) {
  table.responsive-table.generic-responsive-table-with-header tbody tr td {
    width: 50%;
  }
}
@media (max-width: 991px) {
  table.responsive-table.generic-responsive-table-with-header tbody tr {
    border-width: 0;
    margin-bottom: 0;
  }
  table.responsive-table.generic-responsive-table-with-header tbody tr:last-child {
    border-bottom: 1px solid #EDEBE9;
  }
  table.responsive-table.generic-responsive-table-with-header tbody tr td {
    width: 100%;
    border-bottom: 0;
    text-align: left;
  }
}
/*** END - Generic Responsive Table With Header CSS, 12/14/2018 by sjvesapogu ***/
/*** START - Generic Carousel CSS, 01/23/2019 by sjvesapogu ***/
.generic-basic-carousel {
  display: flex;
  padding: 0;
}
/* Carousel Items */
.generic-basic-carousel .generic-carousel-item {
  display: none;
  padding: 0;
  min-height: 290px;
}
/* Carousel Controls */
.generic-basic-carousel .generic-carousel-controls {
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 100%;
  margin-bottom: 1px;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  text-align: center;
}
/* Carousel Navigation */
.generic-carousel-controls .generic-carousel-nav, .generic-carousel-controls .generic-carousel-nav:hover {
  position: relative;
  cursor: pointer;
  background-color: #00acdc;
  border-color: #00acdc;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  display: inline-block;
  top: 6px;
}
.generic-carousel-controls .generic-carousel-nav.gcn-active-item, .generic-carousel-controls .generic-carousel-nav.gcn-active-item:hover {
  top: 6px;
  cursor: default;
  background-color: #ffffff;
  border: 2px solid #00acdc;
  width: 12px;
  height: 12px;
}
/* Newsroom - news.html */
@media (min-width: 768px) {
  .generic-basic-carousel .generic-carousel-item {
    min-height: 290px;
  }
}
@media (min-width: 992px) {
  .generic-basic-carousel .generic-carousel-item {
    display: block !important;
    min-height: 200px;
  }
  .generic-basic-carousel .generic-carousel-item.gci1 {
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0 20px 0 0;
    margin-right: 10px;
  }
  .generic-basic-carousel .generic-carousel-item.gci2 {
    padding: 0 10px 0 10px;
  }
  .generic-basic-carousel .generic-carousel-item.gci3 {
    padding: 0 0 0 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    margin-left: 10px;
  }
  .generic-basic-carousel .generic-carousel-controls {
    display: none;
  }
}
/*** END - Generic Carousel CSS, 01/23/2019 by sjvesapogu ***/
/*** START - Generic Button List CSS, 05/28/2019 by sjvesapogu ***/
.generic-button-list-container {
  margin: 20px auto;
  width: 220px;
  overflow: hidden;
}
.generic-button-list-left {
  margin: 0 0 20px 0;
  padding: 10px;
  border: 1px solid rgb(0, 15, 43);
  border-image: none;
  width: 220px;
  float: left;
}
.generic-button-list-right {
  margin: 0;
  padding: 10px;
  border: 1px solid rgb(0, 15, 43);
  border-image: none;
  width: 220px;
  float: left;
}
.generic-button-list-container .generic-button-list-left p, .generic-button-list-container .generic-button-list-right p {
  text-align: center;
  color: rgb(51, 51, 51);
  font-size: 16px;
  margin-bottom: 10px;
}
.generic-button-list-container .generic-button-list-left a, .generic-button-list-container .generic-button-list-right a {
  margin: 0px 0px 10px;
  padding: 10px 15px;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
  float: left;
  background-color: rgb(0, 118, 151);
  text-decoration: none;
}
.generic-button-list-container .generic-button-list-left a:last-child, .generic-button-list-container .generic-button-list-right a:last-child {
  margin: 0;
}
.generic-button-list-container .generic-button-list-left a span, .generic-button-list-container .generic-button-list-right a span {
  float: left;
}
.generic-button-list-container .generic-button-list-left a span.icon, .generic-button-list-container .generic-button-list-right a span.icon {
  font-size: 20px;
  float: right;
}
@media (min-width: 561px) {
  .generic-button-list-container {
    width: 460px;
  }
  .generic-button-list-left {
    margin: 0px 10px 0px 0px;
    width: 220px;
  }
  .generic-button-list-right {
    margin: 0px 0px 0px 10px;
    width: 220px;
  }
}
@media (min-width: 768px) {
  .generic-button-list-container {
    width: 220px;
  }
  .generic-button-list-left {
    margin: 0 0 20px 0;
    width: 220px;
  }
  .generic-button-list-right {
    margin: 0;
    width: 220px;
  }
}
@media (min-width: 830px) {
  .generic-button-list-container {
    width: 460px;
  }
  .generic-button-list-left {
    margin: 0px 10px 0px 0px;
    width: 220px;
  }
  .generic-button-list-right {
    margin: 0px 0px 0px 10px;
    width: 220px;
  }
}
/*** END - Generic Button List CSS, 05/28/2019 by sjvesapogu ***/
/*** END - Generic CSS Classes, 06/29/2018 by sjvesapogu ***/
/*** START - Right Nav Generic CSS, 01/02/2019 by sjvesapogu ***/
/* START - Action Button Link */
.generic-action-button {
  overflow: hidden;
  width: 100%;
  background-color: #007697;
}
.generic-action-button a {
  float: left;
  width: 100%;
  padding: 30px;
  color: #ffffff;
}
.generic-action-button a .generic-action-button-text {
  float: left;
  width: calc(100% - 35px);
  font-size: 17px;
  margin-top: 2px;
}
.generic-action-button a .generic-action-button-arrow {
  float: right;
  width: 35px;
  font-size: 24px;
  padding-left: 10px;
}
.generic-action-button a .generic-action-button-arrow span {
  display: none;
}
/* END - Action Button Link */
/*** END - Right Nav Generic CSS, 01/02/2019 by sjvesapogu ***/
/* START - Duty to Serve Message Box CSS, 06/29/2018 by sjvesapogu */
.generic-message-box.gmb-duty-to-serve {
  float: right;
  width: 275px;
  margin: 0px 0px 20px 20px;
}
.gmb-duty-to-serve ul {
  margin: 0px;
  padding: 5px 0px 0px 1px;
}
.gmb-duty-to-serve ul li {
  line-height: 1.2em;
}
/* END - Duty to Serve Message Box CSS, 06/29/2018 by sjvesapogu */
/*** START - DUS Disclose Information Center CSS, 06/29/2018 by sjvesapogu ***/
/* Titles */
h1.fm-section-title.fst-margin {
  margin: 40px 0 15px 0;
}
h4.h4-margin {
  margin: 30px 0 15px 0;
}
/* Overview of DUS Disclose */
div.text-link-pdf {
  font-size: 18px;
}
div.text-link-pdf span {
  margin: 1px 0 0 6px;
}
/*** END - DUS Disclose Information Center CSS, 06/29/2018 by sjvesapogu ***/
/*** START - Award Announcements Rotator CSS, 08/07/2018 by sjvesapogu ***/
.awards-announcements-rotator.aar-margin-t30 {
  margin-top: 30px;
}
/* Award Announcements Left Nav */
.awards-announcements-rotator section.chart-viewer .nav-block {
  width: 42%;
}
/* /portal/funding-the-market/investors.html */
.awards-announcements-rotator.capital-markets section.chart-viewer .nav-block {
  width: 38%;
}
@media all and (max-width:991px) {
  .awards-announcements-rotator section.chart-viewer .nav-block {
    width: auto;
  }
  .awards-announcements-rotator.capital-markets section.chart-viewer .nav-block {
    width: auto;
  }
  .awards-announcements-rotator section.chart-viewer .nav-block .styled-select select {
    margin: 0;
  }
}
/* START - Award Announcements Right Content */
.awards-announcements-rotator section.chart-viewer .chart-block {
  padding: 0;
}
@media all and (max-width:991px) {
  .awards-announcements-rotator section.chart-viewer .chart-block {
    padding: 0 30px 30px 30px;
  }
}
/* li */
.awards-announcements-rotator section.chart-viewer .chart-block li {
  padding: 30px;
  height: auto; /*height: 402px;*/
}
/*@media all and (max-width:1400px){
	.awards-announcements-rotator section.chart-viewer .chart-block li{height: 420px;}
}
@media all and (max-width:1199px){
	.awards-announcements-rotator section.chart-viewer .chart-block li{height: 488px;} 
}*/
@media all and (max-width:991px) {
  .awards-announcements-rotator section.chart-viewer .chart-block li {
    height: auto;
  }
}
/* h4 */
.awards-announcements-rotator section.chart-viewer .chart-block li h4 {
  margin-top: 0;
}
/* Text */
.awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text {
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  line-height: 1.8em;
}
.awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text.cb-text-margin-b0 {
  margin-bottom: 0;
}
@media all and (max-width:1400px) {
  .awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text {
    line-height: 1.6em;
  }
}
@media all and (max-width:991px) {
  .awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text {
    line-height: 20px;
  }
}
/* Text Image */
.awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text img {
  margin: 0px 0px 10px 20px;
  width: 250px;
  height: auto;
  float: right;
}
@media (max-width: 619px) {
  .awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text img {
    margin: 0px 0px 15px 0px;
    width: 100%;
    height: auto;
    float: none;
  }
}
/* Text Link */
.awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text-link a {
  font-size: 16px;
  line-height: 1.4em;
}
.awards-announcements-rotator section.chart-viewer .chart-block li p.cb-text-link a span {
  position: absolute;
  font-size: 20px;
  margin: 1px 0 0 5px;
}
/* Background Colors */
/* White */
.awards-announcements-rotator section.chart-viewer .chart-block li.cb-white-bg {
  border: 0;
}
@media all and (max-width:991px) {
  .awards-announcements-rotator section.chart-viewer .chart-block li.cb-white-bg {
    border: 1px solid #EDEBE9;
  }
}
/* Gray */
.awards-announcements-rotator section.chart-viewer .chart-block li.cb-gray-bg {
  background-color: rgb(217, 215, 220);
}
/* Dark Blue */
.awards-announcements-rotator section.chart-viewer .chart-block li.cb-dark-blue-bg {
  background-color: rgb(0, 15, 43);
}
.awards-announcements-rotator section.chart-viewer .chart-block li.cb-dark-blue-bg h4, .awards-announcements-rotator section.chart-viewer .chart-block li.cb-dark-blue-bg p.cb-text {
  color: rgb(255, 255, 255);
}
.awards-announcements-rotator section.chart-viewer .chart-block li.cb-dark-blue-bg p.cb-text-link a {
  color: #00acdc;
}
/* END - Award Announcements Right Content */
/* END - Award Announcements Rotator CSS, 08/07/2018 by sjvesapogu */
/*** START - Contact Us - Responsive Table Locations CSS, 12/05/2018 by sjvesapogu ***/
/* contact-us.html */
table.responsive-table.locations, table.responsive-table.locations tbody tr {
  margin-bottom: 0;
}
table.responsive-table.locations, table.responsive-table.locations tbody tr, table.responsive-table.locations tbody tr td {
  border: 0;
}
table.responsive-table.locations tbody tr td {
  vertical-align: top;
  padding: 10px;
}
table.responsive-table.locations tbody tr td p {
  line-height: 1.4em;
}
@media (min-width: 992px) {
  table.responsive-table.locations tbody tr td {
    width: 20%;
  }
}
@media (min-width: 768px) {
  table.responsive-table.locations tbody tr:nth-of-type(2n) {
    background-color: #ffffff;
  }
  table.responsive-table.locations tbody tr:last-child {
    border-bottom: 0;
  }
  table.responsive-table.locations tbody tr td {
    width: 15%;
    display: table-cell;
  }
}
@media (max-width: 767px) {
  table.responsive-table.locations tbody tr {
    border-width: 0;
    margin-bottom: 0;
  }
  table.responsive-table.locations tbody tr:last-child {
    border-bottom: 0;
  }
  table.responsive-table.locations tbody tr td {
    width: 100%;
    border-bottom: 0;
    text-align: left;
    display: block;
    padding-left: 0;
  }
  table.responsive-table.locations tbody tr td:last-child {
    padding-bottom: 0;
  }
  table.responsive-table.locations tbody tr td.location-empty {
    display: none;
  }
}
@media (max-width: 992px) {
  table.responsive-table.locations tbody tr td {
    text-align: left;
  }
}
/*** END - Contact Us - Responsive Table Locations CSS, 12/05/2018 by sjvesapogu ***/
/*** START - Board Committees - Responsive Table CSS, 01/16/2019 by sjvesapogu ***/
/* /portal/about-fm/governance/fmboard-committees.html */
.responsive-table.board-committees thead th, .responsive-table.board-committees thead td, .responsive-table.board-committees tbody th, .responsive-table.board-committees tbody td {
  padding-left: .5em;
}
.responsive-table.board-committees thead th, .responsive-table.board-committees tbody th {
  vertical-align: top;
}
.responsive-table.board-committees tbody td {
  text-align: center;
}
@media (max-width: 991px) {
  .responsive-table.board-committees tbody td {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .responsive-table.board-committees tbody td[data-title]:before, .responsive-table.board-committees tbody th[data-title]:before {
    font-size: 14px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .responsive-table.board-committees tbody td[data-title]:before, .responsive-table.board-committees tbody th[data-title]:before {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  table.responsive-table.board-committees tr:nth-of-type(even) {
    background-color: transparent;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees {
    font-size: 14px;
  }
}
.responsive-table.board-committees thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .responsive-table.board-committees tbody {
    display: block;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees thead tr, .responsive-table.board-committees tbody tr {
    display: block;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees tbody tr {
    display: block;
    border-width: 2px;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees tbody td[data-title]:before, .responsive-table.board-committees tbody th[data-title]:before {
    content: attr(data-title);
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees tbody th[scope="row"] {
    background-color: #e5f1f4;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees tbody td {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .responsive-table.board-committees thead th, .responsive-table.board-committees thead td, .responsive-table.board-committees tbody th, .responsive-table.board-committees tbody td {
    display: block;
    padding: .75em .5em;
  }
}
@media (min-width: 1200px) {
  table.responsive-table.board-committees tr:nth-of-type(even) {
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees tbody {
    display: table-row-group;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees thead tr, .responsive-table.board-committees tbody tr {
    display: table-row;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees tbody tr {
    display: table-row;
    border-width: 1px;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees thead tr, .responsive-table.board-committees tbody tr {
    display: table-row;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees tbody td[data-title]:before, .responsive-table.board-committees tbody th[data-title]:before {
    content: none;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees tbody th[scope="row"] {
    background-color: transparent;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees tbody td {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .responsive-table.board-committees thead th, .responsive-table.board-committees thead td, .responsive-table.board-committees tbody th, .responsive-table.board-committees tbody td {
    display: table-cell;
    padding: 6px 4px;
  }
}
/*** END - Board Committees - Responsive Table CSS, 01/16/2019 by sjvesapogu ***/
/* START - Newsroom - Resources Page CSS, 01/23/2019 by sjvesapogu */
@media (max-width: 767px) {
  .content-row.ct-padding {
    padding: 30px 0;
  }
}
.news-teaser.nt-padding {
  padding: 90px 30px 30px;
}
/* Carousel Item 2 - Awards and Acheivements */
.news-awards-image {
  background: url(/resources/img/about-fm/awards-achievements/awards-achievements.jpg) no-repeat 0 0;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  height: 120px;
}
@media (min-width: 440px) {
  .news-awards-image {
    height: 145px;
  }
}
@media (min-width: 992px) {
  .news-awards-image {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .news-awards-image {
    height: 100px;
  }
}
@media (min-width: 1401px) {
  .news-awards-image {
    height: 115px;
  }
}
.news-awards-text {
  margin: 10px 0 0 0;
}
.news-awards-link {
  display: block;
  margin: 15px 25px 0px 0px;
  text-align: right;
  font-size: 16px;
}
.news-awards-link span {
  position: absolute;
  margin: 1px 0px 0px 5px;
  font-size: 20px;
}
/* END - Newsroom - Resources Page CSS, 01/23/2019 by sjvesapogu */
/* START - Employee Resource Groups Page CSS, 02/06/2019 by sjvesapogu */
.employee-resource-groups {
  padding: 10px 0px 0px;
  margin-bottom: -20px;
}
.employee-resource-groups .image-overlay {
  position: relative;
  width: 100%;
}
/* Image Overlay */
.employee-resource-groups .image-overlay .image {
  width: 100%;
  height: 190px;
  text-align: center;
  box-shadow: 3px 3px 3px 3px rgba(68, 68, 68, 0.6);
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
}
@media (min-width: 440px) {
  .employee-resource-groups .image-overlay .image {
    height: 160px;
  }
}
@media (min-width: 992px) {
  .employee-resource-groups .image-overlay .image {
    height: 194px;
  }
}
@media (min-width: 1200px) {
  .employee-resource-groups .image-overlay .image {
    height: 248px;
  }
}
@media (min-width: 1401px) {
  .employee-resource-groups .image-overlay .image {
    height: 230px;
  }
}
/* Image  */
.image-overlay .image img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 440px) {
  .employee-resource-groups .image-overlay .image img {
    width: 300px;
  }
}
/* Overlay Text  */
.employee-resource-groups .image-overlay .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e6e6e6;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.employee-resource-groups .image-overlay:hover .overlay {
  height: 100%;
}
.employee-resource-groups .image-overlay .overlay p {
  line-height: 1.2em;
  font-size: 12px;
  margin: 0;
  padding: 15px;
}
@media (min-width: 440px) {
  .employee-resource-groups .image-overlay .overlay p {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .employee-resource-groups .image-overlay .overlay p {
    padding: 15px;
  }
}
@media (min-width: 1401px) {
  .employee-resource-groups .image-overlay .overlay p {
    padding: 20px;
  }
}
/* Misc  */
.employee-resource-groups .col-xs-12, .employee-resource-groups .col-lg-6 {
  margin-bottom: 30px;
}
/* END - Employee Resource Groups Page CSS, 02/06/2019 by sjvesapogu */
/***************************** User1st ************************************/
/*** START - User1st Home/Landing/Other Pages CSS, 02/08/2019 by sjvesapogu ***/
/* START - Accessibility Button */
div.u1st a.u1st_accBtn {
  position: absolute !important;
  left: 0 !important;
  z-index: 1 !important;
  text-align: right;
  border-radius: 0;
}
div.u1st a.u1st_accBtn {
  right: 0px !important;
}
div.u1st a.u1st_accBtn::before {
  content: "\f05a";
  font-family: FontAwesome;
  font-size: 18px;
  float: left;
}
@media (min-width: 1861px){
	div.u1st a.u1st_accBtn::before {
		margin-right: 7px;
	}
}
div.u1st a.u1st_accBtnText {
  background: transparent !important;
  font-family: 'Source Sans Pro', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #121212 !important;
  letter-spacing: 0.05em;
  padding: 2px 20px 1px;
  border-right: 1px solid #cccccc;
  top: 319px;
}
@media (max-width: 1860px) {
  div.u1st a.u1st_accBtn {
    max-width: 1170px;
    width: 145px;
    margin: 0 auto;
    margin-right: 345px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    padding-top: 3px;
  }
}
@media (max-width: 1439px) {
  div.u1st a.u1st_accBtn {
    margin-right: 310px;
  }
}
@media (max-width: 991px) {
  div.u1st a.u1st_accBtn {
    margin-right: 293px;
  }
}
@media (max-width: 767px) {
  div.u1st a.u1st_accBtn {
    display: none;
  }
}
@media (min-width: 1861px) {
  div.u1st {
    position: absolute !important;
    top: 314px;
    left: 0;
    right: 0;
    width: 1170px;
    margin: 0 auto;
  }
  div.u1st a.u1st_accBtnText {
    padding: 3px 20px 3px 18px !important;
    top: 5px;
    left: auto !important;
  }
}
/* END - Accessibility Button */
/** START - Accessibility Menu **/
/* Menu Position */
div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
  position: absolute;
  top: 35px;
  right: -135px;
}
@media (max-width: 1860px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    top: 353px;
    right: 215px;
  }
}
@media (max-width: 1439px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    top: 353px;
    right: 180px;
  }
}
@media (max-width: 1079px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    top: 353px;
    right: 180px;
  }
}
@media (max-width: 990px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    top: 353px;
    right: 165px;
  }
}
@media (max-width: 767px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    display: none !important;
  }
}
@media (min-width: 1861px) {
  div.u1st div.u1st_mainMenu div.u1st_content.u1st_position {
    top: 35px;
    right: -135px;
  }
}
div.u1st div.u1st_mainMenu div.u1st_position {
  left: auto;
}
/* Menu */
div.u1st div.u1st_mainMenu div.u1st_content {
  z-index: 1 !important;
  border-radius: 0;
}
div.u1st div.u1st_mainMenu p.u1st_accIntro {
  border-radius: 0;
}
div.u1st .u1st_mainMenu a.u1st_feedbackTitleSelected, div.u1st .u1st_mainMenu a.u1st_mySettingsTitleSelected, div.u1st .u1st_mainMenu a.u1st_profileTitleSelected {
  border-radius: 0 !important;
}
/** END - Accessibility Menu **/
/*** END - User1st Home/Landing/Other Page CSS, 02/08/2019 by sjvesapogu ***/
/***************************** User1st ************************************/
/*** START - Cookie Disclaimer Pop-up CSS, 03/29/2019 by sjvesapogu ***/
#fanniemae_cookie_consent .cookie-consent-banner {
  overflow: hidden;
  display: block;
  position: fixed;
  bottom: 0;
  z-index: 123456789;
  padding: 15px;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 118, 151, 0.9);
}
@media (min-width: 768px) {
  #fanniemae_cookie_consent .cookie-consent-banner {
    display: flex;
    align-items: center;
    padding: 25px 0 25px 25px;
  }
}
@media (min-width: 1200px) {
  #fanniemae_cookie_consent .cookie-consent-banner {
    padding: 30px 0 30px 40px;
  }
}
@media (min-width: 1400px) {
  #fanniemae_cookie_consent .cookie-consent-banner {
    padding: 30px 0px 30px 60px;
  }
}
/* START - Text */
#fanniemae_cookie_consent .cookie-consent-banner .cookie-text {
  float: none;
  width: 100%;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  #fanniemae_cookie_consent .cookie-consent-banner .cookie-text {
    float: left;
    width: calc(100% - 240px);
    font-size: 14px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  #fanniemae_cookie_consent .cookie-consent-banner .cookie-text {
    width: calc(100% - 260px);
  }
}
@media (min-width: 1200px) {
  #fanniemae_cookie_consent .cookie-consent-banner .cookie-text {
    width: calc(100% - 300px);
  }
}
#fanniemae_cookie_consent .cookie-consent-banner .cookie-text p {
  margin: 0 0 15px 0;
}
#fanniemae_cookie_consent .cookie-consent-banner .cookie-text p:last-child {
  margin: 0;
}
#fanniemae_cookie_consent .cookie-consent-banner a {
  color: #FFFFFF;
  text-decoration: underline;
}
/* END - Text */
/* START - Close */
#fanniemae_cookie_consent .cookie-consent-banner .cookie-close {
  float: none;
  width: 150px;
  margin: 30px auto 0px;
}
@media (min-width: 768px) {
  #fanniemae_cookie_consent .cookie-consent-banner .cookie-close {
    float: right;
    margin: 0px auto;
  }
}
#fanniemae_cookie_consent .cookie-consent-banner .cookie-close .cookie-btn {
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  background: #000f2b;
  padding: 7px 0px;
  border: none;
}
@media (min-width: 768px) {
  #fanniemae_cookie_consent .cookie-consent-banner .cookie-close .cookie-btn {
    font-size: 16px;
    padding: 10px 0px;
  }
}
/* END - Close */
/*** END - Cookie Disclaimer Pop-up CSS, 03/29/2019 by sjvesapogu ***/
/*** START - Quick Securities Locator CSS, 04/24/2019 by sjvesapogu ***/
.widget-test-sls {
  margin-bottom: 20px;
  background: rgb(0, 15, 43) none repeat scroll 0px 0px;
  color: rgb(255, 255, 255);
  padding: 20px;
}
.widget-test-sls form h3 {
  color: #fff;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 5px;
  margin: 0 0 10px;
}
.widget-test-sls form ul {
  padding: 0px 0px 20px 13px;
}
.widget-test-sls form ul li {
  list-style-type: disc;
}
.widget-test-sls form input.search {
  height: 40px;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.widget-test-sls form input.submit {
  height: 35px;
  width: 145px;
  margin-top: 10px;
  background: rgb(217, 215, 220) none repeat scroll 0% 0%;
  color: rgb(0, 15, 43);
}
.widget-test-sls a.smallDarkBlue {
  display: table;
  margin-bottom: 10px;
  font-size: 14px;
  color: #00acdc;
}
/*** END - Quick Securities Locator CSS, 04/24/2019 by sjvesapogu ***/
/*** START - Credit Risk Transfer CSS, 08/26/2019 by sjvesapogu ***/
/* Common Class */
.credit-risk-transfer-container h3 {
  color: rgb(0, 118, 151);
  line-height: 1.4em;
}
.credit-risk-transfer-container h5 {
  margin: 0px 0px 5px;
  color: #121212;
  font-size: 16px;
}
.credit-risk-transfer-container p {
  line-height: 1.4em;
}
.credit-risk-transfer-container p.p-margin-b10 {
  margin: 0px 0px 10px;
}
.credit-risk-transfer-container p.image {
  margin: 0px auto;
  width: 100%;
}
@media (min-width: 768px) {
  .credit-risk-transfer-container p.image {
    width: 70%;
  }
}
.credit-risk-transfer-container p.image.image-width100 {
  width: 100%;
}
.credit-risk-transfer-container p.image-description {
  text-align: center;
  margin-top: -20px;
}
/* Data Dynamics Intro - credit-risk-data-dynamics.html */
.credit-risk-transfer-container .data-dynamics-intro {
  overflow: hidden;
  width: 100%;
  display: block;
}
.credit-risk-transfer-container .data-dynamics-intro-left {
  display: block;
}
.credit-risk-transfer-container .data-dynamics-intro-right {
  display: block;
  float: right;
}
.credit-risk-transfer-container .data-dynamics-intro-right .generic-video-tile {
  margin: 0 0 10px 20px;
}
@media (max-width: 767px) {
  .credit-risk-transfer-container .data-dynamics-intro {
    display: table;
  }
  .credit-risk-transfer-container .data-dynamics-intro-left {
    display: table-cell;
  }
  .credit-risk-transfer-container .data-dynamics-intro-right {
    display: table-footer-group;
    float: none;
  }
  .credit-risk-transfer-container .data-dynamics-intro-right .generic-video-tile {
    margin: 10px auto 20px;
  }
}
/* START - Generic Video Tile */
.generic-video-tile {
  padding: 10px;
  border: 1px solid rgb(0, 15, 43);
  border-image: none;
  width: 250px;
}
.generic-video-tile-title {
  margin: 0px 0px 10px;
  padding: 15px 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 11pt;
  font-weight: bold;
  background-color: rgb(0, 118, 151);
}
.generic-video-tile p {
  text-align: center;
  color: rgb(0, 15, 43);
  line-height: 1.2em;
  font-size: 12px;
}
/* START - Generic Quote Container */
.generic-quote-container {
  overflow: hidden;
  float: none;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #e5f1f4;
  border: 1px solid #EDEBE9;
  padding: 10px;
  margin: 0px 0px 20px 0px;
}
@media (min-width: 992px) {
  .generic-quote-container {
    float: right;
    width: 50%;
    margin: 0px 0px 20px 20px;
  }
  .generic-quote-container.gqc-margin-b10 {
    margin: 0px 0px 10px 20px;
  }
}
.generic-quote-container .generic-quote-container-left {
  float: left;
  margin: 0px;
  font-size: 30pt;
}
.generic-quote-container .generic-quote-container-right {
  float: left;
  margin: 0px;
  padding-left: 25px;
}
/* END - Generic Quote Container */
/* START - Generic Block Container */
.generic-block-container {
  margin-bottom: 30px;
}
.generic-block-container.gbc-margin-b0 {
  margin-bottom: 0;
}
.generic-block-container .row {
  display: block;
}
.generic-block-container .generic-block {
  background-color: rgb(0, 118, 151);
  color: rgb(255, 255, 255);
  padding: 30px;
  margin-right: 0;
	font-size: 16px;
	line-height: 22px;
}
.generic-block-container .generic-block.gb-margin {
  margin-top: 30px;
  margin-left: 0;
}
.generic-block-container .generic-block.gb-margin-middle {
  margin: 30px 0 0 0;
}
.generic-block-container .generic-block.gb-margin-right {
  margin-top: 30px;
  margin-left: 0;
}
.generic-block-container.gbc-darkblue .generic-block {
  background-color: #000f2b;
}
@media (min-width: 992px) {
  .generic-block-container .row {
    display: flex;
  }
  .generic-block-container .generic-block {
    margin-right: 15px;
  }
  .generic-block-container .generic-block.gb-margin {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 0;
  }
  .generic-block-container .generic-block.gb-margin-middle {
    margin: 0 7.5px;
  }
  .generic-block-container .generic-block.gb-margin-right {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 0;
  }
}
.generic-block-container .generic-block span.title {
  display: block;
  margin: 0px 0px 10px;
}
.generic-block-container .generic-block span.sub-title {
  display: block;
  margin: 0px 0px 5px;
}
.generic-block-container .generic-block span.title span.fm-arrow-right-circle, .generic-block-container .generic-block span.sub-title span.fm-arrow-right-circle {
  margin: 2px 0px 0px 5px;
  font-size: 14px;
  position: absolute;
}
.generic-block-container .generic-block span.description {
  display: block;
}
.generic-block-container.gbc-button {}
.generic-block-container.gbc-button .generic-block {
  padding: 10px;
  line-height: 1.4em;
}
.generic-block-container.gbc-button .generic-block span.sub-title {
  margin: 0px;
}
.generic-block-container.gbc-button .generic-block span.sub-title {
  margin: 0px;
}
.generic-block-container.gbc-button .generic-block span.sub-title span.text {
  float: left;
  width: calc(100% - 25px);
}
.generic-block-container.gbc-button .generic-block span.sub-title span.fm-arrow-right-circle {
  float: right;
  position: relative;
  margin: 2px 0px 0px 0px;
  width: 14px;
}
.generic-block-container .generic-block span.title .note-registered {
  position: relative;
top: 1px;
    font-size: 22px;
    font-weight: 300;
}
.generic-block-container .generic-block span.sub-title .note-registered {
  position: relative;
  top: -3px;
  font-size: 20px;
}
.generic-block-container .generic-block span.title .note-trademark, .generic-block-container .generic-block span.sub-title .note-trademark {
  position: relative;
    top: -2px;
    font-size: 18px;
    font-weight: 300;
}
/* END - Generic Block Container */
/* START - Generic Block Colors */
.generic-block-colors {
  margin-bottom: 30px;
}
.generic-block-colors .row {
  display: block;
}
.generic-block-colors .generic-colors-left {
  padding: 20px;
  border: 1px solid #2c6937;
  color: #2c6937;
}
.generic-block-colors .generic-colors-right {
  padding: 20px;
  border: 1px solid #085280;
  color: #085280;
}
.generic-block-colors .generic-colors-right.gcr-margin {
  margin-top: 30px;
  margin-left: 0;
}
@media (min-width: 992px) {
  .generic-block-colors .row {
    display: flex;
  }
  .generic-block-colors .generic-colors-left {
    margin-right: 15px;
  }
  .generic-block-colors .generic-colors-right.gcr-margin {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 0;
  }
}
.generic-block-colors .generic-colors-left p {
  margin: 0px 0px 5px;
  color: #2c6937;
}
.generic-block-colors .generic-colors-right p {
  margin: 0px 0px 5px;
  color: #085280;
}
.generic-block-colors .generic-colors-left ul, .generic-block-colors .generic-colors-right ul {
  padding-bottom: 0px;
}
.generic-block-colors .generic-colors-left ul li, .generic-block-colors .generic-colors-right ul li {
  line-height: 1.4em;
}
/* END - Generic Block Colors */
/* START - Generic Image/Text Container */
.generic-image-text {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgb(236, 235, 238);
  padding: 20px;
  margin-bottom: 20px;
}
.generic-image-text.git-no-border {
  border: 0;
  padding: 0;
}
.generic-image-text img {
  float: left;
  width: 120px;
}
.generic-image-text div.git-text {
  float: left;
  width: calc(-120px + 100%);
  padding-left: 20px;
  margin: 0px;
  color: rgb(0, 0, 0);
  font-size: 16px;
}
.generic-image-text div.git-text div {
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .generic-image-text {
    display: block;
    text-align: center;
  }
  .generic-image-text img {
    float: none;
    width: 120px;
  }
  .generic-image-text div.git-text {
    float: none;
    width: 100%;
    padding: 10px 0 0 0;
  }
}
/* END - Generic Image/Text Container */
/* START - Generic Image Container */
.generic-image-container {}
.generic-image-container-left, .generic-image-container-right {
  padding: 0px;
  border: 1px solid #EDEBE9;
}
.generic-image-container-left a, .generic-image-container-right a {
  width: 100%;
  text-align: center;
  display: table;
}
/* END - Generic Image Container */
/*** END - Credit Risk Transfer CSS, 08/26/2019 by sjvesapogu ***/
/*** START - BMBS News and Announcements - Responsive Table CSS, 01/10/2020 by sjvesapogu ***/
/* /portal/funding-the-market/mbs/news/2020/property-valuation-method-umbs-011020.html */
.responsive-table.responsive-table-mbs thead th, .responsive-table.responsive-table-mbs thead td, .responsive-table.responsive-table-mbs tbody th, .responsive-table.responsive-table-mbs tbody td {
  vertical-align: top;
}
@media (min-width: 992px) {
  .responsive-table.responsive-table-mbs thead th, .responsive-table.responsive-table-mbs thead td, .responsive-table.responsive-table-mbs tbody th, .responsive-table.responsive-table-mbs tbody td {
    padding-left: .5em;
  }
}
@media (min-width: 1200px) {
  .responsive-table.responsive-table-mbs thead th, .responsive-table.responsive-table-mbs thead td, .responsive-table.responsive-table-mbs tbody th, .responsive-table.responsive-table-mbs tbody td {
    padding-left: .5em;
  }
}
@media (min-width: 1920px) {
  .responsive-table.responsive-table-mbs thead th, .responsive-table.responsive-table-mbs thead td, .responsive-table.responsive-table-mbs tbody th, .responsive-table.responsive-table-mbs tbody td {
    padding-left: .5em;
  }
}
/* /portal/funding-the-market/mbs/news/2020/libor-transition-arm-index-update-020520.html */
table.responsive-table.responsive-table-mbs ul {
  margin: 0;
  padding: 0;
}
table.responsive-table.responsive-table-mbs ul li {
  line-height: 1.4em;
  list-style-type: none;
  position: relative;
  margin-bottom: 5px;
}
table.responsive-table.responsive-table-mbs ul li:last-child {
  margin-bottom: 0;
}
table.responsive-table.responsive-table-mbs ul li:before {
  content: "\2022";
  margin-right: 5px;
}
@media (min-width: 992px) {
  table.responsive-table.responsive-table-mbs ul {
    margin: 0 0 0 20px;
    padding: 0;
  }
  table.responsive-table.responsive-table-mbs ul li {
    list-style-type: disc;
  }
  table.responsive-table.responsive-table-mbs ul li:before {
    content: "";
    margin-right: 0;
  }
}
/*** END - MBS News and Announcements - Responsive Table CSS, 01/10/2020 by sjvesapogu ***/
/*** START - Generic Carousel2 CSS, 01/15/2020 by sjvesapogu ***/
.generic-carousel2 {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  width: 100%;
  height: 480px;
  padding: 30px 30px 50px 30px;
  margin: 0 0 30px 0;
}
@media (min-width: 620px) {
  .generic-carousel2 {
    width: 100%;
    height: 450px;
  }
}
@media (min-width: 992px) {
  .generic-carousel2 {
    width: 100%;
    height: 310px;
  }
}
@media (min-width: 1050px) {
  .generic-carousel2 {
    width: 100%;
    height: 310px;
  }
}
@media (min-width: 1200px) {
  .generic-carousel2 {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .generic-carousel2 {
    width: 100%;
    height: auto;
  }
}
/* Carousel Controls */
.generic-carousel2 .generic-carousel2-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  z-index: 5;
}
.generic-carousel2 .generic-carousel2-controls.gcc-arrows-position {
  bottom: auto;
  top: 22%;
}
@media (max-width: 991px) {
  .generic-carousel2 .generic-carousel2-controls.gcc-arrows-position {
    top: 15%;
  }
}
/* Carousel Navigation */
.generic-carousel2-controls .generic-carousel2-nav, .generic-carousel2-controls .generic-carousel2-nav:hover {
  height: 12px;
  width: 12px;
  background: #00acdc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  position: relative;
  cursor: pointer;
}
.generic-carousel2-controls .generic-carousel2-nav.gc2-active-item, .generic-carousel2-controls .generic-carousel2-nav.gc2-active-item:hover {
  height: 12px;
  width: 12px;
  top: 0px;
  background: #ffffff;
  border: 2px solid #00acdc;
}
/* Carousel Items */
.generic-carousel2 .generic-carousel2-item {
  color: #238195;
  background-color: transparent;
  display: inline-block;
  float: left;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
}
/** START - Carousel Content **/
.generic-carousel2-item .carousel2-content {
  display: block;
}
.carousel2-content .carousel2-content-left {
  float: none;
  margin-right: 0;
  width: 100%;
  height: auto;
}
.carousel2-content .carousel2-content-left img {
  width: 100%;
  object-fit: cover;
}
.carousel2-content .carousel2-content-right {
  float: none;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.carousel2-content-right .carousel2-content-right-text {
  color: #000f2b;
  line-height: 1.4em;
  font-size: 18px;
  font-family: "Glypha LT Pro W01 Bold";
}
.carousel2-content-right .carousel2-content-right-description {
  color: #121212;
  line-height: 1.6em;
  margin-top: 10px;
}
.carousel2-content-right a {
  font-size: 16px;
  margin-top: 15px;
  display: block;
}
.carousel2-content-right a span.fm-arrow-right-circle {
  margin: 0px 0px 0px 5px;
  position: absolute;
  font-size: 20px;
}
@media (min-width: 475px) {
  .carousel2-content .carousel2-content-left {
    height: 200px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .generic-carousel2-item .carousel2-content {
    display: block;
  }
  .carousel2-content .carousel2-content-left {
    float: none;
    margin-right: 0;
    width: 100%;
    height: 200px;
  }
  .carousel2-content .carousel2-content-right {
    float: none;
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .generic-carousel2-item .carousel2-content {
    display: flex;
  }
  .carousel2-content .carousel2-content-left {
    float: left;
    margin-right: 40px;
    width: 350px;
    height: auto;
  }
  .carousel2-content .carousel2-content-right {
    float: left;
    width: calc(100% - 350px);
    margin-top: 0px;
    text-align: left;
  }
}
/** END - Carousel Content **/
/*** END - Generic Carousel2 CSS, 01/15/2020 by sjvesapogu ***/
/*** START - Generic Text and Video, 02/11/2020 by sjvesapogu ***/
/* /portal/funding-the-market/credit-risk/credit-risk-management.html */
/* /portal/funding-the-market/credit-risk/multifamily/mf-credit-risk-transfer.html */
.generic-text-video-container {
  margin-bottom: 30px;
}
.generic-text-video-container .row {
  display: flex;
  flex-wrap: wrap;
}
.generic-text-video-container .generic-text1, .generic-text-video-container .generic-video1, .generic-text-video-container .generic-text2, .generic-text-video-container .generic-video2 {
  padding: 0;
  margin: 0;
}
.generic-text-video-container .generic-text1 {
  order: 1;
}
.generic-text-video-container .generic-video1 {
  order: 2;
}
.generic-text-video-container .generic-text2 {
  order: 3;
}
.generic-text-video-container .generic-video2 {
  order: 4;
}
.generic-text-video-container h4 {
  font-size: 20px;
	font-weight: 600;
}
.generic-text-video-container h4 sup.note {
  font-family: arial;
  font-size: 16px;
}
.generic-text-video-container .generic-text2 h4 {
  margin-top: 30px;
}
.generic-text-video-container .crm-tools-image {
  background: #000f2b;
  height: 180px;
}
@media (min-width: 1200px) {
  .generic-text-video-container .generic-text1, .generic-text-video-container .generic-video1 {
    margin: 0;
    padding: 0 11px 0 0;
  }
  .generic-text-video-container .generic-text2, .generic-text-video-container .generic-video2 {
    margin: 0;
    padding: 0 0 0 11px;
  }
  .generic-text-video-container .generic-text1 {
    order: 1;
  }
  .generic-text-video-container .generic-video1 {
    order: 3;
  }
  .generic-text-video-container .generic-text2 {
    order: 2;
  }
  .generic-text-video-container .generic-video2 {
    order: 4;
  }
  .generic-text-video-container .generic-text2 h4 {
    margin-top: 10px;
  }
}
/* Only for the image /resources/img/credit-risk-video-pic1.jpg */
.generic-text-video-container .crm-tools-image.cti-bg-green {
  background: #7AA780;
}
.generic-text-video-container .crm-tools-image img {
  width: 300px;
  padding: 33px 0px;
  height: auto;
}
/*** END - Generic Text and Video, 02/11/2020 by sjvesapogu ***/
                                                           
/*** START - Generic Text and Embed Video, 02/27/2020 by sjvesapogu ***/
/* /portal/funding-the-market/credit-risk/credit-risk-management.html */                                                            
.generic-text-embed-video .row{display: flex; flex-wrap: wrap;}
                                                            
.generic-text-embed-video .generic-embed-video{float: none; padding-left: 15px; padding-bottom: 30px; order: 2;}
.generic-text-embed-video .generic-embed-video .generic-video-tile{width: 100%;}
.generic-text-embed-video .generic-embed-video .generic-video-tile iframe{height: 140px;}
                                                            
.generic-text-embed-video .generic-text-left{margin-bottom: 10px; padding-left: 15px; order: 1;}
                                                            
.generic-text-embed-video .generic-text-bottom{order: 3;}
.generic-text-embed-video .generic-text-bottom h5{margin: 0 15px 5px 15px;}
.generic-text-embed-video .generic-text-bottom p{margin: 0 15px 20px 15px;}
                                                            
@media (min-width: 768px){     
    .generic-text-embed-video .generic-embed-video .generic-video-tile iframe{height: 225px;}
}
@media (min-width: 992px){     
    .generic-text-embed-video .row{display: block;}
  
    .generic-text-embed-video .generic-embed-video{float: right; padding-left: 30px; padding-bottom: 20px;}
    .generic-text-embed-video .generic-embed-video .generic-video-tile iframe{height: 127px;}
  
    .generic-text-embed-video .generic-text-left{float: none; margin-bottom: 0; padding-left: 15px; padding-right: 0; width: auto;}    
  
    .generic-text-embed-video .generic-text-bottom{display: inline;}
}
@media (min-width: 1200px){
    .generic-text-embed-video .generic-embed-video .generic-video-tile iframe{height: 185px;}
}                                                            
/*** END - Generic Text and Embed Video, 02/27/2020 by sjvesapogu ***/

/*** START - Online Privacy Notice - Responsive Table CSS, 04/28/2020 by sjvesapogu ***/
/* /portal/privacy-statement.html */
.responsive-table.responsive-table-ps thead th, .responsive-table.responsive-table-ps thead td, 
.responsive-table.responsive-table-ps tbody th, .responsive-table.responsive-table-ps tbody td {
  vertical-align: top; text-align: left;
}
@media (min-width: 992px) {
  .responsive-table.responsive-table-ps thead th, .responsive-table.responsive-table-ps thead td, 
  .responsive-table.responsive-table-ps tbody th, .responsive-table.responsive-table-ps tbody td {
    padding-left: .5em;
  }
}
@media (min-width: 1200px) {
  .responsive-table.responsive-table-ps thead th, .responsive-table.responsive-table-ps thead td, 
  .responsive-table.responsive-table-ps tbody th, .responsive-table.responsive-table-ps tbody td {
    padding-left: .5em;
  }
}
@media (min-width: 1920px) {
  .responsive-table.responsive-table-ps thead th, .responsive-table.responsive-table-ps thead td, 
  .responsive-table.responsive-table-ps tbody th, .responsive-table.responsive-table-ps tbody td {
    padding-left: .5em;
  }
}

@media (min-width: 992px) {
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell1{width: 25%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell2{width: 30%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell3{width: 10%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell4{width: 45%;}
}
@media (max-width: 991px) {
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell1{width: 100%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell2{width: 100%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell3{width: 100%;}
  table.responsive-table.responsive-table-ps tbody tr td.ps-td-cell4{width: 100%;}
}

.responsive-table.responsive-table-ps tbody td[data-title]:before, .responsive-table.responsive-table-ps tbody th[data-title]:before{
    content: attr(data-title); float: none; font-size: 14px; color: #000f2b; text-align: left; font-weight: bold; display: block; margin-bottom: 5px;
}
@media (min-width: 992px){
  .responsive-table.responsive-table-ps tbody td[data-title]:before, .responsive-table.responsive-table-ps tbody th[data-title]:before{content: none;}
}
	
.responsive-table.responsive-table-ps tbody td ul{margin-left: 0; padding: 10px 0 10px 12px;}
.responsive-table.responsive-table-ps tbody td ul li{line-height: 1em; margin-bottom: 5px;}
.responsive-table.responsive-table-ps tbody td ul li:last-child{margin-bottom: 0px;}
/*** END - Online Privacy Notice - Responsive Table CSS, 04/28/2020 by sjvesapogu ***/

table.responsive-table.privacy-responsive-table thead tr th, table.responsive-table.privacy-responsive-table thead tr td, table.responsive-table.privacy-responsive-table tbody tr td, table.responsive-table.privacy-responsive-table tbody tr th {
  vertical-align: top;
  padding: 10px;
}
@media (min-width: 992px) {
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell1 {
    width: 20%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell2 {
    width: 30%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell3 {
    width: 10%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell4 {
    width: 40%;
  }
}
@media (max-width: 991px) {
  table.responsive-table.privacy-responsive-table tbody tr td {
    text-align: left;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell1 {
    width: 100%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell2 {
    width: 100%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell3 {
    width: 100%;
  }
  table.responsive-table.privacy-responsive-table tbody tr td.td-cell4 {
    width: 100%;
  }
}