﻿body {
    margin:0px auto;
    padding:0px;
    width:1024px;
}

form {
    margin: 0px;
    padding: 0px;
}

.textbox {
    width: 247px;
    padding: 8px 3px 8px 3px;
    border: solid 1px #365ebf;
    outline: none;
}

.DDL {
    width: 255px;
    text-align: center;
    border: solid 1px #365ebf;
    padding: 7px 4px 7px 0px;
}

.button {
    font-family: Arial;
    font-size: 13px;
    font-weight: bold;
    background-color: #0000A0;
    color: #ffffff;
    border: 0px none White;
    padding: 11px 12px;
    -webkit-appearance: none;
    outline:none;
}

    .button:hover {
        cursor: pointer;
        text-decoration: underline;
    }

.validator {
    border: solid 1px Red;
    background-color: #FAE6EE;
    font-size: 15px;
    font-family: Arial;
    padding: 7px 50px;
    text-align: center;
}

.Grid_View {
    font-size: 13px;
    font-family: Arial;
    border: solid 1px #6682BB;
    background-color: #FCFCFC;
}


.Grid_view_header_style {
    font-size: small;
    height: 36px;
    background-color: #0000A0;
    color: White;
    border: solid 1px #C3C3C3;
}


.Grid_view_row_style {
    height: 38px;
    vertical-align: middle;
    border: solid 1px #C3C3C3;
}


.Grid_view_text_allign {
    padding: 4px 23px 4px 23px;
    border: solid 1px #C3C3C3;
}   

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: rgba(0,0,160,0.99);
    /*#1172d3;*/
    font-family: Arial;
}

    /* Links inside the navbar */
    .navbar a {
        float: left;
        font-size: 14px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 14px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
    }

    /* Add a red background color to navbar links on hover */
    .navbar a:hover, .dropdown:hover .dropbtn {
        text-decoration:underline;
    }

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0,0,160,0.99);
    min-width: 160px;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        /* Add a grey background color to dropdown links on hover */
        .dropdown-content a:hover {
            background-color: rgba(0,0,160,0.99);
            text-decoration:underline;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

textarea:focus, input:focus {
    outline: none;
}