  /* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%;
}
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  -webkit-transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  -moz-transition: -moz-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  -webkit-transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  -moz-transition: -moz-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  -webkit-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  color: #0089ec;
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--selected,
.picker__day--selected:hover {
  border-color: #0089ec;
}
.picker__day--highlighted {
  background: #b1dcfb;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  background: #0089ec;
  color: #ffffff;
}
.picker__day--disabled,
.picker__day--disabled:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
/**
 * The footer containing the "today" and "clear" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 50%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before {
  content: " ";
  margin-right: .45em;
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  content: "\D7";
  margin-right: .35em;
  top: -0.1em;
  color: #ee2200;
  vertical-align: top;
  font-size: 1.1em;
}

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */

/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-bottom: -1px;
  position: relative;
  background: #ffffff;
  padding: .75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: .5em 1em;
  }
}
/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-color: #0089ec;
  z-index: 10;
}
/* Selected time */
.picker__list-item--selected,
.picker__list-item--selected:hover {
  border-color: #0089ec;
  z-index: 10;
}
/* Highlighted time */
.picker__list-item--highlighted {
  background: #b1dcfb;
}
/* Highlighted and hovered/focused time */
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  background: #0089ec;
  color: #ffffff;
}
/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
  border-color: #dddddd;
  z-index: auto;
}
/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #000000;
  background: #b1dcfb;
  background: #ee2200;
  border-color: #ee2200;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold;
}
.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #ffffff;
}

/* ==========================================================================
   $CLASSIC-TIME-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should __NOT__ be styled
 * more than what’s here. Style the `.picker__holder` instead.
 */
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The holder is the base of the picker.
 */
.picker--time .picker__holder {
  background: #f2f2f2;
}
@media (min-height: 40.125em) {
  .picker--time .picker__holder {
    font-size: .875em;
  }
}
/**
 * The box contains the list of times.
 */
.picker--time .picker__box {
  padding: 0;
  position: relative;
}

