﻿
body, html {
    font-family:Arial;
    height: 100%;
    margin:0px
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: firebrick;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
    display: block;
}



.bg {
  /* The image used */
  background-image: url("/images/teams/silverstickselite5.jpg"); /*url("/images/players.jpg");*/
  color:white;
  text-shadow:-1px -1px  14px #000,
                        1px -1px 14px #000,
                        -1px 1px 14px #000,
                        1px 1px 14px #000;
  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media only screen and (max-width: 850px) { /* Allow Login only on desktops*/
    #loginLink {
        display:none
    }
}

@media only screen and (max-width: 750px) {           
            #imgFooter {
                display:none
            }
            #FullNav {
                display:none
            }
        #mobileMenu {
            display:block
        }
        #footerLogo {
            display:none
        }
        #QuickLinks {
            display:none
        }
        #Charity {
            display:none
        }
        #LinkRow {
            display:block
        }
        #divHome {
            font-size:24pt;padding-left:25px;padding-top:35%
        }
    #mainLogo {
        height:95px
    }
 }

@media only screen and (min-width: 750px) {           
            #mobileMenu {
            display:none
        }
        #LinkRow {
        display:none
    }
    #divHome {
        font-size:34pt;padding-left:25px;padding-top:25%
    }
    #mainLogo {
        height:125px
    }
 }


/* Slide out menu */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 20px;
}

@media screen and (max-height: 750px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 24px;
  top: 15px;
  right: 35px;
  }
}

.GoldBackground {
    background-color:gold
}
.RedBackground {
    background-color:firebrick /*#e33333*/
}
.BlackBackground {
    background-color:black
}
.BlackText {
    color:black
}
.WhiteText {
    color:white
}

     .EmpyRow {
            height:3px
        }
        .Missing {
            border-color:red;
            background-color:beige
        }
        .HasValue {
            border-color:transparent;
            background-color:white
        }
             /* The Modal (background) */
    .modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      padding-top: 100px; /* Location of the box */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    /* Modal Content */
    .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border: 1px solid #888;
      width: 50%;
    }

    /* The Close Button */
    .close {
      color: #aaaaaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }