/* CSS Document */
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css);

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/*-- 0. NEW ADDITIONS -----------------*/
.w3-nowrap {
  white-space: nowrap
}
tr.w3-alt {
  background-color: #f5f7f8
}
table.w3-main-alt tr.alt {
  background-color: #f5f7f8
}
.w3-tx-up {
  text-transform: uppercase
}
.w3-button-new {
  background-color: #ffffff;
  background-image: url("../graphics/shadedBgL.png");
  background-position: center bottom;
  background-repeat: repeat-x;
  border: 2px solid #a5b7c0;
  color: #698796;
  padding: 10px 5px 6px 5px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px
}
.w3-button-new:hover {
  background-color: #a5b7c0;
  color: white;
  border: 2px solid white
}
.w3-button-new-alt {
  background-color: #a5b7c0;
  background-image: url("../graphics/shadedBgL.png");
  background-position: center bottom;
  background-repeat: repeat-x;
  color: white;
  border: 2px solid white;
  padding: 10px 20px 6px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px
}
.w3-button-new-alt:hover {
  background-color: #ffffff;
  border: 2px solid #a5b7c0;
  color: #4b515d
}
/*-- COLLAPSIBLE CONTENT ---------------------------------------------------*/
/*--------------------------------------------------------------------------*/
.collapsible {
  background-color: white;
  color: #888888;
  cursor: pointer;
  padding: 1px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 12px;
  letter-spacing: 1px;
}
.activeC,
.collapsible:hover {
  background-color: #dfe5e8
}
.collapsible:after {
  content: '\25BC'; /* ▽ Down */
  color: #9eb1bb;
  float: right;
  padding-right: 10px;
  font-size: 11px;
  padding-top: 2px;
}
.activeC:after {
  content: "\25B2"; /* △ Up */
  font-size: 12px;
  padding-top: 1px;
}
.contentC {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out
}

.close {
  background-color: #dfe5e8;
  color: #888888;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 12px;
  letter-spacing: 1.5px;
 }
.close:hover {
  background-color: #c4cfd4;
  color: #fff;

}

/*--------------------------------------------------------------------------*/
/* ▽ flexible box*/
.flex-container {
  display: flex;
  flex-wrap: nowrap;
  background-color: #ddd
}
.flex-content {
  background-color: #999;
  width: 100px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
  color: #000
}
/* ▽ text input section */
.textInput {
  background: #ffffff;
  color: #525865;
  border-radius: 4px;
  border: 1px solid #becbd2;
  box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.07);
  font-family: inherit;
  font-size: 1em;
  line-height: 1.45;
  outline: none;
  padding: 0.6em 1.45em 0.7em;
  -webkit-transition: .18s ease-out;
  -moz-transition: .18s ease-out;
  -o-transition: .18s ease-out;
  transition: .18s ease-out
}
.textInput:hover {
  box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.02)
}
.textInput:focus {
  color: #4b515d;
  border: 1px solid #B8B6B6;
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.01),0px 0px 8px rgba(0, 0, 0, 0.2)
}
.textInputAlt {
  background: #fff;
  color: #525865;
  border-radius: 4px;
  border: 1px solid #becbd2;
  box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.07);
  font-family: inherit;
  font-weight: bold;
  line-height: 1.25;
  outline: none;
  padding: 0.6em 1.2em;
  -webkit-transition: .18s ease-out;
  -moz-transition: .18s ease-out;
  -o-transition: .18s ease-out;
  transition: .18s ease-out
}
.textInput:hover {
  box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.02)
}
.textInput:focus {
  color: #4b515d;
  border: 1px solid #B8B6B6;
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0.01),0px 0px 8px rgba(0, 0, 0, 0.2)
}

/* ▽ vertical-align property between images and text */
img.top {
  vertical-align: text-top
}
img.bottom {
  vertical-align: text-bottom
}
img.baseline {
  vertical-align: baseline
}
img.sub {
  vertical-align: sub
}
img.sup {
  vertical-align: super
}
/* ▽ container for page content when using the w3-collapse class for responsive side nav */
.w3-main,
#main {
  transition: margin-left .4s
}
/* ▽ for nav buttons with direct page links / no dropdwon content */
.w3-sidenav {
  background-color: #435761;
  color: #c3cfd5;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 18px;
  padding-top: 4px;
  height: 45px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  letter-spacing: 1px
}
.w3-sidenav:hover {
  background-color: #3f515a;
  color: #fff;
  text-decoration: none
}
/* ▽ for nav buttons with dropdwon content */
.w3-collapse-sidenav {
  background-color: #435761;
  color: #c3cfd5;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 18px;
  padding-top: 4px;
  height: 45px;
  width: 100%;
  border: none;
  text-align: left;
  vertical-align: middle;
  outline: none;
  font-size: 16px;
  letter-spacing: 1px
}
.active,
.w3-collapse-sidenav:hover {
  background-color: #3f515a;
  color: #fff;
  text-decoration: none
}
.content-sidenav {
  padding: 0;
  display: none;
  overflow: hidden;
  background-color: #eee;
  color: #435761;
  font-size: 15px;
  text-decoration: none;
  text-align: left
}
.w3-collapse-sidenav:after {
  content: "▼";
  font-size: 8px;
  color: #f69e23;
  font-weight: bold;
  float: right
}
.active:after {
  content: "▲";
  font-size: 8px
}
.content-sidenav-button {
  width: 100%;
  border: none;
  display: inline-block;
  padding: 10px 16px;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap
}
.content-sidenav-button:hover {
  background-color: #fff
}

