/**
    burgundy 
**/

/** topbar **/
.topbar {
        color: rgba(255,255,255, 0.7);
        background: #371022; /** dark purple */
}

/** header **/
.header-menu.center {
    background: linear-gradient(to bottom, #863C5F, #371022 84%); /* primary color scheme (header / footer background) */
}

/** footer **/
#footer {
    border-top: 1px solid #B75683;
    color: lime; /** #B1B1B1; */
    background-color: #371022;
    background-image: linear-gradient(to bottom, #863C5F, #371022); /* required first in the list for IE11 */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#863C5F), to(#371022));
    background-image: -webkit-linear-gradient(top, #863C5F, #371022);
    background-image: -moz-linear-gradient(top, #863C5F, #371022);
    background-image: -webkit-linear-gradient(top, #863C5F, #371022);
    background-image: -o-linear-gradient(top, #863C5F, #371022);
    background-image: ms-linear-gradient(to bottom, #863C5F, #371022);
    -pie-background: linear-gradient(to bottom, #863C5F, #371022);
}
#footer_bottom a {
    color: fuchsia; /** rgba(255,255,255, 0.4); */
}

