<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: GothamNarrow;
    src: url('../fonts/GothamNarrow-Light.ttf');
}
@font-face {
    font-family: GothamNarrow;
    src: url('../fonts/GothamNarrow-Medium.ttf');
    font-weight: bold;
}

body {
    background: no-repeat center center fixed;
    background-image: url('../images/main.jpg');
    background-size: cover;
    -moz-transition: background .7s linear;
    -webkit-transition: background .7s linear;
    transition: background .7s linear;
}

/* identity column */

#identity {
    position: fixed;
    margin: 0 auto;
    left: 0;
    top: 0;
    width: 20%;
    height: 100vh;
    background: white;
}
#logo {
    margin: 10px;
    width: 70%
}
@media all and (min-width: 1025px) {
    #identity {
        margin-left: 0;
        width: 205px;
    }
}
@media all and (max-width: 525px) {
    #identity {
        margin-left: 0;
        width: 105px;
    }
}

/* main content */

#dropList {
    position: absolute;
    left: 20%;
    background: #B0E0DE;
    width: 205px;
    margin: 0 auto;
    opacity: .9;
    top: 0;
}
@media all and (min-width: 1025px) {
    #dropList {
        margin-left: 0;
        left: 205px;
    }
}
@media all and (max-width: 525px) {
    #dropList {
        margin-left: 0;
        left: 105px;
    }
}

/* subject heading */
#arrow {
    height: 15px;
    position: absolute;
    left: 80%;
    top: 1em;
}
#switch {
    background-color: #42A9A4;
}
#switch:hover {
    cursor: pointer;
    background: #F7D943;
}
.heading {
    padding: 10px;
    text-align: left;
    font-family: GothamNarrow;
    font-size: 15px;
}
.heading:hover {
    cursor: pointer;
    background: #F7D943;
}

.subHeading {
    display: none;
    background-color: #96D6D3;
    padding: 10px;
    text-align: left;
    font-family: GothamNarrow;
    font-size: 15px;
}
.subHeading:hover {
    cursor: default;
}

/* all avaliable links */

.linkList {
    display: none;
    list-style-type: none;
}
.link {
    padding: 4px;
    font-size: 14px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.heading&gt;a {
    color: black;
}
a {
    text-decoration: none;
    color: #6D6E71;
}
a:hover {
    color:#3A3A3C;
}

/* navigation */

.nav {
    width: 205px;
    padding: 0;
    margin: 0;
    border: none;
    background: #96D6D3;
}

.nav:focus {
    outline:0;
}

</pre></body></html>