﻿@charset "UTF-8";
/* JHU/APL CSS Theme */

/* BASE CSS ------------------------------------ */

@import url("bootstrap.min.css");
@import url("font-awesome.min.css");

/* FONTS --------------------------------------- */

@font-face {
  font-family: Gentona Book;
  src: url(../fonts/Gentona-Book.woff);
}

@font-face {
  font-family: Gentona Light;
  src: url(../fonts/Gentona-Light.woff);
}

@font-face {
  font-family: Gentona LightItalic;
  src: url(../fonts/Gentona-LightItalic.woff);
}

@font-face {
  font-family: Gentona ExtraLight;
  src: url(../fonts/Gentona-ExtraLight.woff);
}

@font-face {
  font-family: Gentona Medium;
  src: url(../fonts/Gentona-Medium.woff);
}

@font-face {
  font-family: Gentona Bold;
  src: url(../fonts/Gentona-Bold.woff);
}

/* -------------------------- */
/* APL COLOR REFERENCE ------ */
/* -------------------------- */
/*

LOGO COLORS:

APL Blue	#002D72
White 		#FFFFFF
Black 		#000000

ACCENT COLORS:

Blue (medium) 	#005EB8
Blue (light) 	#A7BCD6
Violet (light) 	#7C7FAB
Violet (dark) 	#470A68
Violet-pink 	#8E3A80
Red (dark) 		#8A2A2B
Peach 			#E8927C
Orange (medium) #FF6900
Orange (light) 	#FF9E1B
Yellow (light) 	#FBD872
Yellow (medium) #FFCD00
Green (medium) 	#74AA50
Green (dark) 	#007A53
Teal 			#86C8BC

NEUTRALS:

Tan (light) 	#D9C89E
Tan (medium) 	#CBA052
Brick Red 		#9E5330
Gray 1 (light) 	#efefef
Gray 2 (light) 	#B4B2AD
Gray 3 (medium) #7E7E7C
Gray 4 (dark) 	#4A484C

*/

/* GENERAL STYLES -----------------------------------------------------------------------------------*/

html {
  height: 100%;
}

body {
  box-sizing: content-box;
  min-height: calc(100% - 120px);
  position: relative;
  padding-top: 120px;
  padding-bottom: 508px;
  font-family: Times, "Times New Roman", serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #002d72;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

h1 small {
  display: block;
}

h1.bordered {
  border-bottom: 1px #ababab solid;
  padding-bottom: 15px;
}

h2 {
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 26px;
}

h4 {
  font-family: Minion Pro, Minion, Times, "Times New Roman", serif;
  font-weight: bold;
  color: black;
  margin-top: 15px;
}

section {
  margin-top: 30px;
  margin-bottom: 50px;
}

form {
  font-family: Gentona Book, sans-serif;
}

#section_main {
  min-height: 500px;
}

#section_main h1:first-child {
  margin-top: -10px;
}

#section_main h2:first-child {
  margin-top: 0px;
}

p,
ul.content-list,
ol.content-list {
  font-size: 18px;
}

img {
  -ms-interpolation-mode: bicubic;
}

a {
  color: #005eb8;
}

a:hover {
  text-decoration: underline;
}

.medium {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bold {
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.well {
  background: #fff;
  border-radius: 0;
}

.well h1:first-child,
.well h2:first-child,
.well h3:first-child,
.well h4:first-child {
  margin-top: 0;
}

.read-more-link {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #74aa50;
  text-transform: uppercase;
}

.chart-container {
  height: 300px;
}

.column-2-list {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}

/* ---------------------------------------- */
/* TOP NAVIGATION STYLES ------------------ */
/* ---------------------------------------- */

nav.navbar-fixed-top {
  background: #fff;
  border-radius: 0px;
  min-height: 120px;
  border: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

nav.navbar-fixed-top div.container {
  margin-top: 33px;
}

ul.navbar-nav {
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

li.dropdown a:after {
  background: white;
  content: "";
  display: block;
  width: 0;
  height: 0;
  transform: translateX(50%) rotate(45deg);
  border-left: 1px solid #efefef;
  border-top: 1px solid #efefef;
  position: absolute;
  bottom: -30px;
  right: 50%;
  z-index: 1001;
  transition-delay: 0.2s;
  /* transition: border-width 0.15s ease-in-out; */
}

li.dropdown:hover a:after {
  width: 20px;
  height: 20px;
  /*transition: border-width 0.15s ease-in-out;*/
  transition-delay: 0.2s;
}

.navbar-default ul.navbar-nav li a:hover {
  background: #e7e7e7;
}

.navbar-default ul.navbar-nav li.active a {
  color: #74aa50;
  background: none;
}

.navbar-default ul.navbar-nav li.active a:hover {
  color: #74aa50;
}

.logo {
  margin: 20px 50px 20px 0px;
}

.logo img {
  width: 290px;
  max-width: 290px;
  max-height: 100%;
}

/* TOP NAV DROPDOWN MENUS ----------------- */

ul.navbar-nav li:hover ul.dropdown-menu {
  /* Makes Dropdowns appear on hover */
  max-height: 520px; 
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
  border: 1px solid #efefef;
}

ul.navbar-nav ul.dropdown-menu {
  background-color: #ffffff; 
  border-width: 0;
  border-color: transparent;
  border-radius: 0;
  display: block;
  max-height: 0;
  position: absolute;
  top: auto;
  overflow: hidden;
  padding: 0;
  right: auto; 
  left: 50%; 
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 300px;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

ul.navbar-nav ul.dropdown-menu li {
  padding: 5px; 
  border-bottom: 1px solid #efefef; 
}

ul.navbar-nav ul.dropdown-menu li:last-child {
  padding: 5px; 
  border-bottom: 0; 
}

ul.navbar-nav ul.dropdown-menu li a {
  color: #000 !important;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: Gentona Book, sans-serif;
  text-transform: none;
}

ul.navbar-nav ul.dropdown-menu li a:hover {
  background-color: #363438;
  color: #fff !important; 
}

ul.navbar-nav ul.dropdown-menu li a:focus {
  background-color: #000000;
  color: #fff !important; 
}

.top-menu-hide li ul {
  display: none !important;
}

/* SEARCH BAR ----------------------------- */
.homepage-search {
  width: 240px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.homepage-search .form-control,
mobile-search-input {
  border: 1px #4a484c solid;
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #4a484c;
  box-shadow: none;
}

.mobile-search-input .input-group-addon {
  border-color: #4a484c;
}

.homepage-search .form-control:-ms-input-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #4a484c;
}

.homepage-search .form-control::-moz-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #4a484c;
}

.homepage-search .form-control::-webkit-input-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #4a484c;
}

.homepage-search .input-group-btn button {
  height: 34px;
  border: 1px #4a484c solid;
  border-left: none;
}

.dropdown-search {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

ul.navbar-nav ul.dropdown-menu-search {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  padding-left: 0;
  background-color: #fff;
  border-top: 1px #efefef solid;
  transition: none;
}

ul.dropdown-menu-search .form-group {
  text-align: center;
}

.dropdown-menu-search input {
  border: 1px #4a484c solid;
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #4a484c;
  box-shadow: none;
  border-radius: 4px;
  height: 36px;
  width: 50%;
  padding: 5px 8px;
}

.dropdown-search .form-control:-ms-input-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
  color: #4a484c !important;
}

.dropdown-search .form-control::-moz-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
  color: #4a484c !important;
}

.dropdown-search .form-control::-webkit-input-placeholder {
  font-family: Gentona LightItalic, "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
  color: #4a484c !important;
}

.dropdown-search .form-group {
  margin-bottom: 0;
}

#addsearch-results {
  left: 50% !important;
  transform: translateX(-50%);
}

/* HOMEPAGE STYLES -----------------------------------------------------------------------------------*/
h1.page-title {
  font-family: Gentona ExtraLight, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  text-align: center;
  font-size: 48px;
}

#section_what-is-APL {
  margin: 0px;
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#section_what-is-APL .container {
  padding: 70px 50px 50px 450px;
  position: relative;
}

#section_what-is-APL .container > div {
  background: #fff;
  padding: 30px;
  border-radius: 3px;
}

#section_what-is-APL .container img {
  position: absolute;
  left: -200px;
  top: -50px;
  bottom: -50px;
  height: calc(100% + 100px);
  z-index: -1;
}

#section_strategy {
  background: #efefef;
  padding: 40px 0px 50px;
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  margin-top: 0;
}

#section_strategy div.col-md-4 {
  padding-bottom: 20px;
}

.strategy-icon {
  background: #005bb3;
  border-radius: 999px;
  height: 80px;
  width: 80px;
}

