/*
 * Styles for MIT NSE site
 *
 * Imports baseline.css
 *
 * rjw 7/2015
 * major updates 10/2017
 *
 * STANDARD COLORS:
 *  #000000   text
 *  #f9521e   headings, borders (orange)
 *  #3957e6   link (blue)
 *  #f9521e   link hover/highlight (orange)
 *  #f15a22   link hover/highlight (orange) NEW 8/23
 *  #345678   background blue
 *
 * MAJOR BREAKPOINTS:
 *  default:  mobile layout
 *  >= 32em:  wider margins, header layout change
 *  >= 48em:  body area columns, desktop menu
 *
 */


/* reset */
@import url("baseline.css");
/* Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');



/*** GENERAL ***/

html {
  font-size: 62.5%;    /* rem base, 62.5% = 10 */
  overflow-y: scroll;  /* OPTIONAL - force vertical scrollbar */
}
body {
  background-color: #000000;   /* for development/debugging */
  background-color: transparent;
}

/* default font */
body {
  font-family: "Raleway", Arial, Lucida, Helvetica, "Bitstream Vera Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #000000;
  word-wrap: break-word; /* allow long words/urls to break */
}
/* default horizontal rule */
hr {
  height: 1px;
  border: none;
  color: #f15a22;
  background-color: #f15a22;
  margin: 1.8rem 0 1.8rem 0;
}
/* default links */
a,
a:link {
  color: #3957e6;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: #3957e6;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #f15a22;
  text-decoration: none;
  outline: none;
}
a:focus {
  /*outline: thin dotted;*/
}
a.darklink,
a.darklink:link {
  color: #000000;
  text-decoration: none;
}
a.darklink:visited {
  color: #000000;
  text-decoration: none;
}
a.darklink:hover {
  color: #f15a22;
  text-decoration: none;
}




/*** PRE-PAGE ***/
/* hidden stuff and stuff outside of the normal page flow */

#divprepage {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
}



/*** MENUBAR AREA ****/

#divmenubar {
  display: block;
  position: relative;
  z-index: 1;
  background-color: #f15a22;
  height: auto;
  overflow: hidden;  /* clearself */
}
#divmobiletoggle {
  float: left;
  padding-left: 10px;
  line-height: 0;
}
#mobiletogglelink {
  display: block;
  width: auto;
  min-height: 38px;
  padding: 12px 9px 12px 30px;
  background-image: url("/nse/img/header/menuicon_21x15_white.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}
#divmenubar .mitlogo {
  float: right;
  margin: 3px 10px 0 0;
  width: 48px;
}
#divmenubar .mitlogo p {
  line-height: 0;
}
#divmenubar .mitlogo a {
  display: block;
  padding: 8px 0 4px 0;
}
#divmenubar .mitlogo svg {
  width: 100%;
  max-width: 48px;
  max-height: 25px;
}
#divmenubar .mitlogo svg rect {
  fill: #ececec;
}
#divmenubar .mitlogo svg rect.istem {
  fill: #ffffff;
}

/* intermediate width */
@media all and (min-width: 32em) {
  #divmobiletoggle {
    padding-left: 15px;
  }
  #divmenubar .mitlogo {
    margin-right: 15px;
  }
}
/* desktop width */
@media all and (min-width: 48em) {
  #divmenubar {
    display: none;
  }
}



/*** MOBILE MENU ***/

/* outer container (note that toggle is elsewhere) */
#divmobilemenu {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 3px solid #f15a22;
}
/* desktop width */
@media all and (min-width: 48em) {
  #divmobilemenu {
    display: none;
  }
}

/* inner container (slides open/closed when toggle clicked) */
#divmobileinner {
  display: none;
}

/* menu container */
#divmobilelinks {
}

/* individual menu */
#divmobilelinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#divmobilelinks li.open > ul {
  display: block;
}
#divmobilelinks li.closed > ul {
  display: none;
}

/* list items */
#divmobilelinks li {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8rem;
  color: #000000;
  text-transform: none;
  margin: 0;
}
/* outer li only */
#divmobilelinks > ul > li {
  border-top: 2px solid #ffffff;
}
#divmobilelinks > ul > li:first-child {
  border-top: none;
}
/* inner li only */
#divmobilelinks li li {
  font-size: 1.4rem;
  line-height: 1.6rem;
  background-color: #ffffff;
  border-top: 1px solid #ececec;
}
#divmobilelinks li li:first-child {
  border-top: none;
}
/* inner inner li only */
#divmobilelinks li li li {
  border-top: none;
}

/* links */
#divmobilelinks li a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 1.5rem 10px 1.3rem 10px;
  background-color: #ececec;
  outline: none;
}
#divmobilelinks li a,
#divmobilelinks li a:link,
#divmobilelinks li a:visited {
  color: #000000;
  text-decoration: none;
}
#divmobilelinks li a.active,
#divmobilelinks li a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* inner links only */
#divmobilelinks li li a {
  padding: 1.2rem 10px 1.2rem 30px;
  background-color: #ffffff;
}
#divmobilelinks li li:first-child > a {
  padding-top: 1.5rem;
}
#divmobilelinks li li a,
#divmobilelinks li li a:link,
#divmobilelinks li li a:visited {
  color: #000000;
}
#divmobilelinks li li a:hover {
  color: #f15a22;
}
#divmobilelinks li li a.active {
  font-weight: bold;
  color: #f15a22;
}
/* inner inner links only */
#divmobilelinks li li li a {
  padding: 1.2rem 10px 1.2rem 50px;
}
#divmobilelinks li li li:first-child > a {
  padding-top: 0.8rem;
}
#divmobilelinks li li li:last-child > a {
  padding-bottom: 1.8rem;
}
/* heading items */
#divmobilelinks li li span.heading {
  display: block;
  position: relative;
  z-index: 1;
  padding: 1.2rem 10px 1.2rem 30px;
  background-color: #ffffff;
}
/* separators */
#divmobilelinks li li.separator {
  height: 0;
  border-top: 10px solid #ececec;
}
#divmobilelinks li li.separator:first-child {
  display: none;
}
#divmobilelinks li li.separator + li {
  border-top: none;
}
/* intermediate width */
@media all and (min-width: 32em) {
  #divmobilelinks li a {
    padding-left: 15px;
  }
  #divmobilelinks li li a,
  #divmobilelinks li li span.heading {
    padding-left: 35px;
  }
  #divmobilelinks li li li a,
  #divmobilelinks li li li span.heading {
    padding-left: 55px;
  }
}

/* opener/closer buttons *//* only on the outer menu items on this site */
#divmobilelinks li a span.opener,
#divmobilelinks li a span.closer {
  display: block;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  min-width: 5.2rem;
  background-color: #ececec;
  border-left: 2px solid #ffffff;
  font-size: 150%;
  font-weight: normal;
  line-height: 1;
  color: #000000;
  text-align: center;
}
#divmobilelinks li li a span.opener,
#divmobilelinks li li a span.closer {
  padding-top: 10px;
}
#divmobilelinks li.closed > a > span.opener {
  display: block;
}
#divmobilelinks li.open > a > span.opener {
  display: none;
}
#divmobilelinks li.closed > a > span.closer {
  display: none;
}
#divmobilelinks li.open > a > span.closer {
  display: block;
}

/* mobile menu search */

#divmobilesearch {
  padding: 2.4rem 10px 2.4rem 10px;
}
#divmobilesearch .search {
  width: 100%;
}

/* layout */
#divmobilesearch .search .elements {
  display: -ms-flexbox;      /* IE 10 */
  display: -webkit-flex;     /* Safari */
  display: flex;             /* spec */

  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  /*align-items: stretch;*/      /* fill vertical space */
}
#divmobilesearch .search .elements .input {
  -ms-flex: 1 0 80px;
  -webkit-flex: 1 0 80px;
  flex: 1 0 80px;        /* grow if possible, min width 80px */

  margin-right: 16px;
}
#divmobilesearch .search .elements .button {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;        /* don't grow or shrink, auto width */

  /* center vertically inside element */
  display: flex;
  align-items: center;
}

/* style */
#divmobilesearch .search div.input input {
  display: block;  /* because of chrome bug */
  margin: 0;
  padding: 0.2rem 1px 0.4rem 1px;
  border: none;
  width: 100%;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.0rem;
  color: #000000;
  border-bottom: 1px solid #000000;
}
/* query placeholder style */
/* THE FOLLOWING NEED TO BE SEPARATE - they fail if lumped together */
#divmobilesearch .search div.input input:-ms-input-placeholder {       /* IE */
  font-size: 1.6rem;
  font-weight: normal;
  color: #aaaaaa;
  opacity: 1.0; /* override browser default style */
}
#divmobilesearch .search div.input input::-webkit-input-placeholder {  /* Webkit and Edge */
  font-size: 1.6rem;
  font-weight: normal;
  color: #aaaaaa;
  opacity: 1.0; /* override browser default style */
}
#divmobilesearch .search div.input input::-moz-placeholder {           /* Firefox 19+ */
  font-size: 1.6rem;
  font-weight: normal;
  color: #aaaaaa;
  opacity: 1.0; /* override browser default style */
}
#divmobilesearch .search div.button input {
  display: block;  /* because of chrome bug */
  border: none;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  overflow: hidden;
  text-indent: -9999px;
  color: #ffffff;
  font-size: 1.0rem;
  line-height: 0;
  background-image: url('/nse/img/header/magnifier_000000_36x36.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
/* intermediate width */
@media all and (min-width: 32em) {
  #divmobilesearch {
    padding: 2.4rem 15px 2.4rem 15px;
  }
}



/*** OUTER CONTAINER ***/

/* centered container for page content */
div.divoutershell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  background-color: #ffffff;
}
@media all and (min-width: 32em) {
  div.divoutershell {
    padding: 0 15px;
  }
}



/*** HEADER REGION ***/

#divheader {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1.8rem 0 1.8rem 0;
  border-bottom: 3px solid #f15a22;
  overflow: hidden;  /* clearself */
}
@media all and (min-width: 32em) {
  #divheader {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2.2rem 0 2.2rem 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divheader {
    padding: 4.6rem 0 2.6rem 0;
  }
}



