/*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */
audio:not([controls]) {
  display: none; }

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none; }

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Keeps page centred in all browsers regardless of content height
 * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  overflow-y: scroll;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 3 */ }

/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0; }

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
body,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0; }

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 */
h1 {
  font-size: 2em; }

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none; }

/* 2 */
q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 75%; }

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin-left: 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden; }

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0; }

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0; }

/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  /* 1 */
  *margin-left: -7px;
  /* 2 */ }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal;
  /* 1 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */ }

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding that is displayed in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

  form div[data-freeform-controls] {
    float: none;
      clear: both;
  }
/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  width: 100%;
  height: 100%; }

.grid {
  float: left;
  margin: 0;
  padding: 0;
  display: block; }

.centred {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px; }

.container {
  width: 100%;
  margin: 0px; }

.hidetext {
  text-indent: -9999px;
  overflow: hidden; }

.hide {
  display: none; }

html, body {
  width: 100%;
  height: 100%;
  background: #f5f5f5; }

h1, h2, h3, h4, h5, h6 {
  font-family: "atrament-web", sans-serif;
  font-weight: 500; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 26px; }

h4 {
  font-size: 21px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

p, a, li, td {
  font-family: "myriad-pro", sans-serif; }

.page {
  width: 100%; }

.main_wrapper {
  width: 100%;
  min-height: calc(100vh - 46px); }

* {
  box-sizing: border-box; }

.landing_fullpage {
  background-image: url("/images/interface/background.png");
  width: 100%; }
  .landing_fullpage h1 {
    font-family: "atrament-web", sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #1f3c8b;
    margin-bottom: 0; }
  .landing_fullpage img {
    max-width: 100%; }

.home_page_description {
  width: 100%;
  font-weight: 300; }

.newsletter_signup {
  font-family: "atrament-web", sans-serif;
  width: 100%;
  background: #FF6666;
  padding: 20px;
  box-sizing: border-box; }
  .newsletter_signup form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .newsletter_signup p {
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1f3c8b;
  font-family: "atrament-web", sans-serif; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1f3c8b;
  font-family: "atrament-web", sans-serif; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1f3c8b;
  font-family: "atrament-web", sans-serif; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #1f3c8b;
  font-family: "atrament-web", sans-serif; }

.text_input--signup {
  margin-right: 20px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 5px;
  border: white;
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
  font-family: "atrament-web", sans-serif;
  color: #1f3c8b; }

.submit_input--signup {
  background: transparent;
  border: 2px solid black;
  font-size: 13px;
  border-radius: 5px;
  padding: 10px;
  font-family: "atrament-web", sans-serif; }

.submit_input--signup:hover {
  background: black;
  color: white; }

@media (max-width: 560px) {
  .main_logo {
    width: 25%; }
  .newsletter_signup {
    width: 100%; }
    .newsletter_signup form {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; }
    .newsletter_signup .text_input--signup {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px; }
    .newsletter_signup .submit_input--signup {
      -webkit-align-self: center;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; } }

.main_header {
  width: 100%;
  /*display:-ms-flexbox;
	display:flex;
	position:relative;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	margin-bottom:10px;
	-ms-flex-pack:justify;
	    justify-content:space-between;
	-ms-flex-align: center;
	    align-items: center;*/
  border-bottom: 2px solid #1f3c8b; }

.main_logo {
  width: 15%; }
  .main_logo img {
    width: 100%;
    display: block; }

.main_nav {
  width: 100%;
  background: #1f3c8b;
  font-size: "myriad-pro", sans-serif; }

.main_nav ul {
  padding: 15px 0;
  margin: 0px;
  list-style: none;
  position: relative;
  display: inline-block;
  width: 100%;
  float: left; }

.main_nav > li > ul {
  min-width: 10em;
  padding: 4px 0;
  border: 1px solid #CCC; }

.main_nav li {
  padding: 0px;
  z-index: 1000;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0; }

.main_nav > ul > li {
  display: inline-block; }

.main_nav ul li a {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 200; }

.main_nav ul li > a {
  padding: 6px; }

.main_nav ul ul {
  display: none;
  position: absolute;
  min-width: 160px;
  max-width: 260px;
  text-align: left; }

.main_nav li:hover, .main_nav li.here {
  background: #1f3c8b; }
  .main_nav li:hover a, .main_nav li.here a {
    color: white; }

.main_nav ul li:hover > ul {
  display: block;
  padding: 5px 0; }

.main_nav ul ul > li {
  position: relative;
  width: 100%; }

.main_nav ul ul > li a {
  padding: 5px 7px;
  height: auto;
  background-color: #1f3c8b;
  font-size: 14px;
  color: white;
  font-weight: normal; }

.main_nav ul ul > li a:hover {
  background-color: #1f3c8b;
  color: #fff; }

.main_nav ul ul ul {
  position: absolute;
  left: 100%;
  top: 0; }

.last_nav ul {
  right: 0; }

.last_nav ul ul ul {
  left: -100%; }

.active a {
  color: #1f3c8b; }

.main_nav_mobile_container {
  display: none;
  /*position:absolute;
	right:0;
	top:0;*/ }

.main_nav_mobile_button {
  float: right;
  margin-top: 0;
  /*position: absolute;
  	right: 5%;
  	top: -18%;*/ }

.main_nav_mobile_button ul {
  width: 40px;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0; }

.main_nav_mobile_button li {
  list-style: none;
  width: 100%;
  margin-top: 3px;
  margin-bottom: 3px;
  height: 3px;
  background-color: #1f3c8b;
  border-radius: 5px;
  position: relative;
  float: right; }

.search_container form {
  display: flex; }

.text_input--search {
  border-radius: 5px 0 0 5px !important;
  border: 1px solid #dedede !important;
  padding-left: 4px !important; }

.text_input--submit {
  background: #1f3c8b !important;
  border: 0 !important;
  color: white !important;
  font-size: 12px !important;
  padding: 0px 8px !important;
  font-family: "myriad-pro", sans-serif !important;
  border-radius: 0 5px 5px 0 !important; }

.join_button {
  background: #fedd43;
  float: right; }
  .join_button a {
    color: #1f3c8b !important; }

.join_button:hover {
  background: #fedd43 !important; }
  .join_button:hover a {
    color: #1f3c8b !important; }

.header--internal {
  width: 100%;
  padding: 10px;
  background: #fedd43;
  position: relative; }

.header--internal__flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.join_button--header {
  background: #1f3c8b;
  padding: 8px;
  border-radius: 5px;
  color: white;
  margin-right: 10px; }

.join_button--header:hover {
  color: white;
  text-decoration: none; }

.header_right_container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end; }

.right_triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #1ba2e1 transparent transparent;
  position: absolute;
  right: 0;
  top: 0; }

.left_triangle--1 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 135px 0 0 85px;
  border-color: transparent transparent transparent #1ba2e1;
  position: absolute;
  left: 0;
  bottom: 0; }

.left_triangle--2 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 125px 0 0 65px;
  border-color: transparent transparent transparent #1f3c8b;
  position: absolute;
  left: 0;
  bottom: 0; }

.social_link_containers {
  font-size: 25px;
  margin-left: 10px; }
  .social_link_containers a {
    color: #1f3c8b;
    text-decoration: none; }
  .social_link_containers a:hover {
    color: #444;
    text-decoration: none; }

@media (max-width: 560px) {
  .main_logo {
    width: 40% !important; }
  .right_triangle {
    border-width: 0 30px 30px 0; }
  .left_triangle--1 {
    border-width: 100px 0 0 27px; }
  .left_triangle--2 {
    border-width: 80px 0 0 17px; } }

@media all and (max-width: 920px) {
  .search_container {
    width: 100%;
    margin: 14px 0;
    display: none; }
    .search_container .text_input--search {
      flex-grow: 1; }
  .main_logo {
    width: 15%;
    margin-left: 0; }
  .main_nav_mobile_container {
    display: block; }
  .header--internal__flex {
    justify-content: space-between; }
  .join_button {
    float: left; }
  .main_header .main_nav {
    width: 100%;
    display: none; }
    .main_header .main_nav ul {
      list-style: none;
      padding-left: 0; }
    .main_header .main_nav li {
      background: #D3D3D3;
      width: 100%;
      border-bottom: white solid 2px;
      position: relative;
      text-align: left; }
      .main_header .main_nav li a {
        text-decoration: none;
        font-size: 15px;
        color: black;
        padding: 8px;
        display: block; }
    .main_header .main_nav .has-children > a:after {
      content: '+';
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      font-size: 18px;
      padding: 6px 15px; }
    .main_header .main_nav .has-children > a.active:after {
      content: "-"; }
    .main_header .main_nav ul ul {
      display: none;
      max-width: 100%;
      position: relative;
      padding: 0; }
      .main_header .main_nav ul ul li {
        background: #e5e5e5;
        padding: 0;
        border-bottom: none; }
        .main_header .main_nav ul ul li a {
          font-weight: normal;
          padding: 1.5% 3%;
          color: #ffffff; }
        .main_header .main_nav ul ul li a:hover {
          color: #1f3c8b; }
    .main_header .main_nav ul li:hover > ul {
      display: none;
      padding: 0; }
    .main_header .main_nav li:hover {
      background: #f2f2f2; }
      .main_header .main_nav li:hover a {
        color: #000000; }
    .main_header .main_nav ul ul > li a:hover {
      background-color: #1f3c8b;
      color: #ffffff; }
    .main_header .main_nav ul ul > li a {
      background-color: #d3d3d3;
      color: #1f3c8b; }
    .main_header .main_nav ul ul ul {
      position: relative;
      left: 0; }
      .main_header .main_nav ul ul ul li {
        background: #e5e5e5; }
    .main_header .main_nav ul ul ul > li a {
      background-color: #e5e5e5;
      color: #1f3c8b; } }

@media (max-width: 1175px) and (min-width: 551px) {
  .right_triangle {
    border-width: 0 30px 30px 0; }
  .left_triangle--1 {
    border-width: 100px 0 0 27px; }
  .left_triangle--2 {
    border-width: 80px 0 0 17px; } }

.main_footer {
  background: #1f3c8b;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: white;
  margin-top: 20px; }
  .main_footer a {
    color: #1f3c8b;
    text-decoration: none; }
  .main_footer p {
    margin-bottom: 14px;
    margin-top: 14px; }

.footer_nav {
  width: 100%;
  padding: 10px 0; }
  .footer_nav li {
    list-style: none;
    margin: 0;
    display: inline-block;
    margin-right: 10px; }
  .footer_nav a {
    color: white;
    font-weight: bold; }

.main_content {
  width: 100%; }

.event_main_content .two_thirds {
  width: 65%;
  padding: 0 0 0 20px; }

.event_main_content .side_bar {
  width: 35%; }

.main_content--title {
  width: 100%;
  background: #fedd43;
  padding: 10px 0;
  margin-bottom: 20px; }
  .main_content--title h1 {
    color: #1f3c8b;
    margin-top: 0;
    font-weight: 500;
    margin-bottom: 0; }

.main_imgae_container {
  width: 100%; }
  .main_imgae_container img {
    width: 100%;
    display: block; }

.side_bar {
  width: 25%; }
  .side_bar ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0; }
  .side_bar ul ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    background: #284eb5;
    margin: 0; }
    .side_bar ul ul a {
      color: white !important; }
    .side_bar ul ul li {
      margin-bottom: 0; }
  .side_bar ul li .here a {
    color: white; }
  .side_bar li {
    border-bottom: #1f3c8b solid 1px;
    position: relative; }
  .side_bar a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #1f3c8b;
    padding: 14px;
    display: block;
    box-sizing: border-box; }
  .side_bar .here a {
    color: #1f3c8b; }
  .side_bar .here a:before {
    content: '>';
    position: absolute;
    left: 0; }
  .side_bar .has-children > a:after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    font-size: 18px;
    padding: 6px 15px; }
  .side_bar .has-children > a.active:after {
    content: "-"; }
  .side_bar ul ul {
    display: none;
    max-width: 100%;
    position: relative;
    padding: 0; }
    .side_bar ul ul li {
      background: #1f3c8b;
      border-bottom: none; }
      .side_bar ul ul li a {
        font-weight: normal;
        color: #ffffff; }
      .side_bar ul ul li a:hover {
        color: #1f3c8b; }

.parent_header {
  background: #1f3c8b;
  color: #fedd43;
  text-align: center;
  padding: 10px;
  font-weight: bold; }

.two_thirds {
  width: 75%;
  padding: 0px 0 0 20px;
  box-sizing: border-box; }

.main_content--words {
  width: 100%;
  margin-bottom: 20px; }
  .main_content--words .words_container {
    width: 100%; }
    .main_content--words .words_container p {
      margin-top: 0;
      margin-bottom: 10px; }
    .main_content--words .words_container a {
      color: #1f3c8b;
      text-decoration: none; }

.main_content--video {
  width: 100%;
  margin-bottom: 20px; }

.main_content--downloads {
  width: 100%;
  margin-bottom: 20px; }

.main_content--carousel {
  width: 100%;
  margin-bottom: 20px; }

.owl-controls {
  position: absolute;
  bottom: 15px;
  text-align: center;
  width: 100%; }

.owl-theme .owl-controls .owl-page span {
  background: #1f3c8b; }

.download_item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 2px solid #1f3c8b;
  padding: 10px;
  -ms-flex-align: center;
  align-items: center; }
  .download_item p {
    margin: 0; }

.button--download {
  background: #1f3c8b;
  padding: 7px 10px;
  color: white;
  text-decoration: none; }

.video_title {
  width: 100%;
  background: #1f3c8b;
  color: white;
  padding: 10px;
  box-sizing: border-box;
  font-family: "myriad-pro", sans-serif; }

.video_description {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #1f3c8b;
  font-family: "myriad-pro", sans-serif; }

.search_result_container {
  width: 100%;
  border-bottom: 2px solid #1f3c8b; }
  .search_result_container p {
    margin: 0; }

.search_results--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  background: #1f3c8b;
  padding: 10px;
  color: white; }
  .search_results--header a {
    background: white;
    color: #1f3c8b;
    text-decoration: none;
    padding: 5px;
    font-size: 14px; }

.search_results--summary {
  width: 100%;
  padding: 10px;
  border-left: 2px solid #1f3c8b;
  border-right: 2px solid #1f3c8b; }
  .search_results--summary p {
    color: black; }

.contact_form_container {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  /*border-top:2px solid $branding;
	border-bottom:2px solid $branding;*/
  margin-bottom: 20px; }
  .contact_form_container .form_container {
    width: 100%; }

.contact_form--item {
  width: 100%;
  margin-bottom: 20px;
  font-family: "myriad-pro", sans-serif; }
  .contact_form--item label {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 10px;
    color: #1f3c8b; }
  .contact_form--item .text-label {
    display: inline-block;
    float: none;
    margin-bottom: 0;
    color: inherit;
    font-weight: inherit; }
  .contact_form--item textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #D3D3D3; }
  .contact_form--item .contact_input--text {
    width: 100%;
    padding: 10px 5px;
    font-family: "myriad-pro", sans-serif;
    border: 1px solid #D3D3D3; }

/*.contact_half_width{
	width:48%;
}

.contact_right_margin{
	margin-right:2%;
}*/
.button, button:not(.stripe-button-el), input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  height: auto;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 13px;
  font-weight: 200;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
  background: #fedd43;
  border: 2px solid #fedd43;
  color: #1f3c8b;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 0 20px;
  font-family: "myriad-pro", sans-serif; }

.contact_input--submit,
.pagination__button {
  background: #fedd43;
  border: 2px solid #fedd43;
  color: #1f3c8b;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 20px; }

.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  color: #1f3c8b;
  border-color: #fedd43; }

.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  background: #fedd43;
  color: #1f3c8b;
  border-color: #fedd43; }

.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  background: #1f3c8b;
  color: white;
  border-color: #1f3c8b; }

input[type="number"] {
  padding: 10px; }

.text-right {
  line-height: 26px; }

.button.link {
  color: #1f3c8b;
  padding: 15px;
  font-family: "myriad-pro", sans-serif;
  text-transform: uppercase;
  font-size: 13px; }

.contact_input--submit:hover,
.pagination__button:hover {
  background: #1f3c8b;
  color: #fedd43;
  border-color: #1f3c8b; }

.pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;
  width: calc(100% + 10px);
  margin-top: 15px; }

.pagination > .pagination__button {
  padding: 5px 10px;
  margin: 5px; }

.pagination__current {
  margin: 5px; }

.main_content--audio {
  width: 100%;
  border: 2px solid #1f3c8b;
  margin-bottom: 10px; }

.audio_content_container {
  width: 100%;
  box-sizing: border-box; }

.audio_title {
  width: 100%;
  background: #1f3c8b;
  color: white;
  padding: 10px; }

.audio_description {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 2px solid #1f3c8b; }
  .audio_description p {
    margin: 0; }

.people_item {
  width: 50%;
  padding: 20px;
  box-sizing: border-box; }

.people_title {
  width: 100%; }
  .people_title h2 {
    margin-bottom: 0; }

.people_subtitle {
  width: 100%; }
  .people_subtitle h3 {
    margin-bottom: 0; }

.team_description {
  width: 100%; }

.people_image_container {
  width: 100%; }
  .people_image_container img {
    width: 100%;
    display: block; }

.cleardiv--2 {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden; }

.hof_cleardiv--2 {
  display: none; }

.hof_cleardiv--3 {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden; }

.team_record--table {
  width: 100%;
  font-family: "myriad-pro", sans-serif; }
  .team_record--table th {
    background: #fedd43;
    color: #1f3c8b;
    padding: 12px 15px;
    font-size: 17px;
    font-weight: 400; }
  .team_record--table td {
    padding: 12px 15px; }

.table_overflow_container {
  overflow-y: scroll; }

.main_content--links {
  width: 100%;
  border: 2px solid #1f3c8b;
  margin-bottom: 10px; }

.link_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #1f3c8b;
  color: #1f3c8b; }
  .link_header a {
    background: color; }
  .link_header p {
    margin: 0; }

.link_summary_container {
  padding: 10px; }
  .link_summary_container p {
    margin: 0; }

@media (max-width: 680px) {
  .side_bar {
    width: 100%;
    display: none; }
  .two_thirds {
    width: 100%;
    padding: 0; }
  .download_item {
    padding: 6px; } }

/*.news_wrapper{
	width:100%;
}

.newsListing__item{
	width:100%;
	margin-bottom: 40px;
}

.newsListing__item__image{
	width:100%;
	img{
		width:100%;
		display:block;
	}
}

.newsListing__item__details{
	width:100%;
	h2{
		margin-top:0;
	}
	a{
		color:$branding;
		text-decoration: none;
	}
	.readMore{
		padding:10px;
		background:$branding;
		color:white;
	}
}

.news_item_entry{
	width:100%;
}

.news_item_content{
	width:100%;
}*/
.news_entry {
  width: 100%; }

.full_width_container {
  width: 100%; }

.comment_container {
  width: 100%; }

.comment_container--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f3c8b;
  color: white;
  padding: 10px; }
  .comment_container--header p {
    margin: 0; }
  .comment_container--header a {
    color: #fedd43;
    text-decoration: none; }

.flex_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .flex_header a {
    color: white;
    background: #1f3c8b;
    font-size: 16px;
    border: 2px solid #1f3c8b;
    padding: 10px;
    border-radius: 5px; }
  .flex_header a:hover {
    color: #1f3c8b;
    background: transparent;
    border: 2px solid #1f3c8b;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none; }

.whole_page_popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000; }

.login_container {
  width: 60%;
  display: flex; }
  .login_container a {
    color: #1f3c8b;
    text-decoration: none; }
  .login_container h1 {
    color: #1f3c8b;
    margin-top: 0;
    margin-bottom: 12px; }
  .login_container .registar_now--button {
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    border-radius: 3px; }

.login_col {
  width: 60%;
  background: white;
  padding: 30px;
  box-sizing: border-box; }
  .login_col h3 {
    margin-top: 0;
    margin-bottom: 5px; }

.sign_up_col {
  width: 40%;
  background: #1f3c8b;
  padding: 30px;
  box-sizing: border-box;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center; }
  .sign_up_col h2 {
    margin-top: 0; }

.login_close {
  color: #1f3c8b;
  text-decoration: none; }

.text_input--login {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 8px; }

.remember_me {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 14px; }

.submit--login {
  display: block;
  float: left;
  background: #1f3c8b;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  color: white; }

.signup_container {
  width: 100%; }

.signup_form_container {
  width: 100%; }

.sign_up--form_item {
  width: 100%;
  margin-bottom: 20px; }
  .sign_up--form_item p {
    margin-bottom: 15px; }

.sign_up--text_input {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px; }

.dob_field {
  width: 20% !important;
  display: block;
  float: left; }

.sign_up--submit {
  background: #1f3c8b;
  border: 2px solid #1f3c8b;
  color: white;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px; }

.sign_up--submit:hover {
  background: transparent;
  border: 2px solid #1f3c8b;
  color: #1f3c8b;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px; }

.sign_up--form_item__smallleft {
  width: 48%;
  margin-right: 2%; }

.sign_up--form_item__smallright {
  width: 48%;
  margin-left: 2%; }

.sign_up--form_item__small {
  width: 100%;
  margin-left: 0;
  margin-right: 0; }

.edit_profile--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .edit_profile--header h1 {
    margin-bottom: 0; }
  .edit_profile--header a {
    color: #1f3c8b;
    text-decoration: none; }

@media (max-width: 680px) {
  .whole_page_popup {
    position: relative; }
  .login_container {
    flex-direction: column;
    width: 90%;
    padding: 5% 0; }
  .login_col {
    width: 100%; }
  .sign_up_col {
    width: 100%; }
  .sign_up--form_item__smallleft {
    width: 100%;
    margin-right: 0; }
  .sign_up--form_item__smallright {
    width: 100%;
    margin-left: 0; } }

.homepage_carousel_container {
  width: 100%; }

.carousel_slide {
  width: 100%; }

.slide_message {
  width: 50%;
  margin: 10% 50% 10% 0;
  color: #444;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px; }
  .slide_message h1 {
    margin: 0; }
  .slide_message a {
    text-decoration: none;
    background: #fedd43;
    padding: 10px;
    display: block;
    float: left;
    margin-bottom: 10px;
    color: #1f3c8b; }
  .slide_message .slide_message--copy {
    margin-bottom: 15px;
    width: 100%; }
    .slide_message .slide_message--copy p {
      margin-bottom: 0; }

.homepage_cta {
  width: 100%;
  display: flex; }

.call_to_action_item {
  width: 34%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2000px 0 0 0 rgba(31, 60, 139, 0.5);
  border-color: #000; }

.call_to_action_item--content {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center; }
  .call_to_action_item--content h2 {
    color: #fedd43;
    font-size: 40px; }
  .call_to_action_item--content a {
    text-decoration: none; }

.next_event_container {
  width: 100%;
  background: #1f3c8b;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .next_event_container h2 {
    color: #fedd43;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 35px; }
  .next_event_container a {
    background: #fedd43;
    padding: 15px;
    text-decoration: none;
    display: block;
    float: left;
    color: #1f3c8b; }
  .next_event_container .countdown_container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0; }

.countdown_item {
  background: #fedd43;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "atrament-web", sans-serif;
  font-size: 50px;
  color: #1f3c8b; }

.homepage_news_container {
  width: 100%;
  margin: 30px 0; }

.blog_spotlight--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px; }
  .blog_spotlight--header h2 {
    font-size: 35px;
    margin: 0;
    color: #444; }
  .blog_spotlight--header a {
    background: #fedd43;
    padding: 10px;
    text-decoration: none;
    box-sizing: border-box;
    color: #1f3c8b; }

.blog_spotlight--container {
  width: 100%; }

.blog_spotlight--item {
  width: 32%;
  color: #444; }
  .blog_spotlight--item .image_container {
    width: 100%; }
    .blog_spotlight--item .image_container img {
      width: 100%;
      display: block; }
  .blog_spotlight--item a {
    background: #fedd43;
    padding: 10px;
    color: #1f3c8b;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none; }

.blog_spotlight--item__2of3 {
  margin-left: 2%;
  margin-right: 2%; }

.blog_title {
  width: 100%;
  font-size: 13px; }

.blog_info {
  width: 100%;
  font-weight: bold; }
  .blog_info span {
    color: #1f3c8b; }

.blog_item_content {
  width: 100%;
  padding: 5px;
  box-sizing: border-box; }

@media (max-width: 680px) {
  .blog_spotlight--item__2of3 {
    margin-left: 0;
    margin-right: 0; }
  .slide_message {
    width: 100%; }
  .homepage_cta {
    width: 100%;
    flex-wrap: wrap; }
  .call_to_action_item {
    width: 100%; }
  .call_to_action_item--content {
    width: 100%;
    padding: 10px 0; }
    .call_to_action_item--content h2 {
      color: #fedd43;
      font-size: 30px; }
  .blog_spotlight--container {
    width: 100%; }
  .blog_spotlight--item {
    width: 100%;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .countdown_item {
    width: 50px;
    height: 50px;
    font-size: 30px; } }

.events_wrapper {
  width: 100%; }

.event_container {
  width: 100%;
  margin-top: 20px;
  /*    margin: 0 auto;
    max-width: 1000px;
    float:none;*/ }

.event_item {
  width: 100%;
  display: flex;
  border-bottom: 2px solid #e5e5e5; }
  .event_item h2 {
    font-weight: 500;
    font-size: 26px; }

.event_item--image_container {
  width: 40%; }
  .event_item--image_container img {
    width: 100%;
    display: block; }

.event_item--content {
  width: 60%;
  font-family: "myriad-pro", sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box; }

.event_date_container {
  background: #1f3c8b;
  color: white; }
  .event_date_container p {
    padding: 5px;
    margin: 0;
    font-size: 14px; }

.event_title {
  width: 100%; }
  .event_title h2 {
    margin: 0; }

.event_title--link {
  font-family: "atrament-web", sans-serif; }
  .event_title--link a {
    text-decoration: none;
    color: black;
    font-family: "atrament-web", sans-serif; }

.store_submit {
  font-family: "atrament-web", sans-serif;
  display: block !important;
  margin-top: 15px; }

.event_more {
  width: 100%; }
  .event_more p {
    margin: 0;
    font-size: 15px; }
  .event_more a {
    text-decoration: none;
    color: #1f3c8b;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center; }

.event_summary {
  font-size: 14px;
  color: #7f7f7f; }

.event_side--header {
  width: 100%;
  background: #1f3c8b;
  padding: 10px 0; }
  .event_side--header p {
    color: #fedd43;
    text-align: center;
    font-family: "atrament-web", sans-serif;
    font-size: 24px;
    margin: 0; }

.side_bar_content_container {
  width: 100%;
  border: 2px solid #1f3c8b; }

.side_bar_item--event {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 2px solid #1f3c8b; }
  .side_bar_item--event p {
    margin: 0;
    font-weight: bold; }
  .side_bar_item--event span {
    font-weight: normal;
    display: inline; }
  .side_bar_item--event a {
    display: inline; }

.side_bar_item--event:last-child {
  border-bottom: 0; }

.location_map_container {
  width: 100%;
  margin-top: 10px; }

.event_sign_up_form {
  width: 100%; }
  .event_sign_up_form h2 {
    color: #1f3c8b; }

.contact_input--select {
  width: 100%;
  border-color: #D3D3D3; }

.side_bar--price_container span {
  float: right;
  font-weight: bold;
  color: #1f3c8b; }

.wrapper-dropdown-1.active {
  background: #9bc7de;
  background: -moz-linear-gradient(left, #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #9bc7de), color-stop(78%, #9bc7de), color-stop(78%, #ffffff), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
  background: -o-linear-gradient(left, #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
  background: -ms-linear-gradient(left, #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
  background: linear-gradient(to right, #1f3c8b 0%, #1f3c8b 78%, #ffffff 78%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bc7de', endColorstr='#ffffff',GradientType=1 ); }
  .wrapper-dropdown-1.active span {
    color: white; }

.wrapper-dropdown-1 {
  position: relative;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  background: white;
  color: #1f3c8b;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  display: block;
  float: left; }

.wrapper-dropdown-1.active .dropdown {
  opacity: 1;
  pointer-events: auto;
  margin-top: 0;
  padding-left: 0;
  border: 1px solid #1f3c8b; }

.wrapper-dropdown-1.active:after {
  border-color: #1f3c8b transparent;
  border-width: 6px 6px 0 6px;
  margin-top: -3px; }

.wrapper-dropdown-1 .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  list-style: none;
  font-weight: normal;
  opacity: 0;
  pointer-events: none; }

.wrapper-dropdown-1 .dropdown li a {
  display: block;
  text-decoration: none;
  color: #1f3c8b;
  padding: 10px; }

.wrapper-dropdown-1:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent #1f3c8b; }

/*
.event_side_bar{
	border:2px solid $branding;
}*/
/*///////// CALANDER OVERRIGHT \\\\\\\\\\\\\\\\*/
.row {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%; }
  .row a {
    color: #1f3c8b; }

.pager {
  margin: 0; }

#month_calendar #month_year th {
  padding: 0; }

.label-warning {
  background-color: #1f3c8b; }

.label {
  font-size: 23px;
  font-weight: 500; }

.right, .left {
  border: 0;
  display: block; }

.left {
  float: left; }

@media (max-width: 680px) {
  .event_item {
    flex-wrap: wrap; }
  .event_item--image_container {
    width: 100%; }
  .event_item--content {
    width: 100%; }
  .event_date_container {
    margin-bottom: 15px; }
  .event_title {
    margin-bottom: 15px; }
  .event_summary {
    margin-bottom: 15px; }
  .event_main_content {
    width: 100%; }
    .event_main_content .event_side_bar {
      display: block;
      width: 100%;
      margin-bottom: 20px; }
    .event_main_content .two_thirds {
      width: 100%;
      padding: 0; } }

.comment_container_form {
  width: 100%;
  border: 2px solid #1f3c8b; }

.comments-box {
  width: 100%; }

.comments-container {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  float: left; }

.comment_container {
  margin-bottom: 20px; }

.comment-form-container {
  width: 100%;
  padding: 10px;
  border: none;
  display: block;
  float: left; }

.form-group textarea {
  height: 100px;
  width: 100%;
  border: 1px solid #D3D3D3; }

input[type='text'] {
  width: 100%;
  padding: 10px 5px;
  font-family: "myriad-pro", sans-serif;
  border: 1px solid #D3D3D3; }

input[type='email'] {
  width: 100%;
  padding: 10px 5px;
  font-family: "myriad-pro", sans-serif;
  border: 1px solid #D3D3D3; }

.name-input .form-group {
  width: 100%;
  padding: 10px 5px;
  font-family: "myriad-pro", sans-serif;
  border: 1px solid #D3D3D3; }

.btn-default {
  background: #fedd43;
  color: #1f3c8b;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 20px;
  border: 2px solid #fedd43;
  display: block;
  float: left;
  width: auto !important; }

.btn-default:hover {
  background: #1f3c8b;
  color: #fedd43;
  border-color: #1f3c8b; }

.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%; }
  .dropdown-menu a {
    color: #1f3c8b !important; }
  .dropdown-menu li a {
    padding-right: 0 !important; }
  .dropdown-menu span {
    padding-right: 0 !important; }

.comment-heading .title {
  color: #1f3c8b; }

.meta-buttons a {
  color: #1f3c8b; }

.comment-heading .dropdown-toggle {
  color: #1f3c8b; }

.comment-heading .dropdown {
  text-align: right;
  position: relative; }

.comment-heading .dropdown-menu > li > a {
  color: #1f3c8b; }

.hall_of_fame_wrapper {
  width: 100%; }

.hall_of_fame_container {
  width: 100%;
  margin-top: 2%; }

.hall_of_fame_item {
  width: 32%;
  margin-bottom: 2%; }

.hall_of_fame_item--2_of_3 {
  margin-left: 2%;
  margin-right: 2%; }

.hall_of_fame--image_container {
  width: 100%; }
  .hall_of_fame--image_container img {
    width: 100%;
    display: block; }

.hall_of_fame--content {
  width: 100%;
  padding: 10px;
  border: 2px solid #1f3c8b; }

.hall_of_fame_title {
  width: 100%; }
  .hall_of_fame_title h2 {
    margin-bottom: 0; }

.hall_of_fame_summary {
  width: 100%; }
  .hall_of_fame_summary p {
    margin-bottom: 0; }

.hof_cleardiv--2 {
  display: none; }

.hof_cleardiv--3 {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden; }

.parent_header a {
  color: #fedd43;
  padding: 0; }

.main_page_carousel {
  width: 50%; }

.hall_of_fame--copy {
  width: 50%;
  padding: 10px; }

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal__content {
  max-width: 600px;
  padding: 10px 30px;
  background: white;
}

.modal__content a {
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 620px) {
  .hall_of_fame_item {
    width: 100%;
    margin-bottom: 5%; }
  .hall_of_fame_item--2_of_3 {
    margin-left: 0;
    margin-right: 0; }
  .main_page_carousel {
    width: 100%; }
  .hall_of_fame--copy {
    width: 100%;
    padding: 10px; } }

@media (max-width: 950px) and (min-width: 621px) {
  .hall_of_fame_item {
    width: 48%;
    margin-bottom: 5%; }
  .hall_of_fame_item--2_of_3 {
    margin-left: 0;
    margin-right: 0; }
  .hall_of_fame_item--2_of_2 {
    margin-left: 2%; }
  .hall_of_fame_item--1_of_2 {
    margin-right: 2%; }
  .hof_cleardiv--3 {
    display: none; }
  .hof_cleardiv--2 {
    display: block;
    width: 100%;
    height: 1px;
    overflow: hidden; }
  .main_page_carousel {
    width: 100%; }
  .hall_of_fame--copy {
    width: 100%;
    padding: 10px; } }

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem; }
.alert--success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb; }
.alert--danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }
.alert--warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba; }
.alert--info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb; }



  /* Xigen */
  .mb-event-link {
    display: none;
  }

  .mb-next-month {
    display: none !important;
  }

  @media (max-width: 1060px) {

    th.day_of_week {
      position: relative;
      color: transparent;
    }

    th.day_of_week::after {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      font-size: 11px;
      position: absolute;
      color: black;
      top: 0;
      left: 0;
    }

    th.day_of_week:nth-of-type(1)::after {
      content: 'Sun';
    }

    th.day_of_week:nth-of-type(2)::after {
      content: 'Mon';
    }

    th.day_of_week:nth-of-type(3)::after {
      content: 'Tue';
    }

    th.day_of_week:nth-of-type(4)::after {
      content: 'Wed';
    }

    th.day_of_week:nth-of-type(5)::after {
      content: 'Thu';
    }

    th.day_of_week:nth-of-type(6)::after {
      content: 'Fri';
    }
  
    th.day_of_week:nth-of-type(7)::after {
      content: 'Sat';
    }

    #month_calendar #month_calendar_inner td.day_cell {
      height: 64px;
      padding-bottom: 10px;
    }
    
    #month_calendar #month_calendar_inner td.day_cell .event.tips a {
      display: none;
    }

    #month_calendar .event {
      text-align: center;
    }

    .mb-event-link {
      display: block;
      padding-top: 20px;
    }

    .mb-next-month {
      display: inline-block !important;
    }

    .dt-next-month {
      display: none;
    }

    .mb-space-between {
      display: flex;
      justify-content: space-between;
      flex: 0 0 100% !important;
      width: 100%;
      max-width: unset !important;
      margin-bottom: 20px;
    }

    .mb-space-between-h3 {
      display: flex;
      justify-content: space-between;
      flex: 0 0 100% !important;
      width: 100%;
      max-width: unset !important;
    }

    .mb-no-mb {
      margin-bottom: 0 !important;
    }

    .row {
      width: calc(100% + 30px);
    }
  }