div.alert-bar {
  color: #fff;
  background-color: #002d72;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
  font-size: 28px;
  padding: 15px 15px 7px;
  line-height: 28px;
  min-height: 50px;
}

div.alert-bar a {
  color: #fff;
  border-radius: 5px;
  background: #174790;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 7px 10px 10px 10px;
  margin: 7px;
  vertical-align: middle;
}

/*GREEN BREADCRUMBS */
nav.greenbar {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #74aa50;
  vertical-align: middle;
  /*line-height:50px;*/ /*AMM: not needed, we'll use padding instead*/
  padding: 15px;
}

nav.greenbar a {
  margin-left: 7px;
  margin-right: 7px;
  display: inline-block;
  color: #fff;
}

/*-- PROGRAMS PAGE -----------------------------------------------------------------------------------*/

nav.program-nav {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  min-height: 20px;
  background-color: #000;
  text-align: center;
  margin: 20px -20px -30px;
}

nav.program-nav a,
nav.press-nav a {
  /*margin-left: 15px; 
	margin-right:15px;*/
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

nav.program-nav a:hover,
nav.press-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
}

nav.program-nav a.active,
nav.press-nav a.active {
  background-color: #74aa50;
  color: #000;
  /*height:100%;
	padding:10px;*/ /* AMM: Changed, not necessary */
}

nav.program-nav-alt,
nav.press-nav-alt,
nav.diversityinclusion-nav-alt {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  min-height: 20px;
  margin-bottom: 20px;
  border-bottom: 1px #74aa50 solid;
}

nav.program-nav-alt a,
nav.press-nav-alt a,
nav.diversityinclusion-nav-alt a {
  /*margin-left: 15px; 
margin-right:15px;*/
  display: inline-block;
  padding: 10px 15px;
  color: #4a484c;
  text-decoration: none;
}

nav.program-nav-alt a:hover,
nav.press-nav-alt a:hover,
nav.diversityinclusion-nav-alt a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
}

nav.program-nav-alt a.active,
nav.press-nav-alt a.active,
nav.diversityinclusion-nav-alt a.active {
  background-color: #74aa50;
  color: #fff;
}

/* HOMEPAGE CAROUSEL STYLES ----------------------------------------------------------------------------*/

#section_carousel {
  background: #aeaeae;
  background-image: url(../images/background_homepage.svg);
  background-size: cover;
  background-position: center;
  border-bottom: 3px #7e7e7c solid;
  box-sizing: content-box;
  margin-top: 0;
  margin-bottom: 0;
}

#section_carousel .container-fluid {
  padding: 0px;
}

.carousel .carousel-inner .item {
  /*height:580px;*/
  overflow: hidden;
  border-left: 3px #fff solid;
  border-right: 3px #fff solid;
}

.carousel .carousel-inner .item img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.carousel-container {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  bottom: 0px;
  pointer-events: none;
}

.carousel-caption {
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin-top: 40px !important;
}

.title-container {
  position: relative;
}

.carousel-top-caption h1 {
  font-size: 48px;
  color: #fff;
  background: #303030;
  padding: 15px 20px 20px;
  margin-bottom: -18px;
  width: auto;
}

.carousel-caption-alt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(34%);
  z-index: 16;
}

.carousel-caption-alt div {
  display: none;
}

.carousel-caption-alt h2 {
  font-size: 18px;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 15px;
  margin-top: 0px;
  /* display: inline-block; */
  float: right;
  clear: both;
  transition: background 300ms ease-in-out;
}

.carousel-caption h1 {
  font-size: 48px;
  color: #fff;
  background: #303030;
  padding: 15px 20px 20px;
  margin-bottom: -10px;
  width: auto;
}

.carousel-caption h2 {
  font-size: 18px;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 15px;
  margin-top: 0px;
  /* display: inline-block; */
  float: right;
  clear: both;
  transition: background 300ms ease-in-out;
}

.carousel-caption h2.green,
.carousel-caption-alt h2.green {
  background: #74aa50;
}

.carousel-caption h2.orange,
.carousel-caption-alt h2.orange {
  background: #ff9e1b;
}

.carousel-caption h2.blue,
.carousel-caption-alt h2.blue {
  background: #005eb8;
}

.carousel-caption h2.red,
.carousel-caption-alt h2.red {
  background: #8a2a2b;
}

.carousel-caption h2.yellow,
.carousel-caption-alt h2.yellow {
  background: #ffcd00;
}

.carousel-caption h2.violet,
.carousel-caption-alt h2.violet {
  background: #8e3a80;
}

/*.carousel-caption h2:hover,
.carousel-caption-alt h2:hover {
	transition:background 300ms ease-in-out;
	background:#8ebf6c;
}*/

.carousel-caption.carousel-container,
.carousel-container-alt {
  pointer-events: all;
}

.carousel-indicators {
  bottom: 0;
  margin-bottom: 80px;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  pointer-events: all;
}

.carousel-control .arrow-left {
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
}

.carousel-control .arrow-right {
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: 50%;
  margin-right: -25px;
}

.carousel-photo-credit {
  position: absolute;
  bottom: 0;
  font-family: Gentona Light, sans-serif;
  font-size: 12px;
}

/* LATEST NEWS STYLES ----------------------------------------------------------------------------------*/

#section_latest-news .col-md-6 {
  display: inline-block;
}

/*#section_latest-news .col-md-6:nth-child(odd) {
	float:left;
	clear:left;
}

#section_latest-news .col-md-6:nth-child(even) {
	float:right;
	clear:right;
}
*/
.article-thumbnail {
  background: #efefef;
  margin: 10px 0px 0px 0px;
  /*padding:20px;*/
  overflow: auto;
  position: relative;
  white-space: normal;
}

.article-thumbnail h3 {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 8px;
}

.article-date {
  font-size: 12px;
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: #7e7e7c;
}

.article-thumbnail .article-body {
  padding: 20px;
}

.article-thumbnail .article-body-left {
  float: left;
  width: 50%;
}

.article-thumbnail .article-body-right {
  float: right;
  width: 50%;
}

.article-thumbnail .article-image {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
}

.article-thumbnail .article-image img {
  /*min-width:100%;
	height:calc(100% + 100px);*/
  overflow: hidden;
  object-fit: cover;
  /*position: absolute;
   	left: 50%;
   	top: 50%;
   	-webkit-transform: translateY(-50%) translateX(-50%);
   	-moz-transform: translateY(-50%) translateX(-50%);
   	transform: translateY(-50%) translateX(-50%);*/
}

.article-thumbnail .article-image-right {
  right: 0;
  width: 50%;
}

.article-thumbnail .article-image-left {
  left: 0;
  width: 50%;
}

.article-image-position-top {
  background-position: top;
}

.article-image-position-bottom {
  background-position: bottom;
}

.article-thumbnail .article-image-bottom {
  position: static;
  width: 100%;
}

#section_latest-news .article-thumbnail .article-image-bottom {
  min-height: 300px; /*AMM: Hack to give div height because we're bringing in the image as a background.*/
}

.article-thumbnail .article-image-bottom img {
  width: 100%;
  position: static;
  -webkit-transform: none;
  transform: none;
}

.article-thumbnail .article-blurb {
  margin-top: 10px;
}

#section_latest-news .see-more-button {
  background: none;
}

/*PRESS RELEASE EXAMPLE PAGE -----------------------------------------------------------------------------------*/

.title {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  font-size: 42px;
  margin-top: 0px;
}

.date {
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  font-size: 18px;
  color: #7e7e7c;
  text-transform: uppercase;
  margin-top: 0px;
}

.maincol {
  padding-left: 50px;
}

.PRimg-caption {
  margin-top: 10px;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  font-size: 11px;
  border-left: 2px #b4b2ad solid;
}

.PRimg-caption p {
  font-size: 11px;
  padding-left: 10px;
}

/*PRESS RELEASE PAGE -----------------------------------------------------------------------------------*/
.timeline {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 2px #efefef solid;
  padding: 0 10px 10px;
  vertical-align: middle;
}

