<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">table#t01 tr:nth-child(even) {
    background-color: #e6e6e6;
}

table#t01 tr:nth-child(odd) {
    background-color: #fff;
}

table#t01 th {
    background-color: #404040;
    color: white;
    text-align: left;
    padding: 6px;
}

table#t01 td {
    padding: 5px;
    text-align: left; 
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
    padding: 0.5rem; 
}

ol {
  padding: 0;
  margin-left: 1em;
}

.table{
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Style for box */
    .box {
  background: #fcf9f9;
  text-align: left;
  padding: 1rem;
  box-shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

.hide{
  display:none;  
}

.button {
    -moz-transition: background-color 0.25s ease-in-out;
    -webkit-transition: background-color 0.25s ease-in-out;
    -ms-transition: background-color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out;
    position: relative;
    display: inline-block;
    padding: 0.30em;
    background-color: transparent;
    border: 2px solid #2152BA;
    letter-spacing: 0.10em;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #2152BA;
    cursor: pointer;
    margin-top: 10px;
}

#scrollToTopButton {
        position: fixed;
        bottom: 40px;
        right: 40px;
        border-radius: 50%;
        cursor: pointer;
        background: #fff;
        padding: 0;
        border: 0;
        width: 60px;
        height: 60px;
        box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
        font-size: xx-large;
        outline: 0;
        visibility: hidden;
        transform: scale(0);
        opacity: 0;
        transition: 0.2s;
        }
        #scrollToTopButton.show {
        visibility: visible;
        transform: scale(1);
        opacity: 1;
        }

        i.fas.fa-search::before {
            padding: 4px; 
            margin-left: 4px; 
        }

        #scrollToTopButton {
            position: fixed;
            bottom: 40px;
            right: 40px;
            border-radius: 50%;
            cursor: pointer;
            background: #fff;
            padding: 0;
            border: 0;
            width: 60px;
            height: 60px;
            box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
            font-size: xx-large;
            outline: 0;
            visibility: hidden;
            transform: scale(0);
            opacity: 0;
            transition: 0.2s;
            z-index: 1;
        }

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