.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
.sticky-body {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -100px;
}
.sticky-footer,
.sticky-push {
  height: 100px;
}
/* 
  red: E0162B
  white: FFFFFF
  blue: 0052A5
  x 
  */
/*
@usaRed: #E0162B;
@usaBlue: #0052A5;
@usaLightBlue: #647FEA;
@usaLighterBlue: #D4DCFF;
@usaLighterLighterBlue: #F2F5FF;
*/
/*
@sm: ~"only screen and (max-width: 569px)";
@md: ~"only screen and (max-width: 768px)";
@lg: ~"only screen and (max-width: 1024px)";
@xl: ~"only screen and (max-width: 1280px)";
*/
/* for the menu */
/*@lg: ~"only screen and (min-width: 769px) and (max-width: 1024px)";
@xl: ~"only screen and (max-width: 1280px)";
*/
/* Micro ClearFix Mixin */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/**
http://nicolasgallagher.com/micro-clearfix-hack/
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cf:after {
  clear: both;
}
/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}
/* Pure menu customizations */
.HorizontalMenu.-unrendered {
  display: none;
}
.HorizontalMenu ul {
  margin: 0;
  padding: 0;
}
.HorizontalMenu .menu {
  text-align: justify;
  width: 100%;
  /* The following eats the extra line added by the :after */
  margin-top: 0.2em;
  margin-bottom: -1.2em;
}
.HorizontalMenu .submenu {
  text-align: justify;
  /* The following eats the extra line added by the :after */
}
.HorizontalMenu .menu {
  font: 20px 'Carrois Gothic', Arial, sans-serif;
}
.HorizontalMenu.-hidden .menu {
  visibility: hidden;
}
.HorizontalMenu.-open .menu {
  display: block;
}
.HorizontalMenu.-open .menu,
.HorizontalMenu .submenu-container > .submenu {
  z-index: 2;
}
/* Opening menus */
.HorizontalMenu.-open > .-menu > .menu {
  display: block;
}
.HorizontalMenu .submenu-container.-open > .submenu {
  display: block;
}
/* Tweaks */
/* Label */
/* Labels are put on the text for a menu item. Think of them as 
   "menu item labels". They have a pointer cursor, background hover
   style, and are flush, bumper to bumper, for the main horizontal
   first level, and bottom to top for vertical. */
