/**
 * TABLE OF CONTENTS
 * You may search using these terms to jump to their section
 *
 * - Variables
 * - Basic Elements
 * - Forms
 * - Buttons
 * - Videos
 * - Utility classes
 * - Number callout
 * - KPI callout
 * - Modal sidebar
 * - Card
 * - Table
 * - Top navigation
 * - Core section web parts / details styles
 * - Feature links
 * - Top news section (front page)
 * - Spotlight section (front page)
 * - TRIR
 * - Safety spotlight and incident broadcast section (front page)
 * - Department pages
 * - Masonry grid
 * - Footer
 * - Autocomplete
 * - Unsorted media queries
 * - Unsorted stuff
 * - Print styles
 */


/**
 * Variables
 */

/*
Breakpoints:
    Extra small <576px
    Small ≥576px
    Medium ≥768px
    Large ≥992px
    Extra large ≥1200px

Colors:
	Orange: #f8971d
	Blue: #004b8e
	Green: #00a14b;
	lime: #c1d82f;
*/


/**
 * Basic Elements
 */

html { height: 100%; }

body {
    color: #333333;
    -webkit-overflow-scrolling: touch;
}

/* Links */
a {
    color: rgb(0, 75, 142);
}

a:not(.btn):visited {
    color: #0084a9;
}

a:not(.btn):hover {
    color: #f8971d;
}

/* Lists */
dt + dt { margin-top: .5rem; }

/* Unsorted basic elements */

address {
    font-style: normal;
}

/**
 * Forms
 */

/**
 * Buttons
 * .btn extends the bootstrap basic styling
 */
.btn {
    white-space: normal !important;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #004b8d;
    border-color: #004b8d;
}

.btn-warning {
    background-color: #f8981d;
    border-color: #f8981d;
}

.btn-success {
    background-color: #00a14b;
    border-color: #00803c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    background-color: #00803c;
}

.btn-success:active,
.btn-success.active {
    background-color: #00803c;
}

/**
 * Videos
 */
video {
    width: 100%;
    height: auto;
}

/**
 * Utility classes
 */

/* Standard colors */
.jed-bg-primary {
    background-color: #004b8d;
}

.jed-bg-secondary {
    background-color: #f8971d;
}

.jed-bg-green {
    background-color: #01a14b;
}

.jed-bg-blue {
    background-color: #004b8d;
}

.jed-bg-grey {
    background-color: #808284;
}

.jed-bg-light-grey {
    background-color: #f5f5f5;
}

.jed-bg-white {
    background-color: #fff;
}

.jed-bg-teal {
    background-color: #0084a9;
}

.jed-bg-orange {
    background-color: #f8971d;
}

.jed-bg-red {
    background-color: #eb5124;
}

.jed-text-primary {
    color: #004b8d;
}

.jed-text-secondary {
    color: #f8971d;
}

.jed-text-green {
    color: #01a14b;
}

.jed-text-white {
    color: #fff !important;
}

.jed-text-red {
    color: #eb5124;
}

