﻿/* Last modified on February 10, 2024 */

* {
    margin: 0;
    padding: 0;
}

html {
    /*background: #222;*/
}

body {
    width: 100%;
    margin: 0px auto 0;
    font: 14px/20px Helvetica, Arial, sans-serif;
    max-width: 1200px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

#main {
    width: 100%;
}

#header {
    width: 100%;
    margin: 0px auto; /*top-bottom left-right*/
}

#footer {
    width: 100%;
    margin: auto;
    clear: both;
}

/* Settings for the drop-down navigation bar. */

/* Add a white background color to the top navigation */
.topnav {
    background-color: white;
    overflow: hidden;
}

    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        display: block;
        color: black; /* This is the text color for the hyperlinks. */
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

/* Add an active class to highlight the current page */
.active {
    background-color: #4CAF50;
    color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Style the dropdown button to fit inside the topnav */
    /* This section controls the color of the main navbar text */
    .dropdown .dropbtn {
        font-size: 16px;
        font-weight: bold;
        border: none;
        outline: none;
        color: black;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

/* Style the dropdown content (hidden by default) */
.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;
}

    /* Style the links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555; 
    color: white;
}

/* Add a gray background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* When the screen is less than 650 pixels wide, hide all links, except for the */
/* first one ("Home"). Show the link that contains should open and close the */
/* topnav (.icon) */

@media screen and (max-width: 650px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user */
/* clicks on the icon. This class makes the topnav look good on small screens */
/* (display the links vertically instead of horizontally) */

@media screen and (max-width: 650px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }
}

.black {
 font-size: 16px;
 font-weight: bold;
 color: black;
}

/*Settings for the slideshow*/

#slideshow {
    padding: 0 20px 20px 20px;
}

.rslides /* This seems to be the auto slider. */ {
    margin: 0 auto 20px;
}

#slider2,
#slider3 {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0 auto;
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .rslides li {
        -webkit-backface-visibility: hidden;
        position: absolute;
        display: none;
        width: 100%;
        left: 0;
        top: 0;
    }

        .rslides li:first-child {
            position: relative;
            display: block;
            float: left;
        }

    .rslides img {
        display: block;
        height: auto;
        float: left;
        width: 100%;
        border: 0;
    }

/* End of settings for the slideshow */

p {
    font: 16px/24px "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*color: #fff;*/
}

/* Settings for six heading styles */

h1 {
    font: 40px/50px "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*color: #fff;*/
    font-weight: 400;
    margin-bottom: 20px;
}

h2 {
    /*color: #fff;*/
    font: 30px/35px "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin: 20px;
}

h3 {
    /*color: #fff;*/
    font: 20px/30px "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
}

.ul {
    text-decoration: underline;
}

p, h4, pre {
    text-align: left;
    max-width: 90%; /* 540px; */
    margin: 10px auto 20px;
    padding: 0 20px; /* The 0 is top and bottom; the 20 keeps responsive margins. */
}

hr {
    width: 90%;
    margin: auto;
}

#content {
    width: 95%;
    margin: 20px auto; /*top-bottom left-right*/
}

#content2 {
    width: 95%;
    margin: 20px auto; /*top-bottom left-right*/
}

table {
    width: 90%;
    margin: 10px auto;
    border: 5px solid black;
    background: #E1C493;
}

tr {
    text-align: left;
}

td {
    padding: 4px;
    border: 1px solid black;
    font-size: large;
}

.strong {
    font-weight: bold;
}

@media screen and (max-width: 300px) {
    h1 {
        font: 24px/50px "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .callbacks_nav {
        top: 47%;
    }
}

.center {
    margin: auto;
    width: 99%;
}

.left {
    text-align: left;
    font: 16px/22px Helvetica, Arial, sans-serif;
    margin-left: 10%;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    font-size: 15px;
    border: 5px solid white;
    border-radius: 10px;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: gray;
    font-family: inherit;
    margin: 0;
}

.gallery {
    text-align: center;
}

    .gallery img {
        width: 100%;
        height: auto;
    }

.table {
    display: table; /* Allow the centering to work */
    margin: 0 auto;
}

ul#horizontal-list {
    min-width: 696px;
    list-style: none;
    padding-top: 20px;
}

    ul#horizontal-list li {
        display: inline;
        font-size: large;
        padding: 15px 0 0 25px;
    }

/* Create a three-column list. */
.column {
    float: left;
    width: 28%;
    padding-left: 4%;
}

    .column a {
        padding-left: 5%;
        float: left;
    }

    .column img {
        padding-left: 5%;
        float: left;
    }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Printing black on a photo */
/* Container holding the image and the text */
.container {
    float: left;
    width: 25%;
    text-align: center;
    color: black;
}

.container3 {
    width:100%;
    ) #logo {
    width: 80px;
    height: auto;
}

/* Printing white on a photo */
/* Container holding the image and the text */
.container2 {
    position: relative;
    width: 100%;
    text-align: center;
    color: white;
}


.centered {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
}

.centered2 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

#boxedtext {

    margin: 20px auto; /*top-bottom left-right*/
    border: 2px solid black;
    box-shadow: 10px 10px 5px gray;
    color: black;
}

#boxedtext2 {
    width: 90%;
    border: 1px solid black;
    box-shadow: 10px 10px 5px gray;
    color: black;
}