/* ▽ navigation / menu buttons  */
.button-nav {
  border: none;
  display: inline-block;
  padding: 18px 14px 13px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap!important
}
.button-nav:hover {
  color: #dfe5e8;
  background-color: #dfe5e8!important
}
/* ▽ adjusts to match dropdown button size */
.button-nav2 {
  padding: 17px 14px 14px;
}
.button-nav2:hover {
  color: #303e45;
  background-color: #dfe5e8
}
/* ▽ adjusts logo area to match size */
.button-nav3 {
  padding: 11px 25px 7px!important
}
.button-nav3:hover {
  color: #303e45;
  background-color: #dfe5e8!important
}
/* ▽ menu icon - hamburger */
.button-nav-ham {
  padding: 17px 22px 10px!important
}
.button-nav-ham:hover {
  color: #303e45;
  background-color: #dfe5e8!important
}

/*-- 11. MODAL ELEMENTS ------------------------------------------------------------*/
/* ▽ a dialog box/popup window that is displayed on top of the current page */
/* ▽ defines a container for a modal */
.w3-modal {
  z-index: 3;
  display: none;
  padding-top: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4)
}
/* ▽ defines the modal content */
.w3-modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 0;
  outline: 0;
  width: 600px
}
/* ▽ creates a responsive table */
.w3-responsive {
  display: block;
  overflow-x: auto
}

/*---------------------------------------------------------------------------*/
/* Messages.                                                                 */
/*---------------------------------------------------------------------------*/

/*----------------------------------*/
/* Used to indicate invalid fields. */

.fieldError,
input.fieldError,
.htmlEditorArea.fieldError {
background-color: rgba(255, 230, 230, 0.5);
color: #FF0000;
border: 1px double;
border-color: #D8000C;
}

.fieldError option {
background-color: #fff0f0;
color: #800000;
}

.htmlEditorArea.fieldError {
border: 1px solid;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}

.w3-errorMsg,
.w3-successMsg,
.w3-warningMsg, 
.alertMsg {
  border: 1px solid;
  margin: 10px auto;
  padding: 12px 12px 12px 45px;
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 20px;
  border-radius: 6px;
  font-weight: medium;
  font-size: 13px;
  letter-spacing: 0.4px;
  width: 100%;
  text-align: left;
}
/* For small screens */
@media (max-width: 768px) {
.w3-errorMsg,
.w3-successMsg,
.w3-warningMsg, 
.alertMsg {
   font-size: 10px;
  }
}

.w3-errorMsg ul,
.w3-successMsg ul,
.w3-warningMsg ul, 
.alertMsg ul{
  margin-bottom: 6px;
}

 .w3-errorMsg {
  color: #cc000a;
  background-color: #feebeb;
  background-image: url('/graphics/icons/error_2.svg');
}

.w3-successMsg {
  color: #41720d;
  background-color: #f3fce8;
  background-image: url('/graphics/icons/success_2.svg');
  
}
.w3-warningMsg {
  color: #cc7a00;
  background-color: #FEEFB3;
  background-image: url('/graphics/icons/warning_2.svg');
}

.alertMsg {
  color: #495f69;
  background-color: #eaeef0;
  background-image: url('/graphics/icons/note_2.svg');
  border-color: #a5b7c0;
}

/*.w3-errorMsg div,
.w3-successMsg div {
  padding: 6px .5em 0 25px
}
.alert {
  border-color: #ffc266;
  color: #cc7a00;
  letter-spacing: .06em;
  background-color: #FEEFB3;
  background-image: url('/graphics/icons/point.svg');
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 0px;
  padding-left: 60px;
 }
.warning-2 {
  border: 1px solid;
  background-repeat: no-repeat;
  background-position: 20px center;
  border-radius: .25em;
  font-weight: bold;
  text-align: left;
  border-color: #ffc266;
  color: #cc7a00;
  background-color: #FEEFB3;
  background-image: url('/graphics/icons/warning.svg');
  opacity: 1;
  transition: opacity 0.6s;
  padding: 8px .5em 8px 60px
}*/
/* ▽ used to resize message elements dynamically. CARRYOVER */
.w3-adjustWidth {
  width: 28em
}
/* ▽ used for dashboard important messages
.msg {
  border: 1px solid;
  margin-left: 40px;
  padding: 15px 20px 15px 90px;
  background-repeat: no-repeat;
  background-position: 20px center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  color: #9F6000;
  background-color: #FEEFB3;
  background-image: url('/graphics/icons/warning.svg');
  background-size: 40px 40px
}*/


