﻿/* Style sheet for Public Master */

a:focus {
    background-color: darkolivegreen;
    color: mintcream;
}

.inputerror {
    font-weight: bold; 
    color: black;
}

fieldset.BlueBox, div.BlueBox {
        position:relative;
        box-sizing: border-box;
        max-width: 100em;
        border: solid black 2px;
        border-radius: 5px;
        padding: 5px;
        background-color: dodgerblue;
        border-collapse: separate;
        border-spacing: 0;
}

fieldset.BlueBox legend, div.BlueBox legend {
        background-color: black;
        font-weight: bold;
        color: mintcream;
        padding: 3px;
        margin-top: 1em;
    }

ul.BlueBox {
    list-style: none;
    margin: 0 auto;

}
        ul.BlueBox li {
            display: flex;
            flex-wrap: wrap;
        }

            ul.BlueBox li label {
                flex: 1 0 15em;
                margin: 1px;
            }

label.hiddenlabel {
    height: 1px;
    visibility: hidden;
}


fieldset.BlueBox li input, div.BlueBox li input {
    flex: 1 1 25em;
    margin: 1px;
}

    .fb-like {display:inline;
     }

h2 {
    padding: 0.5em 0.5em 0.25em 0;
    font-size: 150%;
    font-weight:bold;
    color: black;
}

h3 {
    padding: 0.5em 0.25em 0.25em 0;
    font-size: 125%;
    font-weight: bold;
    clear:both;
}

p {
    padding: 0.25em 0;
}


ul {
    list-style: circle;
    list-style-position: inside;
}
    ul ul {
        margin-left: 2em;
        list-style-type: disc;
    }

table.subtle td {
    border: dotted 1px darkslategrey;
    padding:2px;
    border-collapse: collapse;
}
table.subtle th {
    border: dotted 1px darkslategrey;
    padding:2px;
    border-collapse: collapse;
    font-weight: bold;
    background-color: darkseagreen;
}

img.picture {
    width: 450px;
    border-radius: 10px;
    padding: 6px;
    box-sizing: border-box;
    max-width: 100%;
    float: left;
}

img.icon {
    padding: 3px;
    display: inline;
}

.LoginBox {
    margin:2px;
    border-color:silver;
}

#content1div {
    box-sizing:content-box;
    position: relative;
    margin: auto;
    clear: both;
}

input.stdbutton {
    background-color: darkolivegreen;
    border-width: 1px;
    border-color: darkslategray;
    color: mintcream;
    margin: 0.25em;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.5em;
    font-size: 100%;
    min-width: 33%;
    min-height: 30px;
}

    input.stdbutton:hover, input.stdbutton:focus {
        background-color: mintcream;
        color: darkolivegreen;
    }

.validationbox {
    position: fixed;
    background-color: yellow;
    z-index: 1;
    width: 0;
    height: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 10px 10px 5px darkslategrey;
    display: none;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
}

.toggler2:checked + .validationbox {
    display:block;
    height: auto;
    width: 80%;
    opacity: 1;
    border-radius: 0.5em;
    padding: 6px;
    border: 1px solid black;
}

    .toggler2 {
        display: none;
    }
    article p {
        line-height: 1.5
    }
.optparent {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.optpanel {
    flex: 0 1 40%;
    border: 2px solid darkgreen;
    border-radius: 2em;
    margin: 0.5em 0.5em 0 0;
    background-color: mintcream;
    max-width: 100%;
    min-width: 18em;
}

    .optpanel ul {
        list-style-position: outside;
        padding: 1em 2em;
    }

        .optpanel ul li {
            margin: 0.5em;
        }
    .optpanel h3 {
        font-weight: bold;
        font-size: 125%;
        margin: 0.5em 2em;
    }
    .optpanel td {
        padding: 0.25em;
        border: 0;
    }

    .optpanel tr td:last-of-type {
        vertical-align: middle;
        border-left: 1px dotted darkseagreen;
    }

    .optpanel tr:nth-of-type(odd) > td {
        background-color: lightgrey;
    }

    .optpanel table {
        margin: 1em 0.5em;
        border-collapse: collapse;
    }

    .optpanel caption {
        font-weight: bold;
        font-size: 125%;
        margin: 0.5em 2em;
    }
.note {
    font-size: 80%;
    font-style: italic;
}

.quote {
    font-style: italic;
}
 