/*==============================================================================
=                                Globals                                       =
==============================================================================*/
/*============================== Colors ======================================*/
/*============================== Typography ==================================*/
body {
  font-family: "akagi-pro", sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: 300;
  color: #636466;
}
sup {
  font-size: 65%;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: #00457c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00457c;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.btn-blue {
  display: inline-block;
  padding: 8px 12px 5px;
  margin-top: 15px;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1;
  transition: .2s;
  text-transform: uppercase;
  color: #fff;
  background: #199de6;
}
.btn-blue:hover,
.btn-blue:focus {
  color: #fff;
  background: #1584c1;
}
hr {
  border-color: #00457c;
}
/*============================== Helper Classes ==============================*/
.wf-loading {
  visibility: hidden !important;
}
.wf-active,
.wf-inactive {
  visibility: visible !important;
}
.mt0 {
  margin-top: 0;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
/*==============================================================================
=                                Header                                        =
==============================================================================*/
/*============================== Common ======================================*/
header {
  position: relative;
  background: #fff;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25);
}
header .logo {
  padding-right: 50px;
}
header .logo a {
  display: block;
  width: 291px;
  max-width: 100%;
  padding: 13px 0;
}
.background-utility {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 43px;
  -webkit-transition: background .2s;
  -moz-transition: background .2s;
  -ms-transition: background .2s;
  -o-transition: background .2s;
  transition: background .2s;
}
/*============================== Home ========================================*/
/*============================== Interior ====================================*/
.main-content h1 + h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
/*==============================================================================
=                                Navigation                                    =
==============================================================================*/
/*============================== Off Canvas ==================================*/
@media screen and (max-width: 767px) {
  .top-bar.oc-js.active {
    position: static;
  }
  .oc-container {
    position: absolute;
    top: 0;
    min-height: 100%;
  }
  .oc-overlay {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .oc-overlay.active {
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.8);
  }
  #oc-icon {
    position: absolute;
    top: 10px;
    right: 7px;
    z-index: 21;
    display: block;
    width: 50px;
    height: 41px;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: top 0s;
    -moz-transition: top 0s;
    -o-transition: top 0s;
    transition: top 0s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  #oc-icon span {
    position: absolute;
    left: 8px;
    display: block;
    width: 34px;
    height: 6px;
    background: #000;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  #oc-icon span.bar1 {
    top: 8px;
  }
  #oc-icon span.bar2,
  #oc-icon span.bar3 {
    top: 18px;
  }
  #oc-icon span.bar4 {
    top: 28px;
  }
  #oc-icon.active span.bar1 {
    top: 18px;
    left: 50%;
    width: 0;
  }
  #oc-icon.active span {
    background: #fff;
  }
  #oc-icon.active:hover span {
    background: #fff;
  }
  #oc-icon.active span.bar2,
  #oc-icon.active span.bar3 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #oc-icon.active span.bar3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #oc-icon.active span.bar4 {
    top: 18px;
    left: 50%;
    width: 0;
  }
  .oc-left {
    left: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-transition: left 0.2s linear;
    -moz-transition: left 0.2s linear;
    -o-transition: left 0.2s linear;
    transition: left 0.2s linear;
  }
  .oc-left.active {
    left: -75%;
    z-index: 1;
    overflow-x: visible;
  }
  nav.oc-right {
    right: -75%;
    width: 75%;
    background-color: #fff;
  }
  nav.oc-right.active {
    z-index: 9999;
  }
  /*----------  Nav Globals  ----------*/
  nav.oc-right > ul {
    height: 100%;
  }
  nav.oc-right ul li {
    position: relative;
  }
  nav.oc-right ul ul {
    display: none;
  }
  nav.oc-right > ul li.active > ul {
    display: block;
  }
  nav.oc-right ul li a {
    display: block;
    padding: 10px 41px 10px 15px;
    color: #333;
    border-bottom: 1px solid #ddd;
  }
  nav.oc-right li > span.oc-toggle.glyphicon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 22;
    display: block;
    width: 46px;
    height: 46px;
    padding: 14px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
  }
  nav.oc-right li > span.oc-toggle.glyphicon-plus {
    color: #000;
    background-color: #eee;
  }
  nav.oc-right li > span.oc-toggle.glyphicon-minus {
    color: #fff;
    background-color: #000;
  }
  /*----------  First Level  ----------*/
  nav.oc-right > ul > li {
    display: block;
  }
  nav.oc-right > ul > li > a {
    font-weight: bold;
  }
  nav.oc-right > ul > li.active > a {
    color: #999;
  }
  /*----------  Second Level  ----------*/
  nav.oc-right > ul > li > ul li span.oc-toggle.glyphicon-minus,
  nav.oc-right > ul > li.active > ul li span.oc-toggle.glyphicon-minus {
    color: #000;
    background: #eee;
  }
  nav.oc-right > ul ul li > a {
    padding-left: 25px;
    background: #fafafa;
  }
  /*----------  Third Level   ----------*/
  nav.oc-right > ul ul ul li a {
    padding: 5px 26px 5px 39px;
    font-size: 13px;
    background: #f4f4f4;
    background-image: url("/site/templates/_assets/img/nav/right-arrow-aaa.png");
    background-repeat: no-repeat;
    background-position: 21px 6.5px;
  }
  nav.oc-right > ul ul ul li.active > a,
  nav.oc-right > ul ul ul li:hover > a {
    color: #000;
    background-image: url("/site/templates/_assets/img/nav/right-arrow-aaa.png");
  }
  nav.oc-right > ul ul ul li > span.oc-toggle.glyphicon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 22;
    display: block;
    width: 41px;
    height: 28.5px;
    padding: 7.5px 14.5px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    background-color: #d1d1d1;
  }
  /*----------  Fourth Level  ----------*/
  nav.oc-right > ul ul ul ul li > a {
    padding: 5px 26px 5px 53px;
    font-size: 13px;
    background: #eee;
    background-image: url("/site/templates/_assets/img/nav/dash-aaa.png");
    background-repeat: no-repeat;
    background-position: 35px 6.5px;
  }
  nav.oc-right > ul ul ul ul li.active > a,
  nav.oc-right > ul ul ul ul li:hover > a {
    color: #000;
    background-image: url("/site/templates/_assets/img/nav/dash-aaa.png");
  }
}
@media screen and (min-width: 768px) {
  #oc-icon {
    display: none;
  }
  .container-nav {
    width: 750px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .container-nav {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  .container-nav {
    width: 1170px;
  }
}
/*============================== Common ======================================*/
/*============================== Top Navigation ==============================*/
/*============================== Side Navigation =============================*/
/*============================== Bottom Navigation ===========================*/
/*==============================================================================
=                                Footer                                        =
==============================================================================*/
/*============================== Common ======================================*/
footer p,
footer a {
  font-size: 16px;
  color: #00457c;
}
/*============================== Home ========================================*/
#pg-1 footer hr {
  display: none;
}
#pg-1 footer p,
#pg-1 footer a {
  color: #fff;
}
/*============================== Interior ====================================*/
/*==============================================================================
=                                Home Page                                     =
==============================================================================*/
#pg-1 {
  overflow-x: hidden;
}
.background-wrapper {
  height: 2000px;
  overflow-y: hidden;
}
.page-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}
img.bg-hudson-river {
  position: relative;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
}
.intro-wrapper {
  font-size: 20px;
  line-height: 1.3;
  color: #00457c;
}
.intro-wrapper h1 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}
.intro-wrapper h2 {
  font-size: 22px;
}
.feature-wrapper {
  position: relative;
  padding: 40px 0 0;
  margin: 50px 0;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}
