er@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: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-family: "Univers LT W01_65 Bold1475968";
}

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: #000;
  border-bottom-color: #000;
  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: 14px/1.2 "Univers LT W01_55 Roman1475956", "Arial", sans-serif;
  color: #000f2b;
}

small {
  font-size: 85%;
}

strong {
  font-weight: normal;
  font-family: "Univers LT W01_65 Bold1475968";
}

em {
  font-style: normal;
  font-family:"Univers LT W01_55 Obliq1475962";
}

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: normal;
  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: normal;
}

h2 {
  font-size: 30px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

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 {
  margin: 0 0 20px;
}

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: "Univers LT W01_65 Bold1475968";
}

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: "Univers LT W01_55 Roman1475956", "Arial", sans-serif;
}

.font-sans.font-oblique, .font-oblique {
  font-family: 'Univers LT W01_55 Obliq1475962';
}

.font-sans.font-bold, .font-bold {
  font-family: "Univers LT W01_65 Bold1475968", "Arial", sans-serif;
}

.font-sans.font-bold.font-oblique, .font-bold.font-oblique {
  font-family: 'Univers LT W01_65 Bold_1475974';
}

.font-sans.font-light, .font-light {
  font-family: 'Univers LT W01_45 Light1475944';
}

.font-sans.font-light.font-oblique, .font-light.font-oblique {
  font-family: 'Univers LT W01_45 Light1475950';
}

.font-sans.font-black, .font-black {
  font-family: 'Univers LT W01_75 Black1475980';
}

.font-sans.font-black.font-oblique, .font-black.font-oblique {
  font-family: 'Univers LT W01_75 Black1475986';
}

.font-serif {
  font-family: "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
}

.font-serif.font-oblique {
  font-family: 'Glypha LT Pro W01 Italic';
}

.font-serif.font-bold {
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}

.font-serif.font-bold.font-oblique {
  font-family: 'Glypha LT Pro W01 Bold Italic';
}

.font-serif.font-light {
  font-family: 'Glypha LT Pro W01 Light';
}

.font-serif.font-light.font-oblique {
  font-family: 'Glypha LT Pro W01 Light Italic';
}

.font-serif.font-thin {
  font-family: 'Glypha LT Pro W01 Thin';
}

.font-serif.font-thin.font-oblique {
  font-family: 'Glypha LT Pro W01 Thin Italic';
}

.font-serif.font-black {
  font-family: 'Glypha LT Pro W01 Black';
}

.font-serif.font-black.font-oblique {
  font-family: 'Glypha LT Pro W01 Black Italic';
}

/*lists*/
nav ul, nav ol {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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: 15px;
  color: #999999;
}

label,
input,
button,
select,
textarea {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

input,
button,
select,
textarea {
  font-family: "Univers LT W01_55 Roman1475956", "Arial", sans-serif;
}

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: 16px;
  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;
}

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: white;
}
@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%;
    width: 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: #ecebee;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.article-wrapper {
  background: white;
}

.banner {
  background: #000f2b;
  color: #fff;
  font-size: 16px;
  font-family: "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
  text-align: center;
  min-width: 160px;
  padding: 10px;
  z-index: 15;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
}

.b-white {
  background: white;
  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: white;
  border-color: white;
}
.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: white !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 (win-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: white;
  stroke: white;
}
@media only screen and (max-width: 400px) {
  .site-logo svg {
    width: 150px;
    height: auto;
  }
}

[fm-sticky-header] .wrapper {
  display: block;
  background: #ecebee;
  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 {
  font-family: "Glypha LT Pro W01 Regular", "Georgia", "Century", serif;
  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: 16px;
  color: #007697;
  display: block;
  text-align: right;
}
.cta:hover {
  color: white;
}
.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: white;
}
.dark-bg .fm-title a {
  color: white;
}
.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: white;
}
.dark-bg a:visited {
  opacity: 0.75;
}
.dark-bg a.color-white {
  color: white;
}
.dark-bg a.color-white:hover {
  color: #00acdc;
}

.white-bg {
  background: white;
  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: white;
}

.color-white a, a.color-white {
  color: white;
}
.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: white;
}
.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: white;
}
.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: #ecebee;
}