.timeline a {
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.staggered-columns {
  -webkit-column-count: 1;
  -webkit-column-gap: 20px;
  -webkit-column-fill: auto;
  -moz-column-count: 1;
  -moz-column-gap: 20px;
  -moz-column-fill: balance;
  column-count: 1;
  column-gap: 20px;
  column-fill: balance;
  margin: 15px;
}

.staggered-columns-item {
  display: inline-block;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  /*-webkit-backface-visibility: hidden;
     backface-visibility: hidden;*/
  width: 100%;
}

.article-thumbnail.staggered-columns-item .article-body {
  padding: 15px;
}

.article-thumbnail.staggered-columns-item .article-body h3 {
  margin-bottom: 0;
}

/*PRESS RELEASE TERTIARY PAGE -----------------------------------------------------------------------------------*/
.pr-caps-white {
  font-size: 12px;
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #6f6f6f;
  position: absolute;
}

.img-caption {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 100%;
  position: relative;
}

/* ICON SEPARATOR --------------------------------------------------------------------------------------*/
.icon-separator {
  border-top: 3px #74aa50 solid;
  max-width: 600px;
  margin: 50px auto 20px;
  text-align: center;
}

.icon-separator img {
  border-radius: 999px;
  background: #74aa50;
  height: 80px;
  width: 80px;
  border: 3px #74aa50 solid;
  margin-top: -41px;
  display: inline-block;
}

/* FOOTER STYLES -----------------------------------------------------------------------------------*/

footer {
  background: #4a484c;
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 10px 0px 30px;
  border-top: 3px #7e7e7c solid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

footer h1.page-title {
  color: #fff;
}

footer .icon-separator img {
  background: #74aa50;
}

footer .container-fluid {
  margin: 10px 0px 20px;
}

footer p {
  font-size: 21px;
}

footer a {
  color: #88c5ff;
}

footer a:hover {
  color: #5d9bd6;
}

footer strong {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.social-media {
  margin-bottom: 20px;
}

.social-media a {
  margin: 0 5px;
  display: inline-block;
}

.rss-icon {
  width: 30px;
  height: 30px;
}

.bottom-text {
  font-size: 14px;
  text-transform: uppercase;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bottom-text a {
  margin: 20px;
  color: #fff;
}

/* HEADER BACKGROUND IMAGES ---------------------------------------------------------------------------------*/

header {
  background: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
}

#header_covid19 {
  background-image: url(../images/header/20-01549_D2_1566.jpg);
  background-position: bottom;
}

#header_about {
  background-image: url(../images/header/15-02363-9776-2.jpg);
  background-position: center;
}

#header_about_history {
  background-image: url(../images/header/about_history-bg.jpg);
  background-position: center;
}

#header_about_awards {
  background-image: url(../images/header/about_awards2.jpg);
  background-position: 0 30%;
}

#header_about_diversity-inclusion {
    background-image: url(../images/header/about_diversity-inclusion_3.jpg);
    background-position: center;
}

#header_about_visitorinformation {
  background-image: url(../images/header/about_visitorinfo-bg.jpg);
  background-position: center;
}

#header_about_OTT {
  background-image: url(../images/header/about_OTT-bg.jpg);
  background-position: center;
}

#header_about_corporate-social-responsibility {
    background-image: url(../images/header/header_corporate-responsibility.jpg);
    background-position: center;
}

#header_history {
  background-image: url(../images/header/xxx.jpg);
  background-position: center;
}

#header_leadership {
  background-image: url(../images/header/14-03272-4186.jpg);
  background-position: 0px -100px;
}

#header_collaborativeprojects {
  background-image: url(../images/header/JHUCollaborativeProjects.jpg);
  background-position: center;
}

header_communityinvolvement {
  background-image: url(../images/header/community.jpg);
  background-position: center;
}

#header_cultureofinnovation {
  background-image: url(../images/header/16-02005-0174.jpg);
  background-position: center;
}

#header_ourwork {
  background-image: url(../images/header/15-03532-0315v3.jpg);
  background-position: center;
}

#header_ourwork_expertise {
  background-image: url(../images/header/ourwork_expertise.jpg);
  background-position: center;
}

#header_ourwork_selectedfacilities {
    background-image: url(../images/header/header_our-work_selected-facilities_2.jpg);
    background-position: center;
}

#header_ourwork_jhucollab {
  background-image: url(../images/header/ourwork_jhucollab.jpg);
  background-position: center;
}

#header_ourwork_prosthetics {
  background-image: url(../images/header/ourwork_prosthetics.jpg);
  background-position: center;
}

#header_ourwork_prosthetics-research-vie {
  background-image: url(../images/prosthetics/VIE.jpg);
  background-position: top;
}

#header_ourwork_prosthetics-research-ni {
  background-image: url(../images/prosthetics/oth_NeuroPortArray.jpg);
  background-position: center;
}

#header_ourwork_supplychainresources {
    background-image: url(../images/header/ourwork_scr.jpg);
    background-position: center;
}

#header_ourwork_supplierdiversityoffice {
    background-image: url(../images/header/ourwork_sdo.jpg);
    background-position: center;
}

#header_careers {
  background-image: url(../images/header/14-03272-8288.jpg);
  background-position: top;
}

#header_careers_opportunities {
    background-image: url(../images/header/careers_opportunities.jpg);
    background-position: 0% 35%;
}

#header_careers_studentsgraduates {
  background-image: url(../images/header/careers_new-grads.jpg);
  background-position: center;
}

#header_careers_doctoralstudents {
  background-image: url(../images/header/careers_doctoral-students.jpg);
  background-position: center;
}

#header_careers_weareAPL {
  background-image: url(../images/header/careers_we-are-APL.jpg);
  background-position: 0 -100px;
}

#header_careers_diversityandinclusion {
  background-image: url(../images/header/careers_diversity-inclusion.jpg);
  background-position: center;
}

#header_careers_collegeinternships {
  background-image: url(../images/header/careers_college-internships.jpg);
  background-position: center;
}

#header_careers_riseinternships {
  background-image: url(../images/header/careers_internships_RISE.jpg);
  background-position: center;
}

#header_careers_discoveryprogram {
  background-image: url(../images/header/careers_discovery.jpg);
  background-position: center;
}

#header_careers_governmentprogram {
  background-image: url(../images/header/careers_government-fellowship.jpg);
  background-position: center;
}

#header_education {
  background-image: url(../images/header/16-02005-0349.jpg);
  background-position: center;
}

#header_education_atlas {
  background-image: url(../images/header/education_atlas.jpg);
  background-position: center;
}

#header_education_gem {
  background-image: url(../images/header/education_gem.jpg);
  background-position: center;
}

#header_education_jhugraduateprogram {
  background-image: url(../images/header/education_JHUgraduate.jpg);
  background-position: center;
}

#header_education_jhuconnection {
  background-image: url(../images/header/education_jhuconnection.jpg);
  background-position: center;
}

#header_education_diversityinitiatives {
  background-image: url(../images/header/education_diversityinitiatives.jpg);
  background-position: center;
}

#header_education_educationoutreach {
  background-image: url(../images/header/about_community-bg.jpg);
  background-position: center;
}

#header_techdigest {
    background-image: url(../techdigest/images/header/header_techdigest_vol35num4.jpg);
    background-position: center;
}

#header_news_PressReleases {
  background-image: url(../images/header/Pluto_flyby_Panorama2.jpg);
  background-position: center;
}

#header_news_events {
    background-image: url(../images/header/virtual-event.jpg);
    background-position: center;
}

#header_ma_airandmissiledefense {
  background-image: url(../images/header/AMDHeader2.jpg);
  background-position: center;
}

#header_ma_civspace {
  background-image: url(../images/header/ma_civilspace.jpg);
  background-position: center;
}

#header_ma_cyberoperations {
  background-image: url(../images/header/ma_cyberoperations.jpg);
  background-position: center;
}

#header_ma_homelandprotection {
  background-image: url(../images/header/ma_homelandprotection.jpg);
  background-position: center;
}

#header_ma_nationalhealth {
  background-image: url(../images/header/ma_nationalhealth.jpg);
  background-position: center;
}

#header_ma_nationalsecurityanalysis {
  background-image: url(../images/header/ma_nationalsecurityanalysis.jpg);
  background-position: center;
}

#header_ma_nationalsecurityspace {
  background-image: url(../images/header/ma_nationalsecurityspace.jpg);
  background-position: center;
}

#header_ma_precisionstrike {
  background-image: url(../images/header/ma_precisionstrike.jpg);
  background-position: center;
}

#header_ma_researchandexploratorydevelopment {
  background-image: url(../images/header/ma_researchandexploratorydevelopment2.jpg);
  background-position: 0 40%;
}

#header_ma_seacontrol {
  background-image: url(../images/header/USSWyomingSSBN.jpg);
  background-position: center;
}

#header_ma_specialoperations {
  background-image: url(../images/header/ma_specialoperations.jpg);
  background-position: center;
}

#header_ma_strategicdeterrence {
  background-image: url(../images/header/ma_strategicdeterrence.jpg);
  background-position: center;
}

#header_program {
  background-image: url(../images/header/15-01737-0530.jpg);
  background-position: center;
  position: relative;
}

