/*
    Created on : Aug 23, 2024, 8:52:33 AM
    Author     : bruce
*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    padding:18px;
    font-size: 1em;
}
header, footer{
    display: block;
    width:100%;
    background-color: gainsboro;
    margin:13px 0;
    padding:13px;
}
section{
    padding:0 12px;
}
a{
    color:blue;
}
a:hover{
    color:black;
    text-decoration: none;
    /*font-weight: bold;*/
}
nav{
    padding: 0 12px 8px 12px;
}
nav ul li{
    display: inline-block;
    margin: 0 4px;
}
nav ul li a{
    margin:0 2px;
}
fieldset legend{
    color: darkred;
    padding:0 4px;
}

table{
    padding:8px;
}
th{
    border-bottom: thin solid black;
}
td{
    border-bottom: thin solid gray;
    padding:3px 5px;
}
.icon{
    width:16px;
    height: auto;
    margin:0 3px 0 7px;
}
.inlineblock{
    display: inline-block;
}
.taR{
    text-align: right;
}
.taL{
    text-align: left;
}
.taC{
    text-align: center;
}
.warning, .alert, .note{
    padding: 8px;
}
.warning{
    border-radius: 8px;
    color:white;
    font-weight: bold;
    background-color:red;
    width: fit-content;
    max-width: 390px;
    margin:8px;
}
.alert{
    border: black thin solid;
    border-radius: 8px;
    color:brown;
    width: fit-content;
    max-width: 390px;
    margin:8px;
}
.note{
    border: black thin solid;
    border-radius: 8px;
    color:black;
    width: fit-content;
    max-width: 390px;
    margin:8px;
}

.boldtext{
    font-weight: bold;
}

.maxwidthfifty{
    max-width: 50%;
}