/* Clean - brand */
/**********
    Each Theme should have 5 style sheets, with its own set of styles. (Current has **)

    main.css   -- Main HTML elements and universal classes
 ** brand.css  -- Brand color classes to add to the variety of text on a page
    collegeNav.css   -- Styling for the top navigation bar
    secondaryNav.css -- Styling for navigation other than the top College nav bar
    (color).css -- The specific coloring for the theme (also in theme name)

**********/

/******************************************** COLOR, IMG and font classes **********************/

.textYellow { color: #ffce00; }
.textGold   { color: #f6a800; }
.textGray   { color: #d1d3d4; }
.textBlack  { color: #252525; }
.textOrange { color: #d57f00; }
.textRust   { color: #84332e; }
.textBerry  { color: #7f2855; }
.textBlue   { color: #002f6d; }
.textTeal   { color: #007b8b; }
.textGreen  { color: #00833f; }
.textForest { color: #69813c; }
        .textWhite  { color: White; }


.bkgYellow  { background-color: #ffce00; color:#252525; }
.bkgGold    { background-color: #f6a800; color:#252525; }
.bkgGray    { background-color: #d1d3d4; color:#252525; }
.bkgBlack   { background-color: #252525; color:#ffffff; }
.bkgOrange  { background-color: #d57f00; color:#252525; }
h2.bkgOrange,h3.bkgOrange,h4.bkgOrange  { background-color: #d57f00; color:#ffffff; } /***** This is only an acceptable combo with large font sizess *****/
.bkgRust    { background-color: #84332e; color:#ffffff; }
.bkgBerry   { background-color: #7f2855; color:#ffffff; }
.bkgBlue    { background-color: #002f6d; color:#ffffff; }
.bkgTeal    { background-color: #007b8b; color:#ffffff; }
.bkgGreen   { background-color: #00833f; color:#ffffff; }
.bkgForest  { background-color: #69813c; color:#000000; }
h2.bkgForest, h3.bkgForest, h4.bkgForest  { background-color: #69813c; color:#ffffff; }  /***** This is only an acceptable combo with large font sizess *****/
.bkgWhite   { background-color: #ffffff; color:#252525; }

.bkgLightGreen   { background-color: #f6fffb; color:#252525; }
.bkgLightGreen a { background-color: #00833f; color:#ffffff; }
.bkgLightGreen a:hover, .bkgLightGreen a:hover { background-color: #252525; color:#ffffff; }

.borderYellow   { border: solid thin #ffce00; }
.borderGold     { border: solid thin #f6a800; }
.borderGray     { border: solid thin #d1d3d4; }
.borderBlack    { border: solid thin #252525; }
.borderOrange   { border: solid thin #d57f00; }
.borderRust     { border: solid thin #84332e; }
.borderBerry    { border: solid thin #7f2855; }
.borderBlue     { border: solid thin #002f6d; }
.borderTeal     { border: solid thin #007b8b; }
.borderGreen    { border: solid thin #00833f; }
.borderForest   { border: solid thin #69813c; }