/* HEADER - SITE TITLE */

#divheader .sitetitle {
  width: 100%;
  /*max-width: 300px;*/
  max-width: 225px;
  text-align: left;
  line-height: 0;
}



/* HEADER - SEARCH */

#divheader .search {
  display: none;
  width: 100%;
  max-width: 240px;
}

/* layout */
#divheader .search .elements {
  display: flex;             /* spec */
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
}
#divheader .search .elements .input {
  flex: 1 0 80px;        /* grow if possible, min width 80px */

  margin-right: 8px;
}
#divheader .search .elements .button {
  flex: 0 0 auto;        /* don't grow or shrink, auto width */

  /* center vertically inside element */
  display: flex;
  align-items: center;
}

/* style */
#divheader .search div.input input {
  display: block;  /* because of chrome bug */
  margin: 0;
  padding: 0.2rem 1px 0.4rem 1px;
  border: none;
  width: 100%;
  background-color: transparent;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 2.0rem;
  color: #000000;
  border-bottom: 1px solid #000000;
}
/* query placeholder style */
/* THE FOLLOWING NEED TO BE SEPARATE - they fail if lumped together */
#divheader .search div.input input:-ms-input-placeholder {       /* IE */
  font-size: 1.2rem;
  font-weight: normal;
  color: #888888;
  opacity: 1.0; /* override browser default style */
}
#divheader .search div.input input::-webkit-input-placeholder {  /* Webkit and Edge */
  font-size: 1.2rem;
  font-weight: normal;
  color: #888888;
  opacity: 1.0; /* override browser default style */
}
#divheader .search div.input input::-moz-placeholder {           /* Firefox 19+ */
  font-size: 1.2rem;
  font-weight: normal;
  color: #888888;
  opacity: 1.0; /* override browser default style */
}
#divheader .search div.button input {
  display: block;  /* because of chrome bug */
  border: none;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  overflow: hidden;
  text-indent: -9999px;
  color: #ffffff;
  font-size: 1.0rem;
  line-height: 0;
  background-image: url("/nse/img/header/magnifier_000000_36x36.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
#divheader .search div.button input:hover {
  background-image: url("/nse/img/header/magnifier_f15a22_36x36.png");
}

/* desktop */
@media all and (min-width: 48em) {
  /* show search */
  #divheader .search {
    display: block;
  }
}
@media all and (min-width: 54em) {
  #divheader .search {
    width: 280px;
  }
}



/*** PRIMARY NAVIGATION ***/

#divprimarynav {
  display: none;
}
/* desktop */
@media all and (min-width: 48em) {
  #divprimarynav {
    display: block;
    clear: both;
    width: 100%;
    padding: 1.2rem 0 1.2rem 0;
    border-bottom: 1px solid #f15a22;
    overflow: hidden;  /* clearself */
  }
  #divprimarynav ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
  }
  #divprimarynav ul li {
    float: left;
    width: auto;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    color: #000000;
  }
  #divprimarynav ul li a {
    display: block;
    padding: 0.9rem 18px 0.7rem 20px;
  }
  #divprimarynav ul li:first-child a {
    padding-left: 0;
  }
  #divprimarynav ul li a,
  #divprimarynav ul li a:link,
  #divprimarynav ul li a:visited {
    color: #000000;
    text-decoration: none;
  }
  #divprimarynav ul li a:hover,
  #divprimarynav ul li a.active {
    color: #f15a22;
    text-decoration: none;
  }
  body.home #divprimarynav li.home {
    display: none;
  }
}



/*** FOOTER REGION ***/

#divfooter {
  position: relative;
  z-index: 1;
  border-top: 3px solid #f15a22;
  width: 100%;
  padding: 0 0 1.8rem 0;
  border-bottom: 3px solid #000000;
  margin: 0 0 1.8rem 0;
  overflow: hidden;  /* clearself */
}
/* intermediate */
@media all and (min-width: 32em) {
  #divfooter {
    padding: 0 0 2.4rem 0;
    margin: 0 0 2.4rem 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divfooter {
    padding: 4.8rem 0 4.8rem 0;
    margin: 0 0 2.4rem 0;
  }
}



/* FOOTER - LINKS */

#divfooter .footerlinks {
  display: block;
  margin: 1.8rem 0 0 0;
  overflow: hidden;  /* clearself */
}
#divfooter .footerlinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 50%;
}
#divfooter .footerlinks li {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
#divfooter .footerlinks a,
#divfooter .footerlinks a:link,
#divfooter .footerlinks a:visited {
  color: #000000;
  text-decoration: none;
}
#divfooter .footerlinks a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* intermediate */
@media all and (min-width: 32em) {
  #divfooter .footerlinks {
    margin: 2.4rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divfooter .footerlinks {
    float: right;
    width: 33%;
    margin: 0 33% 0 -100%;
  }
}



/* FOOTER - SOCIAL ICONS */

#divfooter .social {
  display: block;
  margin: 1.8rem 0 0 0;
  overflow: hidden;    /* clearself */
}
#divfooter .social ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
#divfooter .social li {
  display: inline-block;
  margin: 0 3px 0 0;
}
/* intermediate */
@media all and (min-width: 32em) {
  #divfooter .social {
    margin: 2.4rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divfooter .social {
    float: right;
    width: 33%;
    margin: 0 0 0 -100%;
  }
  #divfooter .social ul {
    text-align: right;
  }
  #divfooter .social li {
    margin: 0 0 0 3px;
  }
}



/* FOOTER - ADDRESS */

#divfooter .address {
  display: block;
  margin: 1.8rem 0 0 0;
}
#divfooter .address h3 {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
#divfooter .address p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
#divfooter .address a,
#divfooter .address a:link,
#divfooter .address a:visited {
  color: #000000;
  text-decoration: none;
}
#divfooter .address a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* intermediate */
@media all and (min-width: 32em) {
  #divfooter .address {
    margin: 2.4rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divfooter .address {
    float: left;
    width: 33%;
    margin: 0 -100% 0 0;
  }
}



/*** BODY REGION ***/


/* SECTION TITLE */

#divsectiontitle {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 1.8rem 0 0 0;
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #f15a22;
}
#divsectiontitle a {
  color: #f15a22 !important;
  text-decoration: none !important;
}
/* intermediate */
@media all and (min-width: 32em) {
  #divsectiontitle {
    padding: 1.8rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divsectiontitle {
    /* by default, no changes */
  }
}



/* DEFAULT COLUMN LAYOUT - ONE COLUMN, NO SIDEBARS */

#divcolumns {
  position: relative;
  z-index: 8;
  padding: 0 0 1.8rem 0;
  overflow: hidden;  /* clearself */
}
#divleftcolumn,
#divrightcolumn {
  display: none;
  overflow: hidden;  /* clearself */
}
#divcentercolumn {
  padding: 1.8rem 0 0 0;
  width: 100%;
  overflow: hidden;  /* clearself */
}
/* intermediate */
@media all and (min-width: 32em) {
  #divcentercolumn {
    padding: 1.8rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  #divcolumns {
    padding: 0;
  }
}



/* TWO COLUMN CONTENT LAYOUT */

/* desktop */
@media all and (min-width: 48em) {
  body.template-2col #divsectiontitle {
    padding: 2.0rem 0 0 0;
    margin-bottom: -3.8rem;       /* brings column container this far up */
  }
  body.template-2col #divcolumns {
    margin: 2.0rem 0 2.0rem 0;
    min-height: 400px;
  }
  /* vertical rule between columns */
  body.template-2col #divcolumns::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 189px;
    border-right: 1px solid #f15a22;
  }
  /* left column - fixed width */
  body.template-2col #divleftcolumn {
    display: block;
    position: relative;
    z-index: 2;
    float: left;
    margin: 0 -100% 0 0;
    width: 174px;
    padding: 3.1rem 0 0 0;
  }
  /* center column - takes remaining space */
  body.template-2col #divcentercolumn {
    position: relative;
    z-index: 1;
    float: left;
    margin: 0 -100% 0 0;
    width: 100%;
    padding: 0 12px 0 214px;  /* leaves a maximum column width of 724px */
  }
}



/* THREE COLUMN CONTENT LAYOUT */

body.template-3col #divrightcolumn {
  display: block;
  margin-top: 1.8rem;
  border-top: 1px solid #f15a22;
  padding: 1.8rem 0 0 0;
  width: 100%;
}
/* intermediate */
@media all and (min-width: 32em) {
  body.template-3col #divrightcolumn {
    padding: 1.8rem 0 0 0;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  body.template-3col #divsectiontitle {
    padding: 2.0rem 0 0 0;
    margin-bottom: -3.8rem;       /* brings column container this far up */
  }
  body.template-3col #divcolumns {
    margin: 2.0rem 0 2.0rem 0;
    min-height: 400px;
  }
  /* vertical rules between columns */
  body.template-3col #divcolumns::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 189px;
    border-right: 1px solid #f15a22;
  }
  body.template-3col #divcolumns::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    width: 221px;
    border-left: 1px solid #f15a22;
  }
  /* left column - fixed width */
  body.template-3col #divleftcolumn {
    display: block;
    position: relative;
    z-index: 2;
    float: left;
    margin: 0 -100% 0 0;
    width: 174px;
    padding: 3.1rem 0 0 0;
  }
  /* right column - fixed width */
  body.template-3col #divrightcolumn {
    display: block;
    position: relative;
    z-index: 2;
    float: right;
    margin: 0 0 0 -100%;
    width: 207px;
    padding: 2.8rem 5px 0 0;
    border: none;
  }
  /* center column - takes remaining space */
  body.template-3col #divcentercolumn {
    position: relative;
    z-index: 1;
    float: left;
    margin: 0 -100% 0 0;
    width: 100%;
    padding: 0 244px 0 214px;  /* leaves a maximum column width of 492px */
  }
}



/* SECONDARY NAVIGATION STYLES */

