﻿html, body {
    height: 100%;
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #CCCCCC;
    margin: 0;
    padding: 0 2em;
    text-align: left;
    color: #000000;
}

h1, h2, h3, p {
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
    overflow-wrap: break-word;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1em;
}

p {
    margin-top: 1em;
    font-size: 0.8em;
}

/* unvisited link */
a:link {
    color: black;
}

/* visited link 
a:visited {
    color: yellow;
}*/

/* mouse over link */
a:hover {
    color: white;
}

/* selected link */
a:active {
    color: yellow;
}

.container{
    padding: 2em 0;
}

.topinfo {
    display: flex;
    background: white;
    border: 1px solid #cccccc;
    padding: 1em;
}

.topinfo img {
    height: 4em;
}

.testcss table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    overflow-wrap: break-word;
}

    .testcss table tr:hover {
        background: #f95e16;
        color: #FFFFFF;
    }

.testcss th {
    padding: 0.5em 1em;
    text-align: left;
    border: 1px solid #000000;
    border-width: 0px 1px 0px 0px;
    border: none;
}

    .testcss th:last-child {
        border-width: 0px 0px 0px 0px;
    }

.testcss tr:nth-child(odd) {
    background-color: #e5e5e5;
}

.testcss tr:nth-child(even) {
    background-color: #fbfbfb;
}

.testcss td {
    vertical-align: middle;
    /*border: 1px solid #000000;
    border-width: 0px 1px 1px 0px;*/
    text-align: left;
    padding: 0.5em 1em;
    font-size: 0.8em;
    font-weight: normal;
}

.testcss tr:last-child td {
    border-width: 0px 1px 0px 0px;
}

.testcss tr td:last-child {
    border-width: 0px 0px 1px 0px;
}

.testcss tr:last-child td:last-child {
    border-width: 0px 0px 0px 0px;
}

.accordion {
    width: 100%;
}

    .accordion label {
        font-family: Arial, sans-serif;
        padding: 0.5em 1em;
        position: relative;
        display: block;
        /*height: 2em;*/
        cursor: pointer;
        line-height: 33px;
        font-size: 19px;
        background: #EFEFEF;
        border: 1px solid #CCC;
    }

        .accordion label:hover {
            background: #f95e16;
            color: #FFFFFF;
        }

        .accordion label:after {
            content: '\002B';
            font-weight: bold;
            float: right;
            margin-left: 5px;
        }

    .accordion input + label {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .accordion input:checked + label,
    .accordion input:checked + label:hover {
        background: #222b45;
        color: #FFFFFF;
        /*box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3), 0px 2px 2px rgba(0,0,0,0.1);*/
        content: "\2212";
    }

        .accordion input:checked + label:after {
            content: "\2212";
        }

    .accordion input {
        display: none;
    }

    .accordion .article {
        background: rgb(255, 255, 255);
        overflow: hidden;
        height: 0px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .accordion .article p {
            font-style: italic;
            color: #777;
            line-height: 23px;
            font-size: 14px;
            padding: 20px;
        }

    .accordion input:checked ~ .article {
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        .accordion input:checked ~ .article.ac-large {
            height: 100%;
        }

.dropdown {
    position: relative;
    display: inline-block;
    padding-left: 5em;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    left: 0px;
    background-color: white;
    transition: max-height 0.2s ease-out;
    font-size: 0.9em;
    padding: 1em;
    border: 1px solid black;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 6px 0px;
    display: block;
}

    .dropdown-content a:hover {
        background-color: lightblue;
    }