.text-underline {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

/* Image utilities */
/* Provides a basic frame for images added to the page that require anchoring
   This generally used for screenshots or other elements full of primary white space
   without borders
*/
.img-frame {
    box-sizing: border-box;
    border: solid 1px #ccc;
    border-bottom-color: #ddd;
    border-right-color: #ddd;
    /* https://material.angularjs.org/latest/demo/whiteframe - md-whiteframe-1dp */
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
}

.jed-image-overlay {
    height: 100%;
    -webkit-box-shadow: inset 0px -80px 200px -40px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px -80px 200px -40px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px -80px 200px -40px rgba(0, 0, 0, 0.5);
}

/* Unsorted utilities */

.legal {
    font-style: italic;
    font-size: .8rem;
    color: #555;
}

.address {
    display: block;
}

.address-line {
    display: block;
}

.address-inlineSeparator {
    display: none;
}

.address_inline .address-line {
    display: inline;
}

.address_inline .address-inlineSeparator {
    display: inline;
}


/* Alert Style Overides to match Intranet Styleguide */

.jed-alert {
    margin: 0 0 10px 0;
    padding: 10px 0;
    color: #fff;
}

.jed-alert p {
    margin: 0;
    padding: 0;
}

.jed-alert-danger {
    background-color: #eb5124;
}

.jed-alert-warning {
    background-color: #f8971d;
}

.jed-alert-info {
    background-color: #004b8d;
}

.jed-alert-primary {
    background-color: #004b8d;
}

.jed-alert-success {
    background-color: #00a049;
}

.jed-alert-yellow {
    background-color: #ffd400;
}

.jed-alert-default {
    background-color: #b3b3b3;
}

.jed-shepherd {
    z-index: 99999999999;
}

.ellipsis-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.jed-card-well {
    background: #f5f5f5;
    border-color: #e3e3e3;
}

.jed-well {
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
}

/**
 * Tables
 */
table.jed-table thead th {
  border-bottom: 2px solid #004b8d;
  border-top: 1px solid #fff;
}

/**
 * Number callout
 */
.number-callout {
    display: flex;
}
.number-callout--img {
    width: 20%;
    margin-right: .5rem;
}
.number-callout--content {
    width: calc(100% - 20% - .5rem);
    color: #004b8d;
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.2em;
}

.number-callout + .number-callout {
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .number-callout--img {
        width: 100px;
    }
    .number-callout--content {
        width: calc(100% - 100px - .5rem);
    }
}

@media (min-width: 768px) {
    .number-callout--content {
        font-size: 2rem;
        line-height: 1.2em;
    }
}

@media (min-width: 992px) {
    .number-callout--content {
        font-size: 2.5rem;
        line-height: 1.2em;
    }
}

/**
 * KPI Callouts
 * Large number formats with headings and optional subheadings
 */

.kpi-callouts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    padding-bottom: 0;
}

.kpi-callout {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 1.5rem 1.5rem;
}

.kpi-callout--value,
.kpi-callout--heading,
.kpi-callout--subheading {
    line-height: 1em;
}

.kpi-callout--value {
    font-size: 2.4rem;
    color: #004b8d;
    transition: all .75s ease;
}

.kpi-callout--value a {
    color: inherit;
}

.kpi-callout--value--success {
    color: #01a14b;
}

.kpi-callout--value--warning {
    color: #f8971d;
}

.kpi-callout--value--failure {
    color: #eb5124;
}

.kpi-callout--heading {
    font-size: 1.25rem;
    color: #094071;
    margin-top: .75rem;
}

.kpi-callout--subheading {
    margin-top: .2rem;
    font-size: .9rem;
    color: #094171;
}

.kpi-callout .popover-link {
    vertical-align: super;
    font-size: .6em;
}

/**
 * Modal sidebar
 */

