﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Tahoma;
    font-size: 16px;
}
#divLogin{
    display: block;
    width: 500px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -125px;
    margin-left: -250px;
    border: solid 1px #2B4600;
    text-align: center;
    vertical-align: middle;
}
#divLogin table{
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    padding: 0px;
    margin: 0px;
    border: none;
    border-spacing: 0px;
}

#divLogin input[type=text], input[type=password]{
    width: 200px;
}

#divLogin input[type=checkbox]{
    margin-left: 0px;
    padding-left: 0px;
}

#divLogin input[type=submit]{
    background-color: #892A00;
    border: none;
    width: 70px;
    height: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}

#divLogin input[type=submit]:hover {
    background-color: #B15325;
}

tr.loginHeader {
    height: 50px;
    background-color: #661E00; /*For old browsers which don't support CSS3*/
    background: linear-gradient(to top,#892A00,#461400);
    color: #ffffff;
    font-weight: bold;
}

tr.loginDataRow {
    height: 37px;
}

tr.loginSettingRow {
    height: 23px;
}

tr.loginDataRow td:first-of-type, tr.loginErrorRow td:first-of-type {
    text-align:right !important;
    width: 30%;
    padding-left: 0px !important;
}

tr.loginDataRow td, tr.loginErrorRow td {
    text-align:left;
    padding-left: 15px;
}

td.loginContainer {
    height: 165px;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 14px;
}

tr.loginErrorRow {
    font-size:12px;
    color: red;
    vertical-align: top;
}

tr.loginSubmitRow {
    height: 37px;
}

#loginUpdatePanel {
    height: 100%;
}