#divleftcolumn ul.secondarynav {
  margin: 0 0 2.2rem 0;
  padding: 0;
  list-style: none;
}
#divleftcolumn ul.secondarynav li {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4rem;
  margin: 0;
}
#divleftcolumn ul.secondarynav li.separator {
  font-size: 0;
  line-height: 0;
  height: 1px;
  background-color: #f15a22;
  margin: 1.7rem 0 1.7rem 0;
}
#divleftcolumn ul.secondarynav li span.heading {
  display: block;
  padding: 0.5rem 0 0.7rem 0;
}
#divleftcolumn ul.secondarynav li a {
  display: block;
  padding: 0.5rem 0 0.5rem 0;
}
#divleftcolumn ul.secondarynav li a,
#divleftcolumn ul.secondarynav li a:link,
#divleftcolumn ul.secondarynav li a:visited {
  color: #000000;
  text-decoration: none;
}
#divleftcolumn ul.secondarynav li a:hover,
#divleftcolumn ul.secondarynav li a.active {
  color: #f15a22;
  text-decoration: none;
}
#divleftcolumn ul.secondarynav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#divleftcolumn ul.secondarynav ul li a {
  padding: 0.3rem 0 0.3rem 12px;
}
#divleftcolumn ul.secondarynav ul li:first-child a {
  padding-top: 0;
}
/* special for in+around */
#divleftcolumn ul.secondarynav.inaround li span.heading {
  font-size: 1.8rem;
  line-height: 1.8rem;
}
#divleftcolumn ul.secondarynav.inaround ul li a {
  padding: 0.5rem 0 0.5rem 0;
}
#divleftcolumn ul.secondarynav.inaround ul li:first-child a {
  padding-top: 0.5rem;
}




/* RIGHT COLUMN CONTENT STYLES */

#divrightcolumn h2 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.1rem;
  color: #f15a22;
  margin-bottom: 0.4rem;
}
#divrightcolumn h2 a,
#divrightcolumn h2 a:link,
#divrightcolumn h2 a:visited {
  color: #f15a22;
  text-decoration: none;
}
#divrightcolumn h2 a:hover {
  color: #f15a22;
  text-decoration: none;
}
#divrightcolumn h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.9rem;
  color: #000000;
  margin-bottom: 0;
}
#divrightcolumn h4 {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8rem;
  color: #000000;
  margin-bottom: 0;
}
#divrightcolumn p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: normal;
  line-height: 2.0rem;
  margin-bottom: 1.8rem;
}
#divrightcolumn p.photo {
  line-height: 1.1rem;
  margin-bottom: 0.8rem;
}
#divrightcolumn p.photo img {
  margin-bottom: 0.2rem;
}
#divrightcolumn ul {
  margin: 0 0 1.8rem 0;
  padding: 0;
  list-style: none;
}
#divrightcolumn ul li {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
#divrightcolumn ul li a,
#divrightcolumn ul li a:link,
#divrightcolumn ul li a:visited {
  color: #000000;
  text-decoration: none;
}
#divrightcolumn ul li a:hover {
  color: #f15a22;
  text-decoration: none;
}
#divrightcolumn hr {
  /* use defaults */
}
/* apply to first block to raise it to top of column */
#divrightcolumn .flushtop {
  margin-top: -2.8rem;
}
/* download links such as on people profiles */
#divrightcolumn ul.downloads {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.4rem;
}
#divrightcolumn ul.downloads li {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8rem;
}
#divrightcolumn ul.downloads li a,
#divrightcolumn ul.downloads li a:link,
#divrightcolumn ul.downloads li a:visited {
  color: #3957e6;
  text-decoration: none;
}
#divrightcolumn ul.downloads li a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* related links such as on spotlights */
#divrightcolumn ul.related {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.4rem;
}
#divrightcolumn ul.related li {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8rem;
}
#divrightcolumn ul.related li a,
#divrightcolumn ul.related li a:link,
#divrightcolumn ul.related li a:visited {
  color: #3957e6;
  text-decoration: none;
}
#divrightcolumn ul.related li a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* quotes on spotlight pages */
#divrightcolumn p.quote {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.5rem;
  color: #666666;
  margin: 4.2rem 0 4.2rem 0;
}



/* CENTER COLUMN CONTENT STYLES */

#divcentercolumn h1 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  color: #000000;
  margin: 1.6rem 0 1.6rem 0;
}
#divcentercolumn h1:first-child {
  margin-top: 0;
}
#divcentercolumn h1.headline {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3.0rem;
}
@media all and (min-width: 48em) {
  #divcentercolumn h1,
  #divcentercolumn h1:first-child {
    margin: 2.8rem 0 1.6rem 0;
  }
}


#divcentercolumn h2 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.3rem;
  color: #000000;
  margin-bottom: 0.6rem;
}
#divcentercolumn h3 {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 0;
}
#divcentercolumn h4 {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 0;
}
#divcentercolumn h1 + p.subhead {  /* 2014 subtitle styles */
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.3rem;
  color: #000000;
  margin: -1.6rem 0 1.6rem 0;
}
#divcentercolumn h2 + p.subhead {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.0rem;
  color: #000000;
  margin: -0.6rem 0 0.6rem 0;
}
#divcentercolumn p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 1.4rem;
}
#divcentercolumn ul {
  margin-left: 2.4rem;
  margin-bottom: 1.4rem;
  list-style-type: disc;
}
#divcentercolumn ol {
  margin-left: 2.4rem;
  margin-bottom: 1.4rem;
  list-style-type: decimal;
}
#divcentercolumn ol[type="a"] {
  list-style-type: lower-latin;
}
#divcentercolumn li {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 2.0rem;
  color: #000000;
}
#divcentercolumn li li {
  font-size: 100%;
}
#divcentercolumn ul li ul {
  margin-bottom: 0;
}
#divcentercolumn ol.paragraphic li,
#divcentercolumn ul.paragraphic li {
  margin-bottom: 1.4rem;
}
#divcentercolumn div.divobjectwrapper {
  margin-bottom: 1.4rem;
}
#divcentercolumn .floatleft {
  float: left;
  margin: 0.3rem 8px 0.4rem 0px;
}
#divcentercolumn .floatright {
  float: right;
  margin: 0.3rem 0 0.4rem 8px;
}
#divcentercolumn .maxwidth33 {
  max-width: 33.333%;
}
#divcentercolumn .maxwidth40 {
  max-width: 40%;
}
#divcentercolumn .maxwidth50 {
  max-width: 50%;
}
/* horizontal rules */
#divcentercolumn hr {
  margin: 1.4rem 0 1.4rem 0;
}
/* tables */
#divcentercolumn table {
  margin: 0 0 1.4rem 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
}
#divcentercolumn table thead,
#divcentercolumn table tbody {
  border: none;
  background-color: transparent;
}
#divcentercolumn tr th,
#divcentercolumn tr td {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 2.0rem;
  color: #000000;
  margin: 0;
  padding: 4px;
  border: none;
  background-color: transparent;
}
#divcentercolumn tr th {
  font-weight: bold;
}
/* simple lined table */
#divcentercolumn table.linetable {
}
#divcentercolumn table.linetable tr td {
  padding: 8px;
  border: 1px solid #c2c2c2;
  text-align: left;
  vertical-align: top;
}
/* horizontal rule table */
#divcentercolumn table.ruletable {
}
#divcentercolumn table.ruletable tr td {
  padding: 8px;
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  text-align: left;
  vertical-align: top;
}

/* table cells alternate alignments */
#divcentercolumn td.center,
#divcentercolumn th.center {
  text-align: center;
}
#divcentercolumn td.right,
#divcentercolumn th.right {
  text-align: right;
}
/* news/event item listings */
#divcentercolumn table.itemtable {
  border-top: 1px solid #e0e0e0;
  margin: 2.8rem 0 1.8rem 0;
}
#divcentercolumn table.itemtable td {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid #e0e0e0;
}
#divcentercolumn table.itemtable td h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.0rem;
  margin-bottom: 0.8rem;
}
#divcentercolumn table.itemtable td h2 a,
#divcentercolumn table.itemtable td h2 a:link,
#divcentercolumn table.itemtable td h2 a:visited {
  color: #000000;
  text-decoration: none;
}
#divcentercolumn table.itemtable td h2 a:hover {
  color: #f15a22;
  text-decoration: none;
}
#divcentercolumn table.itemtable td h2 + p.subhead { /* 2014 subhead style */
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.0rem;
  color: #000000;
  margin: -0.8rem 0 0.8rem 0;
}
#divcentercolumn table.itemtable td p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 0.8rem;
}
/* column layout */
#divcentercolumn table.columntable {
  margin: 0;
}
#divcentercolumn table.columntable td {
  padding: 0 54px 0 0;
}



/* MISCELLANEOUS CONTENT STYLES */

#divbody ul.doubledot {
  margin: 0 0 1.8rem 0px;
  padding: 0;
  list-style: none;
}
#divbody ul.doubledot li {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8rem;
  padding-left: 0.9rem;
}
#divbody ul.doubledot li:before {
  content: ": ";
  display: block;
  float: left;
  margin-left: -0.9rem;
}
#divbody ul.doubledot li a,
#divbody ul.doubledot li a:link,
#divbody ul.doubledot li a:visited {
  color: #000000;
  text-decoration: none;
}
#divbody ul.doubledot li a:hover {
  color: #f15a22;
  text-decoration: none;
}
/* sequence of items, usually listing news, awards, events, ... */
#divcentercolumn div.item {
  margin-top: 1.4rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.4rem;
  overflow: hidden;
}
#divcentercolumn div.item > :last-child {
  margin-bottom: 0;
}




/****** PAGE-SPECIFIC STYLES ******/


/*** SITE HOME PAGE ***/