/* ▽ text gradients */
.text-gray-blend {
  background: linear-gradient(173deg, rgba(131,131,131,0.9) 39%, rgba(182,182,182,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}
.text-blue-gray-blend {
  background: linear-gradient( 173deg,  rgba(63,82,90,1) 10%, rgba(150,171,182,1) 100% );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}
.text-orange-blue-blend {
  background-image: linear-gradient( 135deg, #FFCF71 10%, #2376DD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

/*----------------------------------*/
/*----- Footer Specific Element ----*/
/* ▽ sticky footer - used to keep footer at bottom */
/* https://css-tricks.com/couple-takes-sticky-footer/ */
.content-footer {
  min-height: calc(100vh - 160px)
}
.height-footer {
  height: 120px
}


/*****************************************************************************/
/* Common page styles.                                                       */
/*****************************************************************************/

/*---------------------------------------------------------------------------*/
/* General styles.                                                           */
/*---------------------------------------------------------------------------*/


a {
color: #6E868F;
text-decoration: none;
}
a:active,
a:focus {
outline:  none;
}
a:hover {
text-decoration: underline;
}
a img {
border-style: none;
}
body,
input,
option,
select,
textarea {
font-family: 'Lato', sans-serif;
font-size: 16px;
}

h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
td, th {
padding: 2px .2em;
}

/*---------------------------------------------------------------------------*/
/* Main content.                                                             */
/*---------------------------------------------------------------------------*/

#contentSection {
  min-height: 560px;
  }
  #mainWrapper {margin: 1ex auto 0px auto;}


/* Used with the TinyMCE control. Chat Settings */
/*---------------------------------------------------------------------------*/

.htmlEditorArea div {
border: 1px solid #6E868F;
margin: 1em;
}

.htmlEditorArea input,
.htmlEditorArea select,
.htmlEditorArea textarea  {
color: #000000;
}

.mceContentBody {
background-color: #ffffff;
background-image: none;
color: #000000;
}

/* Used to highlight check boxes and radio buttons. */

.fieldWrapper {
border: 1px solid transparent;
display: inline-block;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}

/*-- Paging navigation. Week Link Buttons -- DELETE Once Admin pages finally updated --*/
.goToHeader,
.goToNavigation {
  text-shadow: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: none
}
.goToHeader {
  color: #CCCCCC;
  font-size: 12px
}
.goToNavigation a {
  background-color: #9eb1bb;
  margin: 6px;
  text-align: center;
  line-height: 35px;
  font-size: 12px;
  border-radius: 50%;
  width: 3.1em;
  border: 1px solid #9eb1bb
}
.goToNavigation a,
.goToNavigation a:active,
.goToNavigation a:visited {
  color: #ffffff
}
.goToNavigation a:hover {
  background-color: #fff;
  color: #435761;
  background-image: url("../graphics/shadedBgL.png");
  background-position: center bottom;
  background-repeat: repeat-x;
  border: 1px solid #9eb1bb
}
.goToSeparator {
  display: none
}




/*************************************/
/*-- W3 Class Elements ---------------/

*-- 3. CARD / SHADOW ELEMENTS -----------------------------------------------------*/
.w3-card,
.w3-card-2, .w3-card-2-hover:hover  {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
}
.w3-card-4,
.w3-card-4-hover:hover {
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)
}
.w3-shadow-nav {
  box-shadow: 5px 5px 5px #ccc
}
/* <-shadow - bottom of header section*/
/*-- 4. RESPONSIVE ELEMENTS --------------------------------------------------------*/
/* ▽ responsive image */
.w3-image {
  max-width: 100%;
  height: auto
}
img {
  vertical-align: middle
}
a {
  color: inherit
}

/* ▽ column container for any HTML content*/
.w3-col, .w3-half, .w3-third, .w3-twothird, .w3-threequarter, .w3-quarter {float: left; width: 100%}
/* ▽ padding for column containers */
.w3-row-padding,
.w3-row-padding>.w3-half,
.w3-row-padding>.w3-third,
.w3-row-padding>.w3-twothird,
.w3-row-padding>.w3-threequarter,
.w3-row-padding>.w3-quarter,
.w3-row-padding>.w3-col {
  padding: 0 18px
}
/* ▽ 's1 - s12' responsive sizes for small screens */
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
/* ▽ 'm1 - m12' responsive sizes for medium screens*/
@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}
/* ▽ 'l1 - l12' responsive sizes for large screens */
@media (min-width:993px)
{.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
/* ▽ 'rest' occupies rest of column width */
/* ▽ 'stretch' removes right and left margins *//* ▽ 'auto' container for responsive size centered content */
.w3-rest{overflow:hidden}.w3-stretch{margin-left:-16px;margin-right:-16px}.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}
@media (max-width:1205px){.w3-auto{max-width:95%}}
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.w3-hide-medium{display:none!important}}
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}