.feature-wrapper .blue-multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #199de6;
  mix-blend-mode: multiply;
}
.feature-wrapper .feature-box {
  float: none;
  max-width: 400px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}
.feature-wrapper h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5db5e6;
}
.feature-wrapper a {
  font-weight: 400;
  color: #5db5e6;
}
.feature-wrapper .news li {
  margin-bottom: 10px;
}
.feature-wrapper .news a {
  color: #fff;
}
.feature-wrapper .news a .more {
  color: #5db5e6;
}
/*==============================================================================
=                                Interior                                      =
==============================================================================*/
.main-content {
  padding-bottom: 50px;
}
.main-content h1 {
  margin-top: 30px;
  font-size: 40px;
  text-transform: uppercase;
}
.main-content .back-link {
  display: inline-block;
  margin-top: 30px;
}
.main-content.news-article h1 {
  font-size: 30px;
  text-transform: none;
}
.main-content h2 {
  font-size: 24px;
  font-weight: 600;
}
.main-content table {
  text-align: left;
}
.criteria-box,
.contact-box {
  padding: 15px;
  margin-bottom: 30px;
  background: #e8f5fd;
}
.contact-box .glyphicon-download-alt {
  margin-right: -12px;
}
.contact-box p:last-child {
  margin-bottom: 0;
}
.criteria-box ul {
  padding-left: 30px;
  line-height: 1.1;
  list-style: disc;
}
.criteria-box ul li {
  margin-bottom: 8px;
}
.criteria-box ul li:last-child {
  margin-bottom: 0;
}
.investment.row,
.hf.row {
  margin-right: -30px;
  margin-left: -30px;
}
.investment-box,
.hf-box {
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 50px;
}
.investment-box img,
img.company-logo {
  width: auto;
  height: 80px;
}
.investment-box h2,
.hf-box h2 {
  font-size: 24px;
  font-weight: 600;
}
.investment-box h3,
.hf-box h3 {
  font-size: 19px;
  font-weight: 600;
}
.hf-box h2 + h3 {
  line-height: 1.3;
}
.investment-box a,
.hf-box a {
  font-weight: 400;
}
.hf-box .photo {
  float: left;
  max-width: 40%;
  margin: 24px 15px 5px 0;
}
.table-hover > tbody > tr:hover {
  background-color: #e8f5fd;
}
.transactions.table {
  font-size: 14px;
}
/*==============================================================================
=                                Interior                                      =
==============================================================================*/
.news-year-wrapper .news-year {
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}
h1 + .news-year-wrapper .news-year {
  padding-top: 0;
  border: none;
}
.news-year {
  margin-top: 30px;
}
.news-article-wrapper {
  margin-bottom: 10px;
}
/*==============================================================================
=                                Media Queries                                 =
==============================================================================*/
@media screen and (min-width: 400px) {
  /*============================= Globals ====================================*/
  /*============================= Header =====================================*/
  /*============================= Navigation =================================*/
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .intro-wrapper h2 {
    font-size: 24px;
  }
  /*============================= Interior ===================================*/
  .transactions.table {
    font-size: 16px;
  }
}
@media screen and (min-width: 480px) {
  /*============================= Globals ====================================*/
  /*============================= Header =====================================*/
  /*============================= Navigation =================================*/
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .intro-wrapper {
    margin-top: 20px;
  }
  /*============================= Interior ===================================*/
  .transactions.table {
    font-size: 18px;
  }
}
@media screen and (max-width: 619px) {
  /*============================= Globals ====================================*/
  .col-xxs-12 {
    width: 100%;
  }
  /*============================= Header =====================================*/
  /*============================= Navigation =================================*/
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  /*============================= Interior ===================================*/
}
@media screen and (min-width: 620px) {
  /*============================= Globals ====================================*/
  .xs-h350 {
    height: 350px;
  }
  /*============================= Header =====================================*/
  /*============================= Navigation =================================*/
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .background-wrapper {
    height: 1350px;
  }
  .intro-wrapper {
    margin-bottom: 120px;
  }
  .feature-wrapper .feature-box {
    float: left;
    margin-right: 0;
    margin-bottom: 30px;
    margin-left: 0;
  }
  /*============================= Interior ===================================*/
}
@media screen and (min-width: 768px) {
  /*============================= Globals ====================================*/
  /*============================= Header =====================================*/
  header {
    position: fixed;
    top: 43px;
    z-index: 100;
    width: 100%;
  }
  header .container {
    position: relative;
  }
  header .logo {
    padding-right: 0;
  }
  header .logo a {
    margin: 0 auto;
  }
  .background-utility {
    display: block;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#99000000", endColorstr="#4d000000", GradientType=0);
    /* IE6-9 */
  }
  .background-utility.scrolled {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#cc000000", endColorstr="#80000000", GradientType=0);
    /* IE6-9 */
  }
  /*============================= Navigation =================================*/
  nav.oc-right > ul.main-nav {
    position: relative;
    left: 50%;
    float: left;
    margin-top: -10px;
    font-size: 15px;
    transform: translateX(-50%);
  }
  nav.oc-right > .utility-nav {
    position: absolute;
    top: -39px;
    right: 15px;
    font-size: 15px;
  }
  nav.oc-right > .utility-nav a {
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
  }
  nav.oc-right > ul > li {
    position: relative;
    display: block;
    float: left;
  }
  nav.oc-right > ul.main-nav li.active > a {
    color: #199de6;
  }
  nav.oc-right > ul.main-nav li.active > a:after {
    color: #00457c;
  }
  nav.oc-right > ul > li > a {
    display: block;
    padding: 8px 0;
  }
  nav.oc-right > ul > li > a:after {
    content: " \00a0| \00a0 ";
  }
  nav.oc-right > ul > li:last-child > a:after {
    content: "";
  }
  nav.oc-right > ul > li:hover > ul {
    position: absolute;
  }
  nav.oc-right ul ul {
    display: none;
  }
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .intro-wrapper {
    margin-top: 160px;
  }
  .intro-wrapper h1 {
    font-size: 46px;
  }
  /*============================= Interior ===================================*/
  .main-content h1 {
    margin-top: 40px;
    font-size: 46px;
  }
  .main-content .back-link {
    margin-top: 40px;
  }
  .main-content.news-article h1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  /*============================= Globals ====================================*/
  /*============================= Header =====================================*/
  /*============================= Navigation =================================*/
  nav.oc-right > ul.main-nav {
    font-size: 16px;
  }
  nav.oc-right > ul.utility-nav {
    top: -40px;
    font-size: 16px;
  }
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .background-wrapper {
    height: 1300px;
  }
  .intro-wrapper {
    margin-top: 180px;
    margin-bottom: 140px;
  }
  .intro-wrapper h1 {
    font-size: 52px;
  }
  .intro-wrapper h2 {
    font-size: 26px;
  }
  /*============================= Interior ===================================*/
  .main-content h1 + h2,
  .main-content p {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
  .main-content.full-width p,
  .main-content p.full-width {
    max-width: none;
  }
  .main-content h1 {
    margin-top: 50px;
    font-size: 52px;
  }
  .main-content .back-link {
    margin-top: 50px;
  }
  .main-content.news-article h1 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1200px) {
  /*============================= Globals ====================================*/
  /*============================= Header =====================================*/
  header .logo a {
    width: 338px;
    padding: 25px 0 35px;
    margin: 0;
  }
  /*============================= Navigation =================================*/
  nav.oc-right > ul.main-nav {
    position: absolute;
    top: 34px;
    right: 15px;
    left: initial;
    float: none;
    margin: 0;
    font-size: 17.5px;
    transform: none;
  }
  /*============================= Footer =====================================*/
  /*============================= Home Page ==================================*/
  .intro-wrapper {
    margin-bottom: 182px;
  }
  .intro-wrapper h1 {
    font-size: 56px;
  }
  .intro-wrapper h2 {
    font-size: 28px;
  }
  /*============================= Interior ===================================*/
  .main-content h1 {
    margin-top: 70px;
    font-size: 56px;
  }
  .main-content .back-link {
    margin-top: 70px;
  }
  .main-content.news-article h1 {
    font-size: 36px;
  }
  .main-content h1 + h2 {
    font-size: 19px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1920px) {
  .header-image img.full-width,
  img.bg-hudson-river {
    width: 100%;
    height: auto;
  }
}
@media print {
  a[href]:after {
    content: "";
  }
  a,
  a:before,
  .name,
  .title {
    color: #00457c !important;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #00457c !important;
  }
  abbr[title]:after {
    content: "";
  }
  #nav {
    display: none !important;
  }
  .background-wrapper {
    height: 970px !important;
    overflow: hidden;
  }
  img.bg-hudson-river {
    width: auto !important;
    height: 1000px !important;
    opacity: .25;
  }
  .intro-wrapper h1,
  .intro-wrapper h2,
  .intro-wrapper p {
    color: #00457c !important;
  }
  .feature-wrapper .feature-box {
    float: left !important;
    width: 50% !important;
    margin-bottom: -60px !important;
  }
  .feature-box img {
    display: none;
  }
  .investment-box.eh,
  .hf-box.eh {
    height: auto !important;
  }
}
