/* BRANDING STYLES */
/* Page */
.branding-page {
    background-color: #fff;
    color: #333;
}
/* Links */
a:not(.branding-buttons),
a:link:not(.branding-buttons),
a:visited:not(.branding-buttons),
a:hover:not(.branding-buttons),
a:active:not(.branding-buttons) {
    color: #6095c1;
}
/* Menu */
.branding-menu,
a.branding-menu,
a.branding-menu:link,
a.branding-menu:visited {
    background-color: #084887;
    color: #fff;
}
a.branding-menu:hover,
a.branding-menu:active {
    background-color: #084887;
    color: #6095c1;
}
/* Buttons */
.branding-buttons,
a.branding-buttons,
.branding-buttons-wrapper a,
.branding-buttons-wrapper a:link,
.branding-buttons-wrapper a:visited,
.branding-buttons-wrapper a:hover,
.branding-buttons-wrapper a:active {
    background-color: #6095c1;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #fff;
    opacity: 1 !important;
}
/* Job Search form */
.branding-job-search {
    background-color: #084887;
    color: #fff;
}
/* Job Heading */
.branding-job-heading {
    background-color: #084887;
    color: #fff;
}
/* End of BRANDING STYLES */

/* Fonts */
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Caption');

/* Effects */
.fadeIn{
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn; 

    animation-duration: 1s; 
    -webkit-animation-duration: 1s;

    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     

    visibility: visible !important; 
}
@keyframes fadeIn {
    0% {
        opacity: 0.0;       
    }
    100% {
        opacity: 1; 
    }       
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0.0;       
    }
    100% {
        opacity: 1; 
    }       
}
.slideleft {
    animation-name: slideleft;
    -webkit-animation-name: slideleft;  
    animation-duration: 0.5s;   
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     
    visibility: visible !important; 
}
@keyframes slideleft {
    0% {
        transform: translateX(0%);
    }       
    100% {
        transform: translateX(-80%);
    }
}
@-webkit-keyframes slideleft {
    0% {
        -webkit-transform: translateX(0%);
    }       
    100% {
        -webkit-transform: translateX(-80%);
    }
}
@-moz-eyframes slideleft {
    0% {
        -moz-transform: translateX(0%);
    }       
    100% {
        -moz-transform: translateX(-80%);
    }
}
.slideright {
    animation-name: slideright;
    -webkit-animation-name: slideright; 
    animation-duration: 0.5s;   
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     
    visibility: visible !important;
}
@keyframes slideright {
    0% {
        transform: translateX(-80%);
    }       
    100% {
        transform: translateX(0%);
    }
}
@-webkit-keyframes slideright {
    0% {
        -webkit-transform: translateX(-80%);
    }       
    100% {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes slideright {
    0% {
        -moz-transform: translateX(-80%);
    }       
    100% {
        -moz-transform: translateX(0%);
    }
}

/* Overwrites */
.row { max-width: 1200px; }
.cs_share_text { margin: 0; }
.cs_share_container { float: left; }

/* General styles */
body {
    font-family: 'PT Sans Caption', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
h1, h2, h3, h4 {
    color: #084887;
    font-family: 'PT Sans Caption', sans-serif;
    font-weight: 700;
    margin: 0 0 10px 0;
}
h1 {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 30px 0;
}
h2 {
    font-size: 20px;
    line-height: 20px;
}
h3 {
    font-size: 16px;
    line-height: 16px;
}
h4 {
    font-size: 14px;
    line-height: 14px;
}
p {
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 30px 0;
}
ul, ol { margin: 0 0 30px 20px !important; }
ul li {
    font-size: 14px;
    line-height: 21px;
}
table { margin: 0 0 30px 0; }
a {
    transition:.5s;
    -o-transition:.5s;
    -moz-transition:.5s;
    -ms-transition:.5s;
    -webkit-transition:.5s;
}
a:hover { opacity: 0.7; }
.generic-button { text-align: center; }
a.generic-button,
.generic-button a,
.job__details-apply a {
    border: medium none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    max-width: 400px;
    min-height: 40px;
    line-height: 16px;
    padding: 12px 18px;
    text-align: center;
    width: 100%;
}
.generic-button--gray,
a.generic-button--gray,
.generic-button-outer--gray a {
    background: #7e8b7a;
}
.preloader {
    animation: rotate 0.8s infinite linear;
    border: 6px solid #ccc;
    border-right-color: #333;
    border-radius: 50%;
    height: 28px;
    left: 50%;
    margin: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 28px;
}
@keyframes rotate {
  0%    {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100%  {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
#page-container { visibility: hidden; }
.page-section { margin: 40px 0;}

/* Header section */
#header {
    background: #084887;
    padding: 24px 0;
}
#header.sticky {
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    transition:.5s;
    -o-transition:.5s;
    -moz-transition:.5s;
    -ms-transition:.5s;
    -webkit-transition:.5s;
    width: 100%;
    z-index: 3;
}
.header__logo a:hover { opacity: 1; }
.header__social-contact { text-align: right; }
.header__social a {
    color: #333;
    display: inline-block;
    margin: 0 6px;
}

/* Top / Mobile menu section */
body.show-mobile-menu { overflow: hidden; }
body.show-mobile-menu #page-container {
    transform: translate(-80%,0);
    -moz-transform: translate(-80%,0);
    -webkit-transform: translate(-80%,0);
}
.mobile-menu__burger {
    cursor: pointer;
    float: right;
    font-size: 28px;
    line-height: 28px;
    width: 28px;
}
#top-menu {
    height: 100%;
    padding: 8px 0;
    position: absolute;
    right: -80%;
    top: 0;
    width: 80%;
}
#top-menu ul {
    margin: 0 !important;
    padding: 12px 24px;
    text-align: left;
}
#top-menu ul li {
    line-height: 18px;
    list-style: none;
    margin: 0 0 8px 0;
}
#top-menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}

