<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --lapiz: #336699;
    --carolina: #86BBD8;
    --charcoal: #2F4858;
    --lightGreen: #9EE493;
    --nyanza: #DAF7DC;
    --ghostwhite: #f9f9f9;
}

/* Ensure no horizontal scrolling */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Base Typography */
p, h1, h2, h3, h4, h5, li {
    color: black;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.7rem;
}

p, ul, ol {
    font-size: 20px;
}

i {
    font-size: 17px;
}

/* Base Layout */
body {
    background-color: var(--carolina);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.heading {
    width: 100%;
    text-align: center;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

ul.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

li.nav-item {
    padding: 5px;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    white-space: nowrap;
}

/* Dropdown Styles */
li.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--ghostwhite);
    min-width: 160px;
    top: 100%;
    left: 0;
    overflow: visible;
    z-index: 10000;
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 20px;
}

.dropdown-content a:hover {
    background-color: var(--ghostwhite);
    box-shadow: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 10001;
}

/* Navigation Hover Effects */
li a:hover:not(#no-diffusion, #link) {
    background-color: var(--lightGreen);
    color: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 8px 10px var(--lightGreen);
}

/* Logo Styles */
.logo {
    width: 10vw;
    padding-left: 5px;
    padding-right: 10px;
    max-width: 200px;
    min-width: 150px;
}

/* Footer Styles */
footer {
    background-color: #333;
    padding-top: 0.5vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    margin-top: auto;
}

footer p {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 12px;
}

#footerInfo {
    text-align: center;
    font-size: 10px;
}

footer img#BlueskyLogo {
    max-width: 130px;
}

footer img#fpalogo {
    max-width: 110px;
}

footer img#NAFDILogo {
    max-width: 120px;
    margin-right: 20px;
}

/* Link Styles */
a {
    color: inherit;
    text-decoration: none;
}

#link {
    color: var(--black);
}

#link:hover {
    background-color: inherit;
    color: var(--ghostwhite);
}

/* Main Content Styles */
.text {
    margin: 5%;
    margin-top: 0;
    margin-bottom: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto;
}

.column {
    flex: 1;
    padding: 10px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image Styles */
#headerImg {
    width: 100%;
    max-height: 45vh;
}

#homepageBottomImg {
    width: 60%;
}

.picture-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: inline-block;
    background-color: white;
    width: 500px;
    align-items: center;
}

.picture-frame-vertical {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: inline-block;
    background-color: white;
    height: 500px;
    align-items: center;
}

.picture-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Diamond Border Styles */
.diamond-border {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    transform: rotate(45deg);
    margin-bottom: 10px;
}

.diamond-border img {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(-45deg);
    position: relative;
    z-index: 2;
}

.diamond-border:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    width: 900px;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide:first-child {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Additional Utility Classes */
.bulletPoint {
    list-style-type: square;
}

.subtext {
    text-align: center;
}

.subtext h3, .subtext p {
    margin: 5px 0;
}

#center {
    text-align: center;
}

/* Hide Scrollbars */
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Menu Icon */
.menu-icon {
    display: none;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .column {
        flex: 100%;
        max-width: none;
    }
}

@media screen and (max-width: 805px) {
    ul.navbar {
        justify-content: space-between;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 10px;
        color: white;
    }

    li.nav-item:not(.menu-icon):not(:first-child) {
        display: none;
        width: 100%;
        text-align: right;
    }

    .menu-icon.active ~ li.nav-item:not(.menu-icon):not(:first-child) {
        display: block;
    }

    .dropdown-content {
        position: static;
    }

    footer #footerInfo {
        margin-left: 33%;
    }

    footer img#BlueskyLogo,
    footer img#fpalogo,
    footer img#NAFDILogo {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .slideshow-container {
        height: auto;
    }

    .slide img {
        height: auto;
    }

    .prev, .next {
        font-size: 14px;
        padding: 12px;
    }

    .picture-frame {
        width: 100%;
        height: auto;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    }
}
</pre></body></html>