﻿hbtml, body{
    width: 100%; 
    height: 100%;
    margin: 0;
    top: 0;
    bottom: 0; 
    left: 0; 
    right: 0;
    font-family: 'Segoe UI';
}

/* Structure */

.Width100Perc{
    width: 100%;
}

.DefaultTopBottomPadding{
    padding-top: 5px;
    padding-bottom: 5px;
}

#ImgColumn{
    width: 40px;
    padding: 5px;
}

#LabelColumn{
    width: auto;
    padding: 5px;
}

#InputColumn{
    width: 100%;
    padding: 5px;
}

#HeaderBar{
    top: 0;
}

#DefaultFooter{
    bottom: 0;
}

.HeaderFooterAdditional{
    height: 50px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
}

#DefaultFillContent{
    position: relative; 
    width: 100%;
    height: 100%;
}

.HousingTableDefault{
    height: 100%;
}

.DefaultSideMargins{
    margin: 0 auto;
}

/* Font styling */

.FontWeightBold{
    font-weight: bold;
}

.ButtonVertical {
    vertical-align: bottom;
}
.DefaultFontSize{
    font-size: 12pt;
}

.HeaderFontSize{
    font-size: 18pt;
}

/* Colouring */

.DefaultWhite{
    color: white;
}

.DefaultBlack{
    color: black; 
}

.FormationBlue{
    color: #25A0DA;
}

.BackgroundFormationBlue{
    background-color: #25A0DA;
}

.FormationGray{
    color: gray;
}

.BackgroundFormationGray{
    background-color: gray;
}

.RedSubmitMessage{
    color: red;
}

.DefaultHeaderBar{
    height: 50px;
    width: 100%;
}

/* Borders */

.DefaultBorder{
    border: solid 1px #25A0DA;
}

.NoBorder{
    border: none;
}

.TopBorderOnly{
    border-top: solid 1px #25A0DA;
}

.GrayBorder{
    border: solid 1px LightGray;
}

.BlackBorder{
    border: solid 1px Black;
}

.SideBordersOnly{ 
    border-top: none; 
    border-left: 1px solid #25A0DA;
    border-right: 1px solid #25A0DA; 
    border-bottom: none;
}

.NavigationTableDefault{
    border-collapse: collapse; 
}

/* Positioning and alignment */

.HorzAlignCenter{
    text-align: center;
}

.RightAlign{
    text-align: right;
}

.LeftAlign{
    text-align: left;   
}

.InputImage{
    height: 30px;
    width: 30px;
}

.DefaultPadding{
    padding: 5px;
}

.DefaultMargin{
    margin: 10px;
}

.FivePxMargin{
    margin: 5px;
}

.MaxWidth994{
    max-width: 994px;
}

.FullWidth1024{
    width: 1024px;
}

.DefaultGridControl{
    height: 30px;
    width: 100%;
    border: solid 1px black; 
    margin: 5px;
}

/* CSS for the form pop up */

.modalBackground {
    position: fixed;
    top: 0;
    left: 0;
    background-color: Black;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100%;
    width: 100%;
    z-index: 99999;
}

    .modalBackground .modalSpinner {
        border: solid 5px #25A0DA;
        padding: 5px 5px 5px 5px;
        position: fixed;
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, 1);
        z-index: 99999;
        top: 50%;
        left: 50%;
        /*-ms-border-radius: 99px;
        -webkit-border-radius: 99px;*/
        /*border-radius: 99px;*/
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 250px;
        text-align: center;
        font-family: sans-serif;
        font-size: small;
        font-weight: bold;
    }

    .modalBackground .modalPanel {
        padding: 5px 5px 5px 5px;
        position: fixed;
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, 1);
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -ms-border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
        border: 5px solid #25A0DA;
    }
