@charset "UTF-8";
/* CSS Document */

/* ———————————————————————— General Setup ———————————————————————— */
* {
  font-variant-ligatures: none;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
	
}
body {
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-family: "Raleway", sans-serif;
  color: #444444;
  font-size: 14px;
  letter-spacing: 1.5px;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

.clearAll {
	clear: both;	
}

.alignCenter {
  left: 50%;
  -ms-transform: translateX(-50%); /* IE 9 */
  -webkit-transform: translateX(-50%); /* Safari */
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
}
button {
  text-align: center;
  color: white;
  background-color: #2196F3;
  cursor: pointer;
  border: 0px;
  border-left: none;
  /* Prevent double borders */
  border-radius: 5px;
}
button:hover {
  background: #999999;
}

/* ———————————————————————— Bottom Flag Items ———————————————————————— */
.flagPosition {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #dddddd;
  background-color: #1c4585;
  height: 28px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 6px;
  position: fixed;
  z-index: 100;
  bottom: 0px;
}
.donateBtn {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 12px;
  width: auto;
  height: 19px;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  float: left;
}

.menuBigScreen {
	display: block !important
}

.menuSmallScreen {
	display: none !important
}



/* ———————————————————————— Landing Page Items ———————————————————————— */
/* Create a Parallax Effect */
.bgimg-G1, .bgimg-2, .bgimg-3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.logoContainer {
  width: 100%;
  height: 100%;
}
.logoContainer img {
  width: 500px; /* 800px */
  height: auto;
}
.logoBox {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
}
.scrollBox {
  display: block;
}

/* ———————————————————————— Search Box Items ———————————————————————— */
.searchBox {
  width: 100%;
  height: auto;
  color: #f1f1f1;
  font-size: 12px;
  padding-top: 20px;
  padding-left: 40px;
  padding-bottom: 20px;
  padding-right: 40px;
  text-align: center;
  background-color: #1C4585;
  position: relative;
  margin: 0px;
  /*z-index: 100;*/
}
.subSearch {
  width: 100%;
  height: auto;
  background-color: #EEEEEE;
  padding-left: 20px;
  padding-right: 20px;
  overflow-y: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  /*z-index: 50;*/
}

.searchBoxText {
    color: #D8D8D8;
    font-size: 24px;
    font-weight: bold;
    line-height: 120%;
}

/* Style the search field */
#searchField {
  font-size: 15px;
  height: 25px;
  width: 20%;
  background: #f1f1f1;
  border: 0px;
  border-left: none; /* Prevent double borders */
}
#searchItem {
  font-size: 15px;
  height: 25px;
  width: 25%;
  background: #f1f1f1;
  border: 0px;
  border-left: none; /* Prevent double borders */
}
/* Make Search placeholder different color */ ::placeholder {
  color: #CCCCCC;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #CCCCCC;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #CCCCCC;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}

/* ———————————————————————— TOOL TIP FOR BACK BUTTON ———————————————————————— */
.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #2196F3;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 150%;
}
/*.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}*/
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ———————————————————————— Text and Fonts ———————————————————————— */
.blueType {
  color: #1C4585;
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 10px;
  letter-spacing: 1.1px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 2px;
}

/* ———————————————————————— Button and Links ———————————————————————— */
a:link, a:visited, .jslink {
  color: #004387;
  cursor: pointer;
  text-decoration: none;
}
.jslink {
  min-width: 97.5%;
  padding: 10px 0px;
  margin-top: -4px;
}
a:hover, a:active, .jslink:hover {
  opacity: 6;
  color: #004387;
}
a.crossButton:link, a.crossButton:visited {
  right: 14px;
  font-size: 28px;
  font-weight: 600;
  color: #CCCCCC;
  position: absolute;
  text-decoration: none;
  cursor: pointer;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
a.crossButton:hover, a.crossButton:active {
  color: #2196F3;
}

/* ———————————————————————— Pages and Boxes ———————————————————————— */

.accountBox {
    width: 100%;
    height: auto;
    padding-left: 20%;
    padding-right: 20%;
    overflow-y: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 85;
    background-color: #FFFFFF;
}

.col3 {
  width: 33.33%;
  float: left;
  padding-left: 10px;
  padding-right: 6px;
  padding-top: 6px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;
}
.col3 a:link, .col3 a:visited {
  color: #666666;
  cursor: pointer;
  text-decoration: none;
}
.col3 a:hover, .col3 a:active {
  color: #cccccc;
}
.w3-display-container {
  position: relative
}
.w3-display-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.w3-display-center {
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  text-align: center;
  z-index: 10;
}
.topListBox {
  width: 100%;
  height: 65px;
  background-color: #EEEEEE;
  padding-left: 20px;
  padding-right: 20px;
  overflow-y: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  position: absolute;
  z-index: 10;
}
.playerBox {
  height: auto;
  padding-top: 50px;
  position: relative;
  /*z-index: -10;*/
}
.sportsBox {
  font-size: 11px;
  width: 100%;
  height: auto;
  margin: 0px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
  background-color: #FFFFFF;
}

/* ———————————————————————— Footer Items ———————————————————————— */
.footerBox {
  width: 100%;
  height: auto;
  padding-top: 150px;
  padding-bottom: 100px;
  text-align: center;
  color: #fff;
  background-color: #1c4585;
  position: relative;
  /*z-index: 0;*/
}

/* ———————————————————————— Site Map Items ———————————————————————— */
.pageSiteMap {
  width: 100%;
  height: auto;
  /*float:left;*/
  padding-top: 85px;
  padding-bottom: 100px;
  padding-left: 15%;
  padding-right: 15%;
  color: #666666;
  background-color: #000000;
  text-align: center;
  position: relative;
  /*z-index: 90;*/
}
.top-button {
  width: 250px;
  height: auto;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: #FFF;
  background-color: #BBBBBB;
  text-align: center;
  white-space: nowrap;
  /*position: absolute;*/
}


/* ———————————————————————— MEDIA QUERY 1200 ———————————————————————— */
@media only screen and (max-width: 1200px) {
	
.accountBox {
    padding-left: 5%;
    padding-right: 5%;
}
	
.menuBigScreen {
	display: none !important
}

.menuSmallScreen {
	display: block !important
}
  #searchField {
    width: 30%;
  }
  #searchItem {
    width: 30%;
  }
}

/* ———————————————————————— MEDIA QUERY 992 ———————————————————————— */
@media (max-width:992px) and (min-width:601px) {
  .logoContainer img {
    width: 400px; /* 600px */
    height: auto;
  }
  .pageSiteMap {
    padding-left: 8%;
    padding-right: 8%;
  }
  .col3 {
    width: 33.33%;
    float: left;
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 25px;
    text-align: center;
  }

}

/* ———————————————————————— MEDIA QUERY 600 ———————————————————————— */
@media only screen and (max-width: 600px) {
  .logoContainer img {
    width: 350px; /* 375px */
    height: auto;
  }
  .accountBox {
    padding-left: 5%;
    padding-right: 5%;
}
  .col3 {
    float: none;
    width: 100%;
  }
  #searchField {
    width: 90%;
    margin-bottom: 5px;
  }
  #searchItem {
    width: 80%;
  }
  .hide-small {
    display: none !important
  }
  .pageSiteMap {
    padding-left: 15%;
    padding-right: 15%;
  }
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-width: 1024px) {
  .bgimg-G1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
  }
}