/**
 * Foundation for Sites
 * Version 6.9.0
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/* University of Toronto Color Palettes as described in
http://universityrelations.utoronto.ca/sc/u-of-t-branding/
http://trademarks.utoronto.ca/rules-for-use/
*/
:root {
  --uoft-official-colour-blue: rgba(0, 42, 92, 1);
  --uoft-official-colour-white: rgba(255, 255, 255, 1);
  --uoft-secondary-colour-yellow: rgb(255, 228, 152);
  --uoft-secondary-colour-red: rgba(227, 24, 55, 1);
  --uoft-secondary-colour-blue: rgba(0, 120, 176, 1);
  --uoft-secondary-colour-black: rgba(39, 17, 0, 1);
  --uoft-accent-colour-blue: rgba(123, 164, 217, 1);
  --uoft-accent-colour-grey: rgba(206, 207, 203, 1);
  --uoft-accent-colour-pink: rgba(234, 202, 205, 1);
  --uoft-accent-colour-green: rgba(218, 229, 205, 1);
  --uoft-awards-palette-bronze: rgba(61, 48, 40, 0.7);
}

:root {
  --primary-color: rgba(0, 42, 92, 1);
  --secondary-color: rgba(0, 120, 176, 1);
  --contrast-color: rgba(218, 229, 205, 1);
  --highlight-color: rgba(255, 228, 152, 1);
  --white: rgba(255, 255, 255, 1);
  --light-primary: rgba(0, 42, 92, .3);
  --light-secondary: rgba(0, 120, 176, .2);
  --dark-primary: rgba(9, 33, 64, 1);
  --dark-secondary: rgb(13, 87, 121);
  --dark-gray: #5f5f5f;
  --blue-accent: rgba(123, 164, 217, 1);
  --grey-accent: rgba(206, 207, 203, 1);
  --green-accent: rgba(218, 229, 205, 1);
  --pink-accent: rgba(234, 202, 205, 1);
  --yellow-secondary: rgba(255, 228, 152, 1);
  --blue-secondary: rgba(0, 120, 176, 1);
  --red-secondary: rgba(227, 24, 55, 1);
  --black-secondary: rgba(39, 17, 0, 1);
  --title-color: rgba(0,0,0,1);
}

@font-face {
  font-family: "PT Sans Narrow";
  src: url("../../fonts/PT_Sans_Narrow/PT_Sans-Narrow-Web-Regular.ttf");
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway/Raleway-Light.ttf");
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf");
}
@font-face {
  font-family: "Roboto Flex";
  src: url("../../fonts/Roboto_Flex/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf  ");
}
@font-face {
  font-family: "Inter UI";
  src: url("../../fonts/Inter_UI/Inter-UI-Regular.ttf");
}
:root {
  --title-font: "PT Sans Narrow", sans-serif;
  --body-font: "Roboto Flex", sans-serif;
  --secondary-font: "Roboto Condensed", sans-serif;
}

/*
official fonts for university:
For text: Bembo (serif typeface)
For headers/signage: Trade Gothic Condensed 18 or 20 (sans serif typeface)

replacment fonts:
Trade Gothic > Franklin Gothic
Bembo > EB Garamond
*/
/* the utphy_themem_globals contains the imports for all 
  other global stylesheets and it should be imported in all
  templates based 
  It contains mainly top level settings for page arrangements.  on zurb foundation.
*/
.comments_section {
  font-size: 0.7rem;
  margin: 1rem 0;
  padding: 1rem;
}
@media screen and (min-width: 64em) {
  .comments_section {
    font-size: 100%;
  }
}

html {
  height: 100vh;
}

html,
body {
  margin: 0px;
}

#site-header .logo-image {
  max-width: 33vw;
}
@media print, screen and (max-width: 63.99875em) {
  #site-header .logo-image {
    max-width: 300px;
  }
}
#site-header {
  grid-area: header;
}

#site-nav {
  align-self: center;
  grid-area: nav;
  z-index: 100;
}

#site-banner {
  grid-area: banner;
}

#site-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  grid-area: main;
  overflow-x: auto;
}

#site-aside {
  grid-area: aside;
}

#site-footer {
  grid-area: footer;
}

#colophon {
  grid-area: colophon;
}

.contentWrapper,
.frontpage .contentWrapper {
  display: grid;
  min-height: 100vh;
  grid-column-gap: 0.2rem;
  grid-template-areas: "header" "nav" "banner" "main" "aside" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr auto auto;
}