#header_visitorinformation {
  background-image: url(../images/header/xxx.jpg);
  background-position: center;
  position: relative;
}

#header_studentsgraduates {
  background-image: url(../images/header/OracleChip.jpg);
  background-position: center;
}

#header_vendorforms {
    background-image: url(../images/header/vendorforms.jpg);
    background-position: center;
}

/* SECONDARY PAGE STYLES ------------------------------------------------------------------------------------*/
header {
    height: 350px;
    position: relative;
}

.page-header {
  border-bottom: none;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px 30px;
  margin: 50px 100px;
  position: relative;
}

.page-header-alt {
  /*position: absolute;
	bottom: 0;
	transform: translateY(40%);*/
  background: #4a484c;
}

    .page-header-alt .page-title {
        /* breadcumbs too long padding: 8px 15px;*/
        padding: 8px 0 8px 15px;
        margin: 0;
        color: #fff;
        font-size: 50px;
        text-shadow: 2px 3px 0px black;
        text-align: left;
    }

.page-header-alt .page-title.page-title-tertiary {
  font-size: 36px;
}

.page-header-alt .breadcrumbs {
  display: inline-block;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  padding: 10px 15px;
}

.page-header-alt .breadcrumbs a:hover {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.page-header-alt .breadcrumbs a {
  opacity: 0.6;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  color: #fff;
  margin: 10px;
  text-decoration: none;
}

.page-header-alt .breadcrumbs span {
  margin: 10px;
}

.page-header .page-title {
  color: #fff;
  font-size: 50px;
}

/*.page-header-alt .page-title .breadcrumbs {
        color: #b7b7b7;
}*/

.breadcrumbs p {
  opacity: 0.6;
}

.page-header .breadcrumbs {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 1.2px;
}

.page-header .breadcrumbs a:hover {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.page-header .breadcrumbs a {
  opacity: 0.6;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  color: #fff;
  margin: 10px;
  text-decoration: none;
}

.side-nav {
  background: #fff;
  position: absolute;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0px 0px 15px;
  padding: 0px 0px 15px;
}

.side-nav.affix {
  position: fixed;
  top: 150px;
}

.side-nav li {
  border-top: 1px #7e7e7c solid;
  margin-top: 0 !important;
}

.side-nav li a {
  color: #000;
}

.side-nav li > a.active {
  font-family: Gentona Bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.side-nav li:last-child {
  border-bottom: 1px #7e7e7c solid;
}

.side-nav-nested {
  margin-left: 30px;
}

.side-nav-nested li {
  border: none;
}

.side-nav-nested li:last-child {
  border: none;
  margin-bottom: 10px;
}

.side-nav-nested li a {
  padding: 7px;
  line-height: 16px;
}

iframe {
  margin: 20px 0;
}

ul.p-list,
ol.p-list {
  font-size: 18px;
}

ul.p-list-compact,
ol.p-list-compact {
    font-size: 18px;
    padding-left: 1.5em;
    line-height: 1.2em;
}

ul.p-list-compact li,
ol.p-list-compact li {
    margin-bottom: 5px;
}

ul.p-list li,
ol.p-list li {
  margin-bottom: 10px;
}

ul.p-list li ul,
ol.p-list li ul {
  margin-top: 10px;
}

.picture-link-thumbnail {
  position: relative;
  margin: 15px 0px 0px 0px;
}

.picture-link-thumbnail a img {
  opacity: 0.9;
  transition: opacity 300ms ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.picture-link-thumbnail a:hover img {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.picture-link-thumbnail h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  margin: 0px 15px;
  padding: 10px;
  color: #fff;
}

.picture-link-thumbnail h3 small {
  display: block;
  color: #fff;
}

.picture-link-thumbnail p {
  font-size: 12px;
  font-family: Gentona Medium;
  color: #fff;
  padding: 10px 10px 0px;
  margin: 0px;
}

.thumb-description {
  opacity: 0.8;
  transition: opacity 300ms ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  bottom: 0px;
  left: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
}

.thumb-description h3 {
  position: static;
  color: #fff;
  font-size: 18px;
  background: none;
  margin: 0px;
}

.picture-link-thumbnail:hover .thumb-description {
  position: absolute;
  transition: opacity 300ms ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  visibility: visible;
  opacity: 1;
}

.caption-overlay {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.caption-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  visibility: visible;
  opacity: 1;
}

.picture-link-thumbnail:hover .caption-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  bottom: 0px;
  left: 15px;
  right: 15px;
  top: 0px;
  color: #fff;
  visibility: visible;
}

#map_canvas {
  width: 100%;
  height: 450px;
  margin: 20px 0;
  border: 1px solid #ccc;
}

/* ---------------------------------- */
/* TIMELINE STYLES ------------------ */
/* ---------------------------------- */

#header_about_timeline {
  border-bottom: 1px #ababab solid;
  padding: 10px 0;
}

.timeline-nav {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* MEDIA GALLERY STYLES -------------------------------------------------------------------------------------*/
ul.image-gallery {
  height: 400px;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 20px;
  padding: 0px;
}

ul.image-gallery li {
  list-style-type: none;
  overflow: hidden;
  height: calc(50% - 5px);
  padding: 0 5px 10px;
  background-color: #efefef;
  background-size: cover;
  background-position: center;
  margin: 0px 5px 10px;
  width: calc(25% - 10px);
}

ul.image-gallery li:first-child {
  width: calc(50% - 10px);
  height: 100%;
}

.imgWrapper {
  height: 100%;
  max-height: 100%;
  position: relative;
}

.imgWrapper img {
  height: calc(100% + 50px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: none;
}

ul.image-gallery li .media-caption {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  max-height: 90px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: translateY(0, -100%);
  -webkit-transform: translateY(0, -100%);
  transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:hover .media-caption {
  /*transform:translateY(0%);
	-webkit-transform:translateY(0%);*/
  max-height: 100%;
  transition: max-height 500ms ease-in-out;
}

.media-caption h3 {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 5px 0px;
}

ul.image-gallery li:first-child .media-caption {
  max-height: 130px;
  transform: translateY(0, -100%);
  -webkit-transform: translateY(0, -100%);
  transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:first-child:hover .media-caption {
  max-height: 100%;
  transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:first-child .media-caption h3 {
  font-size: 24px;
}

.media-caption-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.press-release-caption {
  font-size: 14px;
}

ul.image-gallery li .press-release-caption.hidden-thumbnail {
  display: none;
}

.press-release-caption a {
  text-transform: uppercase;
  color: #74aa50;
}

#bsPhotoGalleryModal .modal-content {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: none;
  color: #fff;
  box-shadow: none;
  border: none;
}

#bsPhotoGalleryModal h3 {
  color: #fff;
  margin-top: 10px;
}

#bsPhotoGalleryModal .hidden-content {
  display: none !important;
}

.modal-body img.bsp-img {
  max-height: 700px;
}

/* MISSION AREA PAGE -------------------------------------------------------------------------------------*/
.grey-bg {
  background: rgba(218, 217, 215, 1);
  padding: 15px 0px;
}

.grey-bg .container .col-md-9 {
  overflow: auto;
}

.ma-leadership-thumbnail {
  margin-top: 20px;
  background: #efefef;
}

.ma-leadership-thumbnail img {
  width: 33%;
  margin-right: 20px;
}

.ma-leadership-thumbnail .text-container {
  margin: 0 20px;
}

#section_main .ma-leadership-thumbnail h2 {
  margin-top: 20px;
}

.img-container {
  padding: 0;
  /*margin-top: 20px;*/
  margin-bottom: 20px;
}

.img-container img {
  height: auto !important;
  max-height: none !important;
}

.img-container-left {
  margin-right: 20px;
}

.img-container-right {
  margin-left: 20px;
}

/* ---------------------------------------- */
/* STAFF BIO PAGES ------------------------ */
/* ---------------------------------------- */
.staff-bio-thumbnail {
  cursor: pointer;
}

.staff-bio-thumbnail:hover {
  text-decoration: none;
}

    .staff-bio-thumbnail h3 {
        font-size: 1.3em;
        margin: 0;
    }

        .staff-bio-thumbnail h3 small {
            display: block;
            margin-top: 5px;
            font-size: 70%;
        }

    .staff-bio-thumbnail .panel.panel-default {
        overflow: hidden;
        min-height: 425px;
        box-shadow: 0 3px 5px rgba(0,0,0,0.05);
        transition: box-shadow 500ms;
    }

.staff-bio-thumbnail .panel.panel-default:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transition: box-shadow 500ms;
}

#staff-bio-email {
    padding: 20px;
    font-family: 'TimesNewRomanPS-ItalicMT';
    font-style: italic;
}

