/*HTML*/
html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

/*Nav Bar*/
div.nb {
    position: fixed;
    background-color: #2471A3;
    width: 100%;
    height: 48px;
    margin: 0px;
    padding: 2px;
    overflow: visible;
    z-index: 1000;
}

.nb table {
    border-spacing: 0;
    border-collapse: collapse;
}

.nb table td {
    padding: 0;
}

.tdl {
    padding: 2px;
}

.nbe {
    margin: 0;
    padding: 0px;
}

.nbel {
    margin: 0;
    padding: 0px;
    height: 40px;
    transition: height 0.1s ease, padding-right 0.1s ease;
}

.nbel:hover {
    padding-right: 1px;
    height: 39.5px;
}

.nbb {
    height: 45px;
    width: auto;
    padding-bottom: 2px;
    background-color: #2471A3;
    color: white;
    text-decoration: solid;
    border: none;
    border-left: 1px solid #5499C7;
    border-right: 1px solid #5499C7;
    transition: 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nbb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-color: white;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 0.7s ease;
    z-index: -1;
}

.nbb:hover::before {
    transform: translate(-20%, -20%) rotate(20deg);
}

.nbb:hover {
    color: #2471A3;
}

.nbbd-w {
    position: relative;
    display: inline-block;
}

.nbbd {
    height: 45px;
    width: auto;
    padding-bottom: 2px;
    background-color: #2471A3;
    color: white;
    text-decoration: solid;
    border: none;
    border-left: 1px solid #5499C7;
    border-right: 1px solid #5499C7;
    transition: 1s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nbbd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600%;
    height: 600%;
    background-color: white;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 1s ease;
    z-index: -1;
}

.nbbd:hover::before {
    transform: translate(-60%, -60%) rotate(20deg);
}

.nbbd:hover {
    color: #2471A3;
}

.dpi {
    font-family: sans-serif;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 140px;
    background-color: #2471A3;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dpi::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    background: transparent;
    display: none;
}

.nbbd-w:hover .dpi {
    opacity: 1;
    pointer-events: auto;
}

.dpi a {
    padding: 12px 16px;
    width: auto;
    height: auto;
    background-color: #2471A3;
    text-align: left;
    display: block;
    text-decoration: none;
    color: white;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
    border: none;
    transition: 1s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dpi a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600%;
    height: 600%;
    background-color: #5499C7;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 1s ease;
    z-index: -1;
}

.dpi a:hover::before {
    transform: translate(-60%, -60%) rotate(20deg);
}

.dpi a:hover {
    color: white;
}

.acc-i {
    position: absolute;
    right: 35px;
    padding: 2px;
    will-change: filter;
    filter: brightness(1) invert(0) sepia(0) hue-rotate(0deg) saturate(100%);
    transition: filter 0.2s ease;
}

.acc-i:hover {
    filter: brightness(0.5) invert(0.5) sepia(1) hue-rotate(185deg) saturate(500%);
}

.acc-t {
    position: fixed;
    right: 20px;
    margin-top: 32px;
}

/*Homepage*/
.vc {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hv {
    width: 100%;
    display: block;
    filter: brightness(0.4);
}

.hvt {
    text-align: center;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    color: white;
}

.hvt button {
    pointer-events: auto;
}

.hpb {
    height: 45px;
    width: 160px;
    padding-bottom: 2px;
    background-color: white;
    color: #2471A3;
    text-decoration: solid;
    border: 2px solid #5499C7;
    transition: 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: sans-serif;
}

.hpb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-color: #2471A3;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 0.7s ease;
    z-index: -1;
}

.hpb:hover::before {
    transform: translate(-20%, -20%) rotate(20deg);
}

.hpb:hover {
    color: white;
}

.sbctl {
    width: 44%;
    height: auto;
    border: 2px solid black;
    float: left;
    margin: 2%;
    text-align: center;
}

.sbctr {
    width: 44%;
    height: auto;
    border: 2px solid black;
    float: right;
    margin: 2%;
    text-align: center;
}

.sbcf {
    width: 96%;
    height: auto;
    border: 2px solid black;
    float: right;
    margin: 2%;
    text-align: center;
}

div.usrg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div.usrgi {
    margin: 20px;
    border: 1px solid #ccc;
    width: 180px;
}

div.usrgi:hover {
    border: 1px solid #777;
}

div.usrgi img {
    width: 100%;
    height: auto;
}

div.usrgi div.usrgid {
    padding: 15px;
    text-align: center;
}

/*Fonts & Text Styling*/
.fa {
    font-family: Arial, Helvetica, sans-serif;
}

.fc {
    font-family: 'Courier New', Courier, monospace;
}

.fw {
    color: white;
}

.fs {
    font-family: sans-serif;
}

.ft {
    font-family: 'Times New Roman', Times, serif;
}