@media all and (min-width: 48em) {
  body.home #divprimarynav {
    border-bottom: none;
  }
}
/* no slideshow at mobile widths */
body.home #divspotshow {
  display: none;
}
/* spotlight container */
body.home #divspotlights {
  padding-top: 2.4rem;
}
/* spotlights */
body.home #divspotlights .spotlight {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #f15a22;
  margin-bottom: 2.4rem;
}
body.home #divspotlights .spotlight:last-child {
  margin-bottom: 0;
}
body.home #divspotlights .spotlight .image {
  line-height: 0;
  margin-bottom: 0.8rem;
}
body.home #divspotlights .spotlight .text {
  padding: 0;
}
/* spotlight text styles */
body.home #divspotlights .spotlight .text h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #000000;
  margin-bottom: 0.4rem;
}
body.home #divspotlights .spotlight .text h2 a,
body.home #divspotlights .spotlight .text h2 a:link,
body.home #divspotlights .spotlight .text h2 a:visited {
  color: #000000;
  text-decoration: none;
}
body.home #divspotlights .spotlight .text h2 a:hover {
  color: #f15a22;
  text-decoration: none;
}
body.home #divspotlights .spotlight .text p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #000000;
  margin-bottom: 0;
}
body.home #divspotlights .spotlight .text a,
body.home #divspotlights .spotlight .text a:link,
body.home #divspotlights .spotlight .text a:visited {
  color: #3957e6;
  text-decoration: none;
}
body.home #divspotlights .spotlight .text a:hover {
  color: #f15a22;
  text-decoration: none;
}

/* intermediate - turn on slideshow */
@media all and (min-width: 38em) {
  /* turn off static spotlights */
  body.home #divspotlights {
    display: none;
  }
  /* turn on slideshow */
  body.home #divspotshow {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  /* container for slides */
  body.home #divspotslides {
    position: relative;
    z-index: 1;
    width: 100%;;
    height: auto;
    padding: 0 0 34.94736% 0;  /* 332/950 */
    background-color: #333333;
  }
  /* individual slides */
  body.home #divspotslides .spotlight {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;;
    height: auto;
    padding: 0 0 34.94736% 0;  /* 332/950 */
    background-color: #333333;
  }
  body.home #divspotslides .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 66.31578%;   /* 630/950 */
    z-index: 1;
    line-height: 0;
  }
  body.home #divspotslides .text {
    position: absolute;
    left: 69.47368%;   /* 660/950 */
    top: 24.09638%;    /* 80/332 */
    width: 27.36842%;  /* 260/950 */
    height: auto;
    z-index: 1;
  }
  /* anchors */
  body.home #divspotnav {
    width: auto;
    margin-right: -6px;
    height: 7px;
    overflow: hidden;
  }
  body.home #divspotnav a {
    float: left;
    margin: 0 -100% 0 0;
    width: auto;
    height: 7px;
    background-color: #555555;
    border-right: 6px solid #ffffff;
  }
  body.home #divspotnav a.activeSlide {
    background-color: #f15a22;
  }
  /* slideshow text styles */
  body.home #divspotslides .spotlight .text h2 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 2.4rem;
    color: #ffffff;
    margin-bottom: 0;
  }
  body.home #divspotslides .spotlight .text h2 a,
  body.home #divspotslides .spotlight .text h2 a:link,
  body.home #divspotslides .spotlight .text h2 a:visited {
    color: #ffffff;
    text-decoration: none;
  }
  body.home #divspotslides .spotlight .text h2 a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  body.home #divspotslides .spotlight .text p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #ffffff;
    margin-bottom: 0;
  }
  body.home #divspotslides .spotlight .text a,
  body.home #divspotslides .spotlight .text a:link,
  body.home #divspotslides .spotlight .text a:visited {
    color: #ffffff;
    text-decoration: none;
  }
  body.home #divspotslides .spotlight .text a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
}

/* desktop - increase font sizes */
@media all and (min-width: 54em) {
  body.home #divspotslides .text {
    top: 36.14457%;    /* 120/332 */
  }
  body.home #divspotslides .spotlight .text h2 {
    font-size: 2.4rem;
    line-height: 3.0rem;
  }
  body.home #divspotslides .spotlight .text p {
    font-size: 1.4rem;
    line-height: 2.0rem;
  }
}

/* home page headlines */

body.home #divheadlines {
  margin-top: 3.6rem;
}
body.home #divheadlines .headline {
  position: relative;
  z-index: 1;
  margin-bottom: 2.4rem;
}
body.home #divheadlines a.itemlink {
  display: block;
  overflow: hidden;  /* clear self */
}
body.home #divheadlines .image {
  float: left;
  width: 360px;
  max-width: 40%;
  line-height: 0;
}
body.home #divheadlines .text {
  padding: 0 0 0 15px;
  overflow: hidden;  /* block formatting context */
}
body.home #divheadlines .text h2 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8rem;
  color: #000000;
  margin: 0;
}
body.home #divheadlines a.itemlink:hover .text h2 {
  color: #f15a22;
}

@media (min-width: 481px) { /* intermediate */
  /* reset styles */
  body.home #divheadlines .headline {
    margin: 0;
  }
  body.home #divheadlines .image {
    float: none;
    width: 100%;
    max-width: 100%;
  }
  body.home #divheadlines .text {
    padding: 9px 12px 12px 0;
  }
  body.home #divheadlines .text h2 {
    font-weight: bold;
  }

  /* flex layout */
  body.home #divheadlines {
    display: flex;
    flex-flow: row wrap;
  }
  /* items fixed at 1/2 of width */
  body.home #divheadlines .headline {
    flex: 0 0 50%;       /* four across */
    /* act as container for link */
    display: flex;             /* spec */
  }
  body.home #divheadlines .headline .itemlink {
    flex: 0 0 100%;        /* don't grow or shrink, full width */
  }
  /* create the 8px gutters between boxes */
  body.home #divheadlines {
    margin-left: -4px;
    margin-right: -4px;
  }
  body.home #divheadlines .headline {
    margin: 0;  /* remove margin */
    border: 4px solid #ffffff;
  }
}

@media (min-width: 721px) { /* desktop */
  body.home #divheadlines {

    /* single row */
    flex-flow: row nowrap;
  }
  /* items fixed at 1/4 of width */
  body.home #divheadlines .headline {
    flex: 0 0 25%;       /* four across */
  }
  body.home #divheadlines .text {
    padding: 9px 12px 0 0;
  }
}

/* home page learn more buttons */

body.home #divlearnmore {
  margin: 3.6rem 0 0 0;
  border-top: 3px solid #f15a22;
  padding: 3.6rem 0 3.6rem 0;
}
body.home #divlearnmore ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.home #divlearnmore li {
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 2.2rem;
  color: #ffffff;
  background-color: #f15a22;
  margin: 0 0 3px 0;
}
body.home #divlearnmore li a {
  display: block;
  padding: 14px;
  color: #ffffff;
}
body.home #divlearnmore li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (min-width: 481px) { /* intermediate */
  body.home #divlearnmore ul {
    display: flex;
    flex-flow: row wrap;
  }
  /* list items fixed at 1/2 of width */
  body.home #divlearnmore li {
    flex: 0 0 50%;        /* don't grow or shrink, each item 1/2 of width */
    display: flex;
  }
  body.home #divlearnmore li a {
    flex: 0 0 100%;        /* don't grow or shrink, full width */
    padding: 14px 16px;    /* more padding */
  }
  /* create the 6px gutters between boxes */
  body.home #divlearnmore ul {
    margin: 0 -3px 0 -3px;
  }
  body.home #divlearnmore li {
    margin: 0;  /* remove margin */
    border: 3px solid #ffffff;
  }
}
@media (min-width: 721px) { /* wide */
  body.home #divlearnmore ul {
    flex-flow: row nowrap;     /* single row */
  }
  body.home #divlearnmore li {
    flex: 1 0 1px;       /* N across */
  }
}
@media (min-width: 981px) { /* wide */
  body.home #divlearnmore li a {
    padding: 14px 20px;    /* more padding */
  }
}



/*** MULTIFOCUS PAGES ***/

/* 2-column layout: (24)-325-49-325-(25)           */
/* 3-column layout: (24)-200-49-200-49-200-(25)    */
/* defaults are for 2-column layout (divsections2) */

/* upper part */
body.template-multifocus #divcentercolumn #divintrotext p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 2.0rem;
  color: #000000;
}
/* lower part */
body.template-multifocus #divcentercolumn div.divsection {
  margin-top: 1.4rem;
  border-top: 1px solid #f15a22;
  padding-top: 1.4rem;
}
body.template-multifocus #divcentercolumn div.divsection h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 100%;
  color: #000000;
  margin-bottom: 1.4rem;
}
body.template-multifocus #divcentercolumn div.divsection h2 a,
body.template-multifocus #divcentercolumn div.divsection h2 a:link,
body.template-multifocus #divcentercolumn div.divsection h2 a:visited {
  color: #000000;
  text-decoration: none;
}
body.template-multifocus #divcentercolumn div.divsection h2 a:hover {
  color: #f15a22;
  text-decoration: none;
}
body.template-multifocus #divcentercolumn div.divsection p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 0;
}
body.template-multifocus #divcentercolumn div.divsection p.photo {
  line-height: 0;
  margin-bottom: 0.8rem;
}
/* change margins if p.photo precedes h2 */
body.template-multifocus #divcentercolumn div.divsection p.photo + h2 {
  margin-bottom: 0.4rem;
}
/* intermediate */
@media all and (min-width: 32em) {
  body.template-multifocus #divcentercolumn div.divsection {
    padding-left: 248px;
    overflow: hidden;    /* clearself */
  }
  body.template-multifocus #divcentercolumn div.divsection p.photo {
    float: left;
    margin-left: -248px;
    width: 240px;
  }
  xxbody.template-multifocus #divcentercolumn div.divsections3 div.divsection {
    padding-left: 208px;
  }
  xxbody.template-multifocus #divcentercolumn div.divsections3 div.divsection p.photo {
    margin-left: -208px;
    width: 200px;
  }
}
/* desktop */
@media all and (min-width: 48em) {
  body.template-multifocus #divcentercolumn #divintrotext {
    width: 100%;
    max-width: 698px;  /* lesser of 2 and 3 column layouts */
  }
  body.template-multifocus #divcentercolumn div.divsections {
    margin-top: 1.4rem;
    border-top: 1px solid #f15a22;
    padding-top: 1.4rem;
    width: 100%;
    max-width: 699px;
  }
  body.template-multifocus #divcentercolumn div.divsections > div.inner {
    position: relative;
    z-index: 1;
    margin: 0 -24px 0 -25px;
    overflow: hidden;    /* clearself */
  }
  body.template-multifocus #divcentercolumn div.divsections > div.inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    width: 50%;
    top: 0;
    bottom: 0;
    border-right: 1px solid #f15a22;
  }
  body.template-multifocus #divcentercolumn div.divsections > div.inner::after {
    display: none;
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 50%;
    top: 0;
    bottom: 0;
    border-left: 1px solid #f15a22;
  }
  body.template-multifocus #divcentercolumn div.divsection {
    float: left;
    margin: 0 -100% 0 0;
    width: 50%;
    border: none;
    padding: 0 24px 0 25px;
  }
  body.template-multifocus #divcentercolumn div.divsection:nth-child(2) {
    margin-left: 50%;
  }
  body.template-multifocus #divcentercolumn div.divsection p.photo {
    float: none;
    margin-left: 0;
    width: auto;
  }

  /* differences for 3-column layout */
  body.template-multifocus #divcentercolumn div.divsections3 {
    max-width: 698px;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.inner::before {
    width: 33.33333%;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.inner::after {
    display: block;
    width: 33.33334%;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.divsection {
    width: 33.33333%;
    padding: 0 24px 0 25px;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.divsection:nth-child(2) {
    margin-left: 33.33333%;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.divsection:nth-child(3) {
    margin-left: 66.66666%;
  }
  body.template-multifocus #divcentercolumn div.divsections3 div.divsection p.photo {
    margin-left: 0;
    width: auto;
  }
  /* if only one item, hide the second vertical rule */
  body.template-multifocus #divcentercolumn div.divsections3.oneitem div.inner::after {
    display: none;
  }
}



/*** EDUCATION HOME PAGE ***/

body.education_home #divcolumns {
  margin: 2.0rem 0 4.8rem 0;
  min-height: 400px;
}

