﻿
/*
.test - Selects all elements with class=test"    
 #test - Selects the element with id="test"   
 * - Selects all elements  
 element - body slects all <body> elements
 element,element div,p selects all <div>  and <p> elements      
 element element div p   selects all <p> elements inside <div> elements
:link a:link slects all unvisited link
:visited a:visited selects all visited links 
:active a:active selects all active link    
   
    Use clear Both to fit div below div  
 */

/*------------------------------------------------------------------------------
PAGE BODY
------------------------------------------------------------------------------*/

html {
    /*background-color: #CCCCCC;*/
    height: 100%;
    width: 99.0%;
    margin: auto;
    overflow: hidden; /* Hides scrollbar in IE */
    font-family: Verdana,Arial,sans-serif;
    font-size: 14px;
}

body {
    width: 100%;
    height: 100%;
    font-family: Verdana,Arial,sans-serif;
    line-height: normal;
    /*background-color: #f1f1f1;*/
}

form {
    width: 100%;
    height: 100%;
    margin: auto;
    border: 1px solid black;
    font-family: Verdana,Arial,sans-serif;
    font-size: 14px;
}

/* This is the header bar */
#header {
    clear: both;
    height: 14%;
    margin: auto; 
}

/* This is the footer bar */
#footer {
    clear: both;
    height: 3.0%;
    margin: auto;
    background-color: gainsboro;
    border-top: 1px solid black;
}

#divNavigation {
    background-color:#f1f1f1;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/*------------------------------------------------------------------------------
GENERAL LAYOUT
------------------------------------------------------------------------------*/

div.topbox, div.bottombox {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    background-color: white;
}

div.leftbox {
    width: 20%;
    float: left;
    /*background-color: #CCCC9A;*/
    /*background-color: gainsboro;
    border-right: 1px solid black;*/
    background-color: white;
    /*overflow: auto;*/
}

div.rightbox {
    width: 79.0%;
    float: left;
    background-color: white;
}

div.leftbox, div.rightbox {
    margin-top: 0;
    margin-bottom: 0;
    /*overflow: auto;*/
}

div.topbox {
    float: left;
    vertical-align: top;
    /*overflow: auto;*/
    clear: both;
    width: 100%;
}

div.bottombox {
    clear: both;
    overflow: auto;
    float: left;
    vertical-align: top;
    width: 100%;
}

div.gap {
    width: 100%;
    height: 15px;
    clear: both;
    float: left;
}


#divViewer {
    clear: both;
}

div.header {
    background-color:#f1f1f1;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.viewer {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    height: auto;
    width: 100%;
}


.hide /*Selects all elements with class=hide*/ {
    display: none;
}

.gridHyperLink {
    text-decoration: underline;
}

tr.header td {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    background: #FFFFFF;
    /*font-family: Arial, Verdana, sans-serif;*/
    font-weight: bold;
}

