﻿/*override banner style*/
.banner
{
    background-color: #343943;
}

/*override banner welcome text*/
.welcome-header {
    color: #ffffff;
}

/*override area below the home page banner*/
.prebody 
{
    /*background-color: #ffffff;
    background-image: url('image/taupe.png');*/    
}

/*override top menu style*/
.navbar-inverse .navbar-nav > li > a
{
    color: #ffffff;
}

/*override dropdown menu background and text color*/
.navbar-nav > li > .dropdown-menu, .navbar-nav .dropdown-menu > li > a
{
    background-color: #343943;
    color: #999999;
}

/*override the mobile dropdown menu background and text color. If not overridden the default bootstrap mobile menu color will be used*/
@media (max-width: 767px)
{
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a 
    {
        color: #999999;  /*this needs to be the same color as the one used to override the dropdown menu text color*/
    }
}

/*override dropdown menu hover text color*/
.navbar-nav .dropdown-menu > li > a:hover
{
    color: #ffffff;
}

/*override block headers on home page*/
.HomePageHeaders
{
    background-color: #343943;
    color: #ffffff;
}

/*override style for current registration tab*/
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background-color: #acd0c0;
    color: #fff;    
}

/*override style for previously visited registration tabs*/
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background-color: #343943;
    color: #fff;
}

/*override style for registration buttons*/
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background-color: #343943;
    color: #fff;    
}
