@charset "utf-8";

/* =========================
   Base page
   ========================= */
html,
body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #666666;
    background-image: url("../images/BGNew.jpg");
    background-repeat: repeat-x;
    background-color: #ffffff;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

/* =========================
   Shared top branding
   ========================= */
.branding {
    text-align: center;
}

.branding img {
    display: inline-block;
}

/* =========================
   Welcome / intro text
   ========================= */
.Index_Welcome {
    color: #6a6a6a;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.Index_Welcome p {
    margin: 10px 0;
}

.breadcrumbs {
    font-size: 13px;
    color: #7a7a7a;
}

.breadcrumbs a {
    color: #3252a9;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* =========================
   Form controls
   ========================= */
.textBoxLogin {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 10pt;
    color: #4b4b4b;
    padding: 5px 8px;
    border: 1px solid #bfc7d1;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.textBoxLogin:focus {
    outline: none;
    border-color: #7aa7e8;
    box-shadow: 0 0 0 2px rgba(122, 167, 232, 0.15);
}

/* =========================
   Buttons
   ========================= */
.Home_Button_pre,
input[type="submit"] {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 10pt;
    color: #3252a9;
    padding: 6px 12px;
    border: 1px solid #bfc7d1;
    border-radius: 4px;
    background: #f7f9fc;
    cursor: pointer;
    box-sizing: border-box;
}

.Home_Button_pre:hover,
input[type="submit"]:hover {
    background: #edf3ff;
    border-color: #9dc9ff;
}

/* =========================
   Links
   ========================= */
a {
    color: #3252a9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   Simple table styling
   ========================= */
.greyTableCell {
    border: 1px solid Silver;
    padding: 6px 8px;
    font-size: 9pt;
    color: #666666;
    vertical-align: middle;
    box-sizing: border-box;
}

/* =========================
   Utility helpers
   ========================= */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}