@media only screen and (max-width: 768px) {
  #site-aside {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  aside {
    padding: 0.2rem;
    flex: 1 0 auto;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .contentWrapper {
    display: grid;
    grid-column-gap: 1rem;
    grid-row-gap: 0;
    grid-template-areas: "header header header header header" "nav nav nav nav nav" "banner banner banner banner banner" ". main main aside ." "footer footer footer footer footer";
    grid-template-columns: minmax(0, 2vw) 1fr 1fr fit-content(30vw) minmax(0, 2vw);
    grid-template-rows: auto auto auto 1fr auto auto auto;
  }
}
@media only screen and (min-width: 1201px) {
  .contentWrapper {
    display: grid;
    grid-column-gap: 1rem;
    grid-row-gap: 0;
    grid-template-areas: "header header header header header" "nav nav nav nav nav" "banner banner banner banner banner" ". main main aside ." "footer footer footer footer footer" "colophon colophon colophon colophon colophon";
    grid-template-columns: minmax(0, 10vw) 1fr 1fr fit-content(30vw) minmax(0, 10vw);
    grid-template-rows: auto auto auto 1fr auto auto;
    margin: auto;
  }
}
/* HDMI and up (to style at a later date) */
/*
@media only screen and (min-width: 1920px) {
  .contentWrapper {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 1);
    display: grid;
    font-size: 1.5vw;
    grid-template-areas: "header header header" "nav nav nav" "banner banner banner" "main main main" "footer footer footer" "colophon colophon colophon";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  #site-aside {
    display: none;
  }
  #site-footer {
    background-color: black;
    opacity: 0.7;
  }
}
*/
#site-footer {
  background-color: rgb(0, 42, 92);
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding-top: 1rem;
}
#site-footer a, #site-footer a:hover {
  color: rgb(255, 255, 255);
}
#site-footer .site-footer-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.9rem;
  justify-content: space-evenly;
  margin-top: 5vh;
  padding: 1rem;
}
#site-footer .flat-menu, #site-footer .site-settings, #site-footer .dept-info {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}
#site-footer .social-media {
  flex: 0 0 auto;
  margin: 1rem;
}
#site-footer .logo-footer {
  display: flex;
  justify-content: center;
  width: 80vw;
}
@media screen and (min-width: 480px) {
  #site-footer .logo-footer {
    max-width: 60vw;
  }
}
@media screen and (min-width: 765px) {
  #site-footer .logo-footer {
    max-width: 30vw;
  }
}
@media screen and (min-width: 1024px) {
  #site-footer .logo-footer {
    max-width: 350px;
  }
}

.colophon {
  align-self: stretch;
  background-color: rgb(0, 30.3586956522, 66.5);
  font-size: 0.8rem;
  padding: 1rem;
  text-align: center;
}

aside.child-menu > .ancestor,
aside.section-menu > .ancestor {
  border-top: 1px solid var(--contrast-color);
  font-weight: bold;
}

aside.child-menu .title,
aside.section-menu .title {
  color: var(--primary-color);
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 120%;
  font-weight: 600;
  padding: 0.3rem;
}

aside.child-menu .menu a,
aside.section-menu .menu a {
  line-height: 1.3;
}

aside.child-menu .menu a:hover,
aside.section-menu .menu a:hover {
  color: var(--dark-gray);
  background-color: var(--highlight-color);
}

.rich-text img {
  max-width: 100%;
  height: auto;
}

.responsive-object {
  position: relative;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 420px) {
  .callout .richtext-image.right, .callout .richtext-image.left,
  .rich-text .richtext-image.right,
  .rich-text .richtext-image.left,
  .streamfield-content .richtext-image.right,
  .streamfield-content .richtext-image.left {
    max-width: 50%;
  }
}
.callout .richtext-image.right,
.rich-text .richtext-image.right,
.streamfield-content .richtext-image.right {
  float: right !important;
  margin-left: 1rem;
}
.callout .richtext-image.left,
.rich-text .richtext-image.left,
.streamfield-content .richtext-image.left {
  float: left !important;
  margin-right: 1rem;
}
.callout .richtext-image.full-width,
.rich-text .richtext-image.full-width,
.streamfield-content .richtext-image.full-width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.nowrap {
  white-space: nowrap;
}

.label-hollow {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background-color: rgb(255, 255, 255);
  color: inherit;
  border: 1px solid rgb(0, 120, 176);
  border-radius: 0.5rem;
}

[data-link] {
  cursor: pointer;
}

.search-form {
  padding: 6vh 3vw 3vh 3vh !important;
}

.search-form .input-group {
  background-color: var(--light-primary);
}
@media screen and (min-width: 420px) {
  .search-form .input-group {
    padding: 1rem 3rem;
  }
}

.title {
  font-size: 110%;
  font-weight: 500;
}