.disabledbutton {
    cursor: not-allowed;
    /*font-family: Arial,sans-serif, Verdana;*/
    font-weight: normal;
    background-color: lightgray;
    color: red;
    border: 1px solid lightgray;
    /* css3 implementation :) */
    /* rounded corner */
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.btnNav {
    /*background-color:#d8d4de;*/
    background-color: white;
    border: 1px solid black;
    color: black;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    /*min-height: 24px;*/
    line-height: 1.5;
    vertical-align: middle;
    font-size: 100%;
    /*font-weight: bold;*/
}

    .btnNav:hover, .btnNav:focus, .btnNav:active {
        background-color: black;
        border: 1px solid white;
        color: white;
        cursor: pointer;
    }

    .btnNav:disabled {
        background: #ccc;
        color: red;
        cursor: not-allowed;
    }

.btn {
    border: 1px solid Black;
    background-color: #768d87;
    background-color: gainsboro;
    color: black;
    line-height: 1.5;
    /*min-height: 24px;*/
    vertical-align: middle;
    /* css3 implementation :) */
    /* rounded corner */
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 100%;
}

    .btn:hover, .btn:focus, .btn:active {
        background-color: black;
        border: 1px solid white;
        color: white;
        cursor: pointer;
    }

    .btn:disabled {
        background: #ccc;
        color: red;
        cursor: not-allowed;
    }

.btnExit {
    text-overflow: initial;
    white-space: normal;
    text-wrap: normal;
    /*background-color: #8b181b;*/
    background-color: rgb(202,60,60);
    border: 1px solid black;
    color: white;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    /*min-height: 24px;*/
    line-height: 1.5;
    margin-bottom: 0px;
    vertical-align: middle;
    font-size: 100%;
}

    .btnExit:hover, .btnExit:focus, .btnExit:active {
        background-color: black;
        border: 1px solid white;
        color: white;
        cursor: pointer;
    }

.btnWrap {
    text-overflow: initial;
    cursor: pointer;
    white-space: normal;
    text-wrap: normal;
    background-color: #768d87;
    background-color: gainsboro;
    border: 1px solid Black;
    color: black;
    min-height: 22px; 
    line-height: 1.5;
    vertical-align: middle;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 100%;
    }

    .btnWrap:hover, .btnWrap:focus, .btnWrap:active {
        background-color: black;
        border: 1px solid white;
        color:white;
        cursor: pointer;
    }

    .btnWrap:disabled {
        background: #ccc;
        color: red;
        cursor: not-allowed;
    }

.btnHelp {
    text-overflow: initial;
    cursor: pointer;
    white-space: normal;
    text-wrap: normal;
    background-color: #efe8d2;
    border: 1px solid black;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    color: black;
    /*min-height: 24px;*/
    line-height: 1.5;
    vertical-align: middle;
    font-size: 100%;
}

    .btnHelp:hover, btnhelp:focus, btnhelp:active {
        background-color: black;
        border: 1px solid white;
        color: white;
        cursor: pointer;
        vertical-align: middle;
    }

.txtBxCenter {
    text-align: center;
    border: 1px solid gainsboro;
    background-color: white;
    min-height: 20px;
    font-size: 100%;
}

    .txtBxCenter:focus {
        background-color: #333333;
        color: white;
    }

.txtBx {
    border: 1px solid rgb(128,128,128);
     /*background-color: lightyellow;*/ 
    /*min-height: 20px;*/
    font-size: 100%;
}

    .txtBx:focus {
        /*background-color: #333333;
        color: white;*/
        background-color:lightyellow;
        color:black;
    }

.txtBxP {
    border: none;
    /*background-color: lightyellow;*/
    font-size: 100%;
}

    .txtBxP:focus {
        background-color: #333333;
        color: white;
    }

.txtBxReadOnly {
    border: 1px solid rgb(128,128,128);
    background-color: White;
    /*min-height: 20px;*/
    color: red;
    cursor: not-allowed;
    font-size: 100%;
}

.ddl {
    border: 1px solid rgb(128,128,128);
    /*background-color: lightyellow;*/
    min-width: 50px;
    /*min-height: 20px;*/
    vertical-align: middle;
    font-size: 100%;
}

    .ddl:focus {
        background-color: #333333;
        color: white;
    } 

.ddlBold {
    border: 1px solid rgb(128,128,128);
    /*background-color: lightyellow;*/
    font-weight: bold;
    min-width: 100px;
    vertical-align: middle;
    /*min-height: 20px;*/
    font-size: 100%;
}

.lblBorderCenter {
    border: 1px solid rgb(128,128,128);
    text-align: center;
    /*min-height: 20px;*/
    font-size: 100%;
}

.lblMedium {
    /*font-size: 1.0em;*/
    font-size: 125%;
    /*min-height: 20px;*/
}

.lblBold {
    font-weight: bold;
    /*min-height: 20px;*/
    font-size: 100%;
}
.lblHeader {
    width:100%;
    /*height:20px;*/
    font-weight: bold; 
    font-size: 100%; 
}

.lblBoldCenter {
    font-weight: bold;
    text-align: center;
    /*min-height: 20px;*/
}

.lblBorder {
    text-align: left;
    margin-top: 5px;
    margin-bottom: 5px;
    /*min-height: 20px;*/
    font-size: 100%;
}

.lbl {
    margin: auto;
    /*min-height: 20px;*/
    font-size: 100%;
}

.lblRight {
    text-align: right;
    display: block;
    /*min-height: 20px;*/
    font-size: 100%;
}

.pnl {
    display: block;
}

.chk {
    /*background-color: lightyellow;*/
    font-size: 100%;
}

.chkBold {
    font-weight: bold;
    background-color: lightyellow;
    font-size: 100%;
}

.lst {
    background-color: lightyellow;
    font-size: 100%;
}

    .lst:focus {
        background-color: #333333;
        color: white;
    }

.chkBoxList {
    vertical-align: top;
    display: block;
    background-color: lightyellow;
    border: 1px solid rgb(128,128,128);
}

.rbList {
    vertical-align: top;
    display: block;
    background-color: lightyellow;
    border: 1px solid rgb(128,128,128);
    font-size: 100%;
}

.mGrid {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 100%; 
}

    .mGrid td {
        padding: 2px;
        border: solid 1px #c1c1c1;
        color: #000000;
    }


.HeaderStyle {
    padding: 4px 2px;
    color: #fff;
    color: #000000;
    background-color:lightyellow;
}


.ReportHeaderStyle {
    padding: 4px 2px;
    color: #000;
    background: #DEDFDE;
}

.AlternatingRowStyle {
    background-color: #E3E8E4;
    /*background-color:#C2D69B;*/
    color: #333333;
    border: thin;
    vertical-align: middle;
}

.RowStyle {
    /*background-color: #E0E0E0;*/
    background-color: #FAF5F9;
    color: #333333;
    border: thin;
    vertical-align: middle;
}

.ControlStyle {
    color: #5D7B9D;
}

.objViewer {
    width: 100%;
    height: 100%;
}

.modalPopup {
    background-color: #F2FAA0;
    background-color: lightyellow;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 2px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color:gainsboro;
    z-index: 99;
    opacity: 0.75;
    filter: alpha(opacity=75);
    min-height: 100%;
    width: 100%;
}

.loading {
    font-weight: bold;
    border: 1px solid black;
    border-radius: 5px;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    /*background-color: white;*/
    /*background-color: #f1f1f1;*/
    background-color:lightyellow;
    z-index: 999;
    margin-top: 0;
    text-align: center;
}

.loadingCode {
    font-weight: bold;
    border: 1px solid black;
    border-radius: 5px;
    width: 300px;
    height: 150px;
    display: none;
    position: fixed;
    background-color:lightyellow;
    /*background-color:  #f1f1f1;*/
    z-index: 999;
    margin-top: 0;
    text-align: center;
}
/* HELP */
.pic {
    color: #000000;
    outline: none;
    text-decoration: none;
    position: relative;
}

    .pic span {
        margin-left: -999em;
        position: absolute;
    }

    .pic:hover span {
        border-radius: 5px 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        text-decoration: none;
        position: absolute;
        left: 1em;
        top: 1em;
        z-index: 99;
        margin-left: 0;
    }
    /*.pic:hover img {*/
    /*border: 0; margin: -10px 0 0 -40px;*/ /*text position from image*/
    /*float: left;*/
    /*position: absolute;*/
    /*}*/
    .pic:hover em {
        /*font-size: 1.2em;*/
        font-size: 150%;
        font-weight: bold;
        display: block;
        padding: 0.2em 0 0.6em 0;
    }

.classic {
    padding: 0.9em 1em;
}

.custom {
    padding: 0.5em 0.75em 0.75em 2em;
}



.classic {
    background: #FFFFAA;
    border: 1px solid #FFAD33;
}

.critical {
    background: #FFCCAA;
    border: 1px solid #FF3334;
}

.help {
    background: #9FDAEE;
    border: 1px solid #2BB0D7;
}

.info {
    background: #9FDAEE;
    border: 1px solid #2BB0D7;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-wrap: normal;
}

.warning {
    background: #FFFFAA;
    border: 1px solid #FFAD33;
}