.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;
  height: 2px;
  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;
}
@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;
  margin: 0;
  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: 14px;
}
@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: white;
}
.menu-sites .toggle-sites span.icon {
  position: absolute;
  right: 30px;
  top: 6px;
}
@media screen only 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: white;
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  .sites-list a:hover h2, .open .sites-list a:hover h2 {
    color: black;
  }
  .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: white;
}
@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: black;
  }
}
.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: white;
}
@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: white;
  }
}
.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: white;
  }
}
@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: white;
  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: white;
}
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: white;
}

.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: 14px;
  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: 25px;
  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: 12px;
  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 10px;
}
.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 30px;
  }
}
@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: #000;
  content: "\f0da";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  position: relative;
  right: -7px;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  color: #000;
}
.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: "Univers LT W01_65 Bold1475968", "Arial", sans-serif;
  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 #ecebee;
  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-weight:normal;
  border: 1px solid #ecebee;
}

@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: "Univers LT W01_65 Bold1475968", "Arial", sans-serif;
}
.responsive-table tbody td {
  text-align: right;
}
@media (min-width: 768px) {
  .responsive-table tbody td {
    border-bottom: 1px solid #ecebee;
  }
}
@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;
  }
}

.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: white;
  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: white;
  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: white 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: white;
  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;
}

.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;
}
@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: white;
  font-family: "Glypha LT Pro W01 Bold", "Georgia", "Century", serif;
  font-size: 22px;
  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%;
  }
}
@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:18px;
	line-height:22px;
  }
}
@media (min-width: 1200px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 22px;
    line-height: 26px;
    padding-right: 0;
  }
}

@media (min-width: 1600px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 26px;
    line-height: 30px;
    padding-right: 260px;
	width:85%;
  }
}
@media (min-width: 2000px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 30px;
    line-height: 34px;
    padding-right: 260px;
	width:80%;
  }
}
@media (min-width: 2400px) {
  .pane-homepage-slider-slider-home .fm-carousel-caption h4 {
    font-size: 34px;
    line-height: 38px;
    padding-right: 260px;
	width:80%;
  }
}
.pane-homepage-slider-slider-home .fm-carousel-caption .icon:before {
  font-size: 75%;
}
.pane-homepage-slider-slider-home .fm-carousel-caption a {
  color: white;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
}

.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: white;
}
.fm-basic-carousel-wrap.theme-2 .fm-basic-carousel a:hover {
  color: white;
}
.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: white;
  border-color: white;
}
.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: white;
}
.news-teaser.dark-bg a:hover {
  color: #007697;
}
.news-teaser.dark-bg a.more {
  color: #00acdc;
}
.news-teaser.dark-bg a.more:hover {
  color: white;
}
.news-teaser.dark-bg .fm-date {
  color: white;
}
.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: white;
}
.news-teaser .cta + .fm-carousel-controls span.active {
  border-color: white;
  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: 18px;
}
@media (min-width: 768px) {
  section.overview .caption p {
    font-size: 22px;
	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: white;
  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: 16px;
}
.rail-navigation ul.link-listing li a.active {
  cursor: default;
  color: white;
}
.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: white;
}
.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: black;
  line-height: 1.8;
}
.rich-text-block p.p-margin-b0 {
  margin-bottom: 0;
}
.rich-text-block h2 {
  font-size: 26px;
  margin: 0 0 20px;
}
.rich-text-block h3 {
  font-size: 18px;
  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: 14px;
  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: white;
}
@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: white 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: white;
  }
}
.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;
}

@media (min-width: 992px) {
  .fm-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .fm-title {
    font-size: 22px;
  }
}
.fm-date {
  font-size: 12px;
  display: block;
}

.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: white;
}
.white-bg .cta:hover {
  color: white;
}

.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: #000;
  display: inline;
  font-size: 12px;
  line-height: 18px;
  margin: 0 5px;
}
.social-share li:last-child {
  margin-right: 0;
}
.social-share span {
  color: #000;
  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: 15px; 
		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: 15px; 
		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: 15px; 
		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: white;
  border-color: white;
}
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: 16;
}
/* 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: #ecebee;
}
/* 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: white;
  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: 24px/1.2 "Univers LT W01_55 Roman1475956", "Arial", sans-serif;
}
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: normal;
	color:#00acdc;
}

#debtCal {
	min-width: 100%;
	width: auto;
	width: 100%;
	height: auto;
	display: block;
	padding: 0;
	margin: 0 0 16px 0;
	border: 1px solid #;
	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: "Univers LT W01_55 Roman1475956", "Arial", sans-serif;
	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;}
} 

/*credit-risk-management.html */
/*Demo our industry-leading, cutting-edge tools*/
.crm-tools-container{width: 100%; overflow: hidden; margin-bottom: 40px;}
.crm-tools-container-left{width: 100%; margin-right: 0; float: left;}
.crm-tools-container-right{width: 100%; margin-left: 0; float: left;}
.crm-tools-container-right h4{margin-top: 50px;}