/* ▽ responsive text */
@media screen and (min-width: 701px){.w3-rwd-xxlarge{font-size:34px}.w3-rwd-2822,.w3-rwd-2820{font-size:28px}.w3-rwd-xlarge{font-size:24px}.w3-rwd-2218{font-size:22px}.w3-rwd-2016{font-size:20px}.w3-rwd-1816{font-size:18px}.w3-rwd-1614,.w3-rwd-1612,.w3-rwd-1610{font-size:16px}.w3-rwd-1510{font-size:15px}.w3-rwd-1412,.w3-rwd-1410{font-size:14px}.w3-rwd-small,.w3-rwd-1210{font-size:12px}
.title-reg-rwd {font-size:20px}
}
@media screen and (max-width: 700px){.w3-rwd-xxlarge{font-size:26px}.w3-rwd-2822{font-size:22px}.w3-rwd-xlarge,.w3-rwd-2820{font-size:20px}.w3-rwd-2218{font-size:18px}.w3-rwd-2016,.w3-rwd-1816{font-size:16px}.w3-rwd-1614{font-size:14px}.w3-rwd-1412,.w3-rwd-1612{font-size:12px}.w3-rwd-1610,.w3-rwd-1510,.w3-rwd-1410,.w3-rwd-1210{font-size:10px}.w3-rwd-small{font-size:8px}
.title-reg-rwd {font-size:14px}
}

/* ▽ sidebar navigation options -> https://www.w3schools.com/w3css/w3css_sidebar.asp */
.w3-sidebar {
  height: 100%!important;
  width: 250px;
  position: fixed!important;
  z-index: 1;
  overflow: auto
}



/* -- 5. LAYOUT ELEMENTS--------------------------------------------------*/
/* ▽ 'cell-row' container for layout columns (cells) */
.w3-cell-row:before,
.w3-cell-row:after,
.w3-clear:after,
.w3-clear:before,
.w3-bar:before,
.w3-bar:after {
  content: "";
  display: table;
  clear: both
}
/* ▽ 'cell-row' container for layout columns (cells) */
.w3-cell-row {
  display: table;
  width: 100%
}
.w3-cell {
  display: table-cell
}
/* ▽ 'cell-top, -middle, -bottom' aligns content of a column (cell)*/
.w3-cell-top {
  vertical-align: top
}
.w3-cell-middle {
  vertical-align: middle
}
.w3-cell-bottom {
  vertical-align: bottom
}
/*-- 6. DISPLAY ELEMENTS --------------------------------------------------------*/
.w3-top,
.w3-bottom {
  position: fixed;
  width: 100%;
  z-index: 1
}
.w3-top {
  top: 0
}
.w3-bottom {
  bottom: 0
}
.w3-display-topleft {
  position: absolute;
  left: 0;
  top: 0
}
.w3-display-topright {
  position: absolute;
  right: 0;
  top: 0
}
.w3-display-bottomleft {
  position: absolute;
  left: 0;
  bottom: 0
}
.w3-display-bottomright {
  position: absolute;
  right: 0;
  bottom: 0
}
.w3-display-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%)
}
.w3-display-left {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%,-50%);
  -ms-transform: translate(-0%,-50%)
}
.w3-display-right {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%,-50%);
  -ms-transform: translate(0%,-50%)
}
.w3-display-topmiddle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%,0%);
  -ms-transform: translate(-50%,0%)
}
.w3-display-bottommiddle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0%);
  -ms-transform: translate(-50%,0%)
}
.w3-display-container:hover .w3-display-hover {
  display: block
}
.w3-display-container:hover span.w3-display-hover {
  display: inline-block
}
.w3-display-hover {
  display: none
}
.w3-display-position {
  position: absolute
}
.w3-left {
  float: left!important
}
.w3-right {
  float: right!important
}
/* ▽ hidden content*/
.w3-hide {
  display: none!important
}
.w3-show-block,
.w3-show {
  display: block!important
}
.w3-show-inline-block {
  display: inline-block!important
}
/* -- 7. BAR & NAVIGATION ELEMENTS --------------------------------------------------*/
/* ▽ 'bar' styles an horizontal bar */
/* ▽ 'bar-item' defines the container elements, provides correct spacing, padding, and positioning */
/* ▽ 'bar-block' used to style a vertical bar */
.w3-bar {
  width: 100%;
  overflow: hidden
}
.w3-center .w3-bar {
  display: inline-block;
  width: auto
}
.w3-bar .w3-bar-item {
  padding: 8px 16px;
  float: left;
  width: auto;
  border: none;
  display: block;
  outline: 0
}
.w3-bar .w3-dropdown-hover,
.w3-bar .w3-dropdown-click {
  position: static;
  float: left
}
.w3-bar .w3-button {
  white-space: normal
}
.w3-bar-block .w3-bar-item {
  width: 100%;
  display: block;
  padding: 8px 16px;
  text-align: left;
  border: none;
  white-space: normal;
  float: none;
  outline: 0
}
.w3-bar-block.w3-center .w3-bar-item {
  text-align: center
}
.w3-block {
  display: block;
  width: 100%
}
.w3-bar-block .w3-dropdown-hover,
.w3-bar-block .w3-dropdown-click {
  width: 100%
}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,
.w3-bar-block .w3-dropdown-click .w3-dropdown-content {
  min-width: 100%
}
.w3-bar-block .w3-dropdown-hover .w3-button,
.w3-bar-block .w3-dropdown-click .w3-button {
  width: 100%;
  text-align: left;
  padding: 8px 16px
}

