﻿.textbox {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #FFFFFF;
    border-color: #dfe8f1;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    height: 34px;
    width: 100%;
    font-family: Arial;
    transition: border-color ease-in-out .30s,box-shadow ease-in-out .30s;
    transition-property: border-color, box-shadow;
    transition-duration: 0.30s, 0.30s;
    transition-timing-function: ease-in-out, ease-in-out;
    transition-delay: initial, initial;
}

    .textbox:hover {
        border-color: #A0A0A0 #B9B9B9 #B9B9B9;
        border-style: solid;
        border-width: 1px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    }

    .textbox:focus {
        border-color: #66afe9;
        border-top-color: rgb(102, 175, 233);
        border-right-color: rgb(102, 175, 233);
        border-bottom-color: rgb(102, 175, 233);
        border-left-color: rgb(102, 175, 233);
        outline: 0;
        outline-color: initial;
        outline-style: initial;
        outline-width: 0px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    }

.button {
    font-size: 13px;
    height: 34px;
    margin: 0 10px 10px 0;
    background-color: #4D90FE;
    background-image: -moz-linear-gradient(center top, #4D90FE, #4787ED);
    border: 1px solid #3079ED;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    -moz-transition: all 0.218s ease 0s;
    -moz-user-select: none;
    border-radius: 3px;
    min-width: 80px;
    padding: 0 8px;
    text-align: center;
}

    .button:hover {
        background-color: #357AE8;
        background-image: -moz-linear-gradient(center top, #4D90FE, #357AE8);
        border: 1px solid #2F5BB7;
        color: #FFFFFF;
        text-shadow: 0 1px rgba(0, 0, 0, 0.3);
    }

    .button[disabled] {
        background-color: #f7f7f7;
        background-image: -moz-linear-gradient(center top, #f1f1f1, #cdc8c8);
        border: 1px solid #9ba6b1;
        color: #acafb1;
        text-shadow: 0 1px rgba(0, 0, 0, 0.3);
    }

.table_input {
    width: 100%;
}

    .table_input td {
        padding: 5px;
    }

    .table_input .tdlabel {
        padding-top: 5px;
        padding-left: 0px;
        padding-right: 20px;
        font-family: Arial;
        font-size: 13px;
        color: #3e4855;
        font-weight: bold;
        text-align: right;
    }

    .table_input .description {
        font-family: Arial;
        font-size: 11px;
        color: #FF0000;
        font-style: italic;
    }

.loginpage {
    background: url("images/bg_login.jpg") no-repeat top center;
    background-size: cover;
}

    .loginpage .form-wrapper {
        margin-top: 200px;
        border-radius: 4px;
        width: 550px;
        box-shadow: 0 0 7px rgba(0,0,0,.3);
        margin-right: auto;
        margin-left: auto;
        background: #fff;
        background-color: rgb(255, 255, 255);
        padding: 35px 20px;
        padding-top: 35px;
        padding-right: 20px;
        padding-bottom: 35px;
        padding-left: 20px;
    }

        .loginpage .form-wrapper .title {
            font-family: Helvetica;
            font-size: 35px;
            text-align: center;
            margin-bottom: 15px;
        }

        .loginpage .form-wrapper .form-body {
            width: 375px;
            margin-left: 105px;
        }

            .loginpage .form-wrapper .form-body .item {
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .loginpage .form-wrapper .form-body .username {
                background: url("images/bg_user.png") no-repeat;
                padding-left: 48px;
            }

            .loginpage .form-wrapper .form-body .password {
                background: url("images/bg_password.png") no-repeat;
                padding-left: 48px;
            }