.crm-tools-container-left h4 sup.note, .crm-tools-container-right h4 sup.note{font-family: arial; font-size: 15px;}
.crm-tools-container-left p, .crm-tools-container-right p, .crm-tools-container-left p.crm-tools-text-left, .crm-tools-container-right p.crm-tools-text-right{height: auto;}
.crm-tools-container-left .crm-tools-image, .crm-tools-container-right .crm-tools-image{background: #7AA780; height: 180px; text-align: center; width: 100%;}
.crm-tools-container-left .crm-tools-image img, .crm-tools-container-right .crm-tools-image img{width: 300px; padding: 33px 0px; height: auto;}

@media (min-width: 1200px){
  .crm-tools-container-left{width: calc(50% - 10px); margin-right: 10px;}
  .crm-tools-container-right{width: calc(50% - 10px); margin-left: 10px;}
  .crm-tools-container-right h4{margin-top: 10px;}
  
  .crm-tools-container-left p, .crm-tools-container-right p{min-height: 126px;}
  .crm-tools-container-left p.crm-tools-text-left{min-height: 100px;}
  .crm-tools-container-right p.crm-tools-text-right{min-height: 123px;}
}
@media (min-width: 1401px){
  .crm-tools-container-left p, .crm-tools-container-right p{min-height: 100px;}
}

/* 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: normal; 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: black; 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;}
/* END - FM Toggle Container */
/*** 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: black; 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 - 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: 0px; margin-bottom: 15px;}
.callout-box p.callout-box-description{font-size: 15px; line-height: 1.6em; padding: 0px; margin-bottom: 15px;}

.callout-box ul.callout-box-points{padding: 0px; margin: 0px;}
.callout-box ul.callout-box-points li{font-size: 15px; line-height: 1.4em; margin-left: 17px;}
.callout-box ul.callout-box-points li:not(:last-child){padding-bottom: 10px;}
.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: 0px;}
.callout-box p.callout-promo-description{color: #ffffff; font-size: 15px; line-height: 1.3; padding: 0; margin-bottom: 10px;}

.callout-box ul.callout-promo-points{padding: 0px; margin: 0px;}
.callout-box ul.callout-promo-points li{list-style: none;}
.callout-box ul.callout-promo-points li a{color: #00acdc; font-size: 15px;}

@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 - 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 #ecebee;}
    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 #ecebee; 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 #ecebee; border-bottom: 1px solid #ecebee;}

.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: 0px; margin-bottom: 20px;}

.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 .row{border-left: 1px solid #ecebee; display: flex; flex-wrap: wrap; margin-bottom: 20px; /* Wrap after the items fill the row */}
.generic-flex-table .container-fluid .row .generic-flex-table-cell{padding: 10px; border-right: 1px solid #ecebee; border-bottom: 1px solid #ecebee; text-align: center;}

.awards-achievements-table .aat-height110{height: 110px;}
.awards-achievements-table .aat-height120{height: 120px;}
@media screen and (max-width:991px){
.awards-achievements-table .aat-height110,
.awards-achievements-table .aat-height120{height: auto;}

.awards-achievements-table div:last-child{margin-top: 10px;}
}
/* END - Awards & Achievements Page CSS, 11/01/2017 by sjvesapogu */


/* START - MBS Prospectuses Page CSS, 11/21/2017 by sjvesapogu */
.fm-toggle-container .fm-toggle-wrapper a.fm-toggle-header.multifamily-fm-toggle-header{font-weight: normal; 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;}
@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;}
}
@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 #ecebee;}
    table.responsive-table.mbs-prospectus-table tbody tr td{width: 100%; border-bottom: 0; text-align: left;}
}

.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, 11/21/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;
}
}

/* START - Corporate News Page CSS, 01/24/2018 by sjvesapogu */