/* Footer section */
.footer__inner {
    border-top: 1px solid #eee;
    font-size: 12px;
    padding: 46px 0 24px 0;
}
.footer__copy { margin: 0 0 12px 0; }
.footer__copy p {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 12px 0;
}
.footer__copy ul { margin: 0 0 10px 0 !important; }
.footer__copy ul li {
    list-style: none;
    font-size: 12px;
}
.footer__social a {
    color: #333;
    display: inline-block;
    margin: 0 6px;
}
.footer__social-media a {
    display: inline-block;
    font-size: 24px;
    margin: 0 12px 0 0;
}

/* Job Search section */
.cs_item_type_jobsearch.cs_cfix.cs_jsearchform { height: 100%; }
#job-search__form {
    height: 100%;
    padding: 30px;
}
#job-search__form input[type="text"],
#job-search__form select {
    background-color: #fff;
    border: medium none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    height: 40px;
    margin: 0;
}
#job-search__form input[type="submit"] {
    border: medium none;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    line-height: 16px;
    margin: 0 0 12px 0;
    width: 100%;
}
.job-search__form-field {
    /*line-height: 40px;*/
    margin: 0 0 12px 0;
}
.job-search__form-radius { line-height: 40px; }
.job-search__form-radius span {
    display: inline-block;
    line-height: 12px;
    margin: 0 4px;
}
.job-search__form-radius input[type="radio"],
.job-search__form-radius label {
    color: #fff;
    margin: 0;
    vertical-align: middle;
}
.job-search__links { text-align: right; }
.job-search__links span {
    display: inline-block;
    margin: 0 0 0 10px;
}
.job-search__links .fa { margin: 0 4px 0 0; }
.job-search__links a {
    color: #333;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
}
.cs_jsearchform .ui-widget-content {
    border-bottom: 2px solid #eee !important;
    font-family: 'Open Sans', sans-serif;
    /*display: block !important;*/
}
.cs_jsearchform .ui-corner-all {
    border: medium none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.cs_jsearchform .ui-autocomplete-head {
    border-bottom: 2px solid #fff;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}
.cs_jsearchform .cs_srchresults_count { float: none; }
.cs_jsearchform .cs_srchresults_close {
    float: none;
    position: absolute;
    right: 8px;
    top: 6px;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
    background: #eee;
    border: medium none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    margin: 0;
}
.cs_jsearchform a.cs_mtitle,
.cs_jsearchform a.cs_mtitle.ui-state-focus,
.cs_jsearchform a.cs_mtitle.ui-state-active {
    border: medium none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 16px;
}
.cs_jsearchform .cs_mtitle .cs_mjob_title { position: relative; }
.cs_jsearchform .cs_mtitle .ui-icon {
    margin: 0;
    position: absolute;
    top: 0;
}
.cs_jsearchform .cs_mtitle .cs_mjob_titletext { width: 100%; }
.cs_jsearchform .cs_mtitle .cs_mjob_location { padding-left: 18px; }
.cs_jsearchform .ui-autocomplete-foot a,
.cs_jsearchform .ui-autocomplete-foot a.ui-state-focus,
.cs_jsearchform .ui-autocomplete-foot a.ui-state-active {
    font-size: 12px;
    line-height: 18px;
}
.cs_jsearchform .ui-autocomplete-notfound {
    font-size: 12px;
    line-height: 18px;
    padding: 4px;
    width: 100%;
}

/* Home page */
/* Hero Images section */
.hero-images__item {
    background: #000;
    position: relative;
}
.hero-images__item img {
    opacity: 1;
    width: 100%;
}
.hero-images__item-copy {
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}
.hero-images__item-image { position: relative; }
.hero-images__item-image-item a:hover { opacity: 1; }
.hero-images__item-image ul.slick-dots {
    bottom: 36px;
    left: 50%;
    margin: 0;
    position: absolute;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.hero-images__item-image ul.slick-dots li {
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    float: left;
    height: 12px;
    list-style: none;
    margin: 0 6px;
    text-indent: -99999px;
    transition: .5s;
    -o-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -webkit-transition: .5s;
    width: 12px;
}
.hero-images__item-image ul.slick-dots li:hover,
.hero-images__item-image ul.slick-dots li.slick-active {
    background: #6095c1;
}
.career_site_home_page #job-search {
    background: #084887;
    margin: 0;
}
.career_site_home_page #top-menu { margin: 0; }
/* CTA section */
.cta__item { margin: 0 0 20px 0; }
.cta__item img {
    margin: 0 0 10px 0;
    width: 100%;
}
.cta__item-desc {
    overflow: hidden;
}
.cta__item-desc *,
p.blurb {
    display: none;
}
.cta__item-desc p.blurb,
.cta__item-desc p.blurb * {
    display: block;
}
.cta__item-desc p.blurb { margin: 0 0 20px 0; }
/* Pre-Footer section */
#pre-footer img { width: 100%; }

/* Jobs Search page */
.jobs__sidebar-item { margin: 0 0 36px 0; }
.jobs__sidebar-item p { margin: 0 0 12px 0; }
.job-search__welcome {
    background: #6095c1;
    color: #fff;
    height: 100%;
    padding: 24px;
}
.job-search__welcome p {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 12px 0;
}
#jobs iframe { width: 100%; }
.jobs__list-heading { padding: 18px; }
.jobs__list-heading .columns {
    padding-left: 8px;
    padding-right: 8px;
}
.jobs__list-heading h2 {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}
.jobs__list-heading h2 span { font-size: 10px; }
.jobs__list-item {
    border-top: 1px solid #eee;
    padding: 18px 0;
}
.jobs__list-item .row { margin: 0; }
.jobs__list-item .columns {
    padding-left: 8px;
    padding-right: 8px;
}
.jobs__list-item a {
    color: #333;
    font-weight: 700;
}
.jobs__list-item span { font-weight: 700; }
.jobs__list-pagination {
    margin: 40px 0 0 0;
    text-align: right;
}
.jobs__list-pagination .pagination a,
.jobs__list-pagination .pagination span {
    background: none;
    color: #333;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    margin: 0 4px;
    padding: 0;
    text-transform: uppercase;
}
.jobs__list-pagination span.current {
    color: #333;
    font-weight: 700;
}
/* Candidate Notification */
/* Job Alert */
#fancybox-overlay {
    height: 100% !important;
    position: fixed;
}
#fancybox-wrap {
  margin-left: 12px;
  max-width: 90%;
  overflow: hidden;
  padding: 0;
}
#fancybox-wrap #fancybox-outer {
  font-family: Arial,Helvetica,sans-serif !important;
  padding: 20px;
}
#fancybox-wrap #fancybox-outer #fancybox-content { padding: 0; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification #fancybox-title { font-family: 'cera', sans-serif !important; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput .fLabel #search_name_container { max-width: 300px; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput.stringsmall.tm_notification_item_email { line-height: 18px; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput .fLabel {
    color: #000;
    font-size: 14px;
    line-height: 18px;
}
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .fInput {
  margin: 0 !important;
  padding: 0;
}
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification input[type="email"],
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification select {
  background-color: #fff;
  border: 1px solid rgb(238,238,238);
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 12px;
  height: 26px;
  line-height: 20px;
  width: 100%;
}
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification input[type="email"] { padding: 0 8px; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification select {
    padding-bottom: 0;
    padding-left: 8px;
    padding-top: 0;
}
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification .g-recaptcha { margin: 0 0 24px 0; }
#fancybox-wrap #fancybox-outer #fancybox-content #candidateJobNotification button {
    background-color: #6095c1;
    right: 0;
}
#fancybox-wrap #fancybox-outer #fancybox-content br { display: none; }
@media only screen and (min-width : 480px) {
  #fancybox-wrap {
    min-width: 344px;
    width: auto !important;
  }
}
/* Facet Search */
@font-face {font-family: "facetselecticon";
  src:url("/system/production/assets/94304/original/facetselecticon.eot");
  src:url("/system/production/assets/94304/original/facetselecticon.eot?#iefix") format("embedded-opentype"),
  url("/system/production/assets/94305/original/facetselecticon.woff") format("woff"),
  url("/system/production/assets/94306/original/facetselecticon.ttf") format("truetype"),
  url("/system/production/assets/94307/original/facetselecticon.svg#facetselecticon") format("svg");font-weight: normal;font-style: normal;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.facet-loading {
  background-size: contain;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-repeat: no-repeat;
  display: none;
  height: 60px;
  margin: 20px auto;
  padding: 20px 0;
  width: 60px;
}
.facet-loading--dark { background-image: url('../system/production/assets/66627/original/facet-loading-bg--dark.gif'); }
.facet-loading--light { background-image: url('../system/production/assets/66628/original/facet-loading-bg--light.gif'); }
.facet-section { font-size: 14px; }
.facet-section-inner { padding: 0 4px; }
.facet-section h2 {
  border-bottom: 1px solid #000;
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  position: relative;
}
.facet-section h2 span.facet-section__clear-all {
  bottom: 10px;
  font-size: 12px;
  position: absolute;
  right: 10px;
}
.facet-item { margin: 0 0 10px 0; }
.facet-item:last-child { border-bottom: medium none !important; }
.facet-item--collapsed {
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
}
.facet-item__heading h3 {
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  margin: 12px 0;
  position: relative;
}
.minus .facet-item__options { display: block; }
.plus .facet-item__options { display: none; }
.facet-item__options p {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}
a.facet-item__show-more {
  display: inline-block;
  font-size: 14px;
  margin: 10px 0;
}
.facet-item__row--hidden { display: none; }
span.facet-item__heading-expand-collapse {
  bottom: 0;
  font-family: FontAwesome;
  font-size: 12px;
  position: absolute;
  right: 0;
  vertical-align: middle;
  width: 10%;
}
.facet-item--expanded span.facet-item__heading-expand-collapse:after { content: "\f068"; }
.facet-item--collapsed span.facet-item__heading-expand-collapse:after { content: "\f067"; }
.facet-item__options-item {
  border-top: 1px solid rgba(132,131,129,0.25);
  padding: 4px;
  position: relative;
}
.facet-item__options-item a {
    display: block;
    line-height: 24px;
}
.facet-item__heading p {
  font-size: 12px;
  margin: 0;
  padding: 0 10px;
  text-align: right;
}
.facet-item__options-item span { float: left; }
span.facet-item__option-item-count {
  color: #666d70;
  vertical-align: top;
  width: 12%;
}
span.facet-item__option-item-label {
  margin: 0 2% 0 0;
  width: 76%;
}
span.facet-item__options-item-type {
  font-family: 'facetselecticon';
  width: 10%;
}
.tm_ff_wait span.facet-item__option-item-count,
.tm_ff_wait span.facet-item__option-item-label,
.tm_ff_wait span.facet-item__options-item-type {
    color: #ddd !important
}
.facet-item__options-item-type--multi:after { content: "b"; }
.facet-item__options-item-type--selected.facet-item__options-item-type--multi:after { content: "o"; }
.facet-item__options-item-type--single:after { content: "f"; }
.facet-item__options-item-type--selected.facet-item__options-item-type--single:after { content: "g"; }

/* Job page */
.cs_share_text {
    float: left;
    font-size: 12px;
    line-height: 24px;
    margin: 0 8px 0 0;
}
.cs_share_email,
.cs_share_email--manual,
.cs_share_google,
.cs_share_twitter,
.cs_share_facebook,
.cs_share_linkedin {
    height: 24px !important;
    width: 24px !important;
}
.cs_share_email--manual {
    display: block;
    float: left;
    line-height: 20px;
    overflow: hidden;
    padding-top: 2px;
}
a.cs_email_btn,
a.cs_share_google_btn,
a.cs_share_twitter_btn,
a.cs_facebook_btn,
a.cs_share_linkedin_btn {
    background: #fff;
    color: #6095c1;
    display: inline-block;
    height: 24px;
    position: relative;
    width: 24px;
}
a.cs_email_btn:after,
a.cs_share_google_btn:after,
a.cs_share_twitter_btn:after,
a.cs_facebook_btn:after,
a.cs_share_linkedin_btn:after {
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
a.cs_email_btn:after { content: "\f003"; }
a.cs_share_google_btn:after { content: "\f0d5"; }
a.cs_share_twitter_btn:after { content: "\f099"; }
a.cs_facebook_btn:after { content: "\f09a"; }
a.cs_share_linkedin_btn:after { content: "\f0e1"; }
.job__details-apply { text-align: right; }
.job__sidebar .page-section { border-bottom: 1px solid #eee; }
.job__sidebar-related-jobs h2 { margin: 0 0 20px 0; }
.job__sidebar-related-jobs-item { margin: 0 0 30px 0; }
.job__sidebar-related-jobs-item a { color: #333; }
.job__sidebar-related-jobs-item a:hover { text-decoration: underline; }
.job__sidebar-related-jobs-item span {
    font-size: 14px;
    font-weight: 400;
}
.job__details-social { margin: 10px 0 0 0; }

/* Inner Pages */
.page .cs_share_container { float: right; }
.page__banner {
    max-height: 560px;
    overflow: hidden;
}
.page__banner img { width: 100%; }
.page__banner ul.slick-dots {
    bottom: 36px;
    left: 50%;
    margin: 0;
    position: absolute;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.page__banner ul.slick-dots li {
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    float: left;
    height: 12px;
    list-style: none;
    margin: 0 6px;
    text-indent: -99999px;
    transition: .5s;
    -o-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -webkit-transition: .5s;
    width: 12px;
}
.page__banner ul.slick-dots li:hover,
.page__banner ul.slick-dots li.slick-active {
    background: #6095c1;
}
.page__details-copy ul:before,
.page__details-copy ul:after,
.category-copy ul:before,
.category-copy ul:after {
  content: " ";
  display: table;
}
.page__details-copy ul:after,
.category-copy ul:after {
    clear: both;
}
.page__details-copy ul li,
.category-copy ul li {
    float: left;
    width: 100%;
}
.page__details-copy ul.ul-full-width li { width: 100% !important; }
.page__item { margin: 0 0 24px 0; }
.page__item-image img {
    margin: 0 0 12px 0;
    width: 100%;
}
.page__item.has-link .page__item-copy-content *,
.blurb {
    display: none;
}
.page__item.has-link .page__item-copy-content .blurb,
.page__item.has-link .page__item-copy-content .blurb * {
    display: block;
}
.page__item.has-link .page__item-copy-content .blurb { margin: 0 0 20px 0; }
.page__details-copy ul li.accordion-item {
    border-top: 1px solid #eee;
    width: 100% !important;
}
.page__details-copy ul li.accordion-item a,
.page__details-copy ul li.accordion-item:last-child a {
    border: medium none;
    font-size: 14px;
    line-height: 18px;
    padding: 18px 0;
}
.page__details-copy ul li.accordion-item a:focus,
.page__details-copy ul li.accordion-item a:hover {
    background: #fff;
}
.page__details-copy ul li.accordion-item .accordion-content {
    border: medium none;
    margin: 0 0 36px 0;
    padding: 0 12px;
}
.page__details-copy .row.table { margin: 0; }
.page__details-copy .row.table .columns {
    border-top: 1px solid #eee;
    padding: 16px 4px;
}

/* Veterans page */
.veterans-outreach-item .page__item-inner { position: relative; }
.veterans-outreach-item .page__item-overlay {
    background: rgba(8,72,135,0.9);
    bottom: 0;
    cursor: pointer;
    height: 24px;
    left: 0;
    position: absolute;
    width: 100%;
}
.veterans-outreach-item .page__item-overlay:after {
    color: #fff;
    content: '\f0aa';
    font-family: FontAwesome;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 24px;
    position: absolute;
    left: 50%;
}
.veterans-outreach-item:hover .page__item-overlay { display: none; }
.veterans-outreach-item .page__item-image img { margin: 0; }
.veterans-outreach-item .page__item-copy {
    background: rgba(8,72,135,0.9);
    color: #fff;
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 20px;
    position: absolute;
    top: 0;
    transition: .5s;
    -o-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -webkit-transition: .5s;
    width: 100%;
    visibility: hidden;
}
.veterans-outreach-item:hover .page__item-copy {
    opacity: 1;
    visibility: visible;
}
.veterans-outreach-item .page__item-copy .blurb p,
.veterans-outreach-item .page__item-copy p {
    font-size: 12px;
    margin: 0 0 12px 0;
}

/* Diversity and Inclusion page */
.diversity-inclusion-programs-item .page__item-image {
    position: relative;
    text-align: center;
}
.diversity-inclusion-programs-item .page__item-image img {
    margin: 0 0 30px 0;
    width: auto;
}
.diversity-inclusion-programs-item .page__item-image.absolute img {
    left: 50%;
    position: absolute;
    top: 40%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

/* Operations and Maintenance page */
.disclaimer {
    font-size: 12px;
    font-style: italic;
}
.path-container { margin: 0 0 24px 0; }
.path-container:before,
.path-container:after {
    content: " ";
    display: table;
}
.path-container:after { clear: both; }
.path-container .path-item {
    background-size: contain;
    color: #fff;
    float: left;
    margin: 0 0 4px 0;
    padding: 12px 40px 12px 20px;
    position: relative;
    width: 50%;
}
.path-container .path-item:nth-child(odd) { background: url('../system/production/assets/95355/original/path-item-bg--blue.jpg') no-repeat center right #084887; }
.path-container .path-item:nth-child(even) { background: url('../system/production/assets/95357/original/path-item-bg--gray.jpg') no-repeat center right #8c9b93; }
.path-container .path-item:nth-child(odd):last-child { background-image: url('../system/production/assets/95354/original/path-item-bg--blue--last.jpg'); }
.path-container .path-item:nth-child(even):last-child { background-image: url('../system/production/assets/95356/original/path-item-bg--gray--last.jpg'); }
/*.path-container .path-item:last-child { background-image: url('../system/production/assets/95323/original/path-item-bg--last.jpg'); }*/
.path-container .path-item span.absolute {
    left: 20px;
    padding-right: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

/* Media queries */
/* Medium screens 640px */
@media only screen and (min-width: 640px) {
    /* Hero Images section */
    .hero-images__item-copy {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }

    /* Search form */
    .career_site_home_page #job-search__form { padding: 30px 0; }
    .career_site_home_page .job-search__form-field { padding-right: 0; }
    .career_site_home_page .job-search__form-field { margin: 0; }
    .job-search__view-all-jobs { line-height: 40px; }

    /* Footer section */
    .footer__social { text-align: right; }

    /* Inner pages */
    .page-sidebar-inner {
        background: #eee;
        padding: 24px 24px 12px 24px;
    }
    .page__details-copy ul li,
    .category-copy ul li {
        width: 50%;
    }

    /* Operations and Maintenance page */
    .path-container .path-item { width: 33.33%; }
}
@media only screen and (min-width: 992px) {}
/* Large screens 1024px */
@media only screen and (min-width: 1024px) {
    /* Header section */
    #header { padding: 24px 0 12px 0; }
    .header__logo { margin: 0 0 12px 0; }

    /* Top / Mobile Menu section */
    .mobile-menu { display: none; }
    #top-menu {
        padding: 16px 0 0 0;
        position: relative;
        right: 0;
        width: 100%;
        z-index: 2;
    }
    #top-menu ul {
        padding: 0;
        text-align: right;
    }
    #top-menu ul li {
        display: inline-block;
        margin: 0 0 0 5px;
        position: relative;
    }
    #top-menu ul li:first-child { margin: 0; }
    #top-menu ul li ul {
        background: #084887;
        display: none;
        left: -12px;
        padding: 12px 16px;
        position: absolute;
        text-align: left;
        top: 18px;
        width: 250px;
    }
    #top-menu ul li:hover ul { display: block; }
    #top-menu ul li ul li,
    #top-menu ul li ul li:first-child {
        margin: 0 0 10px 0;
        width: 100%;
    }

    /* Job Search form */
    #job-search__form input[type="submit"] { margin: 0; }

    /* Jobs Search page */
    .jobs__list-item { padding: 18px 4px; }

    /* Inner pages */
    .page__details-copy ul li,
    .category-copy ul li {
        width: 33.333%;
    }

    /* Operations and Maintenance page */
    .path-container--14 .path-item { width: 14.28%; }
    .path-container--20 .path-item { width: 20%; }
}
@media only screen and (min-width: 1200px) {
    #top-menu { padding: 24px 0 0 0; }
    #top-menu ul li { margin: 0 0 0 10px; }
}
/* Xlarge screens 1440px */
@media only screen and (min-width: 1440px) {
}
/* XXlarge screens 1920px */
@media only screen and (min-width: 1920px) {}



.transportation-businesses-item-1 .page__item-copy h2{
	display: none;
}

.transportation-businesses-item-1 .page__item-copy-content h2{
	display: block;
}


.pages-sarah-mckeon .job-title,
.pages-huntley-lawrence .job-title,
.pages-liz-huang .job-title,
.pages-frederika-watson .job-title,
.pages-enrique-sanabria .job-title,
.pages-leonard-antico .job-title,
.pages-michael-chan .job-title,
.pages-jackie-grossgold .job-title,
.pages-ai-yamanaka .job-title
{display: none;}

.pages-aviation .page__details-copy ul li{
	width: 100%;
}


.employee__page {
  padding: 10px 0px 40px 0px;
}

span.blue-employee-bar {
  float: left;
  position: relative;
  top: -30px;
  z-index: 999;
  width: 100%;
  background: rgba(8, 72, 135, 0.7);
  text-align: center;
  color: #fff;
  font-size: 12pt;
}