/*-- 8. DROPDOWN ELEMENTS --------------------------------------------------------*/

/* tooltip options -> https://www.w3schools.com/css/css_tooltip.asp */
/* ▽ 'tooltip' tooltip element  / ▽ 'text' tooltip text */
.w3-tooltip,
.w3-display-container {
  position: relative
}
.w3-tooltip .w3-text {
  display: none
}
.w3-tooltip:hover .w3-text {
  display: inline-block
}

.w3-dropdown-click,
.w3-dropdown-hover {
  position: relative;
  display: inline-block;
  cursor: pointer
}
.w3-dropdown-hover:hover .w3-dropdown-content {
  display: block
}
.w3-dropdown-click:hover {
  background-color: #ccc;
  color: #000
}
.w3-dropdown-hover:hover > .w3-button:first-child,
.w3-dropdown-click:hover > .w3-button:first-child {
  background-color: #dfe5e8;
  color: #000
}
.w3-dropdown-content {
  cursor: auto;
  color: #333;
  background-color: #fff;
  display: none;
  position: absolute;
  min-width: 200px;
  margin: 0;
  padding: 0;
  z-index: 1
}
/*-- 9. BUTTON ELEMENTS --------------------------------------------------------*/
/* button options -> https://www.w3schools.com/w3css/w3css_buttons.asp */
/* ▽ btn = shadow hover effect // ▽ button = gray hover effect */
.w3-btn,
.w3-button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap
}
.w3-btn:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  text-decoration: none
}
.w3-button:hover {
  background-color: #dfe5e8!important
}
.w3-btn,
.w3-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.w3-disabled,
.w3-btn:disabled,
.w3-button:disabled {
  cursor: not-allowed;
  opacity: 0.3
}
.w3-disabled *,
:disabled * {
  pointer-events: none
}
.w3-btn.w3-disabled:hover,
.w3-btn:disabled:hover {
  box-shadow: none
}
.w3-hover-none:hover {
  box-shadow: none!important
}
/* ▽ used to define a circular button */
.w3-circle {
  border-radius: 50%
}
/* ▽ creates ripple effect */
.w3-ripple:active {
  opacity: 0.5
}
.w3-ripple {
  transition: opacity 0s
}
/* ▽ userLogin button  */
.w3-button-login {
  color: white;
  padding: 12px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%
}
.w3-button-login:hover {
  opacity: 0.8
}

/*-- 10. INPUT ELEMENTS ------------------------------------------------------------*/
/* -> https://www.w3schools.com/w3css/w3css_input.asp */
.w3-input {
  padding: 8px;
  display: block;
  border: none;
  border-bottom: 1px solid #ccc;
  width: 100%
}
.w3-select {
  padding: 9px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc
}
/* < list select options */
.w3-check,
.w3-radio {
  width: 20px;
  height: 20px;
  vertical-align: middle
}
/*-- 1. CONTAINER ELEMENTS ---------------------------------------------------*/
/* ▽ 'container' adds 16px left and right padding' */
/* ▽ 'panel' container with 16px left and right padding and 16px top and bottom margin */
.w3-container,.w3-panel{padding:0.01em 16px}
.w3-panel{margin-top:16px;margin-bottom:28px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}

.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}