#back_list-view:hover {
  text-decoration: none;
}

/* ---------------------------------------- */
/* PROGRAM DETAIL PAGES ------------------- */
/* ---------------------------------------- */
.program-detail-thumbnail {
  cursor: pointer;
}

.program-detail-thumbnail:hover {
  text-decoration: none;
}

.program-detail-thumbnail h3 {
  font-size: 1.5em;
  margin: 0;
  margin-bottom: 1em;
}

.program-detail-thumbnail h3 small {
  display: block;
  margin-top: 10px;
}

.program-detail-thumbnail .panel.panel-default {
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 500ms;
}

.program-detail-thumbnail .panel.panel-default:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transition: box-shadow 500ms;
}

.program-icon {
    min-height: 0 !important;
    max-height: none;
    height: 140px;
    width: 140px;
    flex-shrink: 0;
}

#back_list-view:hover {
  text-decoration: none;
}

/* ---------------------------------------- */
/* CAREERS PAGE---------------------------- */
/* ---------------------------------------- */
.career-btn-container {
  margin: 20px -30px 30px;
}

.career-btn a {
  display: block;
  opacity: 0.84;
  /*color:#fff;*/
  font-family: Gentona ExtraLight, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  text-align: center;
  /*min-height:310px;*/
  /*padding:30px;*/
  transition: opacity 300ms ease-in-out;
}

.career-btn a:hover {
  transition: opacity 300ms ease-in-out;
  opacity: 1;
  text-decoration: none;
}

.career-btn a .career-btn-image {
  margin: 10px auto;
  height: 150px;
  width: 150px;
  border-radius: 999px;
}

.career-btn-horizontal {
  margin-bottom: 20px;
}

.career-btn-horizontal a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  min-height: unset;
}

.career-btn-horizontal a .career-btn-image {
  margin: 0;
  margin-right: 30px;
}

.career-btn-horizontal a .career-btn-text {
  flex-grow: 2;
}

.career-btn-horizontal a .career-btn-text p {
  font-size: 33px;
}

#btn-exp-professionals {
  background: #3b8bd8;
}
/* Variant of medium blue */
#btn-admin-support {
  background: #74aa50;
}

#btn-students-grads {
  background: #ff9e1b;
}

#btn-students-phds {
  background: #8a2a2b;
}

.career-btn a div:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
}

.career-btn a p {
  line-height: 18px;
}

.career-area-list .panel-heading {
  border-top: 1px #ddd solid;
}

.career-area-list .panel-body a {
  word-wrap: break-word;
}

.career-area-list .panel-heading:first-child {
  border-top-width: 0;
}

.glassdoor-badge {
  display: block;
  max-width: 250px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ---------------------------------------- */
/* RECRUITING CALENDAR -------------------- */
/* ---------------------------------------- */

#recruiting_calendar {
  margin-top: 20px;
}

.btn.calendar-filter {
  font-family: "Gentona Medium", sans-serif;
  color: #ffffff;
}

.calendar-list {
  align-items: stretch !important;
}

.calendar-list-date {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #ccc;
  padding: 15px;
  font-family: "Gentona Medium", sans-serif;
  font-size: 1.2em;
  color: white;
  margin-right: 20px !important;
  min-width: 165px;
  width: 20%;
}

.calendar-list-date .date-number {
  font-size: 2.1em;
}

