﻿
/* GENERAL LAYOUT DISPLAY
--------------------------------------------------------*/
body {
    clear: both;
    padding: 0px;
    margin: 0px;
    background-color: white;
}

.tabletype0 {
    border: 0px;
    background-color: white;
}

    .tabletype0 tr {
        height: 90px;
    }

    .tabletype0 th {
        background-color: lightgreen;
        height: 110px;
    }

.tabletype1 {
    border: 2px solid green;
    padding: 1px;
    border-collapse: collapse;
    height: 35px;
}

    .tabletype1 th {
        background-color: lightgreen;
        height: 35px;
    }

    .tabletype1 tr {
        border: 2px solid green;
        height: 50px;
    }

    .tabletype1 td {
        border: 2px solid green;
    }

.tabletype2 {
    border: 2px solid green;
    padding: 1px;
    border-collapse: collapse;
}

    .tabletype2 th {
        background-color: lightgreen;
        height: 15px;
    }

    .tabletype2 tr {
        border: 2px solid green;
        height: 15px;
    }

    .tabletype2 td {
        border: 2px solid green;
    }

.bold {
    font-family: 'Arial Narrow';
    color: green;
    font-weight: bold;
}

.menu {
    position: fixed;
    height: 100%;
    width: 200px;
    display: block;
    float: left;
    background-repeat: no-repeat;
    background-image: linear-gradient(140deg,rgba(0,205,0,1), rgba(0,103,0,1));
}

.logininfo {
    position: fixed;
    text-align: center;
    width: 200px;
    font-size: 12px;
}

.time {
    font-size: 10pt;
    background-color: green;
    color: white;
    width: 200px;
    height: 18px;
    text-align: center;
    position: fixed;
    margin-top: 15px;
}

.Panel {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid green;
    padding: 5px 5px 5px 5px;
    margin-bottom: 5px;
}


/* MENU DISPLAY
--------------------------------------------------------*/
.mainmenu {
    Height: 30px;
    width: 200px;
    color: white;
    border-Style: none;
    border-width: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
}

    .mainmenu a {
        display: table-cell;
        Font-Size: 14pt;
        height: 30px;
        text-decoration: none;
        padding: 0px;
        padding-left: 15px;
        color: white;
        width: 200px;
        vertical-align: middle;
    }

        .mainmenu a:hover, .mainmenu a:focus {
            color: black;
            background-color: rgba(255,255,255,0.3);
        }

.contentarea {
    margin-top: 20px;
    margin-left: 220px;
    position: relative;
    height: calc(100vh - 36px);
    overflow: auto;
    line-height: 2;
}

.footerarea {
    height: 100%;
    margin-left: 200px;
    position: fixed;
    background-color: rgb(0,103,0);
    width: 100%;
    margin-top: 0px;
    font-size: 11pt;
    color: white;
}

/* SMALL TITLE AREA
--------------------------------------------------------*/

.displayarea {
    float: left;
    width: 320px;
    height: 80px;
    background-color: white;
    border-width: 0px;
    border-style: none;
    list-style: none;
    display: table;
    padding-top: 10px;
    margin-left: 20px;
    margin-top: 5px;
}

    .displayarea:hover {
        box-shadow: 0 1px 2px 0 rgba(0, 103,0, 0.4), 0 4px 10px 0 rgba(0,103,0, 0.59);
        -webkit-box-shadow: 0 1px 2px 0 rgba(0,103,0, 0.4), 0 4px 10px 0 rgba(0,103,0, 0.59);
        -moz-box-shadow: 0 1px 2px 0 rgba(0,103,0, 0.4), 0 4px 10px 0 rgba(0,103,0, 0.59);
        cursor: pointer;
    }

    .displayarea a {
        display: inline-block;
        color: darkgreen;
        font-size: 14pt;
        text-align: left;
        text-decoration: none;
        vertical-align: middle;
    }

    .displayarea p {
        display: inline-block;
        position: inherit;
        color: darkgreen;
        font-size: 14pt;
        text-align: left;
        text-decoration: none;
    }

.AreaImage {
    float: left;
    padding-left: 10px;
    margin-top: 2px;
    margin-left: 5px;
    width: 70px;
    height: 70px;
    display: inline-block;
}

/* GENERAL FIELD DISPLAY
--------------------------------------------------------*/
.Button {
    Height:120px;
    Font-Size: 25pt;
    color: white;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-width: 1px;
    background-image: linear-gradient(140deg,rgba(0,205,0,1), rgba(0,103,0,1));
    border-color: green;
    margin-bottom: 20px;
    margin-right: 30px;
}

    .Button:hover, .Button:focus {
        background-image: linear-gradient(140deg,rgba(0,103,0,0), rgba(0,225,0,1));
        color: black;
        cursor: pointer;
    }

    .Button:disabled {
        border: 1px solid #999999;
        background-image: linear-gradient(140deg,rgba(235,235,235,1), rgba(110,110,110,1));
        color: #666666;
    }


.Textbox {
    border-width: 1px;
    color: darkgreen;
    border-color: green;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    Height: 80px;
    Font-Size: 40pt;
    padding-left: 5px;
}

    .Textbox:hover, .Textbox:focus {
        background-color: rgba(0,250,0,.3);
    }

    .Textbox:disabled {
        background-color: white;
        color: darkgreen;
    }


.ddl {
    border: 1px solid green;
    height: 80px;
    color: darkgreen;
    font-size:40pt;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    background-repeat: no-repeat;
    padding-left: 5px;
}

    .ddl:hover, .ddl:focus {
        background-color: rgba(0,250,0,.3);
        cursor: pointer;
    }

.Label {
    font-size: 40pt;
    color: darkgreen;
}

/* GRIDVIEW STYLE
-----------------------------------------------------*/
.GridStyle {
    border: 0px solid rgba(0,250,0,.3);
    border-collapse: collapse;
    font-size: 30pt;
    color: darkgreen;
}

.HeaderStyle {
    border: 1px, solid, rgba(0,250,0,.3);
    background-color: lightgreen;
    font-size: 20pt;
    color: darkgreen;
    height: 35px;
}

/*Row*/
.RowStyle {
    background-color: white;
    font-size: 30pt;
    font-weight: normal;
    color: darkgreen;
    height: 60px;
}

    .RowStyle:hover {
        cursor: pointer;
        background-color: rgba(0,250,0,.2);
    }

/*Footer*/
.FooterStyle {
    background-color: rgba(0,250,0,.7);
    height: 35px;
}

/*SelectedRowStyle*/
.SelectedRowStyle {
    font-size: 30pt;
    color: DarkRed;
    font-weight: bold;
    height: 35px;
}

    .SelectedRowStyle:hover {
        background-color: rgba(0,250,0,.2);
        cursor: pointer;
    }

.ListBox {
    border-width: 1px;
    color: darkgreen;
    border-color: green;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    Font-Size: 14pt;
    padding-left: 10px;
    display: block;
    position: absolute;
}

    .ListBox option:hover {
        background-color: rgba(0,250,0,.3);
        padding-left: -5px;
    }

    .ListBox option {
        background-color: white;
        color: darkgreen;
    }

/* REPORTVIEW STYLE
-----------------------------------------------------*/
.Reportview {
}