/* ▽ 'badge' creates circular badge / 'tag' creates a rectangular tag/label */
.w3-badge{border-radius:50%}
/* ▽ list settings */
.w3-ul{list-style-type:none;padding:0;margin:0}
.w3-ul li{padding:8px 16px}
.w3-ul li:last-child{border-bottom:none}
.w3-ul-alt{list-style-type:none;padding:0;margin:0}
.w3-ul-alt li{padding:0px 0px}
.w3-ul-alt li:last-child{border-bottom:none}
/*-- 2. TABLE ELEMENTS --------------------------------------------------------*/
/* ▽ 'table' container for HTML table | ▽ 'table-all' combines table, bordered, striped, border classes */
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}
.w3-table-all{border:1px solid #ccc}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
/* ▽ 'bordered' adds a border around a table / ▽ 'striped' adds zebra-stripes to a table */
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}
.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}
.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
/* ▽ 'hoverable' adds gray background color to table rows when you mouse over them */
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}
.w3-centered tr th,.w3-centered tr td{text-align:center}
/* ▽ round classes */
.w3-round-sm{border-radius:4px}
.w3-round-sm-l{border-radius:4px 0px 0px 4px}
.w3-round-sm-r{border-radius:0px 4px 4px 0px}
.w3-round-sm-t{border-radius:4px 4px 0px 0px}
.w3-round-sm-t-l{border-radius:4px 0px 0px 0px}
.w3-round-sm-t-r{border-radius:0px 4px 0px 0px}
.w3-round-sm-b{border-radius:0px 0px 4px 4px}
.w3-round-sm-b-l{border-radius:0px 0px 0px 4px}
.w3-round-sm-b-r{border-radius:0px 0px 4px 0px}
.w3-round{border-radius:8px}
.w3-round-medium{border-radius:10px}
.w3-round-large{border-radius:15px}
.w3-round-xlarge{border-radius:20px}
.w3-round-xxlarge{border-radius:32px}
.w3-round-l{border-radius:8px 0px 0px 8px}
.w3-round-r{border-radius:0px 8px 8px 0px}
.w3-round-top{border-radius:8px 8px 0px 0px}
.w3-round-top-l{border-radius:8px 0px 0px 0px}
.w3-round-top-r{border-radius:0px 8px 0px 0px}
.w3-round-bottom{border-radius:0px 0px 8px 8px}
.w3-round-bottom-l{border-radius:0px 0px 0px 8px}
.w3-round-bottom-r{border-radius:0px 0px 8px 0px}