/* #a6192e */
/* #003087; */
/* #3d3935 */
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  color: #a6192e;
  text-decoration: none;
}
a img {
  border: none;
}
img {
  width: auto;
  max-width: 100%;
}
#page-content p a:hover,
#page-content h1 a:hover,
#page-content h2 a:hover,
#page-content h3 a:hover,
#page-content h4 a:hover,
#page-content h5 a:hover,
#page-content li a:hover,
#page-content table a:hover,
.breadcrumb a:hover {
  opacity: .8;
}
fieldset {
  border: none;
}
body {
  color: #000000;
  font: normal 100% Cambria, Georgia, "Times New Roman", Times, serif;
  line-height: 1.5em;
  margin: 0;
  background: #a6192e url(clf/source/assets/textured-red-01-small.png) top left repeat;
}
/* font variables */
.brand-font-italic {
  font-family: "DINWebItalic";
}
/* end variables */
@font-face {
  font-family: 'DINWebLight';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Light.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Light.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Light.woff') format('woff');
}
@font-face {
  font-family: 'DINWeb';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb.woff') format('woff');
}
@font-face {
  font-family: 'DINWebBold';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Bold.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Bold.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Bold.woff') format('woff');
}
@font-face {
  font-family: 'DINWebMedium';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Bold.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Bold.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Medium.woff') format('woff');
}
@font-face {
  font-family: 'DINWebBlack';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Black.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Black.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Black.woff') format('woff');
}
@font-face {
  font-family: 'DINWebLightItalic';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-LightIta.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-LightIta.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-LightIta.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'DINWebItalic';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Ita.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Ita.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-Ita.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'DINWebMediumItalic';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-MediumIta.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-MediumIta.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-MediumIta.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'DINWebBoldItalic';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BoldIta.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BoldIta.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BoldIta.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'DINWebBlackItalic';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BlackIta.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BlackIta.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/DINWeb-BlackIta.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'fontawesome';
  src: url('/etc/designs/clf/clientlibs/clf/source/fonts/fontawesome.eot');
  src: url('/etc/designs/clf/clientlibs//etc/designs/clf/clientlibs/clf/source/fonts/fontawesome.eot') format('embedded-opentype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/fontawesome.woff') format('woff'), url('/etc/designs/clf/clientlibs/clf/source/fonts/fontawesome.ttf') format('truetype'), url('/etc/designs/clf/clientlibs/clf/source/fonts/fontawesome.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.icon {
  font-size: 1em;
  line-height: 1em;
  font-family: "fontawesome", sans-serif;
  font-weight: normal;
}
.icon-plus-sign:before {
  content: "+";
}
.icon-minus-sign:before {
  content: "-";
}
h1 {
  font-size: 2em;
  line-height: 1.1em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
  margin-top: .9em;
}
.title h1 {
  margin-top: 12px;
}
h1 b,
h1 strong {
  font-family: 'DINWebBlack';
}
h1 i,
h1 em {
  font-family: 'DINWebBoldItalic';
}
h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.6em;
  font-family: "DINWebLight", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
}
h1.search-page-heading {
  margin: 15px 0;
}
h2 {
  font-size: 1.75em;
  line-height: 1.3125em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  line-height: 1.2;
  color: #777;
  margin-top: 1em;
  margin-bottom: 0em;
}
h2 i,
h2 em {
  font-family: 'DINWebBoldItalic';
}
.section-heading h2 {
  background-color: #3d3935;
  color: #fff;
  padding: .3em .2em .2em .4em;
  margin-bottom: .5em;
}
.colctrl h2 {
  margin-top: .6em;
  margin-bottom: .5em;
}
h2 span {
  color: #3d3935;
  font-size: .5em;
  line-height: 1.1em;
  text-transform: uppercase;
  font-family: "DINWebBold", sans-serif;
}
h3 {
  font-size: 1.19318182em;
  line-height: 1.3125em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
  margin-top: 1.6em;
}
.parsys_column .section:first-child h2:first-child {
  margin-top: -0.2em;
}
.parsys_column .section:first-child h3:first-child {
  margin-top: 0.2em;
}
.parsys_column .section:first-child p:first-child {
  margin-top: 0em;
}
h3 i,
h3 em {
  font-family: 'DINWebBoldItalic';
}
h4 {
  font-size: 0.8em;
  line-height: 1.125em;
  font-family: "DINWebBold", sans-serif;
  color: #888;
  text-transform: uppercase;
  font-weight: normal;
  padding-top: 1em;
  padding-bottom: .6em;
  letter-spacing: .1em;
}
h4 + p {
  margin-top: -0.75em;
}
h5 {
  font-size: 0.7em;
  line-height: 1.125em;
  font-family: "DINWebBold", sans-serif;
  color: #ccc;
  font-weight: normal;
  text-transform: uppercase;
  padding-top: 1em;
  padding-bottom: .6em;
  letter-spacing: .1em;
}
h5 + p {
  margin-top: -0.75em;
}
.ruled {
  border-top: 10px solid #eee !important;
  padding-top: 1em !important;
}
.ruled-below {
  border-bottom: 10px solid #eee !important;
  padding-bottom: .5em !important;
  margin-bottom: 1em !important;
}
.dotted-rule {
  border-top: 1px dotted #ddd;
  padding-top: 1em;
}
.dotted-rule-below {
  border-bottom: 1px dotted #ddd;
  padding-bottom: .5em;
}
/* layout */
#container {
  width: 90%;
  padding: 0;
  margin: 0 auto;
  max-width: 1520px;
}
#page {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.75);
}
.toggle-search,
.toggle-search-control {
  display: none;
}
header {
  position: relative;
  width: 100%;
  background-color: #eee;
  background: -webkit-gradient(linear, left center, right center, from(#ffffff), to(#dddddd));
  background: -moz-linear-gradient(left, #ffffff 0%, #dddddd 100%);
  float: left;
  padding-bottom: 14px;
  padding-top: 16px;
  border-top: 5px solid #003087;
}
header fieldset {
  border: none;
  padding: 0;
  width: 100%;
}
.heading {
  float: left;
  width: 77.7777%;
  padding-top: 93px;
  position: relative;
}
.brand-title {
  position: absolute;
  top: 0px;
  left: 0px;
}
.branding {
  width: 337px;
  height: 46px;
  background: transparent url(clf/source/assets/sfu-logo.png) top left no-repeat;
  background-size: contain;
}
.brand-title > a {
  width: 300px;
  display: block;
}
.branding h1 {
  display: none;
}
.site-title {
  color: #3d3935;
  clear: left;
  margin-left: 98px;
}
.site-title h2 {
  font-family: "DINWebMedium";
  font-size: 1.4em;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}
.site-title h3 {
  font-size: 0.65em;
  line-height: 1em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 10px;
}
.site-title h3 + h2 {
  margin-top: 0;
}
.site-title a {
  color: #3d3935;
}
.actionable-header {
  font-size: 0.74285714em;
  /* 12px / 16px | 14px / 16px */
  float: right;
  width: 22.222222222%;
  /* 304px / 1368px */
  padding-left: 1.4619883%;
  /* 20px / 1368px */
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 22px;
}
.actionable-header label,
.actionable-header a {
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
}
.actionable-header input {
  font-size: 0.925em;
  font-family: "Lucida Grande", sans-serif;
}
.search-scope-set,
.search-scope-set label {
  margin-top: 0;
}
.sf-menu {
  font-size: 0.85714286em;
  /* 12px / 16px | 14px / 16px */
  padding-right: 2%;
  position: absolute;
  top: 30px;
  left: -160px;
  z-index: 1;
}
.sf-menu li {
  text-transform: uppercase;
  letter-spacing: .1em;
  float: left;
  width: auto;
  padding-left: 1em;
}
.sf-menu li a span {
  text-transform: lowercase;
}
.sf-menu li:first-child {
  border-left: none;
}
.sf-menu a {
  color: #3d3935;
}
.sf-menu ul {
  background-color: #fff;
}
.mobile-global-links-container {
  display: none;
}
.expanded a {
  font-family: "DINWebMedium", sans-serif;
}
.header-divider {
  clear: left;
  height: 25px;
  width: 100%;
  background: #3d3935 url(clf/source/assets/bg-small.png) -70px 0px no-repeat;
}
input[type=search] {
  -webkit-appearance: textfield;
}
::-webkit-search-cancel-button {
  display: none;
}
.search {
  position: relative;
  z-index: 999;
}
.search form {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
.search .search-field {
  margin-top: 0;
}
.search .search-field input {
  width: 85%;
  padding: 6px;
  box-shadow: inset 2px 2px 5px #ccc;
  border: 1px solid #b8b8b8;
  margin: 0;
}
.search fieldset {
  line-height: 1.5em;
  margin-bottom: 4px;
}
.search-scope-set label {
  display: inline;
}
.search-scope-set label input {
  display: inline;
  float: none;
  margin: 0.4em 0.5em 0 0.2em;
}
.first-col {
  float: left;
  width: 22.222222222%;
  /* 304px / 1368px */
}
.nav-control {
  display: none;
}
.default-nav {
  font-size: 0.85714286em;
  line-height: 1.3125em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 14px solid #777;
  margin-bottom: 20px;
  padding-bottom: 70px;
  border-top: 15px solid #777;
  background: #3d3935 url(clf/source/assets/bg-textured.png) 0px 0px repeat;
}
.default-nav .top.active > ul {
  display: block;
}
.default-nav a {
  display: block;
  padding: 8px 5px 8px 12px;
}
.default-nav ul > li > a {
  color: #fff;
}
.default-nav li {
  background: #161513;
  border-bottom: 1px solid #555;
}
.default-nav li:first-child {
  border-top: 1px solid #aaa;
}
.main-nav li.nav-item-expanded > a,
.default-nav li.nav-item-expanded > a {
  color: #e0d10a;
}
.default-nav nav ul ul {
  display: block;
}
.default-nav > ul > li > ul > li a {
  background-color: #ddd;
  color: #000;
  text-transform: none;
  padding-left: 21px;
}
.default-nav > ul > li > ul > li a:hover {
  color: #000;
  background-color: #eee;
}
.default-nav > ul > li > ul > li {
  border: none;
}
.default-nav > ul > li.active {
  background-color: #333;
}
.default-nav > ul > li.active > a {
  color: #e0d10a;
}
.default-nav li.active li {
  border: none;
}
.default-nav ul .top.active .active ul {
  display: block;
}
.default-nav > ul > li > ul > li > ul {
  padding-left: 12px;
  padding-top: 4px;
  background-color: #fafafa;
}
.default-nav > ul > li > ul > li.active > a {
  color: #3d3935;
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
  background-color: #ccc;
}
.default-nav > ul > li > ul > li.active li a {
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  background-color: #fafafa;
  padding-left: 8px;
}
.default-nav > ul > li > ul > li.active > ul > li.active > a {
  color: #a6192e;
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
}
.default-nav > ul > li > ul > li.active > ul > li.active > ul > li a {
  padding-left: 16px;
}
.default-nav > ul > li > ul > li.active > ul > li.active > ul > li.active a {
  color: #3d3935;
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWebBold", sans-serif;
  font-weight: normal;
}
.default-nav > ul > li > ul > li.active li:hover {
  background-color: transparent;
}
.default-nav .top.active > ul > li:first-child {
  display: none;
}
.default-nav li.rule {
  border-top: 1px solid #fff;
}
.below-nav {
  padding-left: 12px;
}
.main-nav .sub-menu {
  display: none;
  padding-left: 16.6666667%;
  /* must match .main-nav nav>ul>li>a */
}
#page-content {
  width: 100%;
  float: left;
  padding: 0;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.75);
}
.breadcrumb {
  font-size: 0.875em;
  line-height: 1.3125em;
  font-weight: normal;
  font-family: Cambria, Georgia, "Times New Roman", Times, serif;
  padding-top: 20px;
  float: left;
  padding-left: 2.1929825%;
  /* 30px / 1368px */
  padding-right: 3.6549708%;
  /* 50px / 1368px */
  width: 77.77778%;
  /* 760px / 1368px */
}
.main {
  padding-left: 2.1929825%;
  /* 30px / 1368px */
  padding-right: 3.6549708%;
  /* 50px / 1368px */
  padding-top: 25px;
  float: left;
  width: 77.77778%;
  /* 760px / 1368px */
  padding-bottom: 20px;
}
.three-column .main {
  width: 55.55556%;
  /* 1064px / 1368px */
  padding-right: 2.1929825%;
  /* 30px / 1368px */
}
.no-navigation .main {
  width: 100%;
}
.three-column.no-navigation .main {
  width: 77.77778%;
  /* 760px / 1368px */
}
.mobile-sub-menu {
  display: none;
}
.sub {
  padding-top: 25px;
  width: 22.222222%;
  /* 304px / 1368px */
  float: right;
  padding-right: 2.1929825%;
  /* 30px / 1368px */
  padding-bottom: 20px;
}
#page-content .mobile,
#page-content .tablet,
#page-content img.mobile + br,
#page-content img.tablet + br,
#page-content .mobile.toggle,
#page-content .tablet.toggle {
  display: none;
}
#page-content .desktop,
#page-content img.desktop + br {
  display: block;
}
#page-content .desktop.toggle {
  display: inline-block;
}
.deptNews {
  border: 1px solid #ddd;
  padding: 1.5em;
  margin-bottom: 6%;
  box-shadow: inset 0px 0px 10px 1px #dddddd;
}
.intro p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-top: 0em;
}
.toggle {
  display: inline-block;
  background: url("/content/dam/sfu/images/icons/content-toggle-icon.png") 0px 4px no-repeat;
  padding-left: 20px;
  cursor: pointer;
  margin-top: 1%;
}
.toggle.open {
  background-position: -1786px 4px;
}
.toggle p,
.toggle h1,
.toggle h2,
.toggle h3,
.toggle h4,
.toggle h5 {
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: 0;
  margin-bottom: .5em;
}
.toggleContent {
  padding-left: 2%;
  border-left: 5px solid #ddd;
  display: none;
  /* open or inside AEM CMS always show */
}
.toggleContent.open,
.toggleContent[id^='cq-'] {
  display: block;
}
/* open or inside AEM CMS always show */
[id^='cq-'] .toggleContent {
  display: block;
}
.toggleContent p:first-child {
  margin-top: 1%;
}
table th {
  text-align: left;
  vertical-align: bottom;
  border-bottom: 1px solid #999;
}
table td,
table th {
  padding: 0.25em 0.5em;
}
.alternate table {
  border-bottom: 1px solid #ddd;
}
.alternate table tr:nth-child(even) {
  background-color: #eee;
}
.category + .title h1 {
  margin-top: 0%;
  margin-bottom: 1%;
  padding-top: 0%;
}
.marginTop {
  margin-top: 2em;
}
.marginBottom {
  margin-bottom: 2em;
}
.normalize-max-width-image-caption {
  display: block;
  float: none;
  line-height: 1.75em;
}
div img.xl-width {
  max-width: 908px;
}
div img.xl-width + small {
  display: block;
  float: none;
  line-height: 1.75em;
  max-width: 908px;
}
div img.l-width {
  max-width: 726px;
}
div img.l-width + small {
  display: block;
  float: none;
  line-height: 1.75em;
  max-width: 726px;
}
div img.m-width {
  max-width: 545px;
}
div img.m-width + small {
  display: block;
  float: none;
  line-height: 1.75em;
  max-width: 545px;
}
div img.s-width {
  max-width: 363px;
}
div img.s-width + small {
  display: block;
  float: none;
  line-height: 1.75em;
  max-width: 363px;
}
div img.xs-width {
  max-width: 181px;
}
div img.xs-width + small {
  display: block;
  float: none;
  line-height: 1.75em;
  max-width: 181px;
}
div.comments form.comment {
  display: none;
}
footer {
  color: #aaa;
  padding-left: 10.4%;
  padding-top: 18px;
  padding-bottom: 18px;
  clear: left;
  float: left;
  font-size: 0.75em;
  line-height: 1.3125em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  background-color: #3d3935;
  width: 100%;
}
footer section:last-child {
  margin-left: 2%;
}
footer a,
footer a:hover {
  color: #fff;
}
footer li.header a {
  color: #e0d10a;
}
footer ul {
  margin-top: 8px;
  float: left;
  padding-right: 6%;
}
footer ul:last-child {
  font-size: .9em;
  line-height: .9em;
}
footer li {
  margin: 0px;
  padding: 0px;
}
footer li > a {
  display: inline-block;
  margin: 0px 0px 4px 0px;
}
footer li.header a {
  margin-bottom: 0px;
}
footer li.header {
  font-size: 0.81818182em;
  line-height: 1.3125em;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  color: #e0d10a;
  text-transform: uppercase;
  padding-bottom: 8px;
}
footer li.header ul li {
  background-image: none;
}
footer address {
  font-style: normal;
}
.connect-with-us .text p,
.contact-us .text p {
  margin-top: 0px;
}
.connect-with-us .text ul {
  list-style-type: none;
  margin-top: 0;
}
.connect-with-us .text ul li {
  padding-left: 0;
  background: none;
}
.cq-image-placeholder {
  display: none;
}
.cq-text-placeholder-ipe {
  display: none;
}
/* ------------------ BREAKPOINT 2: 980 ----------------- */
@media (max-width: 980px) {
  header {
    transition: margin-top 0.5s;
    -moz-transition: margin-top 0.5s;
    -webkit-transition: margin-top 0.5s;
    -o-transition: margin-top 0.5s;
    margin-top: 0;
  }
  .heading {
    width: 100%;
  }
  .reveal-search {
    transition: margin-top 0.5s;
    -moz-transition: margin-top 0.5s;
    -webkit-transition: margin-top 0.5s;
    -o-transition: margin-top 0.5s;
    margin-top: 70px;
  }
  .toggle-search-control {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: block;
    background: #003087 url(clf/source/assets/search-icon@2x.png) 4px 5px no-repeat;
    background-size: 21px 25px;
    text-indent: -999em;
    width: 21px;
    border: none;
    cursor: pointer;
    margin-top: 0;
    margin-right: 6%;
    padding: 10px 16px;
  }
  .actionable-header {
    float: none;
    height: 70px;
    position: absolute;
    top: -75px;
    left: 0;
    background-color: #485881;
    color: #fff;
    width: 100%;
    padding: 8px 2% 12px 2%;
  }
  .actionable-header .search {
    float: left;
    width: 48%;
    margin-right: 2%;
  }
  .search .search-field input {
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
  }
  .search label {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #fff;
    font-size: 1em;
    line-height: 1.3125em;
    font-family: "DINWeb", sans-serif;
    font-weight: normal;
  }
  .branding {
    width: 337px;
    margin-top: 16px;
  }
  header {
    position: relative;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .header-image {
    display: none;
  }
  .global-links .sf-menu {
    display: none;
  }
  .global-links {
    position: static;
    float: left;
    width: 50%;
  }
  .mobile-global-links-container {
    color: #fff;
    display: block;
  }
  .mobile-global-links a {
    color: #fff;
    padding: .85em 1em .5em 1em;
    display: block;
    font-size: 0.9em;
    line-height: 1.3125em;
    font-family: "DINWebLight", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: .1em;
  }
  .mobile-global-links li.header {
    float: left;
    margin-left: 2%;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    background-color: #003087;
    border-radius: .5em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .mobile-global-links li.header li a span {
    text-transform: lowercase;
  }
  .mobile-global-links li.header ul {
    background-color: #4A6AA4;
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -0-transition: all .1s linear;
    transition: all .1s linear;
  }
  .mobile-global-links li.header ul.revealed {
    padding-top: 8px;
    opacity: 1;
    height: 100%;
  }
  .mobile-global-links li.header ul:target {
    opacity: 1;
    height: 75px;
    -webkit-transition: all 1s linear;
    -ms-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -0-transition: all 1s linear;
    transition: all 1s linear;
  }
  .main,
  .three-column .main {
    width: 77.77777778%;
    padding-top: 1.4619883%;
  }
  .sub {
    width: 77.77777778%;
    padding-left: 2.192825%;
  }
  .no-navigation .main {
    width: 100%;
  }
  .three-column.no-navigation .main {
    width: 100%;
  }
  .three-column.no-navigation .sub {
    width: 100%;
  }
  footer {
    padding: 2.1929825%;
  }
  footer ul {
    margin-bottom: 20px;
  }
  #page-content .desktop,
  #page-content img.desktop + br,
  #page-content .desktop.toggle {
    display: none;
  }
  #page-content .tablet,
  #page-content img.tablet + br {
    display: block;
  }
  #page-content .tablet.toggle {
    display: inline-block;
  }
}
/* ------------------ BREAKPOINT 3: 768 ----------------- */
@media (max-width: 768px) {
  #container {
    width: 100%;
  }
  header {
    padding-bottom: 20px;
  }
  .site-title h2 {
    font-size: 1.2em;
    line-height: 1em;
  }
  .header-divider {
    height: 33px;
    overflow: hidden;
  }
  fieldset.search-field {
    float: none;
  }
  .first-col {
    width: 100%;
    position: relative;
  }
  .main-nav,
  .default-nav {
    float: none;
    width: 100%;
    min-height: 0;
    margin-bottom: 0;
    border-top: 1px solid #ddd;
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .main-nav {
    position: relative;
  }
  .nav-control {
    display: block;
    width: 100%;
    position: absolute;
    top: -35px;
    overflow: hidden;
    height: 35px;
  }
  .main-nav,
  .default-nav {
    border-top: 0;
  }
  .main-nav a,
  .default-nav a {
    padding-top: 10px;
  }
  .default-nav {
    box-shadow: none;
  }
  .default-nav li:first-child {
    border-top: none;
  }
  .default-nav .top.active > ul li:first-child {
    display: block;
  }
  .nav-revealed {
    background: #3d3935 url(clf/source/assets/menu-icon@2x.png) 5px 9px no-repeat;
    background-size: 21px 72px;
  }
  .nav-revealed:hover {
    background: #555555 url(clf/source/assets/menu-icon@2x.png) 5px 9px no-repeat;
    /* add X hover state here */
    background-size: 21px 72px;
  }
  .main-nav button,
  .default-nav button {
    background: #ffffff url(clf/source/assets/menu-icon@2x.png) 5px -46px no-repeat;
    background-size: 21px 72px;
    text-indent: -999em;
    width: 21px;
    border: none;
    cursor: pointer;
    margin-right: 6%;
    padding: 9px 16px 11px 16px;
    float: right;
  }
  .main-nav button:hover,
  .default-nav button:hover {
    background-color: #3d3935;
    background-position: 5px -18px;
  }
  .main-nav a {
    display: block;
    color: #fff;
    padding: 10px 0px 5px 12px;
  }
  .main-nav ul,
  .default-nav ul {
    display: none;
  }
  .main-nav ul ul,
  .default-nav ul ul {
    display: none;
  }
  .main-nav > ul > li > ul,
  .default-nav > ul > li > ul {
    display: none;
  }
  .default-nav > ul > li {
    background-color: #3d3935;
  }
  .main-nav > ul > li > ul > li.active > a {
    color: #3d3935;
    font-size: 1em;
    line-height: 1.3125em;
    font-family: "DINWebBold", sans-serif;
    font-weight: normal;
    background-color: #ccc;
  }
  nav > ul > li.nav-item-expandable {
    cursor: pointer;
    background: #3d3935 url(clf/source/assets/nav-plus-minus@2x.png) 94% -16px no-repeat;
    background-size: 23px 39px;
  }
  nav > ul > li.nav-item-expanded {
    background-position: 94% 10px;
  }
  .default-nav li:last-child {
    border-bottom: none;
  }
  .default-nav li.rule {
    border-top: none;
  }
  .breadcrumb {
    width: 100%;
    float: none;
  }
  .main,
  .three-column .main {
    clear: left;
    width: 100%;
    padding-bottom: 16px;
    padding-right: 2.1929825%;
  }
  .mobile-sub-menu {
    display: block;
    margin-top: 8px;
    padding-left: 2.1929825%;
  }
  .mobile-global-links li.header ul {
    width: inherit;
  }
  .below-nav {
    padding: 2.1929825%;
  }
  #page-content .tablet,
  #page-content img.tablet + br,
  #page-content .tablet.toggle {
    display: none;
  }
  #page-content .mobile,
  #page-content img.mobile + br {
    display: block;
  }
  #page-content .mobile.toggle {
    display: inline-block;
  }
  .sub {
    width: 100%;
    padding-left: 2.1929825%;
    /* 30px / 1368 */
  }
  footer {
    font-size: 1em;
    line-height: 1.3125em;
    font-family: "DINWeb", sans-serif;
    font-weight: normal;
  }
  footer ul {
    width: 25%;
  }
  footer ul:last-child {
    width: 100%;
  }
}
/* ------------------ BREAKPOINT 4: 480 ----------------- */
@media (max-width: 480px) {
  .branding {
    background-size: cover;
    width: 98px;
  }
  .brand-title > a {
    width: 95px;
  }
  .site-title {
    margin-left: 10px;
  }
  .actionable-header .search {
    width: 40%;
  }
  fieldset.search-scope-set {
    font-size: .9em;
    width: 120%;
  }
  .mobile-global-links li.header ul {
    font-size: .9em;
  }
  .mobile-global-links li.header span {
    display: none;
  }
  .mobile-global-links li.header li a span {
    display: inline;
    text-transform: lowercase;
  }
  footer ul {
    width: 50%;
  }
  footer ul:nth-child(3),
  footer ul:last-child {
    clear: left;
  }
  table td,
  table th {
    padding: 0.125em 0.25em;
  }
}
/* ------------------ HIDPI/RETINA DISPLAY RULES ----------------- */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-device-pixel-ratio: 1.25), (min-resolution: 96dpi) {
  .branding {
    background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/sfu-logo@2x.png);
  }
}
/* ------------------ HIDPI/RETINA BACKWARDS-COMPATIBILITY LAYER FOR IE ----------------- */
.ext-ie6 .toggle-search-control,
.ext-ie7 .toggle-search-control,
.ext-ie8 .toggle-search-control {
  background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/search-icon.png);
}
.ext-ie6 .nav-revealed,
.ext-ie7 .nav-revealed,
.ext-ie8 .nav-revealed {
  background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/menu-icon.png);
}
.ext-ie6 .nav-revealed:hover,
.ext-ie7 .nav-revealed:hover,
.ext-ie8 .nav-revealed:hover {
  background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/menu-icon.png);
}
.ext-ie6 .main-nav button,
.ext-ie7 .main-nav button,
.ext-ie8 .main-nav button,
.ext-ie6 .default-nav button,
.ext-ie7 .default-nav button,
.ext-ie8 .default-nav button {
  background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/menu-icon.png);
}
.ext-ie6 .main-nav > ul > li.nav-item-expandable,
.ext-ie7 .main-nav > ul > li.nav-item-expandable,
.ext-ie8 .main-nav > ul > li.nav-item-expandable,
.ext-ie6 .default-nav > ul > li.nav-item-expandable,
.ext-ie7 .default-nav > ul > li.nav-item-expandable,
.ext-ie8 .default-nav > ul > li.nav-item-expandable {
  background-image: url(/etc/designs/clf/clientlibs/clf/source/assets/nav-plus-minus.png);
}
/*------- Print stylesheet -------*/
@media print {
  body {
    font-size: 13px;
  }
  .header-divider,
  nav,
  .search,
  .branding,
  .global-links,
  .toggle-search-control,
  footer,
  .breadcrumb,
  .actionable-header,
  .documenttools,
  #comments-form,
  .below-nav {
    display: none !important;
  }
  header {
    border-top: none;
  }
  .brand-title,
  .site-title,
  .main,
  .heading,
  .sub_content,
  .sub,
  .main-wide {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: static;
  }
  .cq-colctrl-lt8 > div,
  .cq-colctrl-lt2 > div {
    float: left !important;
    width: 50% !important;
  }
  .cq-colctrl-lt8-c2 {
    clear: both;
  }
  .page-content {
    clear: both;
    margin-top: 50px;
  }
  .site-title:before {
    display: block;
    margin-left: -33.33% !important;
    content: url(/etc/designs/clf/clientlibs/clf/source/assets/sfu-logo@2x.png);
    -webkit-transform: scale(0.5) !important;
    -ms-transform: scale(0.5) !important;
    transform: scale(0.5) !important;
    margin-top: -20px !important;
  }
  .site-title h2 {
    width: 100%;
    margin-top: -20px;
    font-size: 1em;
  }
  .main a {
    text-decoration: none;
  }
  iframe {
    display: none;
  }
  @page {
    margin: 2cm 0.5cm !important;
  }
  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }
  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  .highlights .cq-colctrl-lt2-c0,
  .highlights .cq-colctrl-lt2-c1 {
    margin-right: 0 !important;
    padding-right: 10px !important;
  }
}
#formerror ~ div.form ~ div {
  display: none;
}
#formerror .c2 p a {
  -webkit-backface-visibility: hidden;
  -webkit-appearance: none;
  border: none;
  border-bottom: 3px solid #7A1024;
  border-radius: 5px;
  display: inline-block;
  margin: 1em 0 10px;
  padding: 0.25em 1em;
  text-decoration: none;
  background-color: #a6192e;
  font-size: 1em;
  line-height: 1.3125em;
  font-family: "DINWebMedium", sans-serif;
  font-weight: normal;
  line-height: 1.625;
  color: #FFF;
  width: auto;
  cursor: pointer;
}
#formerror .c2 p strong:before {
  content: "!";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  color: #a6192e;
  font-size: 50px;
}