.HorizontalMenu .item > .label {
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #FFF;
  color: #000;
  display: block;
  text-align: left;
}
.HorizontalMenu .item > a.label {
  text-decoration: none;
  display: block;
  white-space: pre;
}
.HorizontalMenu .item.submenu-container > .label:hover {
  background-color: #E6ECFA;
  color: #000;
}
.HorizontalMenu .item > .label:hover {
  background-color: #E6ECFA;
  color: #000;
}
/* submenu hover is different
.menu .submenu .submenu .item > .label:hover {
        color: @submenuItemHoverTextColor;
}
*/
/* NB unicode characters below. 
   Don't know about universal support, maybe image better
*/
.HorizontalMenu .item.submenu-container > .label:after {
  font-family: monospace;
  content: "\00a0▾";
}
.HorizontalMenu .item.submenu-container .item.submenu-container > .label:after {
  font-family: monospace;
  content: "\00a0▸";
}
/* Override defaults which otherwise may stick ?? */
.HorizontalMenu ul.menu {
  margin: 0;
  padding: 0;
}
.HorizontalMenu ul.menu li.item {
  display: block;
  list-style-type: none;
}
.HorizontalMenu .-toggle {
  cursor: pointer;
}
/* Responsive tweaks */
@media only screen and (max-width: 900px) {
  .menubar {
    margin-bottom: 10px;
  }
  .HorizontalMenu .submenu {
    display: none;
  }
  /*
        When an item contains a submenu and is opened, we enclose it it
        a border
    */
  .HorizontalMenu .item.submenu-container.-open > .submenu {
    border: 1px solid silver;
    padding: 0.25rem;
    border-radius: 0.5rem;
    margin: 0.5rem;
  }
  /* 
        Toggle (hamburger!) now appears and is hoverable 
    */
  .HorizontalMenu > .-toggle {
    display: block;
  }
  .HorizontalMenu > .-toggle:hover {
    background-color: #E6ECFA;
    color: #000;
  }
  /*
        The menus container is initially hidden, but revealed with
        the overall container is opened.
    */
  .HorizontalMenu > .-menu {
    display: none;
  }
  .HorizontalMenu.-open > .-menu {
    display: block;
  }
  /* Basic default positioning and display */
  .HorizontalMenu > .heading {
    /* .inline-block; */
    display: inline-block;
    font-size: 0;
  }
  /*
        This business is for controlling the submenu indicators (triangles).
    */
  .HorizontalMenu .item.submenu-container > .label:after {
    font-family: monospace;
    content: "\00a0▾";
  }
  .HorizontalMenu .item.submenu-container.-open > .label:after {
    font-family: monospace;
    content: "\00a0▴";
  }
  .HorizontalMenu .item.submenu-container .item.submenu-container > .label:after {
    font-family: monospace;
    content: "\00a0▾";
  }
  .HorizontalMenu .item.submenu-container.-open .item.submenu-container.-open > .label:after {
    font-family: monospace;
    content: "\00a0▴";
  }
}
/* Large - desktop, tablet */
@media only screen and (min-width: 900px) {
  .HorizontalMenu > .-menu > .menu:after {
    content: '';
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 100%;
  }
  /* 
        Always show the top level menus 
        It is relative so that it can contain the submenus 
    */
  .HorizontalMenu > .-menu > .menu {
    display: block;
    position: relative;
  }
  /* Basic default positioning and display */
  .HorizontalMenu > .heading,
  .HorizontalMenu > .-menu > .menu,
  .HorizontalMenu > .-menu > .menu > .item {
    /* .inline-block; */
    display: inline-block;
    font-size: 0;
  }
  /* we never show the menu toggle (hamburger) in desktop view */
  .HorizontalMenu > .-toggle {
    display: none;
  }
  /* 
        Submenus are absolute so they can be positioned within the menu, 
        and not take up any space in the flow 
    */
  .HorizontalMenu .submenu {
    position: absolute;
    display: none;
    border: 1px #627cbf solid;
  }
  .HorizontalMenu .submenu .submenu {
    top: 0;
    right: auto;
    left: 100%;
  }
  .HorizontalMenu > .-menu > .menu .item {
    position: relative;
  }
  .HorizontalMenu .submenu .item {
    position: relative;
    display: block;
  }
}
/* Grids */
.grid {
  font-size: 0;
}
.grid .row {
  width: 100%;
}
.grid .xrow:after {
  content: '';
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 100%;
}
.grid .col {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 100%;
}
.grid .col > .column {
  font-size: 20px;
  margin: 0 0.5em 0 0.5em;
}
.grid .col.-restore,
.grid .row.-restore {
  font-size: 20px;
}
.wrap-small-text .grid .row.-restore {
  font-size: 80%;
}
.grid .col > .column.-first {
  margin: 0 0.5em 0 0;
}
.grid .col > .column.-last {
  margin: 0 0 0 0.5em;
}
.grid .col.-span-1 {
  width: 100%;
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .grid .col > .column.-first {
    margin: 0;
  }
  .grid .col > .column.-last {
    margin: 0;
  }
}
@media only screen and (min-width: 900px) {
  .grid .col.-span-1-2 {
    width: 50%;
  }
  .grid .col.-span-1-3,
  .grid .col.-span-2-6,
  .grid .col.-span-3-9,
  .grid .col.-span-4-12 {
    width: 33.3333%;
  }
  .grid .col.-span-2-3 {
    width: 66.6666%;
  }
  .grid .col.-span-1-4 {
    width: 25%;
  }
  .grid .col.-span-3-4 {
    width: 75%;
  }
  .grid .col.-span-1-5 {
    width: 20%;
  }
  .grid .col.-span-2-5 {
    width: 40%;
  }
  .grid .col.-span-3-5 {
    width: 60%;
  }
  .grid .col.-span-4-5 {
    width: 80%;
  }
  .grid .col.-span-1-6 {
    width: 16.6667%;
  }
  .grid .col.-span-5-6 {
    width: 83.3333%;
  }
  .grid .col.-span-1-7 {
    width: 14.2857%;
  }
  .grid .col.-span-2-7 {
    width: 28.5714%;
  }
  .grid .col.-span-3-7 {
    width: 42.8571%;
  }
  .grid .col.-span-4-7 {
    width: 57.1429%;
  }
  .grid .col.-span-5-7 {
    width: 71.4286%;
  }
  .grid .col.-span-6-7 {
    width: 85.7143%;
  }
  .grid .col.-span-1-10 {
    width: 10%;
  }
  .grid .col.-span-1-5 {
    width: 20%;
  }
  .grid .col.-span-3-10 {
    width: 30%;
  }
  .grid .col.-span-2-5 {
    width: 40%;
  }
  .grid .col.-span-1-12 {
    width: 8.3333%;
  }
  .grid .col.-span-5-12 {
    width: 41.6667%;
  }
  .grid .col.-span-7-12 {
    width: 58.3333%;
  }
  .grid .col.-span-11-12 {
    width: 91.6667%;
  }
  /* Wow, 1/24s */
  .grid .col.-span-1-24 {
    width: 4.1667%;
  }
  .grid .col.-span-5-24 {
    width: 20.8333%;
  }
  .grid .col.-span-7-24 {
    width: 29.1667%;
  }
  .grid .col.-span-11-24 {
    width: 45.8333%;
  }
  .grid .col.-span-13-24 {
    width: 54.1667%;
  }
  .grid .col.-span-17-24 {
    width: 70.8333%;
  }
  .grid .col.-span-19-24 {
    width: 79.6667%;
  }
  .grid .col.-span-23-24 {
    width: 95.8333%;
  }
  /* Grid and other common elements */
  .grid + p,
  p + .grid {
    margin-top: 0.6em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .grid .col.-width-1-md {
    width: 100%;
  }
  .grid .col.-width-1-2-md {
    width: 50%;
  }
  .grid .col.-width-1-3-md,
  .grid .col.-width-2-6-md,
  .grid .col.-width-3-9-md,
  .grid .col.-width-4-12-md {
    width: 33.3333%;
  }
  .grid .col.-width-2-3-md {
    width: 66.6666%;
  }
  .grid .col.-width-1-4-md {
    width: 25%;
  }
  .grid .col.-width-3-4-md {
    width: 75%;
  }
  .grid .col.-width-1-5-md {
    width: 20%;
  }
  .grid .col.-width-2-5-md {
    width: 40%;
  }
  .grid .col.-width-3-5-md {
    width: 60%;
  }
  .grid .col.-width-4-5-md {
    width: 80%;
  }
  .grid .col.-width-1-6-md {
    width: 16.6667%;
  }
  .grid .col.-width-5-6-md {
    width: 83.3333%;
  }
  .grid .col.-width-1-7-md {
    width: 14.2857%;
  }
  .grid .col.-width-2-7-md {
    width: 28.5714%;
  }
  .grid .col.-width-3-7-md {
    width: 42.8571%;
  }
  .grid .col.-width-4-7-md {
    width: 57.1429%;
  }
  .grid .col.-width-5-7-md {
    width: 71.4286%;
  }
  .grid .col.-width-6-7-md {
    width: 85.7143%;
  }
  .grid .col.-width-1-12-md {
    width: 8.3333%;
  }
  .grid .col.-width-5-12-md {
    width: 41.6667%;
  }
  .grid .col.-width-7-12-md {
    width: 58.3333%;
  }
  .grid .col.-width-11-12-md {
    width: 91.6667%;
  }
  /* Wow, 1/24s */
  .grid .col.-width-1-24-md {
    width: 4.1667%;
  }
  .grid .col.-width-5-24-md {
    width: 20.8333%;
  }
  .grid .col.-width-7-24-md {
    width: 29.1667%;
  }
  .grid .col.-width-11-24-md {
    width: 45.8333%;
  }
  .grid .col.-width-13-24-md {
    width: 54.1667%;
  }
  .grid .col.-width-17-24-md {
    width: 70.8333%;
  }
  .grid .col.-width-19-24-md {
    width: 79.6667%;
  }
  .grid .col.-width-23-24.-md {
    width: 95.8333%;
  }
}
@media only screen and (min-width: 480px) {
  .grid .col.-width-1-mdup {
    width: 100%;
  }
  .grid .col.-width-1-2-mdup {
    width: 50%;
  }
  .grid .col.-width-1-3-mdup,
  .grid .col.-width-2-6-mdup,
  .grid .col.-width-3-9-mdup,
  .grid .col.-width-4-12-mdup {
    width: 33.3333%;
  }
  .grid .col.-width-2-3-mdup {
    width: 66.6666%;
  }
  .grid .col.-width-1-4-mdup {
    width: 25%;
  }
  .grid .col.-width-3-4-mdup {
    width: 75%;
  }
  .grid .col.-width-1-5-mdup {
    width: 20%;
  }
  .grid .col.-width-2-5-mdup {
    width: 40%;
  }
  .grid .col.-width-3-5-mdup {
    width: 60%;
  }
  .grid .col.-width-4-5-mdup {
    width: 80%;
  }
  .grid .col.-width-1-6-mdup {
    width: 16.6667%;
  }
  .grid .col.-width-5-6-mdup {
    width: 83.3333%;
  }
  .grid .col.-width-1-7-mdup {
    width: 14.2857%;
  }
  .grid .col.-width-2-7-mdup {
    width: 28.5714%;
  }
  .grid .col.-width-3-7-mdup {
    width: 42.8571%;
  }
  .grid .col.-width-4-7-mdup {
    width: 57.1429%;
  }
  .grid .col.-width-5-7-mdup {
    width: 71.4286%;
  }
  .grid .col.-width-6-7-mdup {
    width: 85.7143%;
  }
  .grid .col.-width-1-12-mdup {
    width: 8.3333%;
  }
  .grid .col.-width-5-12-mdup {
    width: 41.6667%;
  }
  .grid .col.-width-7-12-mdup {
    width: 58.3333%;
  }
  .grid .col.-width-11-12-mdup {
    width: 91.6667%;
  }
  /* Wow, 1/24s */
  .grid .col.-width-1-24-mdup {
    width: 4.1667%;
  }
  .grid .col.-width-5-24-mdup {
    width: 20.8333%;
  }
  .grid .col.-width-7-24-mdup {
    width: 29.1667%;
  }
  .grid .col.-width-11-24-mdup {
    width: 45.8333%;
  }
  .grid .col.-width-13-24-mdup {
    width: 54.1667%;
  }
  .grid .col.-width-17-24-mdup {
    width: 70.8333%;
  }
  .grid .col.-width-19-24-mdup {
    width: 79.6667%;
  }
  .grid .col.-width-23-24.-mdup {
    width: 95.8333%;
  }
}
@media only screen and (max-width: 480px) {
  .grid .col.-width-1-sm {
    width: 100%;
  }
  .grid .col.-width-1-2-sm {
    width: 50%;
  }
  .grid .col.-width-1-3-sm,
  .grid .col.-width-2-6-sm,
  .grid .col.-width-3-9-sm,
  .grid .col.-width-4-12-sm {
    width: 33.3333%;
  }
  .grid .col.-width-2-3-sm {
    width: 66.6666%;
  }
  .grid .col.-width-1-4-sm {
    width: 25%;
  }
  .grid .col.-width-3-4-sm {
    width: 75%;
  }
  .grid .col.-width-1-5-sm {
    width: 20%;
  }
  .grid .col.-width-2-5-sm {
    width: 40%;
  }
  .grid .col.-width-3-5-sm {
    width: 60%;
  }
  .grid .col.-width-4-5-sm {
    width: 80%;
  }
  .grid .col.-width-1-6-sm {
    width: 16.6667%;
  }
  .grid .col.-width-5-6-sm {
    width: 83.3333%;
  }
  .grid .col.-width-1-7-sm {
    width: 14.2857%;
  }
  .grid .col.-width-2-7-sm {
    width: 28.5714%;
  }
  .grid .col.-width-3-7-sm {
    width: 42.8571%;
  }
  .grid .col.-width-4-7-sm {
    width: 57.1429%;
  }
  .grid .col.-width-5-7-sm {
    width: 71.4286%;
  }
  .grid .col.-width-6-7-sm {
    width: 85.7143%;
  }
  .grid .col.-width-1-12-sm {
    width: 8.3333%;
  }
  .grid .col.-width-5-12-sm {
    width: 41.6667%;
  }
  .grid .col.-width-7-12-sm {
    width: 58.3333%;
  }
  .grid .col.-width-11-12-sm {
    width: 91.6667%;
  }
  /* Wow, 1/24s */
  .grid .col.-width-1-24-sm {
    width: 4.1667%;
  }
  .grid .col.-width-5-24-sm {
    width: 20.8333%;
  }
  .grid .col.-width-7-24-sm {
    width: 29.1667%;
  }
  .grid .col.-width-11-24-sm {
    width: 45.8333%;
  }
  .grid .col.-width-13-24-sm {
    width: 54.1667%;
  }
  .grid .col.-width-17-24-sm {
    width: 70.8333%;
  }
  .grid .col.-width-19-24-sm {
    width: 79.6667%;
  }
  .grid .col.-width-23-24-sm {
    width: 95.8333%;
  }
}
/* nr = non responsive */
.grid .col.-width-1-nr {
  width: 100%;
}
.grid .col.-width-1-2-nr {
  width: 50%;
}
.grid .col.-width-1-3-nr,
.grid .col.-width-2-6-nr,
.grid .col.-width-3-9-nr,
.grid .col.-width-4-12-nr {
  width: 33.3333%;
}
.grid .col.-width-2-3-nr {
  width: 66.6666%;
}
.grid .col.-width-1-4-nr {
  width: 25%;
}
.grid .col.-width-3-4-nr {
  width: 75%;
}
.grid .col.-width-1-5-nr {
  width: 20%;
}
.grid .col.-width-2-5-nr {
  width: 40%;
}
.grid .col.-width-3-5-nr {
  width: 60%;
}
.grid .col.-width-4-5-nr {
  width: 80%;
}
.grid .col.-width-1-6-nr {
  width: 16.6667%;
}
.grid .col.-width-5-6-nr {
  width: 83.3333%;
}
.grid .col.-width-1-7-nr {
  width: 14.2857%;
}
.grid .col.-width-2-7-nr {
  width: 28.5714%;
}
.grid .col.-width-3-7-nr {
  width: 42.8571%;
}
.grid .col.-width-4-7-nr {
  width: 57.1429%;
}
.grid .col.-width-5-7-nr {
  width: 71.4286%;
}
.grid .col.-width-6-7-nr {
  width: 85.7143%;
}
.grid .col.-width-1-12-nr {
  width: 8.3333%;
}
.grid .col.-width-5-12-nr {
  width: 41.6667%;
}
.grid .col.-width-7-12-nr {
  width: 58.3333%;
}
.grid .col.-width-11-12-nr {
  width: 91.6667%;
}
/* Wow, 1/24s */
.grid .col.-width-1-24-nr {
  width: 4.1667%;
}
.grid .col.-width-5-24-nr {
  width: 20.8333%;
}
.grid .col.-width-7-24-nr {
  width: 29.1667%;
}
.grid .col.-width-11-24-nr {
  width: 45.8333%;
}
.grid .col.-width-13-24-nr {
  width: 54.1667%;
}
.grid .col.-width-17-24-nr {
  width: 70.8333%;
}
.grid .col.-width-19-24-nr {
  width: 79.6667%;
}
.grid .col.-width-23-24-nr {
  width: 95.8333%;
}
@media only screen and (min-width: 900px) {
  .grid .col.-width-1-lg {
    width: 100%;
  }
  .grid .col.-width-1-2-lg {
    width: 50%;
  }
  .grid .col.-width-1-3-lg,
  .grid .col.-width-2-6-lg,
  .grid .col.-width-3-9-lg,
  .grid .col.-width-4-12-lg {
    width: 33.3333%;
  }
  .grid .col.-width-2-3-lg {
    width: 66.6666%;
  }
  .grid .col.-width-1-4-lg {
    width: 25%;
  }
  .grid .col.-width-3-4-lg {
    width: 75%;
  }
  .grid .col.-width-1-5-lg {
    width: 20%;
  }
  .grid .col.-width-2-5-lg {
    width: 40%;
  }
  .grid .col.-width-3-5-lg {
    width: 60%;
  }
  .grid .col.-width-4-5-lg {
    width: 80%;
  }
  .grid .col.-width-1-6-lg {
    width: 16.6667%;
  }
  .grid .col.-width-5-6-lg {
    width: 83.3333%;
  }
  .grid .col.-width-1-7-lg {
    width: 14.2857%;
  }
  .grid .col.-width-2-7-lg {
    width: 28.5714%;
  }
  .grid .col.-width-3-7-lg {
    width: 42.8571%;
  }
  .grid .col.-width-4-7-lg {
    width: 57.1429%;
  }
  .grid .col.-width-5-7-lg {
    width: 71.4286%;
  }
  .grid .col.-width-6-7-lg {
    width: 85.7143%;
  }
  .grid .col.-width-1-12-lg {
    width: 8.3333%;
  }
  .grid .col.-width-5-12-lg {
    width: 41.6667%;
  }
  .grid .col.-width-7-12-lg {
    width: 58.3333%;
  }
  .grid .col.-width-11-12-lg {
    width: 91.6667%;
  }
  /* Wow, 1/24s */
  .grid .col.-width-1-24-lg {
    width: 4.1667%;
  }
  .grid .col.-width-5-24-lg {
    width: 20.8333%;
  }
  .grid .col.-width-7-24-lg {
    width: 29.1667%;
  }
  .grid .col.-width-11-24-lg {
    width: 45.8333%;
  }
  .grid .col.-width-13-24-lg {
    width: 54.1667%;
  }
  .grid .col.-width-17-24-lg {
    width: 70.8333%;
  }
  .grid .col.-width-19-24-lg {
    width: 79.6667%;
  }
  .grid .col.-width-23-24-lg {
    width: 95.8333%;
  }
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .grid .col.-span-1-2,
  .grid .col.-span-1-3,
  .grid .col.-span-2-6,
  .grid .col.-span-3-9,
  .grid .col.-span-4-12,
  .grid .col.-span-2-3,
  .grid .col.-span-1-4,
  .grid .col.-span-3-4,
  .grid .col.-span-1-5,
  .grid .col.-span-2-5,
  .grid .col.-span-3-5,
  .grid .col.-span-4-5,
  .grid .col.-span-1-6,
  .grid .col.-span-5-6,
  .grid .col.-span-1-7,
  .grid .col.-span-2-7,
  .grid .col.-span-3-7,
  .grid .col.-span-4-7,
  .grid .col.-span-5-7,
  .grid .col.-span-6-7,
  .grid .col.-span-1-12,
  .grid .col.-span-5-12,
  .grid .col.-span-7-12,
  .grid .col.-span-11-12,
  .grid .col.-span-1-24,
  .grid .col.-span-5-24,
  .grid .col.-span-7-24,
  .grid .col.-span-11-24,
  .grid .col.-span-13-24,
  .grid .col.-span-17-24,
  .grid .col.-span-19-24,
  .grid .col.-span-23-24 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .grid .col.-sm-hide {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .grid .col.-md-hide {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .grid .col.-lg-hide {
    display: none;
  }
}
.grid2 {
  display: flex;
  flex-direction: column;
}
.grid2 .row2 {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
}
.grid2 .row2 > .col2 {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 480px) {
  .grid2 .col2.-flex-1-mdup {
    flex: 1 1 0;
  }
  .grid2 .col2.-flex-2-mdup {
    flex: 2 1 0;
  }
  .grid2 .col2.-flex-3-mdup {
    flex: 3 1 0;
  }
  .grid2 .col2.-flex-4-mdup {
    flex: 4 1 0;
  }
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .grid2 .row2 {
    display: block;
  }
  .grid2 .row2 > .col2 {
    display: block;
  }
}
.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slideshow .frame-container {
  position: relative;
}
/* Default frame wrapper is just full width and expands to fit 
   the height */
.slideshow .frame-wrapper {
  position: relative;
  width: 100%;
}
.slideshow .frame-wrapper > .-inner {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.slideshow-embed-wrapper {
  box-sizing: border-box;
  float: right;
  width: 65%;
  margin: 0.5em 0 0.5em 0.5em;
}
@media only screen and (max-width: 480px) {
  .slideshow-embed-wrapper {
    float: none;
    width: 100%;
    margin: 0.5em 0 0.5em 0;
  }
}
/* Gives us a solid container that will ignore the padding
   used on the slideshow in case we decide to give it an
   aspect ratio. */
.slideshow .frame {
  background-color: transparent;
}
.slideshow .frame.-show {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.slideshow .frame .art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slideshow .controls {
  text-align: center;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.6);
}
.slideshow .controls.-hide {
  visibility: hidden;
}
.slide.current {
  display: block;
}
a.current {
  font-weight: 700;
}
/* Big slideshows, like we use on pages. */
/* The big slideshow, perhaps better named HD Slideshow, 
   uses a 16x9 aspect ratio for the slide area (frame). 
   This is achieved with the padding-bottom css trick. */
.slideshow.-hd .frame-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.slideshow.-hd .frame-holder {
  position: absolute;
  /* or relative */
  width: 100%;
  height: 100%;
}
.slideshow.-hd .frame {
  position: absolute;
  /* or absolute*/
  width: 100%;
  height: 100%;
}
/* The HD Slideshow art should fill the frame */
.slideshow.-hd .frame .art {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.slideshow.-hd .frame .art img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slideshow.-hd .controls {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
}
/* The HD Slideshow caption overlays the lower part of the 
   slide */
.slideshow.-hd .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.slideshow-HACK .photography {
  text-align: right;
  font-style: italic;
  margin: 0.2em 0.2em 0 0;
}
.slideshow-HACK ~ p {
  margin-top: 0.6em;
}
/* TODO: put other styles specific to those slideshows here */
/* The pics, or standard slideshows, which us a different layout.
   They have a 
    title
    slide
    controls
    music credit
    where the slide is itself split down the middle with the 
    art on the left and the caption on the right.
*/
.slideshow.-pics {
  xborder: 1px red solid;
}
.slideshow.-pics .title {
  /* fixed height, since we don't want our slideshow moving up and down as we switch slideshows */
  height: 50px;
}
/*
aspect ratio: 16:9 (hd))
*/
.slideshow.-pics .frame-holder {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.slideshow.-pics .aspect-ratio {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.slideshow.-pics .frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.slideshow.-pics .controls {
  width: 100%;
  background-color: #eee;
}
.slideshow.-pics .frame .art {
  position: relative;
}
.slideshow.-pics .frame .art .photo-credit {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
}
.slideshow.-pics .frame .art .photo-credit .credit {
  padding: 0;
  position: relative;
  bottom: 0;
  display: inline-block;
  font-size: 14px 'Carrois Gothic', Arial, sans-serif;
}
@media only screen and (max-width: 480px) {
  .slideshow.-pics .frame .art .photo-credit .credit {
    font: 12px 'Carrois Gothic', Arial, sans-serif;
  }
}
.slideshow.-pics .caption {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  xborder: 1px #ddd solid;
  margin: 0 8px 8px 8px;
  padding: 0 8px 8px 8px;
  xoverflow-y: scroll;
}
.slideshow.-pics .music-credit {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px #ddd solid;
  margin: 8px;
  padding: 8px;
}
.slideshow.-pics .photo-credit {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px #ddd solid;
  margin: 8px;
  padding: 8px;
}
.slideshow.-pics .photography {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px #ddd solid;
  margin: 8px;
  padding: 8px;
}
.slideshow.-pics .musician-frame .musician {
  font-weight: bold;
  font-size: 120%;
  padding: 20px;
  color: #FFF;
}
.slideshow.-pics .musician-frame .url a {
  color: #F2F6FC;
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .slideshow,
  .slideshow .content {
    font: 18px 'Carrois Gothic', Arial, sans-serif;
  }
}
@media only screen and (max-width: 480px) {
  .slideshow,
  .slideshow .content {
    font: 14px 'Carrois Gothic', Arial, sans-serif;
  }
}
.slideshow .title {
  overflow-y: hidden;
  overflow-x: auto;
}
.slideshow .title h1 {
  white-space: nowrap;
}
/* Expando */
/* An h3 (or 3 or 4) is used for section titling for groups
   of exandos */
.expando {
  margin-top: 12px;
  margin-left: 0em;
}
.expando h2 {
  margin-top: 1.3em;
}
/* Expander is the element that opens a matching other element */
.expando h2 + .expander {
  margin-top: 6px;
}
.expando .expander {
  margin-top: 12px;
  cursor: pointer;
  font-weight: bold;
  color: #21449d;
  font-size: 0;
}
.expando .expander:hover {
  color: #cc2127;
}
/* Control is a special icon or thing in the expander which switches state */
.expando .control {
  font-weight: normal;
  color: #21449d;
  margin-left: 0em;
}
.expando .control:hover {
  text-decoration: underline;
}
.expando .expander,
.expando .expandee {
  display: flex;
  flex-direction: row;
}
/* Expandee is the thing that is hidden and is opened when the expander is clicked. */
.expando .expandee {
  font-size: 0;
}
.expando .expandee.-open {
  display: flex;
}
.expando .-col {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  font-size: 20px;
}
.expando .-col:nth-child(1) {
  flex: 0 0 2rem;
}
.expando .-col:nth-child(2) {
  flex: 1 1 0;
}
.expando .-row {
  display: table-row;
}
.expando .-cell {
  padding: 4px;
  display: table-cell;
}
h2 + .expander {
  margin-top: 0.8em;
}
.expandee > .-col:nth-child(2) {
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 1rem;
  padding: 1rem;
}
.expando > .expander .control {
  width: 1.5rem;
  text-align: center;
  font-size: 80%;
}
/* Home page caption at the bottom of the frame, overlaying the art */
.home-page .slideshow.-hd .caption {
  margin: 0;
  padding: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  color: #FFF;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .home-page .slideshow.-hd .caption {
    font-size: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 900px), only screen and (min-width: 900px) {
  .home-page .slideshow.-hd .caption {
    font-size: 30px;
  }
}
.home-page .slideshow.-hd .caption p {
  padding: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home-page .slideshow.-hd .controls {
  position: absolute;
  width: 100px;
  height: 376px;
  line-height: 576px;
  text-align: center;
  top: 0;
  background-color: transparent;
}
.home-page .slideshow.-hd .controls .button {
  vertical-align: middle;
}
.home-page .slideshow.-hd .controls.-left {
  left: 0;
}
.home-page .slideshow.-hd .controls.-right {
  /* for some reason this stoppped working ... right: 0; */
  left: 924px;
}
.home-page .row.-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px #E6ECFA solid;
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .home-page .slideshow.-hd .caption {
    height: 50px;
    width: 100%;
    color: #FFF;
    font-size: 100%;
    font-weight: bold;
  }
}
/* Medium - tablet and narrow browser width */
.teacher-pd-info {
  margin: 1em 0 1em 0;
  display: flex;
  flex-direction: column;
}
.teacher-pd-info > div:nth-child(1) {
  display: flex;
  flex-direction: row;
  margin-bottom: 0px;
}
.teacher-pd-info > div:nth-child(1) > div:nth-child(1) {
  flex: 0 0 4em;
  font-weight: bold;
}
.teacher-pd-info > div:nth-child(1) > div:nth-child(2) {
  flex: 1 1 0px;
}
.teacher-pd-info > div:nth-child(2) {
  margin-left: 4em;
}
.teacher-pd-info > div:nth-child(2) > ul {
  padding-left: 0;
  list-style-position: outside;
  margin-left: 1em;
}
.gallery {
  position: relative;
}
.gallery > ul,
.gallery > .items {
  position: relative;
}
.gallery > ul > li,
.gallery > .items > .item {
  position: absolute;
  visibility: hidden;
}
.gallery > ul > li.-selected,
.gallery > .items > .item.-selected {
  visibility: visible;
}
.gallery .-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  width: 100%;
  height: 1.5em;
}
.gallery .-btn {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  cursor: pointer;
}
.gallery .-item.-btn:hover,
.gallery .-prev.-btn:hover,
.gallery .-next.-btn:hover {
  color: #cc2127;
}
.gallery .-next.-btn,
.gallery .-prev.-btn {
  margin-left: 0.3em;
  margin-right: 0.3em;
  color: #21449d;
}
.gallery .-item.-btn {
  color: #21449d;
}
.gallery .-item.-btn.-selected {
  color: #cc2127;
}
/* Quotes */
.gallery {
  position: relative;
}
.gallery .quotes {
  margin: 0;
  padding: 0;
}
.gallery .quote {
  border: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.gallery > ul > li {
  position: absolute;
  visibility: hidden;
}
ul.quotes {
  list-style: none;
  list-style-position: inside;
  padding-left: 0;
}
.quotes .quote {
  padding: 0.6em;
  margin: 0 0 1em 0;
  font: 22px neuton, serif;
  color: #303030;
  zoom: 1;
}
.quotes .quote:before,
.quotes .quote:after {
  content: "";
  display: table;
}
.quotes .quote:after {
  clear: both;
}
.quotes .quote .text {
  line-height: 1.4;
}
.quotes .quote .author {
  font-style: italic;
  margin-left: 0em;
  float: right;
  text-align: right;
}
.gallery .quotes {
  margin: 0;
  padding: 0;
}
.gallery .quote {
  border: 0;
  background-color: transparent;
  margin: 0;
  padding: 0.4em 0 0 0;
}
.vertical-menu-toggle {
  display: none;
}
.video-title {
  display: none;
  text-align: center;
  color: #646464;
  margin-top: 0;
}
@media only screen and (max-width: 900px) {
  .vertical-menu-toggle {
    display: block;
  }
  .vertical-menu-toggle > .button.-media {
    text-align: center;
  }
  .vertical-menu > .vertical-menu-items {
    display: none;
  }
  .vertical-menu > .vertical-menu-items.-active {
    display: block;
  }
  .video-title {
    display: block;
  }
  .grid .col > .column {
    margin: 0;
    padding: 0;
  }
  .grid .col > .column > .content {
    margin: 0;
    padding: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: center;
  }
}
* {
  box-sizing: border-box;
}
/*  
 Fixes

 FF Annoying sticky link outline. Messes up menus.
*/
a {
  outline: none;
}
:focus {
  -moz-outline-style: none;
}
a:active {
  outline: none;
}
sup {
  vertical-align: top;
}
/* Typopgraphy. */
body {
  font-family: 'Carrois Gothic', Arial, sans-serif;
  font-size: 20px;
  /* -webkit-font-smoothing: antialiased; */
}
p {
  line-height: 1.4;
}
p + p {
  margin-top: 0.6em;
}
/* Because an illustration image is floated
   and thus out of the flow */
p + img.illustration + p {
  margin-top: 0.6em;
}
p + ul,
ul + p {
  margin-top: 0.6em;
}
p.-section {
  margin-top: 1em;
}
h1 {
  font-weight: bold;
  font-size: 160%;
  line-height: 1.3;
}
h2 {
  font-weight: bold;
  font-size: 130%;
  line-height: 1.3;
  margin-top: 0.5em;
}
h3 {
  font-weight: bold;
  font-size: 110%;
  line-height: 1.3;
}
h4 {
  font-weight: bold;
  font-size: 100%;
  line-height: 1.3;
}
/* Headers before other common elements */
h1 + p,
h2 + p,
h3 + p,
h4 + p {
  margin-top: 0.3em;
}
h1 + ul,
h2 + ul,
h3 + ul,
h4 + ul {
  margin-top: 0.3em;
}
h1 + .paralike,
h2 + .paralike,
h3 + .paralike,
h4 + .paralike {
  margin-top: 0.3em;
}
.paralike + h1,
.paralike + h2,
.paralike + h3,
.paralike + h3 {
  margin-top: 1em;
}
h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 1em;
}
h1 + table,
h2 + table,
h3 + table,
h4 + table {
  margin-top: 1em;
}
/* Headers following common other elements */
p + h2,
p + h3,
p + h4 {
  margin-top: 1.5em;
}
ul + h2,
ul + h3,
ul + h4 {
  margin-top: 1.5em;
}
/* Links */
a {
  color: #21449d;
}
a:link,
a:visited {
  color: #21449d;
}
a:hover,
a:active {
  color: #4161b3;
}
/* Tag tweaks */
audio {
  margin: 10px 0 5px 0;
  width: 100%;
}
a.AudioLink {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  background-color: #7d7d7d;
  color: white;
  border-radius: 1rem;
  font-size: 90%;
  text-decoration: none;
}
a.AudioLink:hover {
  background-color: #969696;
}
a.AudioLink span.fa {
  font-size: 150%;
  margin-right: 0.75rem;
}
/* Main styles */
.page {
  background-color: #F5F7FC;
}
.main,
.header,
.footer,
.toolbar,
.banner {
  max-width: 1024px;
  margin: 0 auto;
}
/* Banner area */
.banner-strip {
  background-color: #FFFFFF;
}
/* Banner details */
.banner {
  margin: 0 auto;
  padding: 6px 0;
}
.banner .logo {
  margin: 0.5em;
}
.banner .logo img {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/* The navbar is the container for the social buttons and the main nav */
.navbar {
  position: relative;
}
.navbar .menubar {
  width: 100%;
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .navbar {
    height: auto;
  }
}
@media only screen and (min-width: 900px) {
  .navbar {
    height: 159px;
  }
  .navbar .menubar {
    position: absolute;
    bottom: 0px;
  }
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .banner {
    text-align: center;
  }
  .banner .logo {
    text-align: center;
    margin: 0 auto;
    line-height: normal;
  }
  .banner .quoteContainer {
    text-align: center;
    line-height: normal;
    margin: 0 auto;
  }
}
/*
@media(max-width: 600px) {
    .banner .quote {
        display: none;
    }
   .banner .quote {
        height: auto;
        margin: 0; padding: 0;
    }
   

}
*/
.header-strip {
  background-color: #21449d;
}
.toolbar-strip {
  background-color: #cc2127;
  font: 20px 'Carrois Gothic', Arial, sans-serif;
  padding: 0;
}
.toolbar-strip .button-bar {
  line-height: 40px;
  background-color: silver;
}
.toolbar-strip .social-button {
  font: 20px 'Carrois Gothic', Arial, sans-serif;
  margin: 0;
  vertical-align: middle;
  text-align: center;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0 12px 0 12px;
}
.toolbar-strip .social-button img {
  vertical-align: middle;
}
.navbar > .button-bar {
  height: 40px;
  margin-top: 8px;
  letter-spacing: 12px;
}
@media only screen and (max-width: 480px) {
  .navbar > .button-bar {
    margin-top: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .navbar > .button-bar {
    margin-top: 16px;
    margin-bottom: 10px;
  }
}
/* -- */
/* Responsive notes:
- in wide view, align buttons to right if -right used.
- otherwise justify.
*/
.button-bar.-right {
  text-align: right;
}
.button-bar.-left {
  text-align: left;
}
@media only screen and (max-width: 480px), only screen and (min-width: 480px) and (max-width: 900px) {
  .button-bar,
  .button-bar.-left,
  .button-bar.-right {
    text-align: justify;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .button-bar:after {
    content: '';
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 100%;
  }
}
.button-bar .social-button {
  font: 20px 'Carrois Gothic', Arial, sans-serif;
  margin: 0x;
  vertical-align: middle;
  text-align: center;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.button-bar .social-button img {
  vertical-align: middle;
}
.button-bar.-centered {
  text-align: center;
}
/* -- */
.copyright {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 20px 0 0 0;
  text-align: center;
}
.footer-strip {
  background-color: #21449d;
}
.footer {
  text-align: center;
  color: white;
  padding: 8px;
}
.footer a,
.footer a:link,
.footer a:visited {
  color: white;
}
.footer a:hover,
.footer a:active {
  background-color: #4161b3;
}
.toolbar {
  color: #FFFFFF;
}
.content {
  font: 20px 'Carrois Gothic', Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: normal;
  height: 100%;
}
.content.body {
  margin: 0.5em;
}
.-wrap-small .content,
.content.-wrap-small {
  font: 18px 'Carrois Gothic', Arial, sans-serif;
}
.-wrap-small .fa {
  font-size: 90%;
}
/* Columns 
   Laying out content...*/
.column {
  padding: 0.5em;
}
.column.left {
  margin-right: 0.5em;
}
.equicolumn {
  padding: 0.5em;
  margin: 0 0.5em;
}
/* Other responsive 
   TODO: All responsive should be tied to the breakpoints used in grid ?? Maybe via LESS? 
*/
.pure-r {
  width: 100%;
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .pure-sm-hide {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .-sm-hide {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .-md-hide {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .-lg-hide {
    display: none;
  }
}
.well {
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px silver solid;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #FFF;
}
/* After a paragraph, treat like a paragraph */
p + .well {
  margin-top: 1em;
}
/* Support */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr td {
  border: 0;
  border-bottom: 1px #BBB solid;
  padding: 0.3em;
}
table tr th {
  border: 0;
  border-bottom: 1px #BBB solid;
  text-align: center;
  background-color: #E6ECFA;
  padding: 0.3em;
}
table tr.header td {
  border: 0;
  text-align: center;
}
p + table {
  margin-top: 1em;
}
table.-striped th {
  background-color: #E6ECFA;
  color: #21449d;
}
table.-striped tr:nth-child(even) {
  background-color: #E6ECFA;
}
table.-striped tr th,
table.-striped tr td {
  border-style: none;
}
table.-inverted tr:nth-child(0),
table.-inverted tr:nth-child(0) th,
table.-inverted tr:nth-child(0) td {
  border-bottom: 1px #BBB solid;
}
table.-inverted tr th,
table.-inverted tr td {
  border-top: 4px transparent solid;
  border-bottom: none;
  background-color: transparent;
}
.donation-levels td:nth-child(1) {
  text-align: left;
  vertical-align: top;
  width: 25%;
}
.donation-levels td:nth-child(2) {
  vertical-align: top;
  width: 55%;
}
ul.supporters2 {
  list-style-type: none;
}
ul.supporters2 li {
  text-align: center;
  background-image: url(/images/silver-glow-bg2.jpg);
  background-repeat: no-repeat;
  height: 170px;
  width: 300px;
}
ul.supporters2 li img {
  margin: 20px auto 0 auto;
}
h3 {
  margin: 0 0 4px 0;
  padding: 0;
}
h3 + p {
  margin-top: 0;
  padding-top: 0;
}
div.supporters {
  margin: 0 0 0 40px;
}
div.supporters ul {
  list-style: none;
  margin: 0 0 0 0px;
  padding: 0 0 0 0px;
}
div.supporters ul li {
  border: 0px blue dashed;
  margin: 0 0 0 8px;
  padding: 0;
  text-indent: -8px;
}
div.supporters h2 {
  font-weight: bold;
  text-decoration: underline;
  font-size: 110%;
  text-align: left;
  margin: 12px 0 4px 0;
}
ul.modern {
  padding: 0;
  list-style: none;
}
ul.modern li {
  left: 1em;
  position: relative;
}
ul.modern li:before {
  content: "★";
  color: gray;
  position: absolute;
  left: -1em;
}
ul.supporters2 {
  list-style: none;
}
ul.supporters2 li {
  text-align: center;
  background-image: url(/images/silver-glow-bg2.jpg);
  background-repeat: no-repeat;
  height: 170px;
  width: 300px;
}
ul.supporters2 li img {
  margin: 20px auto 0 auto;
}
/* Media */
/* Video */
.yui3-tabview-loading {
  visibility: hidden;
  background-color: silver;
  border: 4px yellow dotted;
  height: 600px;
  width: 750px;
}
.inactive {
  color: #ccc;
}
a.inactive {
  color: #ccc;
}
a.inactive:link {
  color: #ccc;
}
div.media {
  margin: 18px 0 0 0;
  text-align: center;
}
.caption {
  margin: 4px 4px 4px 4px;
  padding: 4px;
  text-align: left;
  font-style: italic;
}
.mediaImageCaption {
  width: 700px;
  text-align: left;
  margin: auto;
}
.mediaPage {
  width: 700px;
}
.mediaContentBlock {
  width: 700px;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  text-align: left;
  border: 0px silver solid;
}
.mediaSeparator {
  width: 100%;
  height: 3px;
  background-color: #999999;
  margin: auto;
}
.mediaContentBlock p {
  padding: 4px;
}
/* Yahoo media player */
.ymp-player {
  display: none;
}
/* Play button */
/* Media browser */
.media-nav-container {
  margin: 0 0 0 0;
}
.media-nav-container img {
  border-style: none;
}
.media-nav {
  width: 600px;
  height: 80px;
  border: 0px blue dashed;
  margin: 4px;
  font-size: 110%;
}
.media-nav .media-type {
  width: 64px;
  height: 80px;
  float: left;
  clear: none;
}
.media-nav .content {
  border: 0px #999 solid;
  float: left;
  clear: none;
  height: 80px;
  width: 450px;
}
.media-nav .media-type p {
  padding: 4px;
  font-size: 90%;
  font-style: italic;
}
.media-nav .xicon {
  width: 64px;
  height: 64px;
  margin: 8px;
  float: left;
  clear: none;
}
.media-nav-container a {
  height: 80px;
  width: 500px;
  margin: 0px;
  text-decoration: none;
  border-style: none;
}
.media-nav-container a:link {
  text-decoration: none;
  border-style: none;
}
.media-nav-container a:visited {
  text-decoration: none;
  border-style: none;
}
.media-nav-container a:hover {
  text-decoration: underline;
  border-style: none;
}
.media-nav-container a:active {
  text-decoration: none;
  border-style: none;
}
.media-nav .content p {
  padding: 4px;
}
/*
  BUTTON
*/
.button {
  /*.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF); */
  /* or */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #EEE;
  border: 1px #DDD solid;
  display: inline-block;
  cursor: pointer;
  /* line height is useful because sometimes we embed
       buttons in a tall line and want them vertically
       aligned */
  line-height: 1.5em;
  color: #21449d;
  padding: 8px;
}
.button:hover,
.button:active {
  /* .gradient(@color: #F5F5F5, @start: #DDD, @stop: #FFF); */
  background-color: #DDD;
}
.button.-primary {
  background-color: #E6ECFA;
}
.button.-primary:hover,
.button.-primary:active {
  /* .gradient(@color: #F5F5F5, @start: #DDD, @stop: #FFF); */
  background-color: #627cbf;
  color: white;
}
.button.-secondary:hover,
.button.-secondary:active {
  /* .gradient(@color: #F5F5F5, @start: #DDD, @stop: #FFF); */
  background-color: #DDD;
}
.button.-media {
  text-align: left;
  white-space: normal;
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
.button .-icon {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-right: 1em;
}
.button .-label {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.button > .-inner {
  position: relative;
  padding: 8px;
}
.button.-text > .-inner {
  padding: 8px 0 8px 0;
}
.button > a.-label {
  display: block;
  padding: 8px;
  text-decoration: none;
}
.button.-selected {
  background-color: #DDD;
}
.button.-disabled {
  color: gray;
}
/* Button-like formatting, without hovering, for text mingled with buttons */
.button.-text {
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-style: none;
  color: #000;
}
.button.-text:hover {
  background-color: transparent;
}
.button.-boolean.-true .-true {
  display: inline;
}
.button.-boolean.-true .-false {
  display: none;
}
.button.-boolean.-false .-true {
  display: none;
}
.button.-boolean.-false .-false {
  display: inline;
}
.hover {
  background-image: url(/media/images/button-hi.png);
  background-repeat: repeat-x;
}
.mousedown {
  background-image: url(/media/images/button-down.png);
  background-repeat: repeat-x;
}
.musicCredit {
  font-style: italic;
  margin: 12px 0 12px 0;
}
.mediaContentBlock iframe,
.mediaContentBlock object {
  margin: 0 auto;
  display: block;
}
.hidden {
  display: none;
}
.form-error-message {
  color: #940202;
}
/* Responsive video 
   Override the padding-bottom to set the aspect ratio.
*/
.video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  margin-bottom: 1em;
}
.video-frame iframe {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* Tiles */
.tile {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  min-width: 5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  border-radius: 0.5em;
  padding: 0.5em;
  margin: 0.5em;
  background-color: #940202;
  vertical-align: top;
  white-space: nowrap;
}
.tile.red {
  background-color: #FCB1B1;
}
.tile.green {
  background-color: #BDFFA3;
}
.tile.blue {
  background-color: #C7DBFF;
}
.tile.orange {
  background-color: #FFEF87;
}
.tile.yellow {
  background-color: yellow;
}
.tile.silver {
  background-color: #D9D9D9;
}
.tile .tile-icon {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  height: 100px;
  width: 100px;
}
.tile .tile-content {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  overflow: hidden;
  white-space: normal;
  vertical-align: top;
  width: 100%;
  max-width: 10em;
}
.tile .tile-content .tile-title {
  width: 100%;
  font-weight: bold;
}
.tile .tile-content .tile-text {
  width: 100%;
}
.tile.clickable {
  border: 2px #940202 dashed;
  cursor: pointer;
}
.tile.clickable:hover {
  border: 2px green solid;
}
/* Responsive stuff */
img.response-img,
img.responsive,
img.-responsive {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}
/* Page Specific */
table.what-is-j-and-d tr th {
  color: #FFF;
}
table.what-is-j-and-d tr td:nth-child(1) {
  width: 50%;
  border-right: 1px #BBB solid;
}
table.what-is-j-and-d tr th:nth-child(1) {
  background-color: #4161b3;
}
table.what-is-j-and-d tr th:nth-child(2) {
  background-color: #cc2127;
}
.config {
  display: none;
}
/* Interviews */
.interviews .artist {
  margin: 1em 1em 0.5em 1em;
  font-size: 80%;
}
/* Outcomes */
.outcomes table {
  margin: 1.5em 0 0 0;
  width: 100%;
}
.outcomes table tr.-spacer {
  height: 1em;
}
.outcomes table tr > th:nth-child(1) {
  width: 20%;
  vertical-align: top;
}
.outcomes table tr:nth-child(1) > td:nth-child(2) {
  font-weight: bold;
}
.outcomes table tr:nth-child(n+2) > td {
  background-color: transparent;
  text-align: left;
  font-weight: normal;
  font-style: normal;
  padding: 6px;
  border: 0;
}
.outcomes table tr:nth-child(n+2) > th {
  background-color: transparent;
  text-align: right;
  font-weight: normal;
  font-style: italic;
  padding: 6px;
  border: 0;
}
@media only screen and (max-width: 480px) {
  .outcomes {
    font-size: 80%;
  }
}
/* new outcomes layout using grid */
.outcomes .grid {
  margin: 1.5em 0 0 0;
}
.outcomes .grid .row > .col:nth-child(1) > div {
  vertical-align: top;
}
.outcomes .grid .row:nth-child(1) {
  border-bottom: 1px #BBB solid;
  background-color: #E6ECFA;
}
.outcomes .grid .row:nth-child(1) .content {
  padding: 0.3em;
  font-weight: bold;
}
.outcomes .grid .row:nth-child(1) .col:nth-child(1) .content {
  text-align: right;
}
.outcomes .grid .row:nth-child(n+2) > .col > div {
  background-color: transparent;
  text-align: left;
  font-weight: normal;
  font-style: normal;
  padding: 6px;
  border: 0;
}
.outcomes .grid .row:nth-child(n+2) > .col:nth-child(1) > div {
  background-color: transparent;
  text-align: right;
  font-weight: normal;
  font-style: italic;
  padding: 6px;
  border: 0;
}
@media only screen and (max-width: 480px) {
  .outcomes .grid .row:nth-child(1) .col:nth-child(1) .content,
  .outcomes .grid .row:nth-child(n+2) .col:nth-child(1) .content {
    text-align: left;
    border-bottom: 1px #BBB solid;
    background-color: #E6ECFA;
  }
}
/* Illustrations */
.illustration {
  padding: 0;
  /* margin: 0.8em; */
  box-shadow: 0px 0px 15px 5px #BBB;
}
.illustration.-right {
  float: right;
  clear: none;
  margin-left: 2em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 480px) {
  .illustration.-right {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Donor styles */
.donor-box img {
  margin: 10px 0 10px 0;
}
.donor-box {
  height: 134px;
  width: 678px;
  text-align: center;
  padding: 6px;
  margin: 20px auto;
  box-shadow: 0px 0px 15px 5px #BBB;
}
.footnote {
  font: 22px neuton, serif;
  font-style: italic;
  margin: 40px 0 20px 0;
  clear: both;
}
/* Standards Page */
.standards-page .level1 {
  margin-top: 1em;
  font-weight: bold;
  text-decoration: underline;
}
.standards-page .level1-sub {
  font-weight: bold;
}
.standards-page .level1-list {
  margin: 0 0 0 2.5em;
  text-indent: -1em;
  font-style: normal;
}
.standards-page .level2 {
  font-weight: bold;
}
.standards-page .level2-sub {
  font-weight: bold;
  margin: 0 0 0 1.5em;
}
.standards-page .level3 {
  margin: 0 0 0 2.5em;
  text-indent: -1em;
}
@media only screen and (max-width: 480px) {
  .standards-page .level1 {
    margin-top: 1em;
    font-weight: bold;
    text-decoration: underline;
  }
  .standards-page .level1-sub {
    font-weight: bold;
  }
  .standards-page .level1-list {
    margin: 0 0 0 0;
    text-indent: 0;
    font-style: normal;
  }
  .standards-page .level2 {
    font-weight: bold;
  }
  .standards-page .level2-sub {
    font-weight: bold;
    margin: 0;
  }
  .standards-page .level3 {
    margin: 0 0 0 0;
    text-indent: 0;
  }
}
.faqs .faq-a ul {
  padding: 0;
  list-style-position: inside;
}
.faq-a {
  margin-bottom: 1.5em;
}
/* Stylistic flair */
.fancy-shadow {
  padding: 6px;
  box-shadow: 0px 0px 15px 5px #BBB;
}
.usa-red {
  color: #cc2127;
}
/* Common helpers */
.inline-block {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/* Responsive tweaks */
/* Small */
@media only screen and (max-width: 480px) {
  .footer {
    font-size: 90%;
  }
  img.-responsive.-hide-small {
    display: none;
  }
}
/* Medium - tablet and narrow browser width */
@media only screen and (min-width: 480px) and (max-width: 900px) {
  img.-responsive.-hide-medium {
    display: none;
  }
}
/* And beyond ! */
@media only screen and (min-width: 900px) {
  img.-responsive.-hide-large {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .backtotop {
    display: none;
  }
}
.video .player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  margin-bottom: 0.5em;
}
.video .caption {
  margin-left: 0.5rem;
  font-size: 90%;
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .video .caption {
    margin-left: 0px;
    font-style: italic;
  }
}
@media only screen and (max-width: 480px) {
  .video .caption {
    margin-left: 0px;
    font-style: italic;
  }
}
.response-text {
  font: 20px 'Carrois Gothic', Arial, sans-serif;
}
@media only screen and (min-width: 480px) and (max-width: 900px) {
  .responsive-text {
    font: 18px 'Carrois Gothic', Arial, sans-serif;
  }
}
@media only screen and (max-width: 480px) {
  .responsive-text {
    font: 14px 'Carrois Gothic', Arial, sans-serif;
  }
}
/* Whackin the blues page styles */
.grid.whackin {
  margin-top: 20px;
}
.grid.whackin .row {
  margin-bottom: 20px;
}
.grid.whackin .row .col:nth-child(1) {
  font-style: italic;
}
.grid.whackin .row .col:nth-child(3) {
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .show-mdup {
    display: none;
  }
}
@media only screen and (min-width: 480px) {
  .show-sm {
    display: none;
  }
}
a.jazz-button {
  padding: 8px;
  border: 1px solid rgba(200, 200, 200, 0.4);
  background-color: rgba(200, 200, 200, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-style: normal;
  border-radius: 4px;
}
a.jazz-button:hover {
  background-color: rgba(200, 200, 200, 0.4);
}
.teacher-pd-header {
  display: flex;
  flex-direction: row;
}
.teacher-pd-header > div:nth-child(1) {
  flex: 2 1 0px;
}
.teacher-pd-header > div:nth-child(2) {
  flex: 1 1 0px;
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: flex-start;
}
.boldly-red {
  font-weight: bold;
  color: #940202;
}
.boldly-green {
  font-weight: bold;
  color: #009c22;
}
.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.checkbox input {
  flex: 0 0 auto;
  margin-right: 0.5em;
}
.checkbox label {
  flex: 1 1 0;
}