/*-- 12. FONT & TEXT ELEMENTS -------------------------------------------------------------*/
/* ▽ font size */
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}
.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}
.w3-opacity-min{opacity:0.75}
.w3-micro{font-size:8px!important}
.w3-tiny{font-size:10px!important}
.w3-small{font-size:12px!important}
.w3-nav{font-size:14px!important}
.w3-medium{font-size:15px!important}
.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}
.w3-xxlarge{font-size:36px!important}
.w3-xxxlarge{font-size:48px!important}
.w3-jumbo{font-size:64px!important}
/* ▽ text align */
.w3-left-align{text-align:left!important}
.w3-right-align{text-align:right!important}
.w3-justify{text-align:justify!important}
.w3-center{text-align:center!important}
.w3-text-middle{vertical-align:middle}
/* ▽ text alterations */
.w3-wide-1{letter-spacing:1px}
.w3-wide-2{letter-spacing:2px}
.w3-wide-3{letter-spacing:3px}
.w3-wide-4{letter-spacing:4px}
/* ▽ text colors */
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-gray-d,.w3-hover-text-gray-d:hover{color:#ddd!important}
.w3-text-gray-c,.w3-hover-text-gray-c:hover{color:#ccc!important}
.w3-text-gray-9,.w3-hover-text-gray-9:hover{color:#999!important}
.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-gray-6,.w3-hover-text-gray-6:hover{color:#666!important}
.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#4d4d4d!important}
.w3-text-gray-3,.w3-hover-text-gray-3:hover{color:#333!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-blue-gray,.w3-hover-text-blue-gray:hover{color:#698796!important}
.w3-text-t5orange,.w3-hover-text-t5orange:hover{color:#f5930a!important}
.w3-text-burnt-orange,.w3-hover-text-burnt-orange:hover{color:#b36800!important}
.w3-text-t5blue,.w3-hover-text-t5blue:hover{color:#3399ff!important}
.w3-text-bg-l5,.w3-hover-text-bg-l5:hover{color:#f5f7f8!important}
.w3-text-bg-l4,.w3-hover-text-bg-l4:hover{color:#dfe5e8!important}
.w3-text-bg-l3,.w3-hover-text-bg-l3:hover{color:#becbd2!important}
.w3-text-bg-l2,.w3-hover-text-bg-l2:hover{color:#9eb1bb!important}
.w3-text-bg-l1,.w3-hover-text-bg-l1:hover{color:#7d97a5!important}
.w3-text-bg-d1,.w3-hover-text-bg-d1:hover{color:#57707d!important}
.w3-text-bg-d2,.w3-hover-text-bg-d2:hover{color:#4d636f!important}
.w3-text-bg-d3,.w3-hover-text-bg-d3:hover{color:#435761!important}
.w3-text-bg-d4,.w3-hover-text-bg-d4:hover{color:#3a4b53!important}
.w3-text-bg-d5,.w3-hover-text-bg-d5:hover{color:#303e45!important}
/*-- 14. EFFECT ELEMENTS -------------------------------------------------------------*/
/* ▽ creates overlay effect */
.w3-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2
}

/* ▽ transparency effect */
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}
.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}

/* ▽ grayscale effect */
.w3-grayscale-max,.w3-hover-grayscale:hover{filter:grayscale(100%)}
.w3-grayscale{filter:grayscale(75%)}
.w3-grayscale-min{filter:grayscale(50%)}/* ▽ sepia filter effect */
.w3-sepia{filter:sepia(75%)}.w3-sepia-max,.w3-hover-sepia:hover{filter:sepia(100%)}
.w3-sepia-min{filter:sepia(50%)}

/*-- 15. BACKGROUND COLOR ELEMENTS ----------------------------------------------------*/
.w3-blue-gray,.w3-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.w3-orange,.w3-hover-orange:hover{background-color:#ff9800!important}
.w3-white,.w3-hover-white:hover{background-color:#fff!important}
.w3-black,.w3-hover-black:hover{background-color:#000!important}
.w3-gray,.w3-hover-gray:hover{background-color:#9e9e9e!important}
.w3-light-gray,.w3-hover-light-gray:hover{background-color:#f1f1f1!important}
.w3-dark-gray,.w3-hover-dark-gray:hover{background-color:#616161!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-bg-l5,.w3-hover-bg-l5:hover{background-color:#f5f7f8!important}
.w3-bg-l4,.w3-hover-bg-l4:hover{background-color:#dfe5e8!important}
.w3-bg-l3,.w3-hover-bg-l3:hover{background-color:#becbd2!important}
.w3-bg-l2,.w3-hover-bg-l2:hover{background-color:#9eb1bb!important}
.w3-bg-l1,.w3-hover-bg-l1:hover{background-color:#7d97a5!important}
.w3-bg-d1,.w3-hover-bg-d1:hover{background-color:#57707d!important}
.w3-bg-d2,.w3-hover-bg-d2:hover{background-color:#4d636f!important}
.w3-bg-d3,.w3-hover-bg-d3:hover{background-color:#435761!important}
.w3-bg-d4,.w3-hover-bg-d4:hover{background-color:#3a4b53!important}
.w3-bg-d5,.w3-hover-bg-d5:hover{background-color:#303e45!important}

/*-- 16. COLOR THEME  ----------------------------------------------------------------*/
/* Layout-> https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_theme_blue-grey */
/* ▽ blue-gray themes */
.theme-l5{color:#000 !important;background-color:#f5f7f8 !important}
.theme-l4{color:#000 !important;background-color:#dfe5e8 !important}
.theme-l3{color:#000 !important;background-color:#becbd2 !important}
.theme-l2{color:#000 !important;background-color:#9eb1bb !important}
.theme-l1{color:#fff !important;background-color:#7d97a5 !important}
.theme-d1{color:#fff !important;background-color:#57707d !important}
.theme-d2{color:#fff !important;background-color:#4d636f !important}
.theme-d3{color:#fff !important;background-color:#435761 !important}
.theme-d4{color:#fff !important;background-color:#3a4b53 !important}
.theme-d5{color:#fff !important;background-color:#303e45 !important}
.theme-light{color:#000 !important;background-color:#f5f7f8 !important}
.theme-dark{color:#fff !important;background-color:#303e45 !important}
.theme-action{color:#fff !important;background-color:#303e45 !important}
.theme{color:#fff !important;background-color:#607d8b !important}
.text-theme{color:#607d8b !important}
.border-theme{border-color:#607d8b !important}
.hover-theme:hover{color:#fff !important;background-color:#607d8b !important}
.hover-text-theme:hover{color:#607d8b !important}
.hover-border-theme:hover{border-color:#607d8b !important}

/*=== 17. BORDER ELEMENTS =============================================================*/
.w3-border-0{border:0}.w3-border{border:1px solid #ddd}.w3-border-top{border-top:1px solid #ddd}.w3-border-bottom{border-bottom:1px solid #ddd}.w3-border-left{border-left:1px solid #ddd}.w3-border-right{border-right:1px solid #ddd}
.w3-border-lt{border:1px solid #efefef}.w3-border-lt-top{border-top:1px solid #efefef}.w3-border-lt-bottom{border-bottom:1px solid #efefef}.w3-border-lt-left{border-left:1px solid #efefef}.w3-border-lt-right{border-right:1px solid #efefef}
.w3-border-bg-top{border-top:1px solid #becbd2}.w3-border-bg-bottom{border-bottom:1px solid #becbd2}
/*-- border colors --*/
.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}
.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}
.w3-border-gray,.w3-hover-border-gray:hover{border-color:#9e9e9e!important}
.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.w3-border-dark-gray,.w3-hover-border-dark-gray:hover{border-color:#616161!important}
.w3-border-blue-gray,.w3-hover-border-blue-gray:hover{border-color:#607d8b!important}
.w3-topbar{border-top:6px solid #57707d!important}
.w3-bottombar{border-bottom:6px solid #57707d!important}
.w3-leftbar{border-left:6px solid #57707d!important}
.w3-rightbar{border-right:6px solid #57707d!important}
.w3-bottombar-bg{border-bottom:4px solid #becbd2!important}
.w3-topbar-bg{border-top:4px solid #becbd2!important}

/*=== 18. PADDING & MARGIN ELEMENTS ====================================================*/
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:28px!important}.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}



	/* ▽ animates element from top, left, right, bottom */
  .w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
  .w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
  .w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
  .w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}



/*---------------------------------------------------------------------------*/
/*  ARCHIVE - Original Site Styling  Delete once sure it doesn't affect site */
/*---------------------------------------------------------------------------*/



/*  Original Site - Tool Tips Styling                                        */
/*---------------------------------------------------------------------------*/
/*
#tooltip {
position: relative;
display: inline-block;
}
#tooltip .tooltiptext {
visibility: hidden;
width: 110px;
background-color: #ffffff;
color: #ccc;
font-size: 11px;
font-family: 'Lato', sans-serif;
text-align: center;
border-radius: 6px;
padding: 4px 0;
position: absolute;
z-index: 1;
top: 115%;
left: 50%;
margin-left: -55px;
}
#tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #4B5B61 transparent;
}
#tooltip:hover .tooltiptext {
visibility: visible;
}
*/

/* Main table styles. */
/*---------------------------------------------------------------------------*/

table.main {
background-color: #F1F1F1;
font-size: 14px;
color: #384042;
empty-cells: show;
text-shadow: none;
}

table.main1 {
background-color: #F1F1F1;
font-size: 14px;
color: #384042;
empty-cells: show;
text-shadow: none;
}

table.main2 {
background-color: #F1F1F1;
border-radius: 6px 6px 0px 0px;
font-size: 14px;
color: #384042;
empty-cells: show;
text-shadow: none;
}

table.main tr.header {
background-color: #435257;
color: #FFFFFF;
}

table.main tr.header th {
background-image: url("../graphics/highlightBg.png");
background-position: left top;
background-repeat: repeat-x;
}
table.main tr.subHeader {
background-color: #CCCCCC;
}
table.main tr.subHeader th
{
background-image: url("../graphics/shadedBg.png");
background-position: left bottom;
background-repeat: repeat-x;
border-radius: 0px 0px 6px 6px;
line-height: 15px;
}
table.main tr.subHeader a,
table.main tr.subHeader a:active,
table.main tr.subHeader a:hover,
table.main tr.subHeader a:visited {
color: #6E868F;
}
table.main tr.bottomEdge td,
table.main tr.bottomEdge th {
border-bottom: 1px solid #5F6B6F;
}
table.main tr.topEdge td,
table.main tr.topEdge th {
border-top: 1px solid #5F6B6F;
}
table.main tr.bottomEdge table td,
table.main tr.bottomEdge table th {
border: 0px none;
}
table.main tr.alt {
background-color: #EAEDEE;
}

table.main td,
table.main th {
padding-left: .25em;
padding-right: .25em;
}

/* Add padding to first and last columns. */

/*table.main td:first-child,
table.main th:first-child {
padding-left: 1em;
}
table.main td:last-child,
table.main th:last-child {
padding-right: 1em;
}
table.main table td:first-child,
table.main table th:first-child {
padding-left: .25em;
}
table.main table td:last-child,
table.main table th:last-child {
padding-right: .25em;
}
*/
/* Prevent text wrap. */
/* 
table.main tr.singleLine td,
table.main tr.singleLine th {
white-space: nowrap;
}
*/
/* For displaying small text in tables. */
/*
table.main td.small {
line-height: 1em;
}
table.main th.small {
line-height: 1.25em;
}
*/

/* For the standings page. */
/*
table.main tr.header.afc {
background-color: #ae1a1d;
}
table.main tr.header.nfc {
background-color: #007198;
}
table.main tr.playoffsBreak td {
border-bottom: 3px double #000000;
}
*/

/* Used to fix the table width. */
/* 
table.main.fixed {
width: 40em;
}
table.main td.freeForm {
padding: 1em;
}
*/