.faded-text {
  color: var(--dark-gray);
  font-size: 90%;
}

/* the settings file will be imported and customized by all the various themes.
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--title-font);
  text-rendering: optimizeLegibility;
}

.logo-text h1 {
  font-family: inherit;
  font-size: calc(16px + 2vw);
}

.small-font {
  font-size: 85%;
}

#site-header {
  background-color: rgb(0, 42, 92);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #site-header {
    flex-direction: row;
    font-size: 2.5vw;
    align-items: flex-start;
  }
}
#site-header .shrink .logo-text, #site-header .shrink .logo-image {
  font-size: 1.3vw;
  transition: 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}
#site-header .shrink .logo-text img, #site-header .shrink .logo-image img {
  width: 60%;
  height: auto;
  transition: 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}
#site-header .logo-image, #site-header .logo-text, #site-header .logo-buttons {
  padding: 0 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  #site-header .logo-image, #site-header .logo-text, #site-header .logo-buttons {
    padding: 2rem;
  }
}
#site-header .logo-image img {
  transition: 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

#site-banner {
  color: rgb(255, 255, 255);
  position: relative;
}
#site-banner img {
  width: 100%;
}
#site-banner .credit {
  background-color: var(--light-gray) !important;
  opacity: 70%;
  color: black;
  padding: 0 0.1rem;
  font-size: 70%;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  text-rendering: optimizeLegibility;
}
#site-banner .credit:before {
  content: "img: ";
}
#site-banner .credit a {
  color: inherit;
  text-shadow: inherit;
}
#site-banner .caption {
  background-color: rgba(39, 17, 0, 0.3);
  bottom: 15%;
  left: 10vw;
  max-width: 100%;
  padding: 0.5rem 1rem;
  position: absolute;
  z-index: 1;
}
#site-banner .caption h1, #site-banner .caption .date {
  text-rendering: optimizeLegibility;
  text-shadow: 3px 3px 3px rgba(39, 17, 0, 0.4);
}
#site-banner .caption h1 {
  font-weight: 600;
}
#site-banner .caption .date {
  font-size: 1.4rem;
}

#site-nav {
  font-family: var(--title-font);
}

#site-main,
#site-aside {
  margin: 1rem 0;
}
#site-main .byline,
#site-main .breadcrumbs,
#site-main article,
#site-main aside,
#site-aside .byline,
#site-aside .breadcrumbs,
#site-aside article,
#site-aside aside {
  margin: 0 1vw 2vh 1vw !important;
}

.byline {
  color: var(--secondary-color);
  display: flex;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  justify-content: space-between;
}
.byline div {
  flex: 0 1 auto;
}

.sidebar {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.sidebar aside {
  flex: 1 1 auto;
  margin: 0.3rem;
}

.authentication {
  max-width: 600px;
  align-self: center;
}

nav.orbit-bullets {
  background-color: inherit;
}

nav.page-nav {
  background-color: inherit;
}

.block-table {
  display: block;
  width: 100%;
  overflow-x: auto;
}

/*! responsive-nav.js 1.0.39 by @viljamis */
nav {
  background-color: var(--primary-color);
  font-family: var(--title-font);
  font-variation-settings: "wght" 400, "wdth" 80;
  font-optical-sizing: auto;
}

nav .active,
nav li.active,
nav .is-active,
nav li.is-active,
nav li.is-active > a,
nav .is-active:first-child {
  background-color: var(--secondary-color);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: inherit;
}

.main-nav > ul {
  display: flex;
  justify-content: space-evenly;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
}

.nav-collapse li {
  width: 100%;
}

.nav-collapse a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.9em 1.1em;
  text-decoration: none;
  width: 100%;
}

/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */
.nav-toggle {
  border-radius: 0;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  line-height: 39px;
  padding: 10px 0.75em;
  background: var(--transparent-dark);
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
  background-color: #fff;
  color: var(--transparent-dark);
}

/* ------------------------------------------
  MULTIPLE LEVELS
--------------------------------------------- */
.nav-collapse a:hover,
.nav-collapse li.focus > a {
  background-color: var(--highlight-color);
}

.dropdown ul a {
  background: var(--primary-color);
  padding-left: 1.5em;
}

.dropdown ul ul a {
  background: #2d353e;
  padding-left: 2.5em;
}

.dropdown ul ul {
  border: 0;
  padding: 0;
}

.dropdown .dropdown.opened .has-dropdown {
  background: #9c2c12;
}

/* hamburger lines */
.bars {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 24px;
  height: 18px;
}

/* middle line */
.bars span {
  height: 2px;
  background: currentColor;
}

.bars:before,
.bars:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  left: 0;
}

.bars:before {
  top: 0;
}

.bars:after {
  bottom: 0;
}

.active .bars:before,
.is-active .bars:before {
  transform: rotate(45deg) translate(6px, 5px);
}

.active .bars:after,
.is-active .bars:after {
  transform: rotate(-45deg) translate(6px, -5px);
}

.active .bars span,
.is-active .bars span {
  display: none;
}

.dropdown-toggle,
.nav-toggle {
  display: none;
}

.js .nav-collapse {
  position: relative;
}

.js .nav-collapse.closed {
  max-height: none;
}

.nav-collapse {
  width: auto;
  padding-right: 4%;
  position: relative;
}

.nav-collapse > ul {
  border-top: 0;
}

.js .nav-collapse,
.js .nav-collapse .dropdown ul {
  max-height: none;
  overflow: visible;
}

.has-dropdown:after {
  font-size: 1.5em;
  line-height: 0.8;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
  display: inline-block;
  margin-left: 10px;
}

.dropdown ul .has-dropdown:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 7px solid #fff;
  top: 10px;
  margin: 0;
}

.nav-collapse .dropdown {
  position: relative;
}

.nav-collapse .dropdown li {
  width: 100%;
}

.nav-collapse .dropdown ul a {
  text-align: left;
  border: 0;
}

@media screen and (min-width: 1000px) {
  .nav-collapse li {
    width: auto;
    border: 0;
    display: inline-block;
    height: auto;
    line-height: 55px;
    position: relative;
    white-space: nowrap;
  }
  .nav-collapse a {
    border-bottom: 0;
    margin: 0;
    display: inline-block;
    padding: 0 16px;
  }
  .nav-collapse .has-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-collapse ul ul {
    margin: 0;
    position: absolute;
    top: 85px;
    left: -999em;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s;
    width: 300px;
  }
  .nav-collapse li li {
    border: 0;
    display: block;
    height: auto;
    line-height: 1.0909090909;
  }
  .nav-collapse ul ul ul {
    left: -999em;
    top: 20px;
  }
  .nav-collapse ul ul a {
    padding: 15px 12px;
    white-space: normal;
  }
  .nav-collapse ul li:hover > ul,
  .nav-collapse ul li.focus > ul {
    top: 100%;
    left: 0;
    opacity: 1;
  }
  .nav-collapse ul ul li:hover > ul,
  .nav-collapse ul ul li.focus > ul {
    top: 0;
    left: 0%;
    margin-left: 150px;
    transform: none;
  }
}
@media screen and (max-width: 999px) {
  .main-nav > ul {
    display: block;
  }
  .dropdown-toggle,
  .nav-toggle {
    display: initial;
  }
  .has-dropdown:after {
    display: none;
  }
  .js .nav-collapse,
  .js .nav-collapse .dropdown ul {
    max-height: 9999px;
    overflow: hidden;
  }
  .js .nav-collapse {
    visibility: hidden;
  }
  .nav-collapse {
    width: 100%;
    padding-right: 0;
  }
  .nav-collapse li, .nav-collapse a {
    display: block;
  }
  .js .nav-collapse.opened {
    visibility: visible;
    background: var(--primary-color);
  }
  .nav-collapse > ul {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* Enable active class to let the navigation expand over the calculated max height. */
  .js .nav-collapse.multiple-level-nav.opened.dropdown-active {
    max-height: 9999px !important;
  }
  .js .nav-collapse.multiple-level-nav .sub-menu {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: none;
    /* This way you don't have focus on sub menu items unless you open the sub menu. */
    overflow: hidden;
  }
  .js .nav-collapse.multiple-level-nav .sub-menu.toggled {
    display: block;
    max-height: 9999px;
    position: relative;
  }
  .js .nav-collapse li {
    position: relative;
  }
  .js .nav-collapse .dropdown-toggle {
    border: 1px solid #fff;
    color: #fff;
    content: "";
    height: 46px;
    width: 46px;
    padding: 0;
    position: absolute;
    margin: 0;
    text-transform: lowercase;
    top: 2px;
    right: 10px;
  }
  .js .nav-collapse .dropdown-toggle:hover,
  .js .nav-collapse .dropdown-toggle:focus,
  .js .nav-collapse .dropdown-toggle:active {
    background-color: #fff;
    color: var(--transparent-dark);
  }
  .js .nav-collapse .dropdown-toggle:after {
    content: "+";
    font-size: 20px;
  }
  .js .nav-collapse .dropdown-toggle.toggled:after {
    content: "-";
  }
}
strong, b {
  font-weight: 500;
}

/*# sourceMappingURL=base.min.css.map */