.fsxl {
    font-size: xx-large;
}

.fsml {
    font-size: large;
}

.fslr {
    font-size: larger;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
    margin-right: 20px;
}

.tl {
    text-align: left;
    margin-left: 20px;
}

/*Dividers*/
hr.da {
    border: 2px dashed black;
}

hr.do {
    border: 2px dotted black;
}

hr.r {
    border: 2px solid black;
}

hr.snd {
    border: 2px solid black;
    width: 25%;
}

hr.snds {
    border: 2px solid black;
    width: 14%;
}

hr.sndsda {
    border: 2px dashed black;
    width: 14%;
}

hr.sndlda {
    border: 2px dashed black;
    width: 70%;
}

hr.sndls {
    border: 2px solid black;
    width: 70%;
}

/*Return To Top Button*/

#rttb {
    height: 45px;
    width: 160px;
    background-color: white;
    color: #2471A3;
    text-decoration: solid;
    border: 2px solid #5499C7;
    transition: 0.5s;
    cursor: pointer;
    position: fixed;
    overflow: hidden;
    font-family: sans-serif;
    display: none;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    padding: 4px;
}

#rttb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-color: #2471A3;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 0.7s ease;
    z-index: -1;
}

#rttb:hover::before {
    transform: translate(-20%, -20%) rotate(20deg);
}

#rttb:hover {
    color: white;
}

/*Footer*/
div.ftr {
    text-align: center;
    position: relative;
    background-color: #2471A3;
    width: 100%;
    height: 140px;
    margin: 0px;
    padding: 2px;
    overflow: visible;
    color: white;
}

.ini {
    width: 20px;   
    height: auto;  
    vertical-align: middle; 
    margin: 0 5px; 
}

/*Content Alignment*/
.cal {
    float: left;
    margin: 10px;
}

.car {
    float: right;
    margin: 10px;
}

/*Article Elements*/

/*Article Header*/
.ath {
    background-color: #A9CCE3;
    width: 100%;
    padding-top: 20px;
}

.athr {
    border: 2px solid #5499C7;
    margin-bottom: 15px;
}

.atht {
    color: white;
    text-align: center;
    font-size: 48px;
}

.athtdiv {
    width: 85%;
    display: block;
    justify-self: center;
    padding-bottom: 10px;
}

.atst {
    color: white;
    margin-left: 10px;
    display: flex;
}

/*Article Content*/
.anb {
    height: 30px;
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2px;
    background-color: white;
    color: #2471A3;
    text-decoration: solid;
    border: 2px solid #5499C7;
    transition: 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: sans-serif;
}

.anb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-color: #2471A3;
    transform: translate(-100%, -100%) rotate(20deg);
    transition: transform 0.7s ease;
    z-index: -1;
}

.anb:hover::before {
    transform: translate(-20%, -20%) rotate(20deg);
}

.anb:hover {
    color: white;
}

.atcdiv {
    background-color: #F4F6F7;
    width: 65%;
    display: block;
    justify-self: center;
    padding: 10px;
}

.atcdiv p::selection {
    background-color: #A9CCE3;
}

.atcdiv h1::selection {
    background-color: #5499C7
}

hr.sbct {
    margin-left: 0;
    margin-right: auto;
    display: block;
    border: 2px solid black;
    width: 25%;
}

div.ahigi {
    margin: 20px;
    border: 1px solid #777;
    width: 180px;
    background-color: white;
    transition: transform 0.4s;
}

div.ahigi:hover {
    border: 1px solid black;
    transform: scale(1.2);
}

div.ahigi img {
    width: 100%;
    height: auto;
}

div.ahigi div.ahigd {
    border-top: 1px solid #777;
    padding: 15px;
    text-align: center;
}

.img-e input {
    display: none;
}

.fs-aimg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: zoom-out;
}

.img-e input:checked ~ .fs-aimg {
    display: flex;
    animation: fsol-i 0.35s ease forwards;
}

.fs-aimg img {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    animation: fsimg-i 0.35s ease forwards;
}

@keyframes fsol-i {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fsimg-i {
    from { transform: scale(0.15); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.img-e input:checked ~ div.ahigi {
    transform: none !important;
    pointer-events: none;
}

.c-fsimg {
    color: white;
    margin-top: 10px;
    font-family: sans-serif;
}

.imge-i {
    cursor: zoom-in;
}

/*Table Alignment*/
.a-t {
    margin-top: 40px;
    margin-bottom: 40px;
    border-spacing: 0;
    border-collapse: collapse;
}

.bt {
    border-top: 1.5px solid #777;
}

.bb {
    border-bottom: 1.5px solid #777;
}

.bl {
    border-left: 1.5px solid #777;
}

.br {
    border-right: 1.5px solid #777;
}

.itmp {
    padding: 10px;
}