.sept {
  background: #005bb4;
  background: -webkit-linear-gradient(bottom, #005bb4, #3c8bd9);
  background: -moz-linear-gradient(bottom, #005bb4, #3c8bd9);
  background: -o-linear-gradient(bottom, #005bb4, #3c8bd9);
  background: linear-gradient(bottom, #005bb4, #3c8bd9);
}

.oct {
  background: #1c8bd9;
  background: -webkit-linear-gradient(bottom, #1c8bd9, #7bb9f5);
  background: -moz-linear-gradient(bottom, #1c8bd9, #7bb9f5);
  background: -o-linear-gradient(bottom, #1c8bd9, #7bb9f5);
  background: linear-gradient(bottom, #1c8bd9, #7bb9f5);
}

.nov {
  background: #26175d;
  background: -webkit-linear-gradient(bottom, #26175d, #4a3a84);
  background: -moz-linear-gradient(bottom, #26175d, #4a3a84);
  background: -o-linear-gradient(bottom, #26175d, #4a3a84);
  background: linear-gradient(bottom, #26175d, #4a3a84);
}

.dec {
  background: #983a7d;
  background: -webkit-linear-gradient(bottom, #983a7d, #b7549b);
  background: -moz-linear-gradient(bottom, #983a7d, #b7549b);
  background: -o-linear-gradient(bottom, #983a7d, #b7549b);
  background: linear-gradient(bottom, #983a7d, #b7549b);
}

.jan {
  background: #8a2a2b;
  background: -webkit-linear-gradient(bottom, #8a2a2b, #a53537);
  background: -moz-linear-gradient(bottom, #8a2a2b, #a53537);
  background: -o-linear-gradient(bottom, #8a2a2b, #a53537);
  background: linear-gradient(bottom, #8a2a2b, #a53537);
}

.feb {
  background: #dd462d;
  background: -webkit-linear-gradient(bottom, #dd462d, #e5715e);
  background: -moz-linear-gradient(bottom, #dd462d, #e5715e);
  background: -o-linear-gradient(bottom, #dd462d, #e5715e);
  background: linear-gradient(bottom, #dd462d, #e5715e);
}

.mar {
  background: #74aa50;
  background: -webkit-linear-gradient(bottom, #74aa50, #8dca64);
  background: -moz-linear-gradient(bottom, #74aa50, #8dca64);
  background: -o-linear-gradient(bottom, #74aa50, #8dca64);
  background: linear-gradient(bottom, #74aa50, #8dca64);
}

.apr {
  background: #d2d755;
  background: -webkit-linear-gradient(bottom, #bbc045, #d2d755);
  background: -moz-linear-gradient(bottom, #bbc045, #d2d755);
  background: -o-linear-gradient(bottom, #bbc045, #d2d755);
  background: linear-gradient(bottom, #bbc045, #d2d755);
}

.may {
  background: #4a6934;
  background: -webkit-linear-gradient(bottom, #4a6934, #5f8048);
  background: -moz-linear-gradient(bottom, #4a6934, #5f8048);
  background: -o-linear-gradient(bottom, #4a6934, #5f8048);
  background: linear-gradient(bottom, #4a6934, #5f8048);
}

.jun {
  background: #f27c48;
  background: -webkit-linear-gradient(bottom, #1f6161, #2c7575);
  background: -moz-linear-gradient(bottom, #1f6161, #2c7575);
  background: -o-linear-gradient(bottom, #1f6161, #2c7575);
  background: linear-gradient(bottom, #1f6161, #2c7575);
}

.ALL {
  background: #999999;
  background: -webkit-linear-gradient(bottom, #999999, #7e7e7c);
  background: -moz-linear-gradient(bottom, #999999, #7e7e7c);
  background: -o-linear-gradient(bottom, #999999, #7e7e7c);
  background: linear-gradient(bottom, #999999, #7e7e7c);
}

.past {
    background: #cccccc;
/*    background: -webkit-linear-gradient(bottom, #cccccc, #cccccc);
    background: -moz-linear-gradient(bottom, #cccccc, #cccccc);
    background: -o-linear-gradient(bottom, #cccccc, #cccccc);
    background: linear-gradient(bottom, #cccccc, #cccccc);*/
}

/* ---------------------------------------- */
/* EDUCATION PAGE ------------------------- */
/* ---------------------------------------- */

.education-thumbnail {
  background: #efefef;
  margin: 20px 0px 0px 0px;
  /*padding:20px;*/
  position: relative;
  /*height:200px;*/
  white-space: normal;
  overflow: hidden;
}

.education-thumbnail h3 {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0px;
}

.education-thumbnail a {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #74aa50;
  text-transform: uppercase;
}

.education-thumbnail .article-image {
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.education-thumbnail .article-body {
  width: 60%;
  padding: 20px;
}

.education-thumbnail .article-body-right {
  float: right;
}

.education-thumbnail .article-body-left {
  float: left;
}

.education-thumbnail .article-image img {
  min-width: 100%;
  height: calc(100% + 100px);
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.education-thumbnail .article-image-bottom {
  width: calc(100% + 40px);
  margin-top: 15px;
}

.education-thumbnail .article-image-right {
  /*float:right;*/
  width: 40%;
  right: 0;
  /*height:calc(100% + 40px);
	margin-left: 15px;*/
  overflow: hidden;
}

.education-thumbnail .article-image-left {
  /*float:left;*/
  width: 40%;
  left: 0;
  /*height:calc(100% + 40px);
	margin-right: 15px;*/
  overflow: hidden;
}

.education-thumbnail.video-thumbnail {
  display: flex;
}

.education-thumbnail.video-thumbnail .article-video {
  width: 65%;
}

.education-thumbnail.video-thumbnail iframe {
  margin: 0;
}

.education-thumbnail.video-thumbnail .article-body {
  width: 35%;
  flex-grow: 1;
}

/* ---------------------------------------- */
/* NEWS AND PUBLICATIONS ------------------ */
/* ---------------------------------------- */

#header_newsandpublications {
  position: relative;
}

#carousel_instagram {
  background: gray;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

#instagram_badge {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}

ul.carousel-scroll {
  height: 352px;
  white-space: nowrap;
  font-size: 0px;
  position: absolute;
  top: 0;
  left: 0;
  /*animation: slideshow 120s linear 1;
    -moz-animation: slideshow 120s linear 1;
    -webkit-animation: slideshow 120s linear 1;
    animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    transform: translate3d(0, 0, 0);*/
}

ul.carousel-scroll:hover {
  animation-play-state: paused;
}

@keyframes slideshow {
  100% {
    transform: translateX(-40%);
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
  }
}

ul.carousel-scroll li {
  list-style-type: none;
  position: relative;
  display: inline-block;
  height: 352px;
  width: 352px;
  overflow: hidden;
  border-right: 2px #ccc solid;
}

ul.carousel-scroll li a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: normal;
  cursor: default;
}

ul.carousel-scroll li img {
  height: 100%;
  min-width: 100%;
}

ul.carousel-scroll a p {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  transition: opacity 500ms ease-in-out;
  opacity: 0;
}

ul.carousel-scroll a:hover p {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}

.img-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.img-description p {
  font-size: 14px;
}

#latest-press-releases,
#featured-stories {
  position: relative;
  margin: 20px 0 30px;
}

.ticker-container {
  padding: 0 35px;
}

.article-thumbnail-ticker {
  margin: 0px 20px 0px 0px;
  padding: 20px;
  width: 300px;
  height: 300px;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.article-thumbnail-ticker .article-image {
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.article-thumbnail.article-thumbnail-ticker h3 {
  font-size: 22px;
}

.article-thumbnail.featured-pub {
  margin: 0px 0px 20px;
  padding: 20px;
}

.article-image.pub-image {
  position: static;
  margin: 0px;
  height: 200px;
  width: auto;
  margin-right: 15px;
  float: left;
  border: 1px #b4b2ad solid;
}

.article-image.pub-image img {
  height: 100%;
  position: static;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
}

.social-sharing {
  margin: 20px 0 10px;
}

.social-sharing iframe {
  margin-top: 0;
  margin-bottom: 0;
}

.social-sharing > * {
  vertical-align: top !important;
  margin-right: 10px;
}

.see-more-button {
  border: 2px #74aa50 solid;
  background: none;
  padding: 15px 20px;
}

.see-more-button:hover {
  background: #74aa50;
}

.see-more-button:hover h4 {
  color: #ffffff;
}

.see-more-button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.see-more-button a:hover {
  text-decoration: none;
}

.see-more-button .glyphicon {
  font-size: 24px;
}

.see-more-button h3 {
  margin: 0;
  font-size: 32px;
  white-space: normal;
}

.see-more-button h4 {
  font-family: "Gentona Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  color: #74aa50;
}

a.side-scroll-control {
  width: 35px;
  background: #fff;
  position: absolute;
  top: -10px;
  bottom: -10px;
}

a.side-scroll-control img {
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
}

a.side-scroll-control.control-left {
  left: 0;
  border-right: 1px #ccc solid;
  box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.3);
}

a.side-scroll-control.control-left img {
  left: 0;
}

a.side-scroll-control.control-right {
  right: 0;
  border-left: 1px #ccc solid;
  box-shadow: -5px 0px 10px -5px rgba(0, 0, 0, 0.3);
}

a.side-scroll-control.control-right img {
  right: 0;
}

/* ---------------------------------------- */
/* PRESS RELEASE PAGE ----------------------*/
/* ---------------------------------------- */

.press-release-panel h3 {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.press-release-list p {
  display: flex;
}

.press-release-list p span {
  width: 100px;
}

.press-release-list p a {
  width: calc(100% - 100px);
}

.video-container {
  margin-bottom: 20px;
}

.video-container iframe {
  margin: 0;
}

/* ---------------------------------------- */
/* FEATURE STORY PAGE --------------------- */
/* ---------------------------------------- */

#article_body {
  padding-top: 50px;
}

.cover-photo {
  background: #cccccc;
  height: calc(100vh - 120px);
  width: 100vw;
  overflow: hidden;
  margin: 0;
  position: fixed;
  background-size: cover;
  background-position: 75%;
}

.cover-photo-right-90 {
  background-position: 90%;
}

.cover-photo img {
  object-fit: cover;
  height: 100%;
  width: 100vw;
}

.cover-photo-right img {
  object-position: 72%;
}

.fix-for-scroll {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
}

.feature-story-title {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: flex-end;
}

.feature-story-title h1 {
  font-size: 60px;
}

.feature-story-title h1 small {
  color: #ffffff;
  font-size: 0.5em;
  line-height: 1.2em;
}

.feature-story-title svg {
  width: 99%;
  overflow: visible;
}

svg#FeatureTitle_Zibi text,
svg#FeatureTitle_Solar-Wind text
svg.feature-story-title-svg text {
    font-family: 'Gentona ExtraLight', sans-serif;
}

    svg#FeatureTitle_Zibi text.gentona-light,
    svg#FeatureTitle_Solar-Wind text.gentona-light,
    svg.feature-story-title-svg text.gentona-light {
        font-family: 'Gentona Light', sans-serif;
    }

    svg#FeatureTitle_Zibi text.serif,
    svg#FeatureTitle_Solar-Wind text.serif,
    svg.feature-story-title-svg test.serif {
        font-family: serif;
        font-style: italic;
    }

.feature-story-byline {
  font-family: "Gentona Bold", sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
}

.feature-story-img-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.feature-story-img-caption {
  font-family: "Gentona Book", sans-serif;
  margin-top: 10px;
}

.feature-story-img-caption p {
  font-size: 12px;
  margin-bottom: 5px;
}

.feature-story-separator {
  height: 10px;
  background-image: url("../images/icon_apl_separator.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin: 40px 0;
}

.feature-story-image,
.feature-story-blockquote {
  padding: 10px 0;
}

.feature-story-blockquote,
.feature-story-blockquote.pull-right {
  border: 0;
  color: #002d72;
  text-align: left;
  font-family: "Gentona ExtraLight", "Gentona Light", sans-serif;
  font-size: 2.5em;
  line-height: 1.2em;
}

.feature-story-blockquote .open-quote {
  line-height: 0.6em;
  font-size: 3em;
  float: left;
}

.feature-story-blockquote span:nth-child(2) {
  padding-left: 1.2em;
  display: block;
}

/* ---------------------------------------- */
/* PUBLICATIONS PAGES ----------------------*/
/* ---------------------------------------- */

.annual-report-container {
  margin: 10px 0;
}

.annual-report-container img {
  margin-right: 20px;
}

.pub-cover {
  border: 1px #ccc solid;
  width: 156px;
  min-width: 156px;
  max-height: 198px !important;
  min-height: 198px !important;
}

/* ---------------------------------------- */
/* TECH DIGEST ---------------------------- */
/* ---------------------------------------- */

.tech-digest-article {
  border-top: 1px dotted #ccc;
}

.tech-digest-article img {
  margin-top: 20px;
  margin-bottom: 10px;
}

.tech-digest-article h2 {
  font-size: 24px;
  margin-top: 5px !important;
}

.tech-digest-article h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.table-digest-toc h4 {
  margin: 10px 0 5px 0;
}

.AuthorName {
  display: block;
  margin-bottom: 10px;
}

.AuthorName-archive {
  display: block;
}

.table-subhead {
  background: #eee;
  padding-top: 20px;
  font-weight: bold;
}

.archive-table th {
  font-size: 16px;
}

.anchorTargetFix {
  padding-top: 130px;
  margin-top: -130px;
}

#topBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
}

.img-container-digest {
  width: 235px;
  /*height: 300px;*/
  position: relative;
  overflow: hidden;
  /*min-height: 300px;*/
  margin-right: 20px;
  margin-bottom: 20px;
}

.img-container-digest img {
  width: 235px;
  /*position: absolute;
    top: 0px;
    right: 0px;*/
}

/* ---------------------------------------- */
/* LEADERSHIP PAGE -------------------------*/
/* ---------------------------------------- */

.picture-blurb-list {
  border-top: 1px dotted #ccc;
  padding: 10px 0;
}

.flex-list {
  display: flex;
  align-items: flex-start;
}

.flex-list > div {
  margin: 10px 0;
}

.picture-blurb-list h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}

.picture-blurb-list.leadership-thumbnail {
  padding-right: 10px;
}

.picture-blurb-list.leadership-thumbnail h2 {
  font-size: 24px;
  margin-top: 5px !important;
}

.picture-blurb-list.leadership-thumbnail h3 {
  font-size: 18px;
}

.picture-blurb-list h3:first-child {
  margin-top: 0;
  margin-bottom: 15px;
}

.picture-blurb-list h2 {
  margin-top: 5px;
}

.picture-blurb-list img {
  max-height: 220px;
  min-height: 220px;
  margin: 10px 20px 10px 0px;
}

.picture-blurb-list img.staff-pic {
  height: 130px;
}

.picture-blurb-list img.facility-pic {
  height: 180px;
}

/* ---------------------------------------- */
/* PROSTHETICS PAGE ------------------------*/
/* ---------------------------------------- */

.prosthetics-program-list {
  border-top: 1px dotted #ccc;
  padding: 10px 0;
}

.prosthetics-program-list div {
  left: 0;
  width: 300px;
  float: left;
}

.prosthetics-timeline-list {
  border-top: 1px dotted #ccc;
  padding: 10px 0;
}

.prosthetics-timeline-list p span {
  left: 0;
  width: 300px;
  padding-right: 20px;
}

/* ---------------------------------------- */
/* STAFF PROFILE PAGES -------------------- */
/* ---------------------------------------- */

.staff-profile {
  border-top: 1px #ababab solid;
  margin-top: 10px;
  padding-top: 15px;
}

.staff-profile-skills {
  background: #fff;
  border-radius: 0;
}

.staff-profile-skills h3:first-child {
  margin-top: 0;
}

.staff-profile-skills ul {
  font-family: Gentona Light, sans-serif;
  list-style-type: square;
  padding-left: 15px;
}

.staff-profile-skills ul li {
  margin-bottom: 5px;
}

.staff-profile .see-more-button {
  border-width: 1px;
  padding: 15px;
}

.staff-profile .see-more-button h3 {
  font-size: 24px;
}

/*MODAL-----------------------*/

.close {
  margin: -20px -40px -20px 0;
}

.close img {
  height: 36px !important;
  width: 36px !important;
}

.modal-caption {
  padding: 10px 0px;
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
}

.modal-caption p {
  padding-top: 10px;
  font-size: 11px;
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  margin-bottom: 5px;
}

.modal-caption a {
  padding-top: 10px;
  font-size: 12px;
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #74aa50;
  margin-bottom: 5px;
}

.modal-caption h3 {
  font-size: 24px;
  font-family: Gentona Book, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  margin: 0px;
}

.modal-footer {
  border-style: none;
}

.modal-header {
  border-style: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

/* LITTLE HACKS --------------------------------------------------------------------------------------------*/

.no-border {
  border: 0;
}

.no-padding {
  padding: 0px;
}

.no-top-margin {
  margin-top: 0px;
}

.no-min-height {
  min-height: 0px !important;
}

.no-bottom-margin {
  margin-bottom: 0px;
}

.side-scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.neg-margin {
  margin-left: -12px;
  margin-right: -12px;
}

.allcaps {
  text-transform: uppercase;
}

.white {
  color: #fff;
}

.no-break {
  word-break: keep-all;
  white-space: nowrap;
}

.floatright {
  float: right;
}

.hidden {
  display: none;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-15px {
  margin-bottom: 15px;
}

.mt-10px {
    margin-top: 10px;
}

.d-flex {
    display: flex;
}




/* MEDIA QUERY STYLES ------------------------------------------------------------------------------------*/

/* Navbar */
@media (max-width: 767px) {
  body {
    padding-bottom: 800px;
  }

  .navbar-default .navbar-collapse {
    margin-top: 20px;
  }

  .navbar-default .navbar-form {
    margin-top: -1px;
  }

  ul.navbar-nav li:hover ul.dropdown-menu {
    /* Makes Dropdowns appear on hover */
    display: none;
  }

  li.dropdown a:after {
    display: none;
  }

  #link_search {
    display: none;
  }

  .logo {
    margin: 0px 0px 0px 20px;
    display: block;
  }

  .logo img {
    width: 260px;
  }

  .homepage-search {
    width: auto;
  }

  .carousel-indicators {
    margin-bottom: 50px;
  }

  .carousel-caption h1,
  .carousel-caption-alt h1 {
    font-size: 28px;
    text-align: center;
  }

  .carousel-caption h2,
  .carousel-caption-alt h2 {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }

  #section_what-is-APL .container {
    padding: 50px;
  }

  .side-nav {
    position: static;
  }

  .side-nav.affix {
    position: static;
  }

  .page-header {
    margin: 30px;
  }

  .page-header .page-title {
    font-size: 36px;
  }

  .career-btn {
    margin-bottom: 10px;
  }

  .career-btn a {
    min-height: 0px;
  }

  #header_careers_weareAPL {
    background-position: unset;
  }

  /* News and Media galleries */
    ul.image-gallery .visible-xs-block,
    ul.award-gallery .visible-xs-block,
    ul.media-gallery .visible-xs-block {
        display: none !important;
    }

  ul.image-gallery li:first-child {
    width: 100%;
    margin: 0;
  }

  ul.image-gallery li {
    width: calc(50% - 10px);
    height: calc(75% - 5px);
    margin-bottom: 10px;
  }

  /* Feature Stories */
  .cover-photo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, black, 10%, transparent);
  }

  #article_body {
    /* Fix for later iPhones so byline doesn't overlap cover photo */
    padding-top: 150px;
  }
}

@media (max-width: 549px) {
  body {
    padding-bottom: 600px;
  }

  .logo img {
    width: 240px;
  }

  div.alert-bar {
    min-height: 70px;
  }

  div.alert-bar a {
    min-height: 20px;
    display: block;
    font-size: 16px;
  }

  #section_carousel,
  .carousel .carousel-inner .item {
    height: 350px;
  }

  .carousel .carousel-inner .item img {
    height: 100%;
    width: auto;
    max-width: none;
  }

  .carousel-container {
    left: 0;
    right: 0;
    transform: translateX(0%);
  }

  .carousel-caption {
    padding: 0;
    bottom: 0;
    transform: translateY(100%);
  }

  .carousel-caption-alt {
    bottom: 0;
    transform: translateY(100%);
  }

  .carousel-indicators {
    margin-bottom: 10px;
  }

  .carousel-caption h1,
  .carousel-caption-alt h1 {
    font-size: 24px;
    margin: 0;
  }

  #section_what-is-APL {
    margin-top: 89px;
  }

  #section_what-is-APL h1 {
    font-size: 30px;
  }

  #section_what-is-APL p {
    font-size: 14px;
  }

  .article-thumbnail .article-image-right,
  .article-thumbnail .article-image-left {
    position: static;
    height: 250px;
    width: 100%;
    background-position-y: 0;
  }

  .article-thumbnail .article-body-left,
  .article-thumbnail .article-body-right {
    float: none;
    width: 100%;
  }

  .page-header-alt h1 {
    padding: 8px 0;
  }

  .page-header-alt .breadcrumbs {
    display: block;
    padding: 0;
  }

  .page-header-alt .breadcrumbs > * {
    margin: 10px 5px !important;
    display: inline-block;
  }

  header {
    height: 250px;
  }

  /* News and Media galleries */
  ul.image-gallery .visible-xs-block {
    display: none !important;
  }

  ul.image-gallery li {
    width: 100%;
    height: calc(75% - 5px);
    margin: 0px;
    margin-bottom: 10px;
  }

  ul.image-gallery li:first-child {
    width: 100%;
  }

  /* Image Thumbnails */
  .education-thumbnail .article-image-left,
  .education-thumbnail .article-image-right,
  .education-thumbnail .article-body-left,
  .education-thumbnail .article-body-right {
    float: none;
    width: auto;
    position: static;
  }

  .education-thumbnail .article-image img {
    width: 100%;
    height: auto;
    position: static;
    transform: none;
  }

  .education-thumbnail.video-thumbnail {
    display: block;
  }

  .education-thumbnail.video-thumbnail .article-video,
  .education-thumbnail.video-thumbnail .article-body {
    width: auto;
  }
}

@media (max-width: 320px) {
  .logo img {
    width: 220px;
  }

  div.alert-bar {
    min-height: 70px;
  }

  div.alert-bar a {
    min-height: 20px;
    display: block;
    font-size: 16px;
  }
}

@media (min-width: 550px) {
  #section_carousel,
  .carousel .carousel-inner .item {
    height: 350px;
  }

  .carousel-container {
    left: 0;
    right: 0;
    transform: translateX(0%);
  }
}

@media (min-width: 768px) {
  body {
    padding-top: 198px;
    padding-bottom: 550px;
  }

  .navbar-header {
    float: none;
  }

  nav.navbar-fixed-top div.container {
    margin-bottom: 21px;
  }

  .logo {
    margin: 20px auto;
    display: block;
    text-align: center;
  }

  .homepage-search,
  .mobile-search {
    width: 200px;
    display: none;
  }

  .nav > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }

  ul.navbar-nav ul.dropdown-menu {
    top: 70px;
  }

  #section_carousel,
  .carousel .carousel-inner .item {
    height: 400px;
  }

  .carousel-caption h1,
  .carousel-caption-alt h1 {
    font-size: 38px;
    float: left;
    clear: both;
  }

  #section_what-is-APL .container {
    padding: 70px 50px 50px 200px;
  }

  .side-nav {
    position: static;
  }

  .side-nav.affix {
    position: static;
  }

  .staggered-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .modal-dialog {
    width: 700px;
  }

  .extra-bottom-padding {
    padding-bottom: 300px;
  }

  .extra-x-bottom-padding {
    padding-bottom: 700px;
  }

  /*Tech Digest*/
  .tech-digest-article {
    min-height: 370px;
  }

  /*Feature Stories*/
  .feature-story-title {
    align-items: center;
  }

  .feature-story-title svg {
    margin: 100px 0;
  }

    .darktext {
        color: #555555 !important;
        fill: #555555 !important;
    }

    .align-items-start {
        align-items: flex-start;
    }
}

@media (min-width: 992px) {
  body {
    padding-top: 136px;
    padding-bottom: 508px;
  }

  .navbar-header {
    float: left;
  }

  nav.navbar-fixed-top div.container {
    margin-bottom: 0;
  }

  .logo {
    margin: 20px 50px 20px 0px;
    display: inline;
    text-align: initial;
  }

  .homepage-search {
    width: 240px;
  }

  .nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }

  /*ul.navbar-nav ul.dropdown-menu {
    top: 156px;
  }*/

  ul.nav.navbar-nav {
    float: right;
    margin: 0 -15px;
  }

  form.navbar-form.navbar-right {
    margin: 0 -15px;
  }

  .carousel-caption {
    padding: 30px 0;
  }

  .carousel-caption h1,
  .carousel-caption-alt h1 {
    /*width:60%;*/
    float: left;
    clear: both;
    font-size: 40px;
  }

  section {
    margin-top: 50px;
  }

  #section_what-is-APL .container {
    padding: 70px 50px 50px 350px;
  }

  #section_strategy div.col-md-4 {
    padding-bottom: 0px;
  }

  .picture-link-thumbnail {
    margin: 15px 0 0 -15px;
  }

  .side-nav {
    padding-right: 15px;
    padding-left: 15px;
    width: 230px;
    position: fixed;
  }

  .side-nav.affix {
    position: fixed;
  }

  .side-nav.affix-top {
    position: absolute;
  }

  .staggered-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .modal-dialog {
    width: 900px;
  }

  /*Feature Stories*/
  .cover-photo-right img {
    object-position: right;
  }

  .feature-story-image,
  .feature-story-blockquote {
    padding: 10px 20px 20px;
  }

  .feature-story-image-left,
  .feature-story-blockquote-left {
    margin-left: -25%;
  }

  .feature-story-image-right,
  .feature-story-blockquote-right {
    margin-right: -25%;
    float: right;
  }



  /* AWARDS AND RECOGNITION */
    ul.award-gallery li, ul.media-gallery li {
        width: calc(33% - 10px) !important;
    }
}

@media (min-width: 1200px) {
  body {
    padding-top: 120px;
    padding-bottom: 508px;
  }

  ul.nav.navbar-nav {
    /*float:left;*/
    margin: initial;
  }

  .navbar-nav > li > a {
    margin-bottom: 20px;
  }

  form.navbar-form.navbar-right {
    margin: 10px -15px;
  }

  ul.navbar-nav ul.dropdown-menu {
    top: auto;
  }

  #section_carousel,
  .carousel .carousel-inner .item {
    height: 580px;
  }

  #section_what-is-APL .container {
    padding: 70px 50px 50px 450px;
  }

  .side-nav {
    width: 275px;
  }

  .staggered-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  #section_latest-news .staggered-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .modal-dialog {
    width: 900px;
  }

  /*Short Carousel Title Hack*/
  h1.short-carousel-title {
    margin-left: 15%;
  }

  h2.short-carousel-title {
    margin-right: 15%;
  }

    /*Tech Digest*/
    .tech-digest-article {
        min-height: 400px;
    }

    /*Staff Bios*/
    .staff-bio-thumbnail .panel.panel-default {
        min-height: 360px;
    }
}

/* Iframe */
@media (max-width: 767px) {
  iframe.content-video-responsive,
  iframe#video_press-release {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) {
  iframe.content-video-responsive,
  iframe#video_press-release {
    width: 690px;
    height: 388px;
  }
}

@media (min-width: 992px) {
  iframe.content-video-responsive,
  iframe#video_press-release {
    width: 675px;
    height: 380px;
  }
}

@media (min-width: 1200px) {
  iframe.content-video-responsive,
  iframe#video_press-release {
    width: 825px;
    height: 464px;
  }
}

#publication-home .hide-publication {
  display: none;
}

/* ADDED 3-17-2017 FOR DEFINING INNOVATIONS PAGE */
.defining-innov-article {
  padding: 10px 0 30px;
  border-top: 1px #ababab dotted;
}

.defining-innov-article:before,
.defining-innov-article:after {
  content: "";
  display: block;
  clear: both;
}

.defining-innov-article img {
  float: left;
  width: 230px;
  margin: 0 10px 0 -20px;
}

.defining-innov-article p {
  padding: 0 !important;
  overflow: hidden;
}

hr.nh {
  padding: 0px;
  border-top: 1px #ababab dotted;
}

.tab {
  margin-left: 10em;
}

.show-software {
  display: block !important;
}

.showelement {
  display: block;
}

/* AWARDS MEDIA GALLERY STYLES -------------------------------------------------------------------------------------*/
ul.award-gallery, ul.media-gallery {
    height: 300px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px;
    padding: 0px;
}

    ul.award-gallery li, ul.media-gallery li {
        list-style-type: none;
        overflow: hidden;
        height: calc(100% - 5px);
        padding: 0 5px 10px;
        background-color: #efefef;
        background-size: cover;
        background-position: center;
        margin: 0px 5px 10px;
        width: 100%;
    }

        /* ul.award-gallery li:first-child, ul.media-gallery li:first-child {
            width: calc(50% - 10px);
            height: 100%;
        } */

.imgWrapper {
  height: 100%;
  max-height: 100%;
  position: relative;
}

.imgWrapper img {
  height: calc(100% + 50px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: none;
}

ul.award-gallery li .media-caption, ul.media-gallery li .media-caption {
    font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    max-height: 90px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(0, -100%);
    -webkit-transform: translateY(0, -100%);
    transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:hover .media-caption {
  /*transform:translateY(0%);
	-webkit-transform:translateY(0%);*/
  max-height: 100%;
  transition: max-height 500ms ease-in-out;
}

.media-caption h3 {
  font-family: Gentona Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 5px 0px;
}

ul.image-gallery li:first-child .media-caption {
  max-height: 130px;
  transform: translateY(0, -100%);
  -webkit-transform: translateY(0, -100%);
  transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:first-child:hover .media-caption {
  max-height: 100%;
  transition: max-height 500ms ease-in-out;
}

ul.image-gallery li:first-child .media-caption h3 {
  font-size: 24px;
}

.media-caption-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 1) 89%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.press-release-caption {
  font-size: 14px;
}

ul.image-gallery li .press-release-caption.hidden-thumbnail {
  display: none;
}

.press-release-caption a {
  text-transform: uppercase;
  color: #74aa50;
}

#bsPhotoGalleryModal .modal-content {
  font-family: Gentona Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: none;
  color: #fff;
  box-shadow: none;
  border: none;
}

#bsPhotoGalleryModal h3 {
  color: #fff;
  margin-top: 10px;
}

#bsPhotoGalleryModal .hidden-content {
  display: none !important;
}

.modal-body img.bsp-img {
  max-height: 700px;
}
