/*This class ensures the footer is placed at the bottom of the web page without clipping the content area*/
main 
{
/*100% of Screen Height - Header Height - Footer Height = Total Height of Content Area (Only edit the Header Height)*/
    min-height: calc(100vh - 143px - 49px);
}
footer 
{
    background-color:#040345;
    padding: 10px;
    text-align: center;
}
/*Footer text color for selected page*/
footer a 
{
    color:white;
}
.userName 
{
    font-family: sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    padding-right: 1em;
    vertical-align: bottom;
}
.dividers-01 
{
    border: none;
    border-bottom: 3px solid #04336c;
    text-align: center;
    height: 0;
    width: 100%;
    clear: both;
    display: inline-block;
    margin: 10px 0;
}
/*Menu text color for selected page*/
#Menu1 a.static.selected 
{
    color:white;
}
/*Background hover color and text color of menu items in sub-menus*/
#Menu1 a.dynamic.highlighted 
{
    color:white !important;
    background-color: #040345;
}
#Menu1 a.dynamic.selected 
{
    color: #d9ffff;
}
/*Text color of parent menu items*/
.navbar-dark .navbar-nav .nav-link 
{
    color: white;
}
/*Background color of menu bar.*/
.bg-primary 
{
    background-color: #040345!important;
}
.dropdown-item:hover 
{
    color: white;
    background-color:#040345;
}
.dropdown-menu 
{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #ffffff;
    text-align: left;
    list-style: none;
    background-color: #52678c;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}
.dropdown-item 
{
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #ffffff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.logoStyle
{
    max-height:auto;
    max-width:175px;
    width:100%;
    height:auto;
}
