* {
    font-family: 'Assistant', sans-serif;
}

a {
    color: rgb(0, 102, 255);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}

@viewport {
    min-zoom: 1;
}

.banner {
    width: 100%;
    overflow: hidden;

    border: 10px solid white;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
}

.banner img {
    display: block;
}

blockquote {
    font-style: italic;
}
blockquote::before {
    /*content: '\201C';*/
}
blockquote::after {
    /*content: '\201D';*/
}

.box {
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
}   

#SiteBackground {
    background: url("/rsrc/images/tksnowbig.png");
    background-repeat: repeat;
    z-index: -1;
    position: fixed;
    height: 100vh;
    width: 100vw;
}

#SiteTop {
}

#SiteLogo {
    max-width: 100%;
    padding: 20px 0px;
}

#SiteContentFrame {
    min-height: 100vh;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#SiteMainBody {
    position: relative; top: 0px;
    clear: both;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    padding: 15px;
    overflow: auto;
}

#SiteFooter {
    padding: 15px;
}

#SiteNavigationBar {
    margin-top: 5px;
    margin-bottom: 10px;
    width: 100%;
    background: black; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(darkslategray, black); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(darkslategray, black); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(darkslategray, black); /* For Firefox 3.6 to 15 */
    background: linear-gradient(darkslategray, black); /* Standard syntax */
}

/* For mobile phones: */
#SiteNavigationBar a {
    display: none;/*table-cell;*/
    text-align: center;
    /*float:left;*/
    width: 100%;
    color: white;
    padding: 15px;
    /*margin: 2px;*/
    text-decoration: none;
    overflow: auto;

    margin-top: 0;
    margin-bottom: 0;
}
#SiteNavigationBar a#NavBarSwitch {
    display: none;
}

@media only screen and (max-width: 599px) {
    #SiteNavigationBar a#NavBarSwitch {
        display: block;
    }
    #SiteNavigationBar:hover a {
        display: block;
    }
}
#SiteNavigationBar a:hover {
    background: white; /* For browsers that do not support gradients */
    background: -webkit-radial-gradient(white, rgba(0,0,0,0), rgba(0,0,0,0)); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(white, rgba(0,0,0,0), rgba(0,0,0,0)); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(white, rgba(0,0,0,0), rgba(0,0,0,0)); /* For Firefox 3.6 to 15 */
    background: radial-gradient(white, rgba(0,0,0,0), rgba(0,0,0,0)); /* Standard syntax */
    color: black;
}

@media only screen and (min-width: 600px) {
    #SiteNavigationBar {
        display: table;
        table-layout: fixed;
        border-radius: 3px;
    }
    #SiteNavigationBar a {
        display: table-cell;
        float: none;
        margin: 0;
    }
    #SiteNavigationBar a#NavBarSwitch {
        display: none;
    }
}

/******************Button Properties*********************/
.btn, input[type='submit'] {
    font-size: medium;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    color: white;
    padding: 10px;
    background: black; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(darkslategray, black); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(darkslategray, black); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(darkslategray, black); /* For Firefox 3.6 to 15 */
    background: linear-gradient(darkslategray, black); /* Standard syntax */

    margin: 2px;
    border: none;
    border-radius: 5px
}
.btn:hover {
    color: white;
    background-color: Black;
    text-decoration: none;
}

.btn-block {
    display: block;
    width: auto;
}