ul.lwc-list.card-list.col-3.events-widget li.show-date.featured {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  width: auto;
  padding-left: unset;
  margin-left: unset;
  list-style: none;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, min-content);
}
ul.lwc-list.card-list.col-3.events-widget li.show-date.featured > div {
  padding: 0 2rem;
}
ul.lwc-list.card-list.col-3.events-widget li.show-date.featured > div p {
  line-height: 1;
  padding: 0;
}
ul.lwc-list.card-list.col-3.events-widget li.show-date.featured > div.card-list__item--image {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}
ul.lwc-list.card-list.col-3.events-widget li.show-date.featured:after {
  content: ' ';
  border: none;
  top: unset;
  position: unset;
  margin-top: unset;
  right: unset;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date.featured .card-list__item--image img {
  width: 100%;
  height: auto;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget > a:hover {
  text-decoration: none;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date.featured .card-list__item--details.lwc_card_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 2rem;
  grid-column-gap: 2rem;
  grid-row: 8;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date.featured div.card-list__item--small-info {
  display: grid;
  grid-template-columns: 1fr;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date.featured .card-list__item--ticket-info {
  text-align: center;
  display: inline-block;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date.featured .card-list__item--details.lwc_card_details > div:last-child {
  align-self: end;
  justify-self: end;
}
a:hover li.show-date.featured ul.lwc-list.card-list.col-3.events-widget li.show-date.featured div div.card-list__item--ticket-info {
  color: #a6192e;
  font-weight: bold;
  background: #fff;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget > a:hover {
  opacity: 1;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget > a:hover div.card-list__item--title,
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget > a:hover div.card-list__item--ticket-info {
  opacity: .8 !important;
}
div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget li.show-date div p {
  margin: 0 0 1rem;
}
div.livewhale-calendar {
  display: inline-block;
}
html div.lw-events-list-wrapper.detail .card-list__item--title {
  font-size: 30px;
  line-height: 1;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  color: #777;
  margin-bottom: 0;
}
html div.lw-events-list-wrapper.detail div[class*='card-list__item'] {
  padding-top: 0;
}
html div.lw-events-list-wrapper.detail div[class*='card-list__item'] p {
  padding-top: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 16px;
}
html .lw-events-list-wrapper.detail .event {
  box-shadow: none;
  transition-duration: 0s;
}
html .lw-events-list-wrapper.detail .event:hover {
  box-shadow: none;
  border: 1px solid #ddd !important;
}
html .lw-events-list-wrapper.detail .event:hover .card-list__item--title {
  opacity: .8;
}
.card-list__item--ticket-info {
  -webkit-appearance: unset;
  border: 0;
  border-bottom: 3px solid #7a1024;
  border-radius: 5px;
  display: inline-block;
  margin: 1em 0 10px;
  padding: 5px 15px !important;
  text-decoration: none;
  background-color: #a6192e;
  font-size: 16px;
  line-height: 1.3125em;
  font-family: "DINWebMedium", sans-serif;
  font-weight: normal;
  line-height: 1.625;
  color: #FFF;
  width: auto;
  cursor: pointer;
  box-shadow: none;
}
html .lw-events-list-wrapper.detail .event:hover div.card-list__item--ticket-info {
  opacity: .8;
}
html div.lw-events-list-wrapper.detail .card-list__item--title,
html div.livewhale-calendar ul.sfu-list.lwc-list li div.card-list__item--title {
  font-size: 30px;
  line-height: 1;
  font-family: "DINWeb", sans-serif;
  font-weight: normal;
  color: #a6192e;
  margin-bottom: 0;
  text-transform: none;
}
html div.livewhale-calendar ul.sfu-list.lwc-list li div.card-list__item--title {
  margin-bottom: 15px;
  color: #a6192e;
  text-decoration: none;
}
@media (max-width: 1200px) {
  div.livewhale-calendar ul.lwc-list.card-list.col-3.events-widget {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1200px) {
  .lw-events-list-wrapper.detail .list-item .card-list__item--title {
    font-size: 20px;
    text-transform: none;
  }
  .lw-events-list-wrapper.detail .list-item .card-list__item--date p {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media (max-width: 980px) {
  .lw-events-list-wrapper.detail .list-item .event-info,
  .lw-events-list-wrapper.detail .list-item .event-image {
    display: block !important;
  }
  .lw-events-list-wrapper.detail .list-item .event-image {
    margin-right: 0 !important;
  }
  .lw-events-list-wrapper.detail .list-item .event-image img {
    width: 100% !important;
    height: auto !important;
  }
}

