@import url("menu.css");
@import url("home.css");
@import url("xtra.css");

html, body {
    /* Normalize browser defaults */
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #fff;
    color: #444;
    font: 100% Oxygen, "Segoe UI", Helvetica, Arial, Ubuntu, sans-serif;
}

a:link, a:visited {
    /* Hyperlink defintions */
    color: #1373ce;
    text-decoration: none;
}

a:active, a:hover {
    color: #909090;
}

/* Base button style */
.my-button {
    display: inline-block; /* Allows setting width/height and padding, but keeps it inline */
    padding: 7px 14px; /* Vertical and horizontal padding */
    font-size: 14px; /* Text size */
    font-weight: 600; /* Semi-bold text */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline from links */
    cursor: pointer; /* Indicate it's clickable */
    border: 2px solid #00408579; /* Border color */
    border-radius: 5px; /* Slightly rounded corners */
    background-color: #00408579; /* Background color */
    color: #ffffff; /* Text color */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for interactions */
    -webkit-appearance: none; /* For cross-browser consistency on buttons */
    -moz-appearance: none;
    appearance: none;
}

/* Hover state */
.my-button:hover {
    background-color: #0056b3; /* Darker background on hover */
    border-color: #0056b3; /* Darker border on hover */
    color: #ffffff; /* Keep text white */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow on hover */
}

/* Active (clicked) state */
.my-button:active {
    background-color: #004085; /* Even darker background when active */
    border-color: #004085; /* Even darker border when active */
    color: #ffffff; /* Keep text white */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) inset; /* Inset shadow for a pressed effect */
    transform: translateY(1px); /* Slightly move down for a pressed effect */
}

/* Focus state (for keyboard navigation accessibility) */
.my-button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Custom focus ring */
}

/* Optional: Disabled state */
.my-button:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Example of a secondary button style */
.my-button.secondary {
    background-color: #6C757D6F;
    border-color: #6C757D6F;
}

.my-button.secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.my-button.secondary:active {
    background-color: #4e555b;
    border-color: #4e555b;
}

.my-button.secondary:focus {
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.5);
}

#globe {
    /* WRAPPER SURROUNDING ALL ELEMENTS */
    width: 1002px; /* Fits most 1024x768 in fullscreen */
    margin: 0 auto;
    padding: 0;
    background: url(/images/shadow.png) repeat-y;
}

#header h1 {
    background-color: #1b3752;
    width: 928px;
    margin: 0 auto;
    z-index: 4; /* So IE has "layout" */
    font-size: 10px;
}

#header a {
    /* CSS Text-to-Image replacement */
    background-image: url("/images/logo2.png");
    background-repeat: no-repeat;
    width: 926px;
    height: 0 !important;
    padding: 235px 0 0 0; /* Pushes the div down to reveal the image */
    margin: 0 auto;
    display: block;
    overflow: hidden; /* We don't want the text to show */
}

.horiz {
    /* Horizontal-rule rules */
    width: 800px;
    margin: auto;
}

.horiz blockquote {
    /* Why so many wrappers? Examine. */
    width: 800px;
    float: left;
    margin: 0 auto;
    padding: 0;
}

hr {
    height: 1px; /* Normalize look for Opera */
    color: #999;
    background: #999;
    border: 0;
    width: 100%;
    margin: 15px auto 0 auto;
}

#footer {
    text-align: center;
    width: 928px;
    font-size: .9em;
    margin: 10px auto;
    border-bottom: 2px solid #ccc;
}

#footer p {
    line-height: 18px;
}

#socialshare {
    border: none;
    width: 600px;
}

#text {
    line-height: 135%;
}

#text {
    width: 850px;
    margin: 0 auto;
}

#text h2 {
    text-align: center;
    margin: 1em;
    line-height: 1em;
}

#text h2 img {
    vertical-align: middle;
    padding-bottom: 4px;
}

table {
    margin: 0 auto;
    border: 1px solid #ccc;
    border-collapse: collapse;
}

th {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background: #f2fbff;
}

td {
    padding: 10px;
    border-width: 0;
}

/* GLOBAL RE-USABLES */
.clear {
    clear: both;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

#googlead {
    margin: 0 auto;
}

#logomobile {
    visibility: hidden;
    display: none;
}

@media screen and (max-width: 900px) {
    html {
        overflow-x: auto !important;
    }

    body {
        overflow-x: auto !important;
    }

    #globe {
        width: 100%;
        background: none;
    }

    .horiz, .horiz blockquote {
        width: 80%;
    }

    #header h1 {
        width: 100%;
        margin: 0 auto;
        font-size: 2em;
        clear: both;
    }

    #header a {
        background: none;
        width: 100%;
        height: 2.1em !important;
        padding: 10px;
        margin: 0 auto;
        display: block;
        overflow: auto;
    }

    #footer {
        width: 100%;
    }

    #text {
        width: 80%;
    }

    #logomobile {
          visibility: visible;
          display: inline;
          max-width: 80%;
          height: auto;
      }

      #mobilenoshow {
          visibility: hidden;
          display: none;
      }

}

@media screen and (max-width: 600px) {
    #socialshare {
        display: none;
    }

    #logomobile {
        visibility: visible;
        display: inline;
        max-width: 80%;
        height: auto;
    }

    #mobilenoshow {
        visibility: hidden;
        display: none;
    }
}