/* A hybrid mix of office 365 panel style and foundation modal systems */
.o365cs-flexPane-panel-new {
    position: fixed;
    right: 0;
    z-index: 1899;
    width: 320px;
    max-width: 90%;
    border-left-width: 1px!important;
    border-style: solid;
    border-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.o365cs-flexPane-overlay {
    top: 0;
}

.o365cs-flexPane-closebutton {
    margin-right: 27px!important;
    float: right;
    margin-top: 16px!important;
    padding: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 28px;
}

.o365cs-flexpane-settings-title {
    font-size: 28px;
    padding-top: 24px;
    white-space: normal;
}

.o365cs-mfp-personaView {
    padding-top: 44px;
}

.o365cs-mfp-personaView address {
    margin-bottom: 0;
}

.o365cs-mfp-userEmail {
    font-size: .8em;
}

.o365cs-mfp-linklist {
    margin-top: 10px;
    font-size: 12px;
}

.o365cs-mfp-linklist-item {
    padding: .33em 0;
}

/**
 * Card
 */
.card {
    border-radius: 0;
}

.card-header img {
    max-height: 1em;
}

.card-header img:first-child {
    margin-right: .5rem;
}

/* Cards */

/* Cards - Navigation layout */

.cards--layout-navigation .card {
  margin-bottom: 1rem;
}

@media (min-width: 767px) {
  .cards--layout-navigation {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
  }

  .cards--layout-navigation .card {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
  }
}

/* Cards - Mosaic layout */

.cards--layout-mosaic {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

.cards--layout-mosaic .card {
  margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
  .cards--layout-mosaic {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 767px) {
  .cards--layout-mosaic {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 543px) {
  .cards--layout-mosaic {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/**
 * Top Navigation
 */

.jed-topnav {
    padding: 10px 0;
}

nav.navbar {
    border-radius: 0px;
    text-transform: uppercase;
    background: #004b8e;
    border-bottom: 4px solid #f8971d;
    padding: 8px 0;
    margin-bottom: 1rem;
}

.navbar-nav .nav-item a.nav-link {
    color: #fff;
    padding-right: 8px !important;
    padding-left: 8px !important;
    border-right: 2px solid #004b8e;
    border-left: 2px solid #004b8e;
}

.navbar-nav .nav-item a.nav-link:hover,
.navbar-nav .nav-item.open a.nav-link {
    color: #666;
    background: #fff;
    border-left: 2px solid #dcdcdc;
    border-right: 2px solid #dcdcdc;
}

.navbar-nav .dropdown-menu {
    border: 2px solid #dcdcdc;
    border-top: none;
    border-radius: 0px;
    margin-top: 0px;
}

.navbar-nav .dropdown-menu a.dropdown-item {
    color: #666;
}

.navbar-nav .dropdown-menu a.dropdown-item:hover {
    color: #fff;
    background: #004b8e;
}

a.jed-navbar-toggler,
a.jed-navbar-toggler:link,
a.jed-navbar-toggler:visited,
a.jed-navbar-toggler:focus,
a.jed-navbar-toggler:hover {
    font-size: 24px;
    color: #004b8e;
    padding: 24px 0 0 0;
    background: #fff;
    border-color: #fff;
}

.jed-search-box {
    padding: 10px 0 0 0;
}

.jed-search-box .input-group-addon {
    color: #fff;
}

.jed-search-box input {
    padding: 0.5rem 0.75rem;
}

.jed-top-logo {
    width: 350px;
}

@media (max-width: 991px) {
    nav.navbar {
        background: #fff;
        border-bottom: none;
        padding: 0;
    }
    nav.navbar .container .row .col-sm-12 {
        padding-right: 0;
        padding-left: 0;
    }
    .navbar-nav .nav-item a.nav-link {
        color: #fff;
        padding: 10px 15px !important;
        border-bottom: 1px solid #fff;
        background: #004b8e;
    }
    .navbar-nav .nav-item a.nav-link:hover,
    .navbar-nav .nav-item a.nav-link:active,
    .navbar-nav .nav-item a.nav-link:focus {
        color: #fff;
        background: #004b8e;
        border-left: 1px solid #004b8e;
        border-right: 1px solid #004b8e;
    }
    .navbar-nav .dropdown-menu {
        border-color: #fff;
        border-radius: 0px;
        margin: 0px;
        padding: 0px
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 10px 30px;
    }
    .navbar-nav .dropdown-menu a.dropdown-item {
        color: #666;
    }
    .navbar-nav .dropdown-menu a.dropdown-item:hover {
        color: #fff;
        background: #f8971d;
    }
    .jed-top-logo {
        width: 220px;
    }
}

/**
 * Core section web parts / details styles
 */

.jed-content {
    margin-bottom: 48px;
}

.body_front:not(.body_hasMessages) .navbar {
    margin-bottom: 2rem;
}

h4.core-section-title {
    text-transform: uppercase;
    font-size: 95%;
    color: #808284;
    font-weight: bold;
    margin: 10px 0;
}

table.core-table tr td {
    font-size: 90%;
}

table.core-table tr th {
    font-size: 90%;
    color: #5e5d63;
    font-weight: 400;
}


/**
 * Feature links
 */

.jed-feature-box {
    color: #fff;
    padding: 10px;
    height: 150px;
    overflow: hidden;
}

.jed-feature-box a {
    color: #fff;
}

.jed-feature-desc {
    font-size: 90%;
}

.jed-feature-slide {
    width: auto;
    height: 150px;
}


/**
 * Top news section (front page)
 */

.jed-topnews {
    position: relative;
    min-height: 420px;
    margin-bottom: 40px;
}

.jed-topnews .carousel-control.left,
.jed-spotlight .carousel-control.right {
    background-image: none;
}

.jed-topnews .carousel-control {
    background: #fff;
    height: 100px;
    margin: 160px 0 0 0;
    color: rgb(0, 75, 142);
    width: 10%;
}

.jed-topnews-photo {
    width: 100%;
    height: 420px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin: 0 0 20px 0;
}

.jed-topnews-inner {
    height: 420px;
    position: relative;
}

.jed-topnews-title {
    padding: 10px 20px 10px 30px;
    text-transform: uppercase;
    color: #fff;
}

.jed-topnews-content {
    padding: 20px 0 10px 30px;
    color: #fff;
}

.jed-topnews a,
.jed-topnews a:hover,
.jed-topnews a:active,
.jed-topnews a:visited {
    color: #fff;
}

.jed-gordons-corner {
    width: 100%;
    height: 195px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin: 0 0 10px 0;
    color: #fff;
}

.jed-gordons-corner-inner {
    height: 195px;
    position: relative;
}

.jed-gordons-corner-title {
    padding: 10px 20px 10px 30px;
    text-transform: uppercase;
    color: #fff;
}

.jed-gordons-corner-content {
    padding: 20px 0 10px 30px;
}

.jed-gordons-corner a,
.jed-gordons-corner a:hover {
    color: #fff;
}

.jed-gordons-corner-detail-image {
    padding: 0 0 16px 0;
}

.jed-marketing-img {
    width: 100%;
    height: 195px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.jed-employee-name {
    padding: 12px 0 0 0;
}

/**
 * Spotlight section (front page)
 */

.jed-spotlight {
    position: relative;
    height: 360px;
    border: 1px solid #d7d7d7;
    overflow: hidden;
}

.jed-spotlight .carousel-control.left,
.jed-spotlight .carousel-control.right {
    background-image: none;
}

.jed-spotlight .carousel-control {
    background: #fff;
    height: 100px;
    margin: 50px 0 0 0;
    color: rgb(0, 75, 142);
    width: 10%;
}

.jed-spotlight h4 {
    color: rgb(0, 75, 142);
    font-weight: 400;
}

.jed-spotlight-block {
    padding: 20px 15px 15px 15px;
}

.jed-spotlight-title {
    z-index: 100;
    position: absolute;
    top: 180px;
    display: inline-block;
    width: 100%;
}

.jed-spotlight-title-inner {
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.jed-spotlight-photo {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


@media (max-width: 991px) {
    .jed-spotlight {
        height: 400px;
    }
    .jed-spotlight-title-inner {
        font-size: 90%;
    }
}


/**
 * TRIR
 */

.jed-trir {
    padding: 10px 10px 20px 10px;
    background: #f5f5f5;
    text-align: center;
    line-height: 20px;
}

.jed-trir h1.display-2 {
    color: #004b8d!important;
}

.jed-trir .text-muted {
    font-size: 90%;
}

.jed-trir em {
    font-size: 80%;
}

.jed-trir .display-subtext {
    color: #004b8d;
    font-weight: bold;
    margin-top: -20px;
}

@media (max-width: 767px) {
    .jed-trir {
        margin-top: 35px;
    }
}


/**
 * Safety spotlight and incident broadcast section (front page)
 */

.jed-safety-carousel {
    position: relative;
    border: 1px solid #d7d7d7;
    overflow: hidden;
}

.jed-safety-carousel-inner {
    height: 150px;
}

.jed-safety-carousel .carousel-control.left,
.jed-spotlight .carousel-control.right {
    background-image: none;
}

.jed-safety-carousel .carousel-control {
    background: none;
    height: 50px;
    margin: 50px 0 0 0;
    color: rgb(0, 75, 142);
    width: 10%;
}


.jed-blog-carousel .carousel-control {
    background: none;
    height: 50%;
    margin: 50px 0 0 0;
    color: WHITE;
    width: 10%;
}

.jed-safety-carousel h4 {
    color: rgb(0, 75, 142);
    font-weight: 400;
}

.jed-safety-carousel-block {
    padding: 35px 15px 15px 15px;
}

.jed-safety-carousel-header {
    padding: 10px 20px 0px 20px;
    border-bottom: 1px solid #d7d7d7;
}

.jed-safety-carousel-title-inner {
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #d7d7d7;
}

@media (max-width: 991px) {
    .jed-safety-carousel-title-inner {
        font-size: 90%;
    }
}

/**
 * Department pages
 */

.jed-dept-header {
	 /*margin-top: -10px;*/
     /* PBW - Modified due to .jed-alerts-area margin-top: 12px; */
	 margin-top: -22px;
	 margin-bottom: -20px;
	 padding-top: 60px;
	 background-repeat: no-repeat;
	 background-position: center top;
	 background-image: url(/img/department-photo-template.png);
}

.jed-dept-header .container {
	padding-left: 0px;
    padding-right: 0px;
}

.jed-dept-title {
	 padding: 10px 20px;
	 margin-top: 60px;
	 background-color: #004b8d;
	 border-bottom: 4px solid #f8971d;
	 color: #fff;
	 font-size: 200%;
}
.jed-dept-title-box {
	 border-bottom: 30px solid #fff;
}
@media (max-width: 991px) {
	.jed-dept-header {
		 padding-top: 0;
		 margin: -10px 0 10px 0;
		 background-image: none;
	}
	.jed-dept-title {
	 	margin-top: 10px;
		font-size: 150%;
		background-color: transparent;
	}
	.jed-dept-header .container {
		padding-left: 15px;
    	padding-right: 15px;
	}
	.jed-dept-title-box {
		border-bottom: none;
	}

}

/**
 * Masonry grid
 */

/**
 * Footer
 */

.jed-foot-nav {
    padding: 30px 0;
}

.jed-foot-nav a {
    color: #d6dce8;
    font-size: 90%
}

.jed-foot-nav ul {
    border-left: 1px solid #5083b1;
    padding: 5px 10px;
    min-height: 100px;
}

@media (max-width: 575px) {
    .jed-foot-nav ul {
        border-left: none;
        padding: 0px;
    }
    .jed-foot-nav ul {
        border-left: none;
        padding: 0px;
    }
}

.jed-foot-copy {
    color: #b3b3b3;
    padding: 10px 0 70px 0;
    font-size: 80%
}

.jed-foot-copy a,
.jed-foot-copy a:visited,
.jed-foot-copy a:hover {
    color: #b3b3b3;
}


/* due to the footer image floating above the top container edge */

#DeltaPlaceHolderFooter {
    margin-top: 48px;
    padding-top: 48px;
}

/* Quote section */
.jed-site-quote {
    border-top: 2px solid #c1d830;
    background-color: #ebedec;
    background-image: url('/img/FooterGraphic_1.jpg');
    background-position: center top;
}

.jed-site-quote h1 {
    padding-top: 20px;
    color: rgb(0, 75, 142);
  font-weight: 400;
}

/**
 * Autocomplete
 */

.ajaxed {
    background-position: calc(100% - .5rem) 50%;
    background-repeat: no-repeat;
}
.ajaxed-loading {
    background-image: url(../img/spinner.gif);
}
.ajaxed-item{display:block;background:#dfdfdf;margin:5px 0 0;padding:4px 5px;color:#000;border:1px solid #ccc;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;}
.ajaxed-window{position:fixed;top:50%;left:50%;z-index:1019}
.ajaxed-output{position:relative}
.ajaxed-inner{position:absolute;top:0;left:0;padding:2px;width:auto;min-width:0;max-width:550px;height:auto;background:#333;border:3px solid #333;z-index:99}
.ajaxed-arrow{position:absolute;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid #333;position:absolute;top:-10px;left:5px}
.ajaxed-selection{display:inline-block;float:left;padding:2px 20px 3px 8px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;background:#f3f3f3;font-size:8px}

ul#autocomplete{width:auto;height:auto;margin:0;padding:0;border:1px solid #222;list-style-type:none;font-size:10px}
ul#autocomplete li{display:block;background-color: #383838;width:auto;margin:0;padding:2px 4px 2px;cursor:pointer;color:#ccc;border-bottom:1px solid #333;line-height:15px;z-index:1}
ul#autocomplete > li:nth-child(odd) {
    background-color: #3f3f3f;
}
ul#autocomplete li strong{color:#6eade7;font-weight:normal}
ul#autocomplete li.selected{background-color:#3566bd;color:#fff}
ul#autocomplete li a{display:block;color:#f3f3f5;text-decoration:none;outline:0;margin:0;width:100%;transition:.075s all ease-out;-webkit-transition:.075s all ease-out;-moz-transition:.075s all ease-out;-o-transition:.075s all ease-out}
ul#autocomplete li a:hover,ul#autocomplete li a:active,ul#autocomplete li a:focus{background-color:#3566bd}

@media (max-width: 767px) {
    .ajaxed-window{width:98% !important;top:0;left:0;}
    .ajaxed-inner{width:100% !important;max-width:100%;}
}

/**
 * Unsorted media queries
 */

/* Small devices (landscape phones, less than 768px) */

@media (max-width: 767px) {}


/* Medium devices (tablets, less than 992px) */

@media (max-width: 991px) {
    body {
        background: #fff;
    }
    .ms-srch-sb>input {
        width: 100%;
    }
    .utilNav li,
    .globalNav li {
        float: none !important;
    }
    .utilNav>li>a {
        color: #fff !important;
    }
    .utilNav {
        background-color: #152e54;
    }
    .utilNav ul
    {
        position: static !important;
        visibility: visible!important;
        display: inline-block !important;
        z-index: auto !important;
        min-width: inherit !important;
        top: inherit !important;
        width: 100%;
    }
    .utilNav>li:hover,
    .utilNav ul {
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

    .sidebar { margin-top:16px;}

}


/* Large devices (desktops, less than 1200px) */

@media (max-width: 1199px) {
    /*.globalNav li:first-child { display: none }*/
}

/**
 * Unsorted stuff
 */

#customMasterPage .contentwrapper {
    margin: 0;
    min-width: 0;
    margin-bottom: 0px;
}

.ms-srch-item-title,
.ms-srch-item-icon {
    display: none !important;
}

#row4,
#pageContentTitle {
    display: none;
}

#siteIcon {
    padding-left: 0px !important;
}

@media (max-width: 543px) {
    #siteIcon {
        display: none;
    }
}

.o365cs-base .o365cs-topnavBGColor,
.o365cs-base .o365cs-topnavBGColor-2,
.o365cs-base.o365cs-topnavBGColor,
.o365cs-base.o365cs-topnavBGColor-2 {
    background-color: rgb(0, 75, 142) !important;
}

.ms-bgc-tp,
.ms-bgc-tp-h:hover {
    background-color: #f8971d !important;
}

.ms-bgc-nlr, .ms-bgc-nlr-h:hover {
    background-color: #f4f4f4;
}

.ms-bcl-nta, .ms-bcl-nta-h:hover {
    border-color: #c8c8c8;
}

.o365cs-mfp-section {
    padding-left: 32px;
    padding-right: 32px;
}

.o365cs-mfp-section_fullHeight {
    height: 100%;
}

.ms-formbody {
    width: 100% !important;
}

.ms-pub-contentLayout {
    min-width: 0;
    padding: 0px 0px !important;
    margin: 0;
}

.ms-webpart-menuLink {
    padding: 0;
    height: auto;
    width: auto;
}

.ms-rtestate-field h1,
h1.ms-rteElement-H1,
.ms-rtestate-field h2,
h2.ms-rteElement-H2 {
    line-height: 1.1;
}

.link-title,
h1,
h2,
h3,
h4,
h5,
h5,
h1#pageTitle,
.ms-core-navigation,
.ms-core-pageTitle,
.ms-core-pageTitle a {
    color: #5e5d63;
    font-weight: 400;
}

.jed-page-header {
    border-bottom: 1px solid #e2e1e1;
    margin-bottom: 24px;
}

.jed-related-items {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.jed-utility-nav a {
    padding: 0 0 0 20px;
    color: #666;
}

.jed-learn-more {
    margin: 20px 0;
    text-align: center;
    border-top: 6px solid #e2e1e1;
    display: block;
}

.jed-learn-more h6 {
    margin: -13px 0 0 0;
    font-size: 90%;
}

.jed-learn-more span {
    margin-top: -40px;
    padding: 0px 20px;
    background: #fff;
    color: rgb(0, 75, 142);
    text-transform: uppercase;
}

.jed-learn-more a:hover span {
    color: rgb(0, 75, 142) !important;
}

.jed-section {
    margin: 30px 0 50px 0;
}

.jed-section-title {
    margin: 0 0 30px 0;
    border-top: 1px solid #b3b3b3;
    display: block;
}

.jed-section-title h4 {
    color: #5c5b60;
    margin: -18px 0 0 0
}

.jed-section-title h4 span {
    background: #fff;
    padding: 0 20px 0 0;
}

.jed-section-title.jed-section-title-center {
    text-align: center
}

.jed-section-title.jed-section-title-center h4 span {
    padding: 0 20px;
}

.jed-media-post {
    font-size: 90%;
}

.jed-media-post a {
    font-weight: normal;
    color: #333333;
}

.jed-divider {
    padding: 0 5px;
    color: #DcDcDc;
}

.jed-related-links {
    line-height: 1;
}

.incident_table {
    padding-bottom: 16px;
}

.incident_div {
    padding-bottom: 24px;
}

/**
 * Print styles
 */
@media print {
    [class*="col-sm-"] {
        float: left;
    }
    [class*="col-xs-"] {
        float: left;
    }
    .col-sm-12,
    .col-xs-12 {
        width: 100% !important;
    }
    .col-sm-11,
    .col-xs-11 {
        width: 91.66666667% !important;
    }
    .col-sm-10,
    .col-xs-10 {
        width: 83.33333333% !important;
    }
    .col-sm-9,
    .col-xs-9 {
        width: 75% !important;
    }
    .col-sm-8,
    .col-xs-8 {
        width: 66.66666667% !important;
    }
    .col-sm-7,
    .col-xs-7 {
        width: 58.33333333% !important;
    }
    .col-sm-6,
    .col-xs-6 {
        width: 50% !important;
    }
    .col-sm-5,
    .col-xs-5 {
        width: 41.66666667% !important;
    }
    .col-sm-4,
    .col-xs-4 {
        width: 33.33333333% !important;
    }
    .col-sm-3,
    .col-xs-3 {
        width: 25% !important;
    }
    .col-sm-2,
    .col-xs-2 {
        width: 16.66666667% !important;
    }
    .col-sm-1,
    .col-xs-1 {
        width: 8.33333333% !important;
    }
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12 {
        float: left !important;
    }
    body {
        margin: 0;
        padding: 0 !important;
        min-width: 768px;
    }
    .container {
        width: auto;
        min-width: 750px;
    }
    body {
        font-size: 10px;
    }
    a[href]:after {
        content: none;
    }
    .noprint,
    div.alert,
    .group-media,
    .btn,
    footer,
    .footer,
    form,
    #comments,
    .nav,
    ul.links.list-inline,
    ul.action-links {
        display: none !important;
    }
}