/*
    MAIN ELEMENT STYLES
*/
html, body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #222;
    color: #fff;
    margin:0;
    padding:0;
    height:100%;    
}

#container {
    min-height:100%;
    position:relative;
 }
 #body {
    padding:10px;
    padding-bottom:100px;   /* Height of the footer */
 }
 #footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:100px;   /* Height of the footer */
    background:#222;
 }

h2 {
    font-size: 30pt;
}
h3 {
    font-size: 20pt;
}
h4 {
    font-size: 16pt;
}
.hh4 {
    font-size: 16pt;
    font-weight: bold;
}

a {
    color: #008;
    text-decoration: none;
}
a.whitelink {
    color: #fff;
    text-decoration: none;
}
a.lightlink {
    color: #aaf;
    text-decoration: none;
}
a.lightlink2 {
    color: #66f;
    text-decoration: none;
}
a.darklink {
    color: rgb(4, 4, 114);
    text-decoration: none;
}
a.lightcurrentlink {
    color:#aaf;
    font-style:italic;
    font-weight:bold;
}
textarea {
    color: black;
    border-radius: 10px;
}









/*
    POSITIONING STYLES
*/
#usernamediv {
    position: fixed;
    top: 0;
    right: 0;
    border: 3px solid #008;
    padding: 5px;
    background-color: lightgrey;
    color: #333;
    border-radius: 5px;
}
div.generallistfilled {
    visibility: visible;
    position: fixed;
    top: 100;
    left: 100;   
    background-color: #000; 
    border-radius: 10px;
    z-index: 99;
}
div generallistunfilled {
    visibility: hidden;
    position: static;
}
div.departmentlistfilled {
    visibility: visible;
    position: fixed;
    top: 100;
    left: 100;   
    background-color: #000; 
    border-radius: 10px;
    z-index: 99;
}
div.departmentlistfilled2 {
    visibility: visible;
    position: fixed;
    top: 5%;
    left: 5%;   
    background-color: #000; 
    border-radius: 10px;
    z-index: 99;
    overflow-x: auto;
}
div.departmentlistunfilled {
    visibility: hidden;
    position: static;
}
div.newnotefilled {
    visibility: visible;
    position: fixed;
    top: 100;
    left: 100;   
    background-color: #000; 
    border-radius: 10px;
    z-index: 100;
}
div.newnoteunfilled {
    visibility: hidden;
    position: static;
}
div.unreadnotesfilled {
    visibility: visible;
    position: fixed;
    top: 100;
    left: 100;   
    background-color: #000; 
    border-radius: 10px;
    z-index: 100;
}
div.unreadnotesunfilled {
    visibility: hidden;
    position: static;
}
div.overlayvisible {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;   
    background-color: #ccc; 
    opacity: 0.5;
    z-index: 90;
    width: 100%;
    height: 100%;
}
div.overlayhidden {
    visibility: hidden;
    position: static;
}
div.loadingmessagehidden {
    visibility: hidden;
    position: static;
}
div.loadingmessagevisible {
    visibility: visible;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);    
    background-color: #000; 
    color: #fff;
    opacity: 1.0;
    z-index: 95;    
}
div.popupx {
    visibility: visible;
    position: fixed;
    top: 150;
    left: 150;   
    height: 50%;
    width: 50%;
    background-color: #ccc; 
    border-radius: 10px;
    color: #000;
    z-index: 100;
    text-align:center;
    vertical-align: center;
}








/*
    OVERRIDE STYLES - ALIGNMENT / MARGINS / PADDING
*/
.centeredblock {
    margin-left: auto;
    margin-right: auto;
}
.fullycenteredblock {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}
.centeredtext {
    text-align: center;
}
.leftedtext {
    text-align: left;
}
.rightedtext {
    text-align: right;
}
.valigntop {
    vertical-align: top;
}
.valignbottom {
    vertical-align: bottom;
}
.indent1 {
    margin-left: 50px;
}
.topmargin1 {
    margin-top: 10px;
}
.pad10 {
    padding: 10px;
}
.pad25 {
    padding: 25px;
}
.pad50 {
    padding: 50px;
}






/*
    OVERRIDE STYLES - ELEMENT WIDTHS
*/
.width30pct {
    width: 30%;
}
.width50pct {
    width: 50%;
}
.width70pct {
    width: 70%;
}
.width100pct {
    width: 100%;
}






/*
    OVERRIDE STYLES - VISIBILITY
*/
.hiddenobject {
    visibility: hidden;
}
.visibleobject {
    visibility: visible;
}
.collapsedobject {
    display: none;
}
.expandedobject {
    display: inline;
}






/*
    OVERRIDE STYLES - COLORS
*/
.disabledwhite {
    background-color: #fff;
    color: #000;
}






/*
    OVERRIDE STYLES - FONTS
*/
.font16pt {
    font-size: 16pt;
}

.fontbold {
    font-weight: bold;
}

.fontitalic {
    font-style: italic;
}

.fontlarger {
    font-size: larger;
}





/*
    STYLE TO HIDE ELEMENTS WHEN PRINTING
*/
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}







/*
    TABLE STYLES
*/
#tabletransparent {
    background-color: transparent;
}
#tabletransparent tbody tr:nth-child(even) td {
    background-color: transparent;
    padding: 0 5 0 0;
}
#tabletransparent tbody tr:nth-child(odd) td {
    background-color: transparent;
    padding: 0 5 0 0;
}
#tabletransparent tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}
#tabletransparent tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

.tableborder1 table {
    border-collapse: collapse;
    border: none;
}
.tableborder1 td {
    padding: 5px;
    vertical-align: top;
}
.tableborder1 thead td {
    vertical-align: bottom;
}
.tableborder1 thead tr:first-child td:first-child {
    border-top-left-radius: 10px;
}
.tableborder1 thead tr:first-child td:last-child {
    border-top-right-radius: 10px;
}
.tableborder1 thead tr td {
    background-color: #55f;
}
.tableborder1 thead tr:first-child td {
    background-color: #00a;
}
.tableborder1 thead tr:last-child td {
    background-color: #55f;
}
.tableborder1 thead tr:only-child td {
    background-color: #00a;
}
.tableborder1 tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.tableborder1 tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.tableborder1 tbody tr:nth-child(even) td {
    background-color: #999;
}
.tableborder1 tbody tr:nth-child(odd) td {
    background-color: #777;
}
.tableborder1 tbody tr:nth-child(even) td.priorityup {
    background-color: darkred;
}
.tableborder1 tbody tr:nth-child(odd) td.priorityup {
    background-color: darkred;
}
.tableborder1 tbody tr:nth-child(even) td.prioritydept {
    background-color: darkblue;
}
.tableborder1 tbody tr:nth-child(odd) td.prioritydept {
    background-color: darkblue;
}

.blacktext {
    color: black;
}
.vcentered {
    vertical-align: center;
}

.usep-darkblue {
    background-color: #00a;
}
.usep-lightblue {
    background-color: #55f;
}






/*
    OVERRIDE STYLES - ROUNDING EDGES
*/
.tlround {
    border-top-left-radius: 10px;
}
.trround {
    border-top-right-radius: 10px;
}
.blround {
    border-bottom-left-radius: 10px;
}
.brround {
    border-bottom-right-radius: 10px;
}
.tlnoround {
    border-top-left-radius: 0px !important;
}
.trnoround {
    border-top-right-radius: 0px !important;
}
.blnoround {
    border-bottom-left-radius: 0px !important;
}
.brnoround {
    border-bottom-right-radius: 0px !important;
}
.norounding {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}