body.education_home #divintrotext h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #f15a22;
  text-transform: uppercase;
}
body.education_home #divintrotext p {
  margin: 2.0rem 0 0 0;
  font-size: 1.4rem;
  line-height: 2.0rem;
}
body.education_home #divintrotext p.intro {
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 2.6rem;
}
body.education_home #divintrotext p.intro + p:not(.intro) {
  margin-top: 4.0rem;
}
body.education_home h2 {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 3.2rem;
}
body.education_home .section {
  margin-top: 4.8rem;
  border-top: 1px solid #f15a22;
  padding-top: 3.2rem;
}
/* programs */
body.education_home #divprograms ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
body.education_home #divprograms li {
  background-color: #444;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #fff;
  display: flex;
}
body.education_home #divprograms li a {
  display: block;
  width: 100%;
}
body.education_home #divprograms li a span {
  display: block;
  padding: 1.0rem 12px;
  min-height: 6.4rem;
  color: #fff;
  text-decoration: none;
}
body.education_home #divprograms li a:focus span,
body.education_home #divprograms li a:hover span {
  text-decoration: underline;
}
body.education_home #divprograms li a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 310 / 208;
  background-color: #000;
  background-size: cover;
}
body.education_home #divprograms li.undergraduate a::before {
  background-image: url("/nse/img/education/home/undergraduate.jpg");
}
body.education_home #divprograms li.graduate a::before {
  background-image: url("/nse/img/education/home/graduate.jpg");
}
body.education_home #divprograms li.professional a::before {
  background-image: url("/nse/img/education/home/professional-education.jpg");
}
@media all and (min-width: 32em) {
  body.education_home #divprograms ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* labs */
body.education_home #divlabs ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body.education_home #divlabs li {
  display: flex;
  font-size: 2.0rem;
  font-weight: normal;
  line-height: 2.4rem;
  color: #ffffff;
  background-color: #f15a22;
  margin: 0;
}
body.education_home #divlabs li a {
  display: block;
  width: 100%;
  padding: 1.2rem 12px;
  color: #ffffff;
}
body.education_home #divlabs li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media all and (min-width: 32em) {
  body.education_home #divlabs ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  body.education_home #divlabs li a {
    min-height: 9.4rem;
  }
}
@media all and (min-width: 48em) {
  body.education_home #divlabs ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  body.education_home #divlabs li:nth-child(5),
  body.education_home #divlabs li:nth-child(6) {
    grid-column: span 2;
  }
}



/*** EDUCATION PAGES ***/

/* sample schedules */
#divcentercolumn table.schedule {
  border: none;
  border-spacing: 0;
  margin: 1.4rem 0 1.4rem 0;
}
#divcentercolumn table.schedule td,
#divcentercolumn table.schedule th {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1;
  padding: 6px 20px 6px 6px;
}
#divcentercolumn table.schedule thead th {
  font-weight: bold;
  background-color: #f3f3f3;
}
#divcentercolumn table.schedule tbody th {
  font-weight: bold;
}
#divcentercolumn table.schedule tr.startyear td,
#divcentercolumn table.schedule tr.startyear th {
  border-top: 1px solid #e6e6e6;
}
/* undergraduate degree requirements */
#divcentercolumn table.degreechart {
  border: none;
  border-spacing: 0;
  margin: 0.6rem 0 0.6rem 0;
}
#divcentercolumn table.degreechart td,
#divcentercolumn table.degreechart th {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 0 6px 6px 0;
}
#divcentercolumn table.degreechart td:nth-child(2) {
  text-align: center;
}
/* subject requirements */
#divcentercolumn table.subjectrequirements {
  width: 90%;
  border: none;
  border-spacing: 0;
  margin: 0.6rem auto 0.6rem auto;
}
@media all and (min-width: 56em) {
  #divcentercolumn table.subjectrequirements {
    width: 80%;
  }
}
#divcentercolumn table.subjectrequirements td,
#divcentercolumn table.subjectrequirements th {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 0 16px 8px 0;
}
/* faq slideshow */
#faqslideshowcontainer {
  border: 1px solid #bbccdd;
  padding: 12px;
  width: 100%;
  max-width: 202px;
}
#divcentercolumn #faqslideshowcontainer {
  margin-top: 2.4rem;
}
#faqslideshow {
  height: 16.0rem;
}
#faqslideshow p {
  font-size: 1.4rem;
  font-weight: bold;
}
#faqslideshow p span.vcenter {
  display: table;
  height: 16.0rem;
}
#faqslideshow span.vcenter a {
  display: table-cell;
  vertical-align: middle;
  outline: none;
}

#faqslideshow a:link,
#faqslideshow a:visited {
  color: #000000;
  text-decoration: none;
}
#faqslideshow a:hover {
  color: #f15a22;
  text-decoration: none;
}
@media all and (min-width: 48em) {
  #faqslideshowcontainer + p.viewallfaqs {
    /*text-align: right;*/
  }
}



/*** RESEARCH HOME PAGE ***/

body.research_home #divcolumns {
  margin: 2.0rem 0 4.8rem 0;
  min-height: 400px;
}

body.research_home #divintrotext h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #f15a22;
  text-transform: uppercase;
}
body.research_home #divintrotext p {
  margin: 2.0rem 0 0 0;
  font-size: 1.4rem;
  line-height: 2.0rem;
}
body.research_home #divintrotext p.intro {
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 2.6rem;
}
body.research_home #divintrotext p.intro + p:not(.intro) {
  margin-top: 4.0rem;
}
body.research_home h2 {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 3.2rem;
}
body.research_home .section {
  margin-top: 4.8rem;
  border-top: 1px solid #f15a22;
  padding-top: 3.2rem;
}
/* fields */
body.research_home #divfields ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
body.research_home #divfields li {
  background-color: #444;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #fff;
  display: flex;
}
body.research_home #divfields li a {
  display: block;
  width: 100%;
}
body.research_home #divfields li a span {
  display: block;
  padding: 1.0rem 12px;
  min-height: 6.4rem;
  color: #fff;
  text-decoration: none;
}
body.research_home #divfields li a:focus span,
body.research_home #divfields li a:hover span {
  text-decoration: underline;
}
body.research_home #divfields li a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 233 / 184;
  background-color: #000;
  background-size: cover;
}
body.research_home #divfields li.fission a::before {
  background-image: url("/nse/img/research/fission.jpg");
}
body.research_home #divfields li.fusion a::before {
  background-image: url("/nse/img/research/fusion.jpg");
}
body.research_home #divfields li.security a::before {
  background-image: url("/nse/img/research/security.jpg");
}
body.research_home #divfields li.quantum a::before {
  background-image: url("/nse/img/research/quantum.jpg");
}
body.research_home #divfields li.modeling a::before {
  background-image: url("/nse/img/research/modeling.jpg");
}
body.research_home #divfields li.materials a::before {
  background-image: url("/nse/img/research/materials.jpg");
}
body.research_home #divfields li.radiation a::before {
  background-image: url("/nse/img/research/radiation.jpg");
}
body.research_home #divfields li.news a::before {
  background-image: url("/nse/img/research/headlines.jpg");
}
@media all and (min-width: 32em) {
  body.research_home #divfields ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (min-width: 48em) {
  body.research_home #divfields ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* labs */
body.research_home #divlabs ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body.research_home #divlabs li {
  display: flex;
  font-size: 2.0rem;
  font-weight: normal;
  line-height: 2.4rem;
  color: #ffffff;
  background-color: #f15a22;
  margin: 0;
}
body.research_home #divlabs li a {
  display: block;
  width: 100%;
  padding: 1.2rem 12px;
  color: #ffffff;
}
body.research_home #divlabs li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media all and (min-width: 32em) {
  body.research_home #divlabs ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  body.research_home #divlabs li a {
    min-height: 9.4rem;
  }
}
@media all and (min-width: 48em) {
  body.research_home #divlabs ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  body.research_home #divlabs li:nth-child(5),
  body.research_home #divlabs li:nth-child(6) {
    grid-column: span 2;
  }
}
/* reports */
body.research_home #divreports ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body.research_home #divreports li {
  display: flex;
  background-color: #000;
  margin: 0;
}
body.research_home #divreports li a {
  display: block;
  width: 100%;
  aspect-ratio: 233 / 298;
  text-indent: -9999px;
  overflow: hidden;
  border: 1px solid #f15a22;
  background-size: cover;
}
body.research_home #divreports li.fnp a {
  background-image: url("/nse/img/research/reports/fnp.png");
}
body.research_home #divreports li.fnp2003 a {
  background-image: url("/nse/img/research/reports/fnp2003.png");
}
body.research_home #divreports li.fnfc a {
  background-image: url("/nse/img/research/reports/fnfc.png");
}
body.research_home #divreports li.fneccw a {
  background-image: url("/nse/img/research/reports/fneccw.png");
}
body.research_home #divreports li a:focus,
body.research_home #divreports li a:hover {
  border: 1px solid #f15a2260;
}
@media all and (min-width: 48em) {
  body.research_home #divreports ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}



/*** RESEARCH FIELD PAGES (Fission, Fusion, etc.) ***/

body.research_field #divcentercolumn {
  padding-right: 0;
  padding-bottom: 3.2rem;
}
body.research_field .section {
  margin-top: 4.8rem;
  border-top: 1px solid #f15a22;
  padding-top: 3.2rem;
}
body.research_field #divcentercolumn h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  color: #000000;
  margin: 0 0 1.6rem 0;
}
/* people */
body.research_field #divpeople {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
body.research_field .person {
  width: 140px;
  height: 175px;
}
body.research_field .person a {
  display: block;
  position: relative;
  z-index: 1;
  width: 140px;
  height: 175px;
}
body.research_field .person .image {
  background-color: #333333;
  line-height: 0;
}
body.research_field .person .image img {
  width: 140px;
  height: 175px;
}
body.research_field .person .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  padding: 10px 5px 5px 10px;
  background-color: #f15a22ce;
}
body.research_field .person .firstname,
body.research_field .person .lastname {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}
body.research_field .person .lastname {
  padding-top: 5px;
  text-transform: uppercase;
}
/* highlights */
body.research_field #divheadlines .headline {
  position: relative;
  z-index: 1;
  margin-bottom: 2.4rem;
}
body.research_field #divheadlines a.itemlink {
  display: block;
  overflow: hidden;  /* clear self */
}
body.research_field #divheadlines .image {
  float: left;
  width: 360px;
  max-width: 40%;
  line-height: 0;
}
body.research_field #divheadlines .text {
  padding: 0 0 0 15px;
  overflow: hidden;  /* block formatting context */
}
body.research_field #divheadlines .text p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8rem;
  color: #000000;
  margin: 0;
}
body.research_field #divheadlines a.itemlink:focus .text p,
body.research_field #divheadlines a.itemlink:hover .text p {
  color: #f15a22;
}

