@charset "UTF-8";
/* Well hello there. —@beckysoll & @ashuttl */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger.is-active:hover {
  opacity: 0.7; }

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

/*
       * Elastic
       */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
  transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }

/*
       * Elastic Reverse
       */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
  transform: translate3d(0, -20px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }

.debug {
  padding: 20px;
  color: #ffffff;
  background-color: red;
  white-space: pre;
  font-size: 1.5em;
  font-family: monospace; }

hr {
  display: none; }

a.button {
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-indent: 0.2em; }
  a.button .text:after {
    content: "→";
    padding-left: 0.15em; }

.fa {
  margin-right: .5em;
  color: inherit; }

.fa-instagram:hover {
  color: #b4328e; }

.fa-facebook:hover, .fa-facebook-official:hover {
  color: #3b5998; }

.fa-twitter:hover {
  color: #00aced; }

.fa-youtube:hover, .fa-youtube-play:hover {
  color: #ff0000; }

body {
  margin: 0;
  padding: 0;
  font-family: 'mark'; }

p {
  line-height: 1.5; }

.futura {
  font-family: futura-pt, sans-serif;
  text-rendering: optimizeLegibility; }

header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0; }
  @media screen and (max-width: 1300px) {
    header .content {
      padding-right: 50px;
      padding-left: 50px; } }
  @media screen and (max-width: 800px) {
    header .content {
      padding-right: 20px;
      padding-left: 20px; } }

header .logo {
  margin-bottom: 17px;
  margin-top: 10px; }
  @media screen and (max-width: 900px) {
    header .logo img {
      width: 150px; } }

header .search {
  display: none; }

header .hamburger {
  z-index: 200;
  position: fixed;
  top: 20px;
  right: 20px; }
  header .hamburger .hamburger-box {
    background-color: #ffffff;
    border: 5px solid #ffffff;
    -webkit-transition: .5s opacity ease;
    -o-transition: .5s opacity ease;
    transition: .5s opacity ease; }
  @media screen and (min-width: 800px) {
    header .hamburger {
      display: none; } }
  header .hamburger.is-active, header .hamburger.is-active * {
    color: #ffffff;
    border-color: #ffffff; }
    header .hamburger.is-active .hamburger-inner, header .hamburger.is-active .hamburger-inner::after, header .hamburger.is-active * .hamburger-inner, header .hamburger.is-active * .hamburger-inner::after {
      background-color: #ffffff; }
    header .hamburger.is-active .hamburger-box, header .hamburger.is-active * .hamburger-box {
      background-color: transparent;
      border: 5px solid transparent; }

header nav {
  display: none; }
  @media screen and (max-width: 799px) {
    header nav {
      position: fixed;
      -webkit-transition: .5s right ease;
      -o-transition: .5s right ease;
      transition: .5s right ease;
      right: -50em;
      height: 100%;
      max-width: 100%;
      display: block;
      background-color: #191919;
      z-index: 100;
      overflow-y: scroll; }
      header nav.is-active {
        right: 0; }
      header nav .primary {
        padding-top: 80px; }
      header nav a {
        text-decoration: none;
        font-family: futura-pt, sans-serif;
        color: #dddddd; }
      header nav .primary > li {
        display: block;
        padding: 30px 40px 0 40px;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 1.4em; }
        header nav .primary > li > a {
          padding-right: 40px; }
        header nav .primary > li.shows a {
          color: #2BD1BD; }
        header nav .primary > li.school a {
          color: #4c44ee; }
        header nav .primary > li.about a {
          color: #E4FF01; }
        header nav .primary > li.performers a {
          color: #FFBD40; }
        header nav .primary > li .fa-chevron-circle-up, header nav .primary > li .fa-chevron-circle-down {
          display: none; }
        header nav .primary > li.is-active .fa-chevron-circle-down {
          display: none; }
        header nav .primary > li .sub {
          padding-top: 5px;
          padding-right: 60px;
          width: 100%; }
          header nav .primary > li .sub a {
            font-family: mark;
            text-transform: none;
            color: #dddddd;
            font-weight: 500;
            font-size: 0.75em;
            padding: 8px 0;
            border-bottom: 1px solid #6d6d6d;
            display: block; }
      header nav .secondary {
        padding: 30px 40px 30px 40px; }
        header nav .secondary a {
          font-family: mark;
          font-weight: 500;
          padding: 5px 0;
          display: block; }
        header nav .secondary .social li {
          display: inline-block; }
          header nav .secondary .social li a {
            display: inline-block;
            font-size: 1.4em; } }
  @media screen and (min-width: 800px) {
    header nav {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
      header nav .primary {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-right: -20px;
        margin-top: -20px;
        z-index: 2; } }
    @media screen and (min-width: 800px) and (min-width: 1000px) {
      header nav .primary > li {
        margin-left: 30px; } }
  @media screen and (min-width: 800px) {
        header nav .primary > li.shows .label {
          border-bottom-color: #2BD1BD; }
        header nav .primary > li.shows:hover > a {
          background: #2BD1BD;
          color: #000000; }
        header nav .primary > li.shows:hover .sub li:hover {
          background-color: #2BD1BD;
          color: #000000; }
        header nav .primary > li.shows:hover > a::after {
          color: #000000; }
        header nav .primary > li.shows.active > a {
          background: #2BD1BD;
          color: #000000; }
        header nav .primary > li.shows.active > a::after {
          content: "";
          width: 5px; }
        header nav .primary > li.shows.active:hover > a::after {
          width: 5px; }
        header nav .primary > li.school .label {
          border-bottom-color: #130D8C; }
        header nav .primary > li.school:hover > a {
          background: #130D8C;
          color: #ffffff; }
        header nav .primary > li.school:hover .sub li:hover {
          background-color: #130D8C;
          color: #ffffff; }
        header nav .primary > li.school:hover > a::after {
          color: #ffffff; }
        header nav .primary > li.school.active > a {
          background: #130D8C;
          color: #ffffff; }
        header nav .primary > li.school.active > a::after {
          content: "";
          width: 5px; }
        header nav .primary > li.school.active:hover > a::after {
          width: 5px; }
        header nav .primary > li.about .label {
          border-bottom-color: #E4FF01; }
        header nav .primary > li.about:hover > a {
          background: #E4FF01;
          color: #000000; }
        header nav .primary > li.about:hover .sub li:hover {
          background-color: #E4FF01;
          color: #000000; }
        header nav .primary > li.about:hover > a::after {
          color: #000000; }
        header nav .primary > li.about.active > a {
          background: #E4FF01;
          color: #000000; }
        header nav .primary > li.about.active > a::after {
          content: "";
          width: 5px; }
        header nav .primary > li.about.active:hover > a::after {
          width: 5px; }
        header nav .primary > li.performers .label {
          border-bottom-color: #FFBD40; }
        header nav .primary > li.performers:hover > a {
          background: #FFBD40;
          color: #000000; }
        header nav .primary > li.performers:hover .sub li:hover {
          background-color: #FFBD40;
          color: #000000; }
        header nav .primary > li.performers:hover > a::after {
          color: #000000; }
        header nav .primary > li.performers.active > a {
          background: #FFBD40;
          color: #000000; }
        header nav .primary > li.performers.active > a::after {
          content: "";
          width: 5px; }
        header nav .primary > li.performers.active:hover > a::after {
          width: 5px; }
        header nav .primary > li:hover .sub {
          display: block; }
        header nav .primary > li > a {
          color: inherit;
          font-size: 16px;
          font-weight: 800;
          text-transform: uppercase;
          text-decoration: none;
          -webkit-transition: 0s color;
          -o-transition: 0s color;
          transition: 0s color;
          padding: 5px 0 5px 10px; }
          header nav .primary > li > a .label {
            border-bottom: 3px solid #6d6d6d; }
            header nav .primary > li > a .label .fa {
              display: none; }
          header nav .primary > li > a:hover {
            background-color: #000000;
            color: #ffffff;
            border-bottom: 3px solid; }
            header nav .primary > li > a:hover::after {
              opacity: 1; }
          header nav .primary > li > a::after {
            content: "↓ ";
            font-weight: bold;
            text-align: center;
            width: 20px;
            display: inline-block;
            color: #ffffff; }
        header nav .primary .has-children a::after {
          content: "↓ ";
          font-weight: bold;
          text-align: center;
          width: 20px;
          display: inline-block;
          color: #ffffff; }
        header nav .primary .sub {
          display: none;
          position: absolute;
          background: #191919;
          margin-top: 8px;
          z-index: 999;
          -webkit-box-shadow: 4px 4px 0 #6d6d6d;
          box-shadow: 4px 4px 0 #6d6d6d; }
          header nav .primary .sub li {
            color: #e7e7e7;
            min-width: 200px; }
            header nav .primary .sub li:hover {
              background-color: #6d6d6d; }
            header nav .primary .sub li a {
              color: inherit;
              display: block;
              font-size: 14px;
              line-height: 38px;
              margin: 0 10px;
              border-bottom: 1px solid #6d6d6d;
              text-decoration: none;
              -webkit-transition: 0s color, 0s background-color;
              -o-transition: 0s color, 0s background-color;
              transition: 0s color, 0s background-color; }
              header nav .primary .sub li a:hover {
                border-bottom: 1px solid transparent; }
              header nav .primary .sub li a::after {
                display: none; }
            header nav .primary .sub li:last-child a {
              border-bottom: none; }
      header nav .secondary {
        z-index: 1;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 10px; }
        header nav .secondary .secondary_menu {
          float: left; }
        header nav .secondary .social {
          float: left;
          margin-left: 40px; }
          header nav .secondary .social li {
            padding-left: 0; }
          header nav .secondary .social .fa {
            font-size: 20px;
            margin-left: .4em;
            margin-right: 0; }
        header nav .secondary li {
          padding-left: 2em;
          font-size: 13px;
          font-weight: 500;
          display: inline-block; }
          header nav .secondary li.outbound::after {
            content: "↗";
            color: #6d6d6d; }
          header nav .secondary li a {
            color: #6d6d6d;
            text-decoration: none; }
            header nav .secondary li a:hover {
              color: #191919; } }

.panel {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px; }
  .panel .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media screen and (max-width: 900px) {
      .panel .content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .panel .content .float-right {
      margin-top: 1.5em; }
  @media screen and (max-width: 800px) {
    .panel {
      padding-top: 10px;
      padding-bottom: 10px; } }
  .panel .lede p {
    padding-top: .25em;
    font-weight: 400;
    font-size: 16px; }

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em; }
  @media screen and (min-width: 800px) {
    .content {
      padding: 0 50px; } }

.intro {
  margin-top: 16px; }
  .intro .key_info {
    padding: 4em 0 1.5em 0; }
    @media screen and (min-width: 900px) {
      .intro .key_info {
        padding-bottom: 4em; } }
    @media screen and (max-width: 600px) {
      .intro .key_info {
        padding-top: 1em; } }

footer {
  position: relative;
  background-color: #191919;
  color: #dddddd;
  padding: 10px 0;
  float: left;
  width: 100%; }
  @media screen and (min-width: 800px) {
    footer {
      padding: 3em 0; } }
  footer nav .footer li {
    line-height: 2em;
    margin-right: 1.5em; }
    @media screen and (min-width: 900px) {
      footer nav .footer li {
        float: left;
        line-height: inherit; } }
    footer nav .footer li a {
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      border-bottom: 2px solid transparent;
      padding-bottom: 5px;
      -webkit-transition: none;
      -o-transition: none;
      transition: none; }
      footer nav .footer li a:hover {
        border-bottom: 2px solid #dddddd; }
  footer nav .social {
    position: absolute;
    top: 20px;
    right: 20px; }
    @media screen and (min-width: 900px) {
      footer nav .social {
        position: relative;
        top: 0;
        right: 0;
        float: right; } }
    footer nav .social li {
      font-size: 1.5em;
      float: left;
      margin-left: .5em; }
  footer nav a {
    color: #dddddd; }
    footer nav a:hover {
      color: #ffffff; }
  footer .copyright {
    padding-bottom: 1em;
    margin-top: 2em;
    color: #6d6d6d; }
    @media screen and (min-width: 900px) {
      footer .copyright {
        clear: right;
        float: right; } }
  footer .email_signup {
    display: block;
    clear: left;
    margin-top: 2em;
    border-bottom: 1px solid #dddddd;
    color: #ffffff;
    opacity: .8; }
    @media screen and (min-width: 900px) {
      footer .email_signup {
        float: left; } }
    footer .email_signup.active {
      opacity: 1;
      border-bottom-color: #ffffff; }
    footer .email_signup input {
      background: transparent;
      border: none;
      color: inherit;
      font-family: mark;
      font-weight: inherit;
      font-size: inherit;
      text-transform: uppercase;
      padding-bottom: 10px;
      float: right; }
      footer .email_signup input.email {
        min-width: 85%;
        float: none; }
        @media screen and (max-width: 500px) {
          footer .email_signup input.email {
            font-size: 0.875em; } }
        @media screen and (min-width: 900px) {
          footer .email_signup input.email {
            min-width: 400px; } }
      footer .email_signup input:active, footer .email_signup input:focus {
        outline: none; }

h2 {
  font-weight: 200;
  text-transform: uppercase;
  font-size: 29px;
  margin-bottom: .25em; }
  h2 .shadowed {
    font-weight: 700;
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black; }

body.template-home .wells-container {
  padding-top: 20px; }

body.template-home .jumbotron a {
  color: inherit;
  text-decoration: none; }

body.template-home .separator {
  background-color: #ffffff;
  width: 100%;
  height: 20px; }

body.template-home .panel h2 {
  font-family: futura-pt, sans-serif;
  line-height: 1; }
  body.template-home .panel h2 strong {
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
    font-weight: 800; }

body.template-home .panel.text_block:not(.bg-white) {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px; }

body.template-home .panel.header {
  padding-bottom: 0; }
  body.template-home .panel.header .intro {
    max-width: 900px; }

body.template-home .panel.shows img {
  width: 100%; }

body.template-home .panel.shows .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto; }
  body.template-home .panel.shows .content .show:has(.flag) {
    display: none; }

@media screen and (max-width: 799px) {
  body.template-home .panel.shows .content .show {
    min-width: 18vh;
    max-width: 22vh;
    margin-top: 10px; } }

@media screen and (min-width: 800px) {
  body.template-home .panel.shows .content {
    overflow: hidden; }
  body.template-home .panel.shows .show {
    margin-right: 5px; }
  body.template-home .panel.shows.shows-7 .show {
    width: calc(14% - 5px); }
  body.template-home .panel.shows.shows-6 .show {
    width: calc(17% - 5px); }
  body.template-home .panel.shows.shows-5 .show {
    width: calc(20% - 5px); }
  body.template-home .panel.shows.shows-4 .show {
    width: calc(25% - 5px); }
  body.template-home .panel.shows.shows-3 .show {
    width: calc(33% - 5px); }
  body.template-home .panel.shows.shows-2 .show {
    width: calc(50% - 5px); } }

body.template-home section.linked_image img {
  width: 100vw; }

body.template-home section.linked_image img.linked_image {
  display: none; }

body.template-home section.linked_image img.mobile {
  width: 100%; }

@media screen and (min-width: 800px) {
  body.template-home section.linked_image img.linked_image {
    display: block;
    max-width: 1400px;
    margin: 0 auto; }
  body.template-home section.linked_image img.mobile {
    display: none; } }

@media screen and (max-width: 799px) {
  body.template-home section.jumbotron {
    position: relative;
    padding-top: 0;
    background: transparent !important; } }

body.template-home section.jumbotron img.mobile {
  width: 100vw; }

body.template-home section.jumbotron.accent-blue {
  background-color: #130D8C; }
  body.template-home section.jumbotron.accent-blue .content h2 {
    background-color: #130D8C; }

body.template-home section.jumbotron.accent-teal {
  background-color: #2BD1BD; }
  body.template-home section.jumbotron.accent-teal .content h2 {
    background-color: #2BD1BD;
    color: black; }

body.template-home section.jumbotron h2 {
  background-color: #2BD1BD;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  margin-bottom: 10px; }

body.template-home section.jumbotron h3 {
  font-family: futura-pt, sans-serif;
  margin-top: .5em; }

@media screen and (min-width: 800px) {
  body.template-home section.jumbotron {
    min-height: 60vh;
    background-position: center;
    background-size: cover; }
    body.template-home section.jumbotron.align-left {
      text-align: left; }
    body.template-home section.jumbotron.align-right {
      text-align: right; }
    body.template-home section.jumbotron .content-wrap {
      position: absolute;
      width: 100%;
      bottom: 20%; }
    body.template-home section.jumbotron .content {
      color: #ffffff;
      display: block; }
      body.template-home section.jumbotron .content h2 {
        font-size: 2.5em; }
      body.template-home section.jumbotron .content h3 {
        font-size: 1.75em; }
      body.template-home section.jumbotron .content h2 strong, body.template-home section.jumbotron .content h3 strong {
        color: #ffffff;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black;
        font-weight: 800; }
      body.template-home section.jumbotron .content p {
        text-shadow: 0 0 5px black;
        font-size: 1.25em; }
    body.template-home section.jumbotron img.mobile {
      display: none; } }

body.template-home .bg-teal {
  background-color: #2BD1BD; }

body.template-home .bg-white {
  background-color: #ffffff; }

body.template-home .bg-gray {
  background-color: #dddddd; }

body.template-home .bg-black {
  background-color: #191919;
  color: #dddddd; }
  body.template-home .bg-black h2, body.template-home .bg-black h3, body.template-home .bg-black h4, body.template-home .bg-black b, body.template-home .bg-black strong {
    color: #ffffff; }
  body.template-home .bg-black a.button .text {
    color: #E4FF01; }

body.template-home .bg-blue {
  background-color: #130D8C;
  color: #dddddd; }
  body.template-home .bg-blue h2, body.template-home .bg-blue h3, body.template-home .bg-blue h4, body.template-home .bg-blue b, body.template-home .bg-blue strong {
    color: #ffffff; }
  body.template-home .bg-blue a.button .text {
    color: #E4FF01; }

body.template-home .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  min-height: 200px;
  max-height: 400px; }
  body.template-home .hero img {
    width: 100vw; }
  @media screen and (min-width: 600px) {
    body.template-home .hero {
      max-height: 70vh; } }

body.template-home .nowplaying {
  background-color: #2BD1BD; }
  body.template-home .nowplaying a.button {
    color: #000000;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    white-space: nowrap; }
    body.template-home .nowplaying a.button:hover {
      color: white;
      border-bottom-color: white; }
  body.template-home .nowplaying .shows {
    clear: both;
    padding-top: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-left: 1em;
    padding-right: 1em; }
    @media screen and (min-width: 800px) {
      body.template-home .nowplaying .shows {
        padding-left: 2.5em;
        padding-right: 2.5em;
        max-width: 1200px;
        margin: 0 auto; } }
  body.template-home .nowplaying .show {
    width: 20%;
    background: #191919;
    margin-right: 6.66667px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-overflow-scrolling: touch; }
    @media screen and (max-width: 800px) {
      body.template-home .nowplaying .show {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 200px; } }
    body.template-home .nowplaying .show:last-child {
      margin-right: 0; }
    body.template-home .nowplaying .show img {
      width: 100%; }
    body.template-home .nowplaying .show a {
      text-transform: uppercase;
      font-family: futura-pt, sans-serif;
      color: #dddddd;
      text-decoration: none;
      display: block;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-size: 1.5em; }
      body.template-home .nowplaying .show a:hover {
        color: #ffffff; }

body.template-home .panel.text_block {
  padding-top: .5em; }
  body.template-home .panel.text_block .content {
    font-size: 1.125em;
    font-weight: lighter;
    display: block; }
    body.template-home .panel.text_block .content p {
      margin: 1em 0;
      max-width: 800px; }
      @media screen and (max-width: 800px) {
        body.template-home .panel.text_block .content p {
          font-size: 0.875em;
          font-weight: 400; } }
    body.template-home .panel.text_block .content a {
      font-weight: 500;
      -webkit-transition: 0s color;
      -o-transition: 0s color;
      transition: 0s color; }
      body.template-home .panel.text_block .content a:hover {
        color: #2BD1BD; }

body.template-home .panel.classes {
  background-color: #130D8C;
  color: #ffffff; }
  body.template-home .panel.classes .shadowed {
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
    color: #E4FF01; }
  body.template-home .panel.classes a.button {
    color: #E4FF01;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    white-space: nowrap; }
    body.template-home .panel.classes a.button:hover {
      color: #1b00fe;
      border-bottom-color: #1b00fe; }
    body.template-home .panel.classes a.button:hover {
      color: #FFBD40; }
  body.template-home .panel.classes .classes {
    clear: both;
    padding-top: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-left: 1em;
    padding-right: 1em; }
    @media screen and (min-width: 800px) {
      body.template-home .panel.classes .classes {
        padding-left: 2.5em;
        padding-right: 2.5em;
        max-width: 1200px;
        margin: 0 auto; } }
    body.template-home .panel.classes .classes .class {
      width: 33%;
      margin-right: 5px;
      background: #ffffff; }
      @media screen and (max-width: 800px) {
        body.template-home .panel.classes .classes .class {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          width: 270px; } }
      body.template-home .panel.classes .classes .class:last-child {
        margin-right: 0; }
      body.template-home .panel.classes .classes .class img {
        width: 100%; }
      body.template-home .panel.classes .classes .class a {
        color: inherit;
        text-decoration: none;
        display: block;
        width: 100%;
        height: 100%;
        margin-bottom: 24px; }
        body.template-home .panel.classes .classes .class a:hover {
          -webkit-box-shadow: 4px 4px 0 #2BD1BD;
          box-shadow: 4px 4px 0 #2BD1BD; }
      body.template-home .panel.classes .classes .class h3 {
        color: #130D8C;
        font-weight: 800;
        font-size: 1.2em;
        padding-left: 24px;
        padding-top: 20px;
        padding-bottom: 4px; }
      body.template-home .panel.classes .classes .class time {
        color: #191919;
        padding-left: 24px;
        display: block;
        padding-left: 24px;
        display: block;
        padding-right: 1em;
        font-size: 15px;
        line-height: 1.3; }

body.template-home .panel.groundlings-originals {
  background: #191919;
  color: #dddddd; }
  body.template-home .panel.groundlings-originals .button {
    color: #2BD1BD;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    white-space: nowrap; }
    body.template-home .panel.groundlings-originals .button:hover {
      color: #d42e42;
      border-bottom-color: #d42e42; }
  body.template-home .panel.groundlings-originals h2 {
    color: #ffffff; }
    body.template-home .panel.groundlings-originals h2 .fa {
      font-size: 2em;
      float: left;
      margin-right: .2em; }
  body.template-home .panel.groundlings-originals .content {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
  body.template-home .panel.groundlings-originals .intro, body.template-home .panel.groundlings-originals .videos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  @media screen and (min-width: 600px) {
    body.template-home .panel.groundlings-originals .intro {
      width: 35%; } }
  body.template-home .panel.groundlings-originals .intro .logo {
    margin-right: 10px; }
  body.template-home .panel.groundlings-originals .intro .button {
    display: inline-block;
    margin: 1em 0; }
  @media screen and (max-width: 600px) {
    body.template-home .panel.groundlings-originals .intro h3, body.template-home .panel.groundlings-originals .intro p {
      display: none; } }
  body.template-home .panel.groundlings-originals .intro h3 {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    font-size: 1.75em;
    margin-bottom: 10px;
    color: #ffffff; }
  body.template-home .panel.groundlings-originals .current-video {
    width: 100%;
    margin-right: 1em; }
    @media screen and (min-width: 600px) {
      body.template-home .panel.groundlings-originals .current-video {
        width: auto;
        min-width: 57%; } }
  body.template-home .panel.groundlings-originals .videos {
    display: none; }
    @media screen and (min-width: 1000px) {
      body.template-home .panel.groundlings-originals .videos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 18%; } }
    body.template-home .panel.groundlings-originals .videos img {
      width: 100%;
      margin-bottom: .5em;
      cursor: pointer; }
      body.template-home .panel.groundlings-originals .videos img:last-child {
        margin-bottom: 0; }

body.template-home .panel.social-posts iframe {
  margin: 0 auto; }
  @media screen and (min-width: 800px) {
    body.template-home .panel.social-posts iframe {
      width: 800px;
      height: 500px; } }

body.template-home .panel.social-posts .content {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

body.template-home .panel.social-posts li {
  display: inline-block;
  margin-left: 0;
  margin-right: 1.2em; }
  body.template-home .panel.social-posts li a {
    color: #191919;
    text-decoration: none;
    font-size: 28px; }
    body.template-home .panel.social-posts li a:hover {
      color: #000000; }
    body.template-home .panel.social-posts li a .fa {
      margin-right: 0; }

body.template-home .panel.social-posts .social-posts {
  clear: both;
  padding-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-preferred-size: 1;
  flex-basis: 1; }
  @media screen and (min-width: 800px) {
    body.template-home .panel.social-posts .social-posts {
      max-width: 1200px;
      margin: 0 auto; } }
  body.template-home .panel.social-posts .social-posts .post {
    margin-right: 1%;
    background-size: cover;
    width: 33%;
    position: relative; }
    body.template-home .panel.social-posts .social-posts .post:after {
      content: "";
      display: block;
      padding-bottom: 100%; }
    @media screen and (max-width: 800px) {
      body.template-home .panel.social-posts .social-posts .post {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 270px; } }
    body.template-home .panel.social-posts .social-posts .post:last-child {
      margin-right: 0; }
    body.template-home .panel.social-posts .social-posts .post a {
      position: absolute;
      width: 100%;
      height: 100%;
      color: #ffffff;
      font-weight: 500;
      font-size: 14px;
      line-height: 1.2;
      text-decoration: none;
      bottom: 0; }
      body.template-home .panel.social-posts .social-posts .post a .poster {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px; }
      body.template-home .panel.social-posts .social-posts .post a img {
        border-radius: 50%;
        width: 63px;
        height: 63px; }
      body.template-home .panel.social-posts .social-posts .post a .screen-name {
        font-size: 1.2em;
        font-weight: bolders;
        padding: 10px; }
      body.template-home .panel.social-posts .social-posts .post a .post-body {
        clear: left;
        padding: 0 10px 10px; }
      body.template-home .panel.social-posts .social-posts .post a .post-text {
        position: absolute;
        bottom: 0;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%); }

body.template-home .people .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (min-width: 1000px) {
    body.template-home .people .content {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; } }
  body.template-home .people .content .person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 20px;
    background-color: #2BD1BD; }
    @media screen and (min-width: 1000px) {
      body.template-home .people .content .person {
        width: 50%;
        margin-right: 20px; }
        body.template-home .people .content .person:last-child {
          margin-right: 0; } }
    body.template-home .people .content .person img {
      border-radius: 100%;
      width: 25vw;
      height: 25vw;
      max-width: 255px;
      max-height: 255px;
      margin: 1em 1.5em 1em 3em; }
      @media screen and (min-width: 1000px) {
        body.template-home .people .content .person img {
          width: 15vw;
          height: 15vw;
          margin: 2.5em 1.5em 2.5em 2em; } }
    body.template-home .people .content .person .person-info {
      text-align: center;
      padding-right: 1.5em; }
    body.template-home .people .content .person .person-label {
      font-family: futura-pt, sans-serif;
      text-transform: uppercase;
      font-weight: 800; }
    body.template-home .people .content .person .name {
      font-family: futura-pt, sans-serif;
      text-transform: uppercase;
      font-weight: 800;
      color: #ffffff;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
      font-size: 2em;
      padding: .35em 0; }
      body.template-home .people .content .person .name a {
        color: inherit;
        text-decoration: none; }
        body.template-home .people .content .person .name a:hover {
          color: #E4FF01; }
    body.template-home .people .content .person .people-link {
      font-family: futura-pt, sans-serif;
      text-transform: uppercase;
      font-weight: 800;
      color: #000000;
      text-decoration: none;
      border-bottom: 2px solid;
      padding-bottom: 3px;
      font-size: 85%;
      display: inline-block; }
      body.template-home .people .content .person .people-link:after {
        content: "→";
        padding-left: 0.33em; }
      body.template-home .people .content .person .people-link:hover {
        color: #E4FF01; }

body.template-home .panel.link {
  background-size: cover;
  background-position: center;
  display: none;
  font-family: futura-pt, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.5em;
  height: auto; }
  @media screen and (min-width: 800px) {
    body.template-home .panel.link {
      display: block;
      max-width: 1200px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      margin-bottom: 1em;
      padding: 0; }
      body.template-home .panel.link .content {
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
  body.template-home .panel.link .logo {
    max-width: 300px; }
  body.template-home .panel.link .button-wrap {
    margin-right: 60px; }
    body.template-home .panel.link .button-wrap a {
      color: #E4FF01;
      padding-bottom: 1px;
      border-bottom: 2px solid #E4FF01;
      font-size: 66%;
      text-decoration: none; }

section.shows .intro {
  padding: 2em 0;
  margin: 0;
  background-color: #2BD1BD; }
  @media screen and (min-width: 1000px) {
    section.shows .intro {
      padding: 3em 0; } }
  section.shows .intro h1 {
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 32px; }
    @media screen and (min-width: 800px) {
      section.shows .intro h1 {
        font-size: 36px; } }
    @media screen and (min-width: 1000px) {
      section.shows .intro h1 {
        font-size: 41px; } }
    @media screen and (max-width: 800px) {
      section.shows .intro h1 {
        font-size: 1.65em; }
        section.shows .intro h1 strong {
          font-size: 1.35em; } }
    section.shows .intro h1 strong {
      color: #ffffff;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black;
      font-weight: 800; }
  section.shows .intro .address {
    color: #ffffff;
    font-size: 20px;
    font-weight: 200;
    margin-top: .5em; }
    section.shows .intro .address a {
      text-decoration: none;
      color: inherit; }
      section.shows .intro .address a:hover {
        color: #130D8C; }
    @media screen and (max-width: 800px) {
      section.shows .intro .address {
        font-size: 15px;
        font-weight: 500; } }
    section.shows .intro .address a {
      color: inherit;
      text-decoration: none; }
      section.shows .intro .address a:hover {
        color: #000000; }
  section.shows .intro .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media screen and (max-width: 700px) {
      section.shows .intro .content {
        display: block; }
        section.shows .intro .content .link {
          padding-top: 10px; } }
  section.shows .intro .link a {
    color: #130D8C;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    white-space: nowrap; }
    section.shows .intro .link a:hover {
      color: #ecf273;
      border-bottom-color: #ecf273; }

section.shows .now-playing {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  section.shows .now-playing .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  section.shows .now-playing a {
    text-decoration: none;
    color: #2BD1BD; }
    section.shows .now-playing a:hover {
      color: #130D8C; }
    section.shows .now-playing a.poster img {
      -webkit-transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease; }
    section.shows .now-playing a.poster:hover img {
      -webkit-box-shadow: 4px 4px 0 0 #130D8C;
      box-shadow: 4px 4px 0 0 #130D8C; }
  section.shows .now-playing .show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3em; }
    @media screen and (min-width: 1100px) {
      section.shows .now-playing .show {
        width: 50%; } }
    section.shows .now-playing .show img {
      width: 202px;
      margin-right: 2em; }
      @media screen and (max-width: 700px) {
        section.shows .now-playing .show img {
          max-width: 20vw;
          margin-right: 20px; } }
  section.shows .now-playing .show-info {
    padding-right: 2em; }
  section.shows .now-playing .show-title {
    font-size: 28px;
    color: #2BD1BD;
    font-family: futura-pt, sans-serif;
    font-weight: 800; }
    @media screen and (max-width: 800px) {
      section.shows .now-playing .show-title {
        font-size: 24px; } }
  section.shows .now-playing .date {
    font-size: 21px;
    font-family: futura-pt, sans-serif;
    color: #a0a0a0;
    line-height: 1;
    margin-bottom: .7em; }
    @media screen and (max-width: 800px) {
      section.shows .now-playing .date {
        font-size: 18px; } }
  section.shows .now-playing .link {
    margin-top: .7em; }
    section.shows .now-playing .link a {
      color: #130D8C;
      border-bottom: 2px solid;
      padding-bottom: 4px;
      white-space: nowrap; }
      section.shows .now-playing .link a:hover {
        color: #ecf273;
        border-bottom-color: #ecf273; }

section.shows .also-coming-up {
  clear: both;
  margin-top: 4em;
  padding-top: 3em;
  padding-bottom: 4em;
  float: left;
  width: 100%;
  color: #ffffff;
  background-color: #219e8f; }
  section.shows .also-coming-up h2 {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 41px; }
  section.shows .also-coming-up .show {
    width: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2em; }
    @media screen and (min-width: 800px) {
      section.shows .also-coming-up .show {
        width: 50%; } }
    @media screen and (min-width: 1100px) {
      section.shows .also-coming-up .show {
        width: 33%; } }
    section.shows .also-coming-up .show img {
      width: 140px;
      margin-right: 1em; }
    section.shows .also-coming-up .show h3 {
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 1em;
      line-height: 1; }
      section.shows .also-coming-up .show h3 a {
        color: inherit;
        text-decoration: none;
        font-size: 23px; }

section.show .gallery-section {
  display: none; }

section.show .flickr-section {
  padding: 2em 0; }

section.show .intro {
  background-color: #2BD1BD; }
  section.show .intro .poster {
    width: 28%;
    float: left;
    margin-top: -16px;
    margin-right: 40px;
    margin-bottom: 2em; }
    @media screen and (max-width: 800px) {
      section.show .intro .poster {
        margin-right: 20px; } }
    @media screen and (max-width: 600px) {
      section.show .intro .poster {
        float: none;
        display: block;
        position: relative;
        top: -16px;
        margin-bottom: 0; } }
    section.show .intro .poster img {
      width: 100%; }
    @media screen and (max-width: 900px) {
      section.show .intro .poster {
        max-width: 20%; } }
    @media screen and (max-width: 600px) {
      section.show .intro .poster {
        max-width: 40%;
        margin-top: -5px; } }
  @media screen and (max-width: 900px) {
    section.show .intro .intro_content {
      padding-bottom: 1.5em; } }
  @media screen and (min-width: 900px) {
    section.show .intro .intro_content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  section.show .intro .intro_content .key_info {
    width: 100%; }
    @media screen and (max-width: 900px) {
      section.show .intro .intro_content .key_info {
        padding-top: 2em; } }
    @media screen and (max-width: 600px) {
      section.show .intro .intro_content .key_info {
        padding-top: 0; } }
  section.show .intro .intro_content .tickets_info {
    clear: both; }
    section.show .intro .intro_content .tickets_info a {
      background: #E4FF01;
      color: black;
      padding: .75em 1em;
      -webkit-box-shadow: 6px 6px 0 0 #130D8C;
      box-shadow: 6px 6px 0 0 #130D8C;
      -webkit-transition: -webkit-box-shadow .25s ease;
      transition: -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease;
      transition: box-shadow .25s ease;
      transition: box-shadow .25s ease, -webkit-box-shadow .25s ease;
      display: block;
      white-space: nowrap; }
      @media screen and (max-width: 900px) {
        section.show .intro .intro_content .tickets_info a {
          text-align: center; } }
    section.show .intro .intro_content .tickets_info .tickets_info_text {
      text-align: center;
      display: block;
      margin-top: .4em;
      color: #ffffff;
      font-size: 16px;
      font-weight: 400; }
  section.show .intro h1 {
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 46px;
    padding-right: .5em;
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black; }
    @media screen and (max-width: 1000px) {
      section.show .intro h1 {
        font-size: 36px; } }
    @media screen and (max-width: 600px) {
      section.show .intro h1 {
        font-size: 32px; } }
  section.show .intro .date {
    font-family: futura-pt, sans-serif;
    font-size: 27px;
    font-weight: 200; }
  section.show .intro .location {
    color: #ffffff;
    font-size: 20px;
    font-weight: 200;
    margin-top: 1em; }
    section.show .intro .location a {
      text-decoration: none;
      color: inherit; }
      section.show .intro .location a:hover {
        color: #130D8C; }
    @media screen and (max-width: 800px) {
      section.show .intro .location {
        font-size: 15px;
        font-weight: 500; } }

section.show .description {
  clear: both; }
  @media screen and (min-width: 600px) {
    section.show .description {
      clear: none;
      padding-left: 28%; } }
  section.show .description p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1em;
    margin-top: 0; }
    @media screen and (min-width: 1000px) {
      section.show .description p {
        font-size: 20px;
        font-weight: 200; } }
    @media screen and (min-width: 800px) {
      section.show .description p {
        margin-top: 1.5em; } }
  section.show .description .duration {
    font-size: 14px;
    font-weight: 500;
    color: #6d6d6d;
    margin-top: 2em; }
  @media screen and (min-width: 600px) {
    section.show .description {
      padding-left: 28%; }
      section.show .description p {
        padding-left: 40px; } }
  @media screen and (max-width: 900px) {
    section.show .description {
      padding-left: 0;
      margin-top: 20px; }
      section.show .description p {
        padding-left: 0; } }

section.show .people-section {
  clear: both;
  padding-top: 1em;
  padding-bottom: 4em; }
  section.show .people-section h2 {
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    float: left;
    background-color: #2BD1BD;
    color: #ffffff;
    padding: .2em .3em; }
  section.show .people-section h3 {
    color: #2BD1BD;
    text-transform: uppercase;
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    margin-top: 1em;
    font-size: 20px;
    clear: both;
    float: left; }
  section.show .people-section .people-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 1em;
    clear: both; }
  section.show .people-section p {
    color: #6d6d6d;
    font-size: 14px;
    font-weight: 500;
    clear: both;
    margin-bottom: 1em; }
  section.show .people-section .person {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    margin-right: 8px;
    padding-bottom: 2em; }
    section.show .people-section .person.large {
      width: 158px; }
    section.show .people-section .person.small {
      width: 122px; }
    section.show .people-section .person a {
      color: #191919;
      text-decoration: none;
      -webkit-transition: background-color .25s ease, -webkit-box-shadow .25s ease;
      transition: background-color .25s ease, -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease, background-color .25s ease;
      transition: box-shadow .25s ease, background-color .25s ease;
      transition: box-shadow .25s ease, background-color .25s ease, -webkit-box-shadow .25s ease;
      float: left;
      padding-bottom: .2em; }
      section.show .people-section .person a img {
        width: 100%; }
      section.show .people-section .person a:hover {
        color: #000000;
        -webkit-box-shadow: 4px 4px 0 0 #FFBD40;
        box-shadow: 4px 4px 0 0 #FFBD40;
        background-color: white; }

section.show .recommended_shows {
  clear: both;
  float: left;
  width: 100%;
  background-color: black;
  color: #ffffff; }
  section.show .recommended_shows .content {
    padding: 4em 0; }
  section.show .recommended_shows a {
    color: #dddddd;
    text-decoration: none; }
    section.show .recommended_shows a img {
      -webkit-transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease; }
    section.show .recommended_shows a:hover img {
      -webkit-box-shadow: 4px 4px 0 0 #E4FF01;
      box-shadow: 4px 4px 0 0 #E4FF01; }
    section.show .recommended_shows a:hover {
      color: #ffffff; }
  section.show .recommended_shows h2 {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    font-size: 41px;
    margin-bottom: 41px; }
  section.show .recommended_shows .recs .show {
    float: left;
    width: 33%;
    min-width: 400px;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4em; }
    section.show .recommended_shows .recs .show h3 {
      font-family: futura-pt, sans-serif;
      text-transform: uppercase;
      font-weight: 800;
      font-size: 23px;
      margin-bottom: 10px; }
    section.show .recommended_shows .recs .show img {
      width: 140px;
      float: left; }
    section.show .recommended_shows .recs .show .info {
      padding-left: 160px; }

section.person.company-main .intro, section.person.company-1970s-alumni .intro, section.person.company-1980s-alumni .intro, section.person.company-1990s-alumni .intro, section.person.company-2000s-alumni .intro, section.person.company-2010s-alumni .intro {
  background-color: #2BD1BD; }

section.person.company-sunday .intro {
  background-color: #130D8C;
  color: #ffffff;
  color: #ffffff; }
  section.person.company-sunday .intro .shadowed {
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
    color: #E4FF01; }
  section.person.company-sunday .intro h1, section.person.company-sunday .intro h2, section.person.company-sunday .intro h3, section.person.company-sunday .intro h4 {
    color: #ffffff !important; }

section.person .intro {
  background-color: #FFBD40; }
  @media screen and (max-width: 600px) {
    section.person .intro .links {
      display: none; }
    section.person .intro .headshot img {
      margin-bottom: -10px !important; } }
  section.person .intro .headshot {
    width: 28%;
    float: left;
    margin-top: -16px;
    margin-right: 40px;
    margin-bottom: 2em;
    width: 40%;
    padding-top: 5px; }
    @media screen and (max-width: 800px) {
      section.person .intro .headshot {
        margin-right: 20px; } }
    @media screen and (max-width: 600px) {
      section.person .intro .headshot {
        float: none;
        display: block;
        position: relative;
        top: -16px;
        margin-bottom: 0; } }
    section.person .intro .headshot img {
      width: 100%; }
    @media screen and (max-width: 600px) {
      section.person .intro .headshot {
        top: -5px; } }
    section.person .intro .headshot img {
      margin-bottom: 3em; }
  section.person .intro .link {
    padding-bottom: .5em; }
    section.person .intro .link a {
      color: #000000;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 800;
      vertical-align: middle; }
      section.person .intro .link a:hover {
        color: #2BD1BD; }
    section.person .intro .link .icon {
      font-size: 32px;
      display: inline-block;
      vertical-align: middle;
      width: 35px;
      overflow: hidden; }
      section.person .intro .link .icon i {
        margin-right: 8px; }
    section.person .intro .link .label {
      display: inline-block;
      vertical-align: middle; }
  section.person .intro .key_info {
    padding-top: .5em;
    padding-bottom: .5em; }
    @media screen and (min-width: 700px) {
      section.person .intro .key_info {
        padding-top: 2em;
        padding-bottom: 2em; } }
    @media screen and (min-width: 900px) {
      section.person .intro .key_info {
        padding-top: 3.5em;
        padding-bottom: 3.5em; } }
    section.person .intro .key_info .name {
      font-family: futura-pt, sans-serif;
      text-transform: uppercase;
      font-weight: 100;
      font-size: 32px;
      color: #ffffff;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black;
      font-weight: 800;
      padding-bottom: .25em; }
      @media screen and (min-width: 800px) {
        section.person .intro .key_info .name {
          font-size: 36px; } }
      @media screen and (min-width: 1000px) {
        section.person .intro .key_info .name {
          font-size: 41px; } }
    section.person .intro .key_info .company {
      color: #000000;
      text-transform: uppercase;
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      font-size: 18px; }

section.person .bio {
  clear: both; }
  @media screen and (min-width: 600px) {
    section.person .bio {
      clear: none;
      padding-left: 28%; } }
  section.person .bio p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1em;
    margin-top: 0; }
    @media screen and (min-width: 1000px) {
      section.person .bio p {
        font-size: 20px;
        font-weight: 200; } }
    @media screen and (min-width: 800px) {
      section.person .bio p {
        margin-top: 1.5em; } }
  section.person .bio .duration {
    font-size: 14px;
    font-weight: 500;
    color: #6d6d6d;
    margin-top: 2em; }
  @media screen and (min-width: 600px) {
    section.person .bio {
      padding-left: 40% !important; } }
  section.person .bio p {
    margin-top: 20px; }
    @media screen and (min-width: 600px) {
      section.person .bio p {
        margin-left: 20px; } }

section.person .contacts-wrap {
  padding-top: 2em;
  font-size: 0.875em; }
  @media screen and (max-width: 1000px) {
    section.person .contacts-wrap {
      font-size: 0.75em; } }
  section.person .contacts-wrap .contacts-title {
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    float: left;
    background-color: #2BD1BD;
    color: #ffffff;
    padding: .2em .3em;
    float: none;
    display: inline-block;
    font-size: 1.5em;
    padding: .1em .2em; }
  section.person .contacts-wrap .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.15em;
    line-height: 1.4; }
    section.person .contacts-wrap .contacts a {
      color: inherit;
      text-decoration: none; }
      section.person .contacts-wrap .contacts a:hover {
        color: #2BD1BD; }
    section.person .contacts-wrap .contacts .contact {
      padding-top: 1.5em;
      padding-right: 1em;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1; }
      section.person .contacts-wrap .contacts .contact .label {
        text-transform: uppercase;
        color: #2BD1BD;
        font-weight: 800;
        font-size: 90%;
        margin-bottom: .4em; }

section.person .shows {
  clear: both;
  margin-top: 40px; }
  section.person .shows h2 {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    color: #ffffff;
    padding-top: 40px;
    font-size: 39px; }
  section.person .shows .posters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    padding-bottom: 40px; }
    section.person .shows .posters .show {
      margin-right: 10px;
      width: 211px; }
      section.person .shows .posters .show img {
        width: 100%; }
  section.person .shows .appears-in {
    background-color: #2BD1BD; }
    section.person .shows .appears-in .show img {
      -webkit-transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease; }
    section.person .shows .appears-in .show:hover img {
      -webkit-box-shadow: 4px 4px 0 0 #130D8C;
      box-shadow: 4px 4px 0 0 #130D8C; }
    section.person .shows .appears-in h2 {
      font-size: 36px; }
      @media screen and (max-width: 800px) {
        section.person .shows .appears-in h2 {
          font-size: 29px; } }
  section.person .shows .appeared-in {
    background-color: #130D8C;
    color: #ffffff; }
    section.person .shows .appeared-in .shadowed {
      color: #ffffff;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
      color: #E4FF01; }
    section.person .shows .appeared-in .show img {
      -webkit-transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
      transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease; }
    section.person .shows .appeared-in .show:hover img {
      -webkit-box-shadow: 4px 4px 0 0 #2BD1BD;
      box-shadow: 4px 4px 0 0 #2BD1BD; }
    section.person .shows .appeared-in h2 {
      font-size: 29px; }
      @media screen and (max-width: 800px) {
        section.person .shows .appeared-in h2 {
          font-size: 20px; } }
    section.person .shows .appeared-in .posters {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      section.person .shows .appeared-in .posters .show {
        width: 150px; }
      section.person .shows .appeared-in .posters .show.no-poster {
        color: #dddddd;
        font-family: futura-pt, sans-serif;
        margin-bottom: 20px; }
        section.person .shows .appeared-in .posters .show.no-poster:hover {
          color: #ffffff; }
        section.person .shows .appeared-in .posters .show.no-poster a {
          color: inherit;
          text-decoration: none;
          font-weight: 800; }

.header {
  position: relative; }
  .header h1 {
    display: inline-block;
    font-weight: 800;
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    background: #2BD1BD;
    color: #000000;
    font-size: 3em;
    padding: 10px 20px;
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black;
    margin-top: 10px;
    margin-left: -20px;
    margin-bottom: 30px; }
    @media screen and (max-width: 900px) {
      .header h1 {
        font-size: 2.5em; } }
    @media screen and (max-width: 799px) {
      .header h1 {
        margin-left: 0;
        font-size: 2.25em;
        margin-bottom: 20px; } }
    @media screen and (max-width: 600px) {
      .header h1 {
        font-size: 1.75em; } }
  .header .has_hero_image {
    height: 70vh;
    max-height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px; }
    @media screen and (max-width: 800px) {
      .header .has_hero_image {
        height: 40vh; } }
    .header .has_hero_image h1 {
      position: absolute;
      bottom: 0;
      margin-bottom: 0; }
      @media screen and (max-width: 800px) {
        .header .has_hero_image h1 {
          margin-left: -20px; } }

.show {
  position: relative; }
  .show .flag {
    position: absolute;
    color: #ffffff;
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    background-color: #000000;
    font-size: 0.95em;
    padding: 5px 8px;
    margin: 3px;
    max-width: 100px; }
    .show .flag.align-bottom {
      bottom: 0; }
    .show .flag.yellow {
      background-color: #E4FF01;
      color: #000000; }
    .show .flag.orange {
      background-color: #FFBD40;
      color: #000000; }
    .show .flag.black {
      background-color: #000000;
      color: #ffffff; }
    .show .flag.blue {
      background-color: #130D8C;
      color: #ffffff; }
    .show .flag.white {
      background-color: #ffffff;
      color: #000000; }
    .show .flag.teal {
      background-color: #2BD1BD;
      color: #000000; }

.page-content {
  font-size: 1.2em;
  color: #333333; }
  .page-content .hr {
    border-bottom: 5px solid #2BD1BD;
    width: 9vw; }
  .page-content .lede p {
    font-size: 1.2em;
    max-width: 1000px; }
    @media screen and (max-width: 800px) {
      .page-content .lede p {
        font-size: 1.1em; } }
  .page-content .primary_content, .page-content .sidebar_content {
    padding-bottom: 60px; }
  .page-content.has-sidebar .primary_content {
    padding-bottom: 0; }
  @media screen and (min-width: 700px) {
    .page-content.has-sidebar .sidebar {
      width: 33%;
      float: left; }
      .page-content.has-sidebar .sidebar .sidebar-content {
        padding-left: 60px;
        font-size: .85em; }
    .page-content.has-sidebar .primary_content {
      width: 66%;
      float: left;
      padding-bottom: 3em; } }
  .page-content.has-sidebar .sidebar table {
    width: 100%; }
  .page-content.has-sidebar .sidebar figure img {
    max-width: 100%; }
  .page-content.has-sidebar .sidebar h4 {
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-size: 1.1em;
    letter-spacing: 0.5px; }
  .page-content h2 {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    font-size: 32px;
    padding-top: 20px;
    color: #000000;
    text-transform: none;
    letter-spacing: -0.5px; }
    @media screen and (min-width: 1000px) {
      .page-content h2 {
        font-size: 42px; } }
  .page-content h3 {
    font-weight: 600;
    font-size: 1.4em;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #000000; }
    .page-content h3:first-child {
      margin-top: 0; }
  .page-content h4 {
    color: #000000;
    font-weight: 800;
    margin-top: 40px;
    text-transform: uppercase; }
  .page-content p {
    margin-bottom: 20px;
    max-width: 900px; }
  .page-content ol {
    list-style-type: decimal; }
  .page-content ul {
    list-style-type: square; }
  .page-content ol, .page-content ul {
    margin: 20px 0;
    padding-left: 1.5em;
    max-width: 900px; }
  .page-content ol, .page-content ul, .page-content p, .page-content th, .page-content td {
    line-height: 1.5; }
  .page-content b, .page-content strong {
    font-weight: 800;
    color: #000000; }
  .page-content i, .page-content em {
    font-style: italic; }
  .page-content b i, .page-content i b, .page-content b em, .page-content em b, .page-content strong i, .page-content i strong, .page-content strong em, .page-content em strong {
    font-weight: 800;
    font-style: italic; }
  .page-content .large-text {
    color: #000000;
    font-size: 1.2em;
    max-width: 900px; }
    @media screen and (max-width: 800px) {
      .page-content .large-text {
        font-size: 1.1em; } }
  .page-content .people {
    margin-bottom: 3em;
    float: left;
    width: 100%; }
    .page-content .people img {
      float: left;
      border-radius: 100%;
      width: 250px;
      margin-right: 40px; }
    .page-content .people h3, .page-content .people h4 {
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      display: inline-block; }
    .page-content .people h3 {
      font-size: 1.7em;
      margin-top: .5em;
      margin-right: 6.66667px; }
    .page-content .people h4 {
      text-transform: uppercase;
      font-size: 1.2em;
      font-weight: normal;
      margin-top: 0; }
    .page-content .people p {
      margin-left: 290px; }
    .page-content .people .person {
      clear: left;
      float: left;
      max-width: 1000px;
      margin-top: 3em; }
      @media screen and (max-width: 900px) {
        .page-content .people .person {
          margin-top: 1.5em; }
          .page-content .people .person img {
            width: 20vw;
            margin-right: 20px; }
          .page-content .people .person p {
            margin-left: 20vw;
            padding-left: 20px; } }
      @media screen and (max-width: 600px) {
        .page-content .people .person img {
          float: none;
          width: 40vw;
          border-radius: 0; }
        .page-content .people .person p {
          clear: left;
          margin-left: 0;
          padding-left: 0;
          padding-top: 20px; } }
  .page-content .company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2em;
    margin-right: -1em; }
    @media screen and (max-width: 800px) {
      .page-content .company {
        margin-top: .5em; } }
    .page-content .company.no-headshots .person {
      width: 100%;
      max-width: 100%; }
    .page-content .company .person {
      margin-right: 8px;
      margin-bottom: 20px;
      max-width: 190px;
      font-weight: 800;
      display: block;
      font-family: futura-pt, sans-serif; }
      @media screen and (max-width: 1300px) {
        .page-content .company .person {
          width: 15.5%; } }
      @media screen and (max-width: 900px) {
        .page-content .company .person {
          width: 18.5%; } }
      @media screen and (max-width: 800px) {
        .page-content .company .person {
          width: 23.5%; } }
      @media screen and (max-width: 700px) {
        .page-content .company .person {
          width: 32%; } }
      @media screen and (max-width: 600px) {
        .page-content .company .person {
          width: 45%; } }
      .page-content .company .person a {
        float: left;
        color: #000000;
        text-decoration: none; }
        .page-content .company .person a img {
          -webkit-transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
          transition: margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease;
          -o-transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
          transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease;
          transition: box-shadow .25s ease, margin-top .25s ease, margin-left .25s ease, -webkit-box-shadow .25s ease; }
        .page-content .company .person a:hover img {
          -webkit-box-shadow: 4px 4px 0 0 #FFBD40;
          box-shadow: 4px 4px 0 0 #FFBD40; }
        .page-content .company .person a img {
          display: block;
          margin-bottom: 5px;
          width: 100%; }
    .page-content .company.no-headshots {
      margin-top: 1em;
      display: block;
      -webkit-columns: 4;
      columns: 4; }
      @media screen and (max-width: 900px) {
        .page-content .company.no-headshots {
          -webkit-columns: 3;
          columns: 3; } }
      @media screen and (max-width: 700px) {
        .page-content .company.no-headshots {
          -webkit-columns: 2;
          columns: 2; } }
      .page-content .company.no-headshots .person a {
        float: none; }
        .page-content .company.no-headshots .person a:hover {
          color: #FFBD40; }
  .page-content .classes .class {
    margin-top: 3em; }
  .page-content .classes .class-info {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    float: left;
    width: 100%; }
    .page-content .classes .class-info a {
      float: right;
      color: #E4FF01;
      text-transform: uppercase;
      font-weight: 900;
      text-decoration: none;
      margin-top: -20px;
      padding-bottom: 5px;
      border-bottom: 2px solid #E4FF01;
      font-size: 14px; }
  .page-content .classes .class-title {
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 28px;
    margin: 0 0 10px 0;
    max-width: 80%;
    float: left; }
  .page-content .classes .class-subtitle {
    font-family: futura-pt, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
    max-width: 80%;
    float: left;
    clear: left; }
  .page-content .small-text {
    font-size: .85em; }
  .page-content .sub-pages.blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3em 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .page-content .sub-pages.blocks a {
      background-color: #2BD1BD;
      color: #000000;
      text-transform: uppercase;
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      text-decoration: none;
      font-size: 1.3em;
      width: 250px;
      height: 180px;
      margin-right: 20px;
      margin-bottom: 20px;
      position: relative; }
      .page-content .sub-pages.blocks a .text {
        position: absolute;
        bottom: 10px;
        left: 10px; }

.press_link .content h3.quote {
  font-weight: normal; }

.press-release .header {
  font-size: 1.5em;
  font-family: futura-pt, sans-serif;
  text-transform: uppercase;
  padding-bottom: 1em; }
  .press-release .header .label {
    background-color: #2BD1BD;
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
    font-weight: 800;
    padding: 0.3em 0.5em;
    display: inline-block; }
  .press-release .header .title {
    display: inline-block;
    padding: 0.3em 0.5em; }

.press-release img {
  max-width: 100%; }

.press-release h1 {
  font-family: futura-pt, sans-serif;
  font-weight: 800;
  font-size: 2em;
  padding: 0.5em 0;
  max-width: 1000px; }

.wells {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .wells .content {
    background: #dddddd;
    color: #191919; }
    .wells .content h2, .wells .content h3, .wells .content h4 {
      color: #000000; }
  .wells a {
    text-decoration: none;
    color: inherit; }
  .wells .link a {
    background: #2BD1BD;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #6d6d6d;
    box-shadow: 6px 6px 0 0 #6d6d6d;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.black .content {
    background: #191919;
    color: #dddddd; }
    .wells.black .content h2, .wells.black .content h3, .wells.black .content h4 {
      color: #ffffff; }
  .wells.black .link a {
    background: #E4FF01;
    color: #030217;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #362dec;
    box-shadow: 6px 6px 0 0 #362dec;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.gray .content {
    background: #dddddd;
    color: #191919; }
    .wells.gray .content h2, .wells.gray .content h3, .wells.gray .content h4 {
      color: #000000; }
  .wells.gray .link a {
    background: #2BD1BD;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #6d6d6d;
    box-shadow: 6px 6px 0 0 #6d6d6d;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.teal .content, .wells.teal .content p {
    background: #2BD1BD;
    color: #191919; }
    .wells.teal .content h2, .wells.teal .content h3, .wells.teal .content h4, .wells.teal .content p h2, .wells.teal .content p h3, .wells.teal .content p h4 {
      color: #000000; }
  .wells.teal .link a {
    background: #E4FF01;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #130D8C;
    box-shadow: 6px 6px 0 0 #130D8C;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.blue .content {
    background: #130D8C;
    color: rgba(255, 255, 255, 0.9); }
    .wells.blue .content h2, .wells.blue .content h3, .wells.blue .content h4 {
      color: #ffffff; }
  .wells.blue .link a {
    background: #E4FF01;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #2BD1BD;
    box-shadow: 6px 6px 0 0 #2BD1BD;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.yellow .content {
    background: #E4FF01;
    color: #191919; }
    .wells.yellow .content h2, .wells.yellow .content h3, .wells.yellow .content h4 {
      color: #000000; }
  .wells.yellow .link a {
    background: #2BD1BD;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #130D8C;
    box-shadow: 6px 6px 0 0 #130D8C;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.orange .content {
    background: #FFBD40;
    color: #191919; }
    .wells.orange .content h2, .wells.orange .content h3, .wells.orange .content h4 {
      color: #000000; }
  .wells.orange .link a {
    background: #2BD1BD;
    color: black;
    padding: .75em 1em;
    -webkit-box-shadow: 6px 6px 0 0 #130D8C;
    box-shadow: 6px 6px 0 0 #130D8C;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    -o-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease; }
  .wells.col-one .well .text {
    font-size: 1.25em; }
  .wells.col-one .well img {
    max-width: 300px;
    float: left;
    z-index: 100;
    position: relative;
    margin-right: 1.5em; }
  @media screen and (min-width: 800px) {
    .wells.col-two .well {
      width: calc(50% - 12px); } }
  @media screen and (min-width: 800px) {
    .wells.col-three .well {
      width: calc(50% - 12px); } }
  @media screen and (min-width: 1100px) {
    .wells.col-three .well {
      width: calc(33% - 12px); } }
  @media screen and (min-width: 700px) {
    .wells.col-four .well {
      width: calc(50% - 12px); } }
  @media screen and (min-width: 900px) {
    .wells.col-four .well {
      width: calc(33% - 12px); } }
  @media screen and (min-width: 1100px) {
    .wells.col-four .well {
      width: calc(25% - 12px); } }
  @media screen and (min-width: 700px) {
    .wells.col-five .well {
      width: calc(50% - 12px); } }
  @media screen and (min-width: 800px) {
    .wells.col-five .well {
      width: calc(33% - 12px); } }
  @media screen and (min-width: 900px) {
    .wells.col-five .well {
      width: calc(25% - 12px); } }
  @media screen and (min-width: 1100px) {
    .wells.col-five .well {
      width: calc(20% - 12px); } }
  .wells .well {
    width: 100%;
    margin-bottom: 20px;
    min-height: 95px;
    margin-right: 12px; }
    .wells .well .intro {
      margin-top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    .wells .well .content {
      padding: 0;
      height: 100%; }
    .wells .well img {
      width: 100%; }
    .wells .well h3 {
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      font-size: 1.5em; }
    .wells .well h4 {
      margin-top: 5px;
      font-size: 1.1em; }
    .wells .well .text {
      position: relative; }
    .wells .well .link a.button {
      text-decoration: none;
      font-weight: 800;
      text-transform: uppercase;
      padding: .5em .75em;
      font-size: 0.875em; }
    .wells .well .text {
      padding: 20px;
      font-size: 0.875em; }
    .wells .well .description {
      padding-top: 2em; }

.blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: .25s filter ease;
  -o-transition: .25s filter ease;
  transition: .25s filter ease; }

#school .body {
  position: relative; }

#school .overlay {
  background: rgba(19, 13, 140, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 0;
  display: none; }
  #school .overlay.visible {
    opacity: 1;
    display: block; }

#school .header h1 {
  font-weight: 400;
  font-size: 29px;
  text-shadow: none;
  color: #ffffff; }
  #school .header h1 em {
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black;
    color: #E4FF01;
    font-size: 50px;
    font-weight: 800;
    display: block; }

.section-school .header h1 {
  background: transparent;
  padding: 0;
  margin: 0;
  color: #E4FF01;
  margin-top: 50px;
  margin-bottom: 25px; }

.section-school .header p {
  font-size: 17px;
  font-weight: 500;
  max-width: 900px; }

.section-school .header nav {
  margin-top: 30px;
  margin-bottom: 60px; }
  .section-school .header nav a {
    color: #E4FF01;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    margin-right: 20px; }
    .section-school .header nav a:hover {
      border-bottom: 3px solid; }

.section-school section.body {
  background: #130D8C; }
  .section-school section.body p, .section-school section.body li {
    color: rgba(255, 255, 255, 0.9); }
    .section-school section.body p strong, .section-school section.body p b, .section-school section.body p em, .section-school section.body p i, .section-school section.body li strong, .section-school section.body li b, .section-school section.body li em, .section-school section.body li i {
      color: #ffffff; }
  .section-school section.body h2, .section-school section.body h3, .section-school section.body h4 {
    color: #ffffff; }
    .section-school section.body h2 strong, .section-school section.body h2 em, .section-school section.body h2 b, .section-school section.body h2 i, .section-school section.body h3 strong, .section-school section.body h3 em, .section-school section.body h3 b, .section-school section.body h3 i, .section-school section.body h4 strong, .section-school section.body h4 em, .section-school section.body h4 b, .section-school section.body h4 i {
      color: inherit; }
  .section-school section.body p a, .section-school section.body li a, .section-school section.body h2 a, .section-school section.body h3 a, .section-school section.body h4 a {
    color: #E4FF01; }

.section-school .tracks {
  padding-bottom: 60px; }
  .section-school .tracks .tracks-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px; }
  .section-school .tracks .track {
    margin: 0 10px;
    min-width: 300px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative; }
  .section-school .tracks .track-card {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 1px solid transparent;
    position: relative; }
    @media screen and (max-height: 1000px) {
      .section-school .tracks .track-card {
        min-height: 230px; } }
    @media screen and (max-height: 900px) {
      .section-school .tracks .track-card {
        min-height: 210px; } }
    @media screen and (max-height: 800px) {
      .section-school .tracks .track-card {
        min-height: 190px; } }
    .section-school .tracks .track-card .track-bg {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center center;
      z-index: 0;
      position: absolute; }
    .section-school .tracks .track-card h2 {
      position: relative;
      font-family: futura-pt, sans-serif;
      font-weight: 800;
      padding: 20px;
      padding-bottom: 0;
      color: #ffffff;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 2px 2px black; }
    .section-school .tracks .track-card h3 {
      padding: 0 20px 20px 20px;
      line-height: 1.3;
      opacity: 0;
      position: absolute; }
    .section-school .tracks .track-card:hover {
      border-color: #E4FF01;
      -webkit-box-shadow: 2px 2px 0 #E4FF01;
      box-shadow: 2px 2px 0 #E4FF01;
      cursor: pointer; }
      .section-school .tracks .track-card:hover .track-bg {
        opacity: 0.5; }
      .section-school .tracks .track-card:hover h2 {
        color: #E4FF01; }
      .section-school .tracks .track-card:hover h3 {
        opacity: 1; }
  .section-school .tracks .track-details {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 612px;
    height: 420px;
    background: #130D8C;
    border: 1px solid #E4FF01;
    -webkit-box-shadow: 2px 2px 0 #E4FF01;
    box-shadow: 2px 2px 0 #E4FF01;
    z-index: 200; }
    .section-school .tracks .track-details .track-details-content {
      padding: 30px; }
      .section-school .tracks .track-details .track-details-content h2 {
        color: #E4FF01;
        font-weight: 800;
        font-family: futura-pt, sans-serif;
        margin-bottom: 16px; }
      .section-school .tracks .track-details .track-details-content h3 {
        font-family: futura-pt, sans-serif;
        font-size: 1.4em;
        margin-bottom: 16px; }
      .section-school .tracks .track-details .track-details-content p {
        font-weight: 500; }
      .section-school .tracks .track-details .track-details-content ul {
        margin-top: 20px; }
        .section-school .tracks .track-details .track-details-content ul li {
          margin-bottom: 20px; }
          .section-school .tracks .track-details .track-details-content ul li a {
            font-size: 15px;
            color: #2BD1BD;
            text-decoration: none;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(43, 209, 189, 0.5);
            font-weight: 800; }
            .section-school .tracks .track-details .track-details-content ul li a:after {
              content: "→";
              padding-left: .25em; }
            .section-school .tracks .track-details .track-details-content ul li a:hover {
              color: #E4FF01;
              border-bottom-color: rgba(228, 255, 1, 0.8); }
    .section-school .tracks .track-details .close a {
      color: #ffffff;
      font-size: 2em;
      position: absolute;
      right: 12px;
      top: 6px;
      text-decoration: none; }
      .section-school .tracks .track-details .close a:hover {
        color: #E4FF01; }

.section-school section.body {
  float: left;
  width: 100%; }

.section-school .page-content .company .person a {
  color: #dddddd; }
  .section-school .page-content .company .person a:hover {
    color: #ffffff; }

#tnew {
  font-weight: normal;
  font-size: 90% !important;
  margin-bottom: 20px; }
  #tnew .tnew-eventlisting-prod-perf-moreinfo-link-container {
    display: none; }
  #tnew div.tnew-auxlisting-prod-text-container {
    font-weight: normal; }
  #tnew .tn-perf__date, #tnew .tn-perf__name {
    font-weight: normal; }
  #tnew .tnew-eventlisting-prod-link {
    text-decoration: none;
    font-size: 1.5em;
    font-family: futura-pt, sans-serif;
    font-weight: bold;
    color: inherit; }
  #tnew .tnew-eventlisting-prod-perf-container, #tnew .tn-prod__season-title-container {
    padding-left: 0; }
  #tnew .content {
    margin-top: 1.5em;
    margin-bottom: 1.5em; }
  #tnew p, #tnew li, #tnew td, #tnew th {
    line-height: 1.5; }
  #tnew b {
    font-weight: bold; }
  #tnew i {
    font-style: italic !important; }
  #tnew .tnew-login-text b {
    display: inline; }
  #tnew .huge {
    font-family: futura-pt, sans-serif;
    font-weight: bold;
    font-size: 1em; }
  #tnew .large:not(.tnew-selectseating-form-pricetype-label) {
    font-size: 1.3em;
    margin-top: 20px; }
  #tnew .medium {
    margin-bottom: 20px;
    vertical-align: top; }
  #tnew .errDiv {
    margin-bottom: 20px;
    font-weight: 800;
    color: red; }
  #tnew .huge:not(.tnew-auxlisting-title):not(.TNEW_checkout_title) {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    background: #2BD1BD;
    color: #000000;
    font-size: 2.4em;
    padding: 0px 20px;
    color: #ffffff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 3px 3px black;
    margin-left: -20px;
    margin-bottom: 30px; }
    @media screen and (max-width: 900px) {
      #tnew .huge:not(.tnew-auxlisting-title):not(.TNEW_checkout_title) {
        font-size: 2.25em; } }
    @media screen and (max-width: 799px) {
      #tnew .huge:not(.tnew-auxlisting-title):not(.TNEW_checkout_title) {
        margin-left: 0;
        font-size: 2.0em;
        margin-bottom: 20px; } }
    @media screen and (max-width: 600px) {
      #tnew .huge:not(.tnew-auxlisting-title):not(.TNEW_checkout_title) {
        font-size: 1.5em; } }
  #tnew .tdFormLabel {
    min-width: 180px;
    padding-top: 8px;
    vertical-align: top; }
  #tnew .tn-block-table {
    margin-bottom: 1em; }
    #tnew .tn-block-table label {
      color: inherit;
      font-size: 1em; }
    #tnew .tn-block-table select, #tnew .tn-block-table input[type="text"], #tnew .tn-block-table input[type="password"] {
      font-family: inherit;
      font-size: inherit;
      color: #6d6d6d;
      border-bottom: 2px solid rgba(109, 109, 109, 0.5);
      padding-bottom: 0.15em;
      border-top: none;
      border-left: none;
      border-right: none;
      border-radius: 0;
      background: rgba(109, 109, 109, 0.08);
      margin-bottom: 20px; }
      #tnew .tn-block-table select:active, #tnew .tn-block-table select:focus, #tnew .tn-block-table input[type="text"]:active, #tnew .tn-block-table input[type="text"]:focus, #tnew .tn-block-table input[type="password"]:active, #tnew .tn-block-table input[type="password"]:focus {
        border-bottom-color: #130D8C;
        color: #130D8C;
        outline: none;
        background: rgba(43, 209, 189, 0.1); }
    #tnew .tn-block-table select {
      min-width: 0; }
    #tnew .tn-block-table input[type="button"], #tnew .tn-block-table .purchaseSmall, #tnew .tn-block-table a.tabLink {
      color: #2BD1BD;
      border-bottom: 2px solid;
      padding-bottom: 4px;
      white-space: nowrap;
      background-color: transparent;
      font-weight: bold;
      font-family: inherit;
      font-size: 1em;
      border-top: none;
      border-left: none;
      border-right: none;
      text-decoration: none; }
      #tnew .tn-block-table input[type="button"]:hover, #tnew .tn-block-table .purchaseSmall:hover, #tnew .tn-block-table a.tabLink:hover {
        color: #d42e42;
        border-bottom-color: #d42e42; }
      #tnew .tn-block-table input[type="button"]:hover, #tnew .tn-block-table .purchaseSmall:hover, #tnew .tn-block-table a.tabLink:hover {
        color: #130D8C;
        cursor: pointer;
        border-bottom-color: #130D8C; }
    #tnew .tn-block-table .purchaseSmall {
      padding-left: 0;
      padding-bottom: 2px; }
    #tnew .tn-block-table a.tabLink {
      padding-left: 0;
      padding-right: 0;
      margin-right: 20px; }
    #tnew .tn-block-table input[type="submit"] {
      background: #E4FF01;
      color: black;
      padding: .75em 1em;
      -webkit-box-shadow: 6px 6px 0 0 #2BD1BD;
      box-shadow: 6px 6px 0 0 #2BD1BD;
      -webkit-transition: -webkit-box-shadow .25s ease;
      transition: -webkit-box-shadow .25s ease;
      -o-transition: box-shadow .25s ease;
      transition: box-shadow .25s ease;
      transition: box-shadow .25s ease, -webkit-box-shadow .25s ease;
      color: inherit;
      border: none;
      font-family: mark;
      font-weight: bold;
      text-transform: uppercase;
      font-size: .875em;
      padding-top: 5px;
      padding-bottom: 5px; }

div#tnew {
  background-color: #2BD1BD; }
  div#tnew .content {
    margin-top: -1em;
    border-top: 1em solid #2BD1BD;
    border-bottom: 1em solid #2BD1BD;
    background-color: #ffffff;
    max-width: 800px; }

#tnew .AffilTable td {
  font-weight: normal;
  font-size: 80%;
  font-family: mark; }

#tnew .AffilTable input[type="date"] {
  font-size: 100%;
  font-family: mark; }

#tnew .tn-select-seating__pricetype-label {
  font-size: 100% !important;
  font-family: mark !important; }

#tnew .tn-block-table input[type="button"].btnStyle {
  background: #E4FF01;
  color: black;
  padding: .75em 1em;
  -webkit-box-shadow: 6px 6px 0 0 #2BD1BD;
  box-shadow: 6px 6px 0 0 #2BD1BD;
  -webkit-transition: -webkit-box-shadow .25s ease;
  transition: -webkit-box-shadow .25s ease;
  -o-transition: box-shadow .25s ease;
  transition: box-shadow .25s ease;
  transition: box-shadow .25s ease, -webkit-box-shadow .25s ease;
  color: inherit;
  border: none;
  font-family: mark;
  font-weight: bold;
  text-transform: uppercase;
  font-size: .875em;
  padding-top: 5px;
  padding-bottom: 5px; }

#tnew .tn-block-table .tnew-paymentplan-payment-plan-create {
  margin-left: 0; }

#tnew input, #tnew select {
  margin-right: 10px; }

.blog .header h1 a {
  text-decoration: none;
  color: inherit; }

.blog .content article {
  margin-bottom: 60px; }

.blog .content h2 a, .blog .content a > h2 {
  color: #000000;
  text-decoration: none; }

.blog .content .metadata {
  font-weight: 500;
  color: rgba(109, 109, 109, 0.8);
  font-size: .875em;
  margin: 20px 0; }

.blog .content a.more {
  color: #2BD1BD;
  border-bottom: 2px solid;
  padding-bottom: 4px;
  white-space: nowrap;
  display: inline-block; }
  .blog .content a.more:hover {
    color: #d42e42;
    border-bottom-color: #d42e42; }

.blog .content .tags {
  margin-top: 20px; }
  .blog .content .tags a {
    text-decoration: none;
    color: #ffffff;
    background: #2BD1BD;
    padding: 3px 7px;
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-right: 20px; }
