﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Calibri, Verdana, Arial;
    color: black;
    height: 100%;
}

#PageContainer {
    height: 100%;
}

@media only screen and (max-device-width: 480px) {
    #PageContainer {
        /*width: 360px;*/
    }
}

/*This has the logo in*/
#TopBar {
    width: 100%;
    height: 100px;
    background-color: #8CAAE7;
    position: relative;
}

#BoxLoginInfo {
    margin: 0;
    padding: 10px 10px;
    width: 25%;
}

    #BoxLoginInfo p {
        padding: 0;
        margin: 0;
    }

#BannerLogo {
    border: 1px solid #002D96;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

/*Contains the Menu divs*/
#MenuContainer {
    width: 100%;
    min-height: 30px;
    background: #142BFF;
    background: linear-gradient(#8C88FF, #0C087F);
    border-top: 1px solid #000;
    border-bottom: 1px solid #002D96;
}

    #MenuContainer a {
        color: white;
        text-decoration: none;
    }

/*Contains everything below the menu*/
#MainBody-Container {
    padding-bottom: 10px;
}

#MainBody-Container, body {
    background-color: #F0F8FF;
}

#ContentAndPanels {
    display: block;
}

#MainContent {
    flex: 1;
    margin-right: 20px;
}

#RightPanels {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*Everything below the main container*/
#Footer {
    clear: both;
    width: 100%;
    height: 100px;
    background-color: lightgrey;
    position: absolute;
    left: 0;
    bottom: 0;
}

    #Footer ul {
        list-style: none;
    }

    #Footer ul {
        margin: 0;
    }

#Footer-Inner {
    width: 98%;
    margin: 0 1%;
    padding: 0;
}

/*Left hand side of the container*/
#LeftColumn {
    float: left;
    width: 50%;
}

/*Right hand side of the container*/
#RightColumn {
    float: right;
    width: 40%;
}

/*Title bar of the left column*/
#PageMenu {
    padding: 5px;
}

/*Title bar of the right column*/
#PageTitle {
    width: 98%;
    padding: 5px;
}

/*Main body of right column*/
#PageRightContent, #PageLeftContent {
    height: 100%;
    width: 100%;
    margin-top: 25px;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
    clear: both;
    zoom: 1; /* ie 6/7 */
}

.ErrorMessage {
    color: red;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer
{
    margin-top: 50px;
}