@charset "utf-8";

body {
    margin: 0px;
    padding: 0px;
    font-size: 62.5%;
}

#container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#videos_13x, #mobile_bgrnd {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover; 
}

#mobile_bgrnd {
    background-image: url('./images/mobile-bgrnd.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    display: none;
}

#header {
    width: 16%;
    height: auto;
    margin: 3% 0 0 3%;
    text-align: center;
    background: none;
}

#logo_13x {
    width: 80%;
    margin: 0 5% 0 15%;
}

#logo_13x img {
    width: 100%;
    height: auto;
}

#header hr {
    border-width: .3em 0 0 0;
    border-color: #ffffff;
    border-style: solid;
    width: 100%;
    margin: 3em 0 3.5em 0;
}

#header p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.5em;
    color: #ffffff;
}

#header a {
    color: #06a6d2;
    font-weight: bold;
    text-decoration: none;
}

#header a:hover {
    text-decoration: underline;
}

.print_only {
    display: none;
}

/*  769px - 1280px max width ------------------------------------------------ */
@media only screen and (max-width:1280px) {
    
    #container {
        overflow: scroll;
    }

    #videos_13x {
        display: none;
    }
    
    #mobile_bgrnd {
        display: block;
    }
    
    #header {
        width: 80%;
        margin: 10% auto 0 auto;
    }
    
    #logo_13x {
        width: 25%;
        margin: 0 auto;
    }
    
}

/*  601px - 768px max width ------------------------------------------------- */
@media only screen and (max-width:768px) {
    
    #header {
        width: 80%;
        margin: 15% auto 0 auto;
    }
    
}

/*  <=600 max width --------------------------------------------------------- */
@media only screen and (max-width:600px) {
    
    #header {
        margin: 5% auto 0 auto;
    }
    
    #logo_13x {
        width: 45%;
    }
    
    #header hr {
        margin: 5% 0 6.5% 0;
    }

}

/*  Print ------------------------------------------------------------------- */
@media only print {
    
    #container {
        width: 50%;
        height: auto;
        overflow: auto;
        margin: 0 auto;
    }
    
    #videos_13x, #mobile_bgrnd {
        display: none;
    }
    
    #header {
        width: 100%;
        height: auto;
        margin: 0;
        text-align: center;
        background: none;
    }
    
    #logo_13x {
        width: 80%;
        margin: 0 5% 0 15%;
    }
    
    #logo_13x img {
        width: 100%;
        height: auto;
    }
    
    #header hr {
        display: none;
    }
    
    #header p {
        font-family: 'Trebuchet MS', sans-serif;
        font-size: 1.5em;
        color: #ffffff;
    }
    
    #header a {
        color: #017f7c;
        font-weight: bold;
        text-decoration: none;
    }
    
    #header a:hover {
        text-decoration: underline;
    }
    
    .print_only {
        display: inline;
    }
}