@media (min-width: 32em) {
  /* reset styles */
  body.research_field #divheadlines .headline {
    margin: 0;
  }
  body.research_field #divheadlines .image {
    float: none;
    width: 100%;
    max-width: 100%;
  }
  body.research_field #divheadlines .text {
    padding: 9px 12px 12px 0;
  }
  body.research_field #divheadlines .text p {
    font-weight: bold;
  }

  /* grid layout */
  body.research_field #divheadlines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 7px;
  }
  /* items fixed at 1/2 of width */
  body.research_field #divheadlines .headline {
    display: flex;
  }
  body.research_field #divheadlines .headline .itemlink {
    flex: 0 0 100%;        /* don't grow or shrink, full width */
  }
  body.research_field #divheadlines .headline {
    margin: 0;  /* remove margin */
  }
}

@media (min-width: 48em) {
  body.research_field #divheadlines {
    grid-template-columns: 1fr 1fr 1fr;
  }
  body.research_field #divheadlines .text {
    padding: 9px 12px 0 0;
  }
}



/*** OLD RESEARCH CATEGORY PAGES (Fission, Fusion, etc.) ***/

#divmobilefacultylist,
#divresearchpeople,
#divresearchnews,
#divresearchlinks {
  margin-top: 1.8rem;
  border-top: 1px solid #f15a22;
  padding-top: 1.8rem;
}
#divmobilefacultylist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#divresearchpeople .expertisegrid {
  margin-bottom: -6px; /* compensate for bottom margin of thumbnails */
}
#divresearchpeople {
  display: none;  /* not visible on mobile */
}
#divresearchnews .newslist {
  margin: 0 -6px -1.2rem -6px;
}
#divresearchnews .newsitem {
  position: relative;
  z-index: 1;
  padding: 0 6px 1.2rem 6px;
}
#divresearchnews .newsitem::before { /* background color */
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  right: 6px;
  top: 0;
  bottom: 1.2rem;
  background-color: #f0f0f0;
}
#divresearchnews .newsitem .image {
  line-height: 0;
}
#divresearchnews .newsitem .text {
  padding: 0.6rem 18px 1.2rem 12px;
}
#divresearchnews .newsitem .text h2,
#divresearchnews .newsitem .text p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #000000;
  margin: 0;
}
#divresearchnews .newsitem a.itemlink:hover .text h2,
#divresearchnews .newsitem a.itemlink:hover .text p {
  color: #f15a22;
}


/* low intermediate width */
@media all and (min-width: 20em) {
  #divmobilefacultylist ul {
    columns: 2;
  }
}

/* intermediate width */
@media all and (min-width: 32em) {

  #divmobilefacultylist {
    display: none;
  }
  #divresearchpeople {
    display: block;
  }

  #divresearchnews .newslist {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;     /* multiple rows */

    justify-content: flex-start;
    align-items: stretch;
  }
  #divresearchnews .newsitem {
    -ms-flex: 0 1 50%;
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;        /* don't grow, shrink, two across */
  }
}



/*** PEOPLE PAGE - FACULTY EXPERTISE ***/

/* container hidden by default, shown by javascript */
#divexpertise {
  display: none;
  border-top: 1px solid #f15a22;
}
/* card container hidden */
#divexpertisecards {
  display: none;
}

/* selector container */
#divexpertiseselector {
  position: relative;
  z-index: 99;
  padding: 1.2rem 0;
}
/* chosen plugin style overrides for dropdown */
#divexpertise .chosen-container-single {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
}
#divexpertise .chosen-container-single .chosen-single {
  border-radius: 0;
  background: #ffffff;
}
#divexpertise .chosen-container-active .chosen-single {
  border-color: #aaaaaa;
}
#divexpertise .chosen-container-active.chosen-with-drop .chosen-single {
  background: #ffffff;
}
#divexpertise .chosen-container ul {
  margin: 0;
  padding: 0;
}
#divexpertise .chosen-container ul li {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
}
#divexpertise .chosen-container li.highlighted {
  background: #dddddd;
  color: #000000;
}
@media all and (min-width: 48em) {
  #divexpertise .chosen-container-single {
    font-size: 1.3rem;
  }
  #divexpertise .chosen-container ul li {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
/* bios and photos */
div.expertisebio {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 16px 16px 16px 16px;
  width: 476px;
  max-width: 100%;
}
div.expertisethumbnail {
  display: block;
  position: relative;
  z-index: 1;
  width: 140px;
  height: 175px;
}
div.expertisethumbnail div.image {
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 175px;
  background-color: #333333;
}
div.expertisethumbnail div.image img {
  width: 140px;
  height: 175px;
}
div.expertisethumbnail div.text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  padding: 10px 5px 5px 10px;
  background-color: #f15a22ce;
}
div.expertisethumbnail div.text span {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}
div.expertisethumbnail div.text span.lastname {
  padding-top: 3px;
  text-transform: uppercase;
}
div.expertisethumbnail div.text span.title {
  font-size: 1.2rem;
  padding-top: 3px;
}
div.expertisebio div.description {
  padding-top: 15px;
}
div.expertisebio div.description h3 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8rem;
  margin-bottom: 5px;
}
div.expertisebio div.description ul {
  margin-left: 1.1rem;
  margin-bottom: 1.8rem;
}
div.expertisebio div.description li {
  font-size: 1.3rem;
  line-height: 1.8rem;
  list-style: disc;
}
div.expertisebio div.description p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin: 0;
}
/* intermediate - photo and text side by side */
@media all and (min-width: 380px) {
  div.expertisebio {
    padding-left: 172px;
  }
  div.expertisethumbnail {
    float: left;
    margin-left: -156px;
  }
}
/* spread out a little more */
@media all and (min-width: 500px) {
  div.expertisebio {
    padding-left: 180px;
  }
  div.expertisethumbnail {
    float: left;
    margin-left: -164px;
  }
}

/* grid styles */

div.expertisegrid {
  clear: both;
  margin-right: -10px;
  margin-bottom: 2.8rem;
}
div.expertisegrid.research {
  margin-bottom: 0;
}
div.expertisegrid h2 {
  margin-bottom: 1.4rem;
}
div.expertisegrid div.expertisethumbnail {
  float: left;
  margin: 0 6px 6px 0;
  cursor: pointer;
}



/*** PEOPLE PAGES ***/

#divcentercolumn table.peopletable {
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #e0e0e0;
  margin-top: 2.8rem;
}
#divcentercolumn table.peopletable td {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 8px 8px 8px 8px;
  border-bottom: 1px solid #e0e0e0;
}
/* people table responsive behavior - classes and extra cells added by javascript */
@media all and (min-width: 0em) and (max-width:25.99999em),
       all and (min-width: 48em) and (max-width:53.99999em) {
  #divcentercolumn table.peopletable-rsp td.medium,
  #divcentercolumn table.peopletable-rsp td.wide {
    display: none;
  }
  #divcentercolumn table.peopletable-rsp td.narrow {
    display: table-cell;
  }
}
@media all and (min-width: 26em) and (max-width:33.99999em),
       all and (min-width: 54em) and (max-width:59.99999em) {
  #divcentercolumn table.peopletable-rsp td.narrow,
  #divcentercolumn table.peopletable-rsp td.wide {
    display: none;
  }
  #divcentercolumn table.peopletable-rsp td.medium {
    display: table-cell;
  }
}
@media all and (min-width: 34em) and (max-width:47.99999em),
       all and (min-width: 60em) {
  #divcentercolumn table.peopletable-rsp td.narrow,
  #divcentercolumn table.peopletable-rsp td.medium {
    display: none;
  }
  #divcentercolumn table.peopletable-rsp td.wide {
    display: table-cell;
  }
}
#divcentercolumn table.peopletable-rsp td.combo > div {
  margin-bottom: 4px;
}

/* profile page */
body.people_profile #divcentercolumn div.profile {
  margin: 2.8rem 0 0 0;
  width: 100%;
  overflow: hidden;  /* clearself */
}
@media all and (min-width: 0em) and (max-width:25.99999em),
       all and (min-width: 48em) and (max-width:53.99999em) {
  body.people_profile #divcentercolumn div.profile div.photo {
    float: right;
    width: 40.65040%;  /* 200/492 */
    max-width: 200px;
    padding: 0;
    margin: 0 0 6px 12px;
  }
  body.people_profile #divcentercolumn div.profile div.text {
    padding: 0 0 1.2rem 0;
  }
}
@media all and (min-width: 26em) and (max-width:47.99999em),
       all and (min-width: 54em) {
  body.people_profile #divcentercolumn div.profile div.photo {
    float: left;
    width: 40.65040%;  /* 200/492 */
    max-width: 200px;
    padding: 0 0 1.2rem 0;  /* 218/492 */
  }
  body.people_profile #divcentercolumn div.profile div.text {
    overflow: hidden; /* creat block formatting context */
    padding: 0 0 1.2rem 18px;
  }
}
body.people_profile #divcentercolumn div.profile div.text p {
  margin-bottom: 1.2rem;
}
body.people_profile #divcentercolumn div.profile div.text > :last-child {
  margin-bottom: 0;
}

/* profile page text styles */
body.people_profile #divcentercolumn h1 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.4rem;
  color: #f15a22;
  margin: 0;
}
body.people_profile #divcentercolumn h2 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.1rem;
  color: #f15a22;
  margin-bottom: 0;
}
body.people_profile #divcentercolumn h3 {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 0;
}
body.people_profile #divcentercolumn p.caption {
  font-style: italic;
  text-align: center;
  width: 80%;
  margin-left: 10%;
}

/* new styles for tabbed content - 5/2016 */

body.people_profile #divtabbedcontent h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.1rem;
  color: #f15a22;
  margin-bottom: 0.4rem;
}
body.people_profile #divtabbedcontent h3 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.1rem;
  color: #000000;
  margin-bottom: 0;
}
body.people_profile #divtabbedcontent h4 {
  font-size: 1.3rem;
  font-weight: bold;
  font-style: normal;
  line-height: 2.0rem;
  color: #000000;
  margin-bottom: 0;
}

/* keep tabs off at narrow widths */
body.people_profile #tabbuttons {
  display: none;
}
body.people_profile #divtabbedcontent .tab > :last-child {
  margin-bottom: 0;
}
/* light rule between tabs */
body.people_profile #divtabbedcontent .tab {
  margin-top: 1.8rem;
  border-top: 1px solid #d8d8d8;
  padding-top: 1.8rem;
}
body.people_profile #divtabbedcontent .tab:first-child {
  margin-top: 0.6rem;
}
@media all and (min-width: 50em) {

  /* turn on tab buttons */
  body.people_profile #tabbuttons {
    display: block;
    margin: 0 -27px 0 -25px;
    padding: 0.6rem 0 0.6rem 13px;
    list-style: none;
    background-color: #f6532c;
    overflow: hidden; /* clear self */
  }
  body.people_profile #tabbuttons li {
    display: block;
    float: left;
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
  }
  body.people_profile #tabbuttons a {
    display: block;
    padding: 1.2rem 12px 1.2rem 12px;
    color: #ffffff;
    text-decoration: none;
    outline: none;
  }
  body.people_profile #tabbuttons a:first-child {
    padding-left: 15px;
  }
  body.people_profile #tabbuttons a.active,
  body.people_profile #tabbuttons a:hover {
    color: #000000;
    text-decoration: none;
  }
  /* don't display tabbed content that is turned off */
  body.people_profile #divtabbedcontent .taboff {
    display: none;
  }
  /* other adjustments to tab area */
  body.people_profile #divtabbedcontent {
    padding: 2.4rem 0 2.4rem 0;
  }
  body.people_profile #divtabbedcontent .tab:nth-child(n) {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    min-height: 20rem;
  }
  body.people_profile #divtabbedcontent h2 {
    display: none;
  }
  body.people_profile #divtabbedcontent h3 {
    color: #f15a22;
  }
  body.people_profile #divtabbedcontent .tab > :last-child {
    margin-bottom: 0;
  }

}



/*** STUDENTS PAGE ***/

/* card container hidden */
#divstudentcards {
  display: none;
}

/* bios and photos */
div.studentbio {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 16px 16px 16px 16px;
  width: 476px;
  max-width: 100%;
}
div.studentthumbnail {
  display: block;
  position: relative;
  z-index: 1;
  width: 140px;
  height: 175px;
}
div.studentthumbnail div.image {
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 175px;
  background-color: #333333;
}
div.studentthumbnail div.image img {
  width: 140px;
  height: 175px;
}
div.studentthumbnail div.text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  padding: 10px 5px 5px 10px;
  background-color: #425cc7c8;
}
div.studentthumbnail div.text span.firstname,
div.studentthumbnail div.text span.lastname {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}
div.studentthumbnail div.text span.lastname {
  padding-top: 5px;
  text-transform: uppercase;
}
div.studentbio div.description {
  padding-top: 15px;
}
div.studentbio div.description h3 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8rem;
  margin-bottom: 5px;
}
div.studentbio div.description ul {
  margin-left: 1.1rem;
  margin-bottom: 1.8rem;
}
div.studentbio div.description li {
  font-size: 1.3rem;
  line-height: 1.8rem;
  list-style: disc;
}
div.studentbio div.description p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin: 0;
}
div.studentbio div.description p + p {
  margin-top: 1.8rem;
}
/* intermediate - photo and text side by side */
@media all and (min-width: 380px) {
  div.studentbio {
    padding-left: 172px;
  }
  div.studentthumbnail {
    float: left;
    margin-left: -156px;
  }
}
/* spread out a little more */
@media all and (min-width: 500px) {
  div.studentbio {
    padding-left: 180px;
  }
  div.studentthumbnail {
    float: left;
    margin-left: -164px;
  }
}

/* grid styles */

div.studentgrid {
  clear: both;
  margin-right: -10px;
  margin-bottom: 0;
}
div.studentgrid h2 {
  margin-bottom: 1.4rem;
}
div.studentgrid div.studentthumbnail {
  float: left;
  margin: 0 6px 6px 0;
  cursor: pointer;
}



/*** UNDERGRADUATE GRID ***/

/* outer container */
#divundergraduatelist {
  border-top: 1px solid #f15a22;
  padding-top: 1.2rem;
  overflow: hidden;  /* clearself */
}

/* thumbnail container */
#divundergraduatelist div.thumbnails {
  clear: both;
  margin-right: -10px;
}

/* thumbnails */
#divundergraduatelist div.thumbnail {
  display: block;
  float: left;
  position: relative;
  z-index: 1;
  width: 175px;
  height: 175px;
  margin: 0 8px 8px 0;
  cursor: pointer;
}
/* photo */
#divundergraduatelist div.thumbnail div.image {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 175px;
  height: 175px;
  background-color: #333333;
}
#divundergraduatelist div.thumbnail div.image img {
  width: 175px;
  height: 175px;
}
/* name */
#divundergraduatelist div.thumbnail div.text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 175px;
  padding: 10px 5px 5px 10px;
  /* red */
  background-color: #c61b21;
  background-color: rgba(198, 27, 33, 0.87);
}
#divundergraduatelist div.thumbnail div.text span.firstname,
#divundergraduatelist div.thumbnail div.text span.lastname {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}
#divundergraduatelist div.thumbnail div.text span.lastname {
  padding-top: 5px;
  text-transform: uppercase;
}



/*** UNDERGRADUATE PROFILES ***/

body.undergraduate_profile #divcentercolumn div.photoquote {
  margin-bottom: 2.4rem;
}
body.undergraduate_profile #divcentercolumn div.photoquote div.photo {
  margin-bottom: 0.8rem;
}
body.undergraduate_profile #divcentercolumn div.photoquote div.quote p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #666666;
  margin:0;
}
@media all and (min-width: 32em) {
  body.undergraduate_profile #divcentercolumn div.photoquote {
    /* see https://css-tricks.com/snippets/css/a-guide-to-flexbox/ and https://css-tricks.com/using-flexbox/ */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
  }
  body.undergraduate_profile #divcentercolumn div.photoquote div.photo {
    padding: 0 12px 0 0;
    max-width: 70%;
    -ms-align-self: flex-start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    margin-bottom: 0;
  }
  body.undergraduate_profile #divcentercolumn div.photoquote.noquote div.photo {
    max-width: 100%;
  }
  body.undergraduate_profile #divcentercolumn div.photoquote div.quote {
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
  }
}



/*** COMMUNICATIONS FELLOWS ***/

#divcentercolumn table.commfellowstable td.image img {
  max-width: 150px;
}



/*** NEWS ***/

body.news_home .feature a {
  color: #000000;
}
body.news_home .feature a:hover {
  color: #f15a22;
}
body.news_home .feature .text {
  margin-top: 1.4rem;
}
body.news_home #divcentercolumn .feature h2 {
  font-size: 2.4rem;
}
body.news_home #divcentercolumn .feature p {
  margin-top: 0.8rem;
}
#divcentercolumn table.newstable {
  margin-top: 3.0rem;
}
#divcentercolumn table.newstable td.image img {
  max-width: 100px;
}



/* NEWS SLIDESHOW */

