﻿body {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */

    background-color: #ffffff;
    margin: 5px;
    padding: 0;
    height: 100%;
}

.Center {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.FontTitle {
    color: blue;
    font-weight: bold;
    font-size: 15pt;
}

.FontSize9Pt {
    font-size: 9pt;
}

.FontBlue {
    color: blue;
}

.FontRed {
    color: red;
}

.MainTable {
    width: 980px;
}

.BackgroundColorY {
    background-color: #faf7a2;
}

.LoginBoxWidth {
    width: 550px;
}

.TableCollapse {

    border-collapse: collapse; /* removes the default gap between cells */
    border-spacing: 0; /* removes any extra spacing (same as cellpadding="0") */
}

a {
    cursor: pointer;
    text-decoration: underline;
    color: blue;
}

td, th {
    padding: 0; /* removes the default ~5–10px padding browsers add */
    
    font-family: "Helvetica Neue",Helvetica, Arial;
    font-size: 11pt;
}

.LoginBackgroundImage {
    background-image: url('../../../images/back_title.gif');
}

.BorderStyleLeft {
    border-left: solid 1px #dcdcdc;
}
.BorderStyleTop {
    border-top: solid 1px #dcdcdc;
}
.BorderStyleRight {
    border-right: solid 3px #dcdcdc;
}
.BorderStyleBottom {
    border-bottom: solid 3px #dcdcdc;
}

.Width0 {
    width: 0px;
}

.PaddingA {
    padding-right: 15px;
}

.PaddingAllSides {
    padding: 10px;
}

.PaddingTD {
    padding: 3px;
}

.LineHeightA {
    line-height: 22px;
}

.Bold {
    font-weight: bold;
}

.AlignLeft {
    text-align: left;
}

.AlignRight {
    text-align: right;
}