﻿/*---------------------------------------*/
/* Trendy orange */
.AccentColor
{
    color: #ED7F09;
    font-weight: bold;
}

/* FaceBook blue */
.BaseColor
{
    color: #3B5997;
    background-color: White;
}


.BaseAccentGradient {

    /* Works for Chrome, Edge, Internet Explorer, Firefox, Opera, Vivaldi, Brave */
    background:         linear-gradient(#3B5997, #ED7F09);  /* FaceBook blue, Trendy orange */

    /* Works for Safari */
    background: -webkit-linear-gradient(#3B5997, #ED7F09);  /* FaceBook blue, Trendy orange */
}

.BannerText
{
    color: white;
    font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
    font-weight: bold;
    font-style: italic;

 /* NOTE 2 of 2: Use of a line break, a table and text top padding is much easier
    than trying to align these via CSS only: */

    font-size: 30px;
    padding-top: 13px;
}

/* NOTE: This is a "combo-style" because it contains style attributes for multiple,
   different objects (an image and a span) which are combined for convenience only. */

.ComboStyle

{
    vertical-align:middle;
    width: 30px;
    height: 30px;
    font-style: italic;
}