/* no slideshow at mobile widths */
#divnewsshow {
  display: none;
}
/* static slides */
#divnewsslides .slide {
  background-color: #333333;
  margin-bottom: 1.4rem;
}
#divnewsslides .slide .image {
  line-height: 0;
}
#divnewsslides .slide .text {
  padding: 2.8rem 28px;
}
/* text styles */
#divnewsslides .slide .text p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
#divnewsslides .slide .text p:last-child {
  margin-bottom: 0;
}
#divnewsslides .slide .text p.credit {
  font-style: italic;
}
#divnewsslides .slide .text p a,
#divnewsslides .slide .text p a:link,
#divnewsslides .slide .text p a:visited {
  color: #ffffff;
  text-decoration: underline;
}
#divnewsslides .slide .text p a:hover {
  color: #f15a22;
  text-decoration: underline;
}

/* intermediate - turn on slideshow */
@media all and (min-width: 54em) {
  /* turn off static spotlights */
  #divnewsslides {
    display: none;
  }
  /* turn on slideshow */
  #divnewsshow {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 1.4rem 0;
    overflow: hidden;
  }
  /* container for slides *//* container width 724, slide is 480x320 (3:2) */
  #divnewsshowslides {
    position: relative;
    z-index: 1;
    width: 100%;;
    height: auto;
    padding: 0 0 44.19889% 0;  /* 320/724 */
    background-color: #333333;
  }
  /* individual slides */
  #divnewsshowslides .slide {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 0 0 44.19889% 0;  /* 320/724 */
    background-color: #333333;
  }
  #divnewsshowslides .image {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 66.29834%;   /* 480/724 */
    line-height: 0;
    background-color: green;
  }
  #divnewsshowslides .text {
    position: absolute;
    z-index: 1;
    left: 66.29834%;   /* 480/724 */
    top: 0;            /* 80/332 */
    width: 33.70165%;  /* 244/724 */
    height: 100%;
    padding: 14px 20px 42px 20px;
    /* vertical centering */
    display: -ms-flexbox;      /* IE 10 */
    display: -webkit-flex;     /* Safari */
    display: flex;             /* spec */
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;     /* single column */
    justify-content: center;
  }
  /* previous/next */
  #divnewsshownav {
    position: absolute;
    z-index: 9;
    right: 0;
    bottom: 0;
    font-size: 1.0rem;
    line-height: 0;
  }
  #divnewsshownav a {
    display: block;
    float: left;
    width: 39px;
    height: 39px;
    text-indent: -9999px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  #divnewsshownav a.prevbutton {
    background-image: url('/nse/img/news/misc/news_prevbutton_39x39.png');
  }
  #divnewsshownav a.nextbutton {
    background-image: url('/nse/img/news/misc/news_nextbutton_39x39.png');
  }
  /* slideshow text styles */
  #divnewsshowslides .slide .text p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.4rem;
  }
  #divnewsshowslides .slide .text p:last-child {
    margin-bottom: 0;
  }
  #divnewsshowslides .slide .text p.credit {
    font-style: italic;
  }
  #divnewsshowslides .slide .text p a,
  #divnewsshowslides .slide .text p a:link,
  #divnewsshowslides .slide .text p a:visited {
    color: #ffffff;
    text-decoration: underline;
  }
  #divnewsshowslides .slide .text p a:hover {
    color: #f15a22;
    text-decoration: underline;
  }
}



/*** EVENTS ***/

#divcentercolumn table.eventstable {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #f15a22;
}
#divcentercolumn table.eventstable td {
  border-bottom: 1px solid #f15a22;
}
#divcentercolumn table.eventstable td:nth-child(1) {
  width: 20%;
  text-align: center;
  vertical-align: middle;
  padding: 10px 15px 10px 0;
}
#divcentercolumn table.eventstable td:nth-child(1) > * {
  margin: 0;
}
#divcentercolumn table.eventstable td:nth-child(2) {
  width: 80%;
  padding: 10px 0 10px 0;
}
#divcentercolumn table.eventstable td:nth-child(2) > div {
  padding-left: 15px;
  border-left: 1px solid #e0e0e0;
}
#divcentercolumn table.eventstable td:nth-child(2) > div > :last-child {
  margin-bottom: 0;
}
@media all and (min-width: 32em) {
  #divcentercolumn table.eventstable td:nth-child(1) {
    width: 15%;
  }
  #divcentercolumn table.eventstable td:nth-child(2) {
    width: 85%;
  }
}



/*** RESEARCH THUMBNAIL VIDEOS (TECHTV) ***/

#ttvvp_playlist {
}
#ttvvp_playlist div.item {
  border-top: 1px solid #f15a22;
}
#ttvvp_playlist div.item div.image {
  float: left;
  width: 100px;
  line-height: 0;
}
#ttvvp_playlist div.item div.image img {
  width: 100%;
}
#ttvvp_playlist div.item div.text {
  padding-left: 18px;
  overflow: hidden; /* creat block formatting context */
}
#ttvvp_playlist h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.0rem;
  margin-bottom: 0.8rem;
}
#ttvvp_playlist h2 a,
#ttvvp_playlist h2 a:link,
#ttvvp_playlist h2 a:visited {
  color: #000000;
  text-decoration: none;
}
#ttvvp_playlist h2 a:hover {
  color: #f15a22;
  text-decoration: none;
}
#ttvvp_playlist p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 0.8rem;
}
#ttvvp_playlist p:last-child {
  margin-bottom: 0;
}



/*** RESEARCH THUMBNAIL VIDEOS (MANUAL) ***/

#video_playlist {
}
#video_playlist div.item {
  border-top: 1px solid #f15a22;
}
#video_playlist div.item div.image {
  float: left;
  width: 128px;
  max-width: 25%;
  line-height: 0;
}
#video_playlist div.item div.image img {
  width: 100%;
}
#video_playlist div.item div.text {
  padding-left: 18px;
  overflow: hidden; /* creat block formatting context */
}
#video_playlist h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.0rem;
  margin-bottom: 0.8rem;
}
#video_playlist a h2,
#video_playlist a:link h2,
#video_playlist a:visited h2 {
  color: #000000;
  text-decoration: none;
}
#video_playlist a:hover h2 {
  color: #f15a22;
  text-decoration: none;
}
#video_playlist p {
  /*font-size: 1.1rem;*/ font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 0.8rem;
}
#video_playlist p:last-child {
  margin-bottom: 0;
}



/*** IN+AROUND ***/

/* home */
body.inaround_home #divcentercolumn p.thumbnails {
  overflow: hidden;  /* clearself */
}
body.inaround_home #divcentercolumn p.thumbnails img {
  float: left;
  width: 150px;
  height: 139px;
  margin: 0 4px 4px 0;
}
/* profile page */
body.inaround_profile #divcentercolumn div.photoquote {
  margin-bottom: 2.4rem;
}
body.inaround_profile #divcentercolumn div.photoquote div.photo {
  margin-bottom: 0.8rem;
}
body.inaround_profile #divcentercolumn div.photoquote div.quote p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #666666;
  margin:0;
}
@media all and (min-width: 32em) {
  body.inaround_profile #divcentercolumn div.photoquote {
    /* see https://css-tricks.com/snippets/css/a-guide-to-flexbox/ and https://css-tricks.com/using-flexbox/ */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
  }
  body.inaround_profile #divcentercolumn div.photoquote div.photo {
    padding: 0 12px 0 0;
    max-width: 70%;
    -ms-align-self: flex-start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    margin-bottom: 0;
  }
  body.inaround_profile #divcentercolumn div.photoquote.noquote div.photo {
    max-width: 100%;
  }
  body.inaround_profile #divcentercolumn div.photoquote div.quote {
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
  }
}



/*** GOOGLE SEARCH RESULTS (GSA) ***/

/* results summary at top */
body.searchresults #divcentercolumn table td.t {
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 4px 0px;
}
/* result item */
body.searchresults #divcentercolumn font {
  font-size: 100%;
}
body.searchresults #divcentercolumn p {
  font-size: 1.2rem;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
/* result context */
body.searchresults #divcentercolumn span.s {
  font-size: 1.2rem;
}
/* paginator */
body.searchresults #divcentercolumn div.n {
  margin-top: 3.6rem;
  text-align: center;
  max-width: 492px; /* keep it toward left */
}
body.searchresults #divcentercolumn div.n > div {
  display: inline-block;
  margin: 0 auto;
}
body.searchresults #divcentercolumn div.n table td[valign="bottom"] {
  vertical-align: bottom;
}
body.searchresults #divcentercolumn div.n table td:first-child,
body.searchresults #divcentercolumn div.n table td img,
body.searchresults #divcentercolumn div.n table td br {
  display: none;
}
/* links */
body.searchresults #divcentercolumn a,
body.searchresults #divcentercolumn a:link,
body.searchresults #divcentercolumn a:visited {
  color: #3957e6 !important;
  text-decoration: none !important;
}
body.searchresults #divcentercolumn a:hover {
  color: #f15a22 !important;
  text-decoration: none !important;
}
/* needed because links contain span that forces their color */
body.searchresults #divcentercolumn .l {
  color: inherit;
}




/*** GOOGLE SEARCH RESULTS (CSE) (ADD ONTO GSA STYLES) ***/


body.searchresults .gsc-control-cse {
  font-family: inherit !important;
}
body.searchresults .gsc-control-cse,
body.searchresults .gsc-control-cse .gsc-table-result {
  font-family: inherit !important;
  font-size: inherit !important;
}
body.searchresults .gsc-above-wrapper-area {
  display: none !important;
}
body.searchresults .gs-richsnippet-box {
  display: none !important;
}
body.searchresults .gs-result .gs-title,
body.searchresults .gs-result .gs-title * {
  color: inherit;
  text-decoration: inherit;
}
body.searchresults .gsc-result .gs-title {
  height: auto;  /* if you can believe it, they set a fixed height */
  overflow: visible;
  line-height: 140%;
}
/* gray rules between items */
body.searchresults .gsc-expansionArea .gsc-result {
  border-top: 1px solid #e0e0e0;
}
body.searchresults #divcentercolumn .gsc-table-result {
  margin-bottom: 0.4rem;
}

