﻿/***********************************
         Bottom Links
***********************************/
/* Unchanging */
.clBottom a
{
    color:Black;
    border-style: none;
    text-align: left;
    font-size: 8pt;
    font-family:Tahoma;
}
/* unvisited link */
.clBottom a:link
{
    text-decoration: none;
}
/* visited link */
.clBottom a:visited
{
    text-decoration: none;
}
/* mouse over link */
.clBottom a:hover
{
    /* Default color, since Dealer Portal in Brown, and Mode is
        determined in MasterPage.vb, and not in DealerPortalMaster.vb */
    /* Dark Brown RGB: 140 98 54 */
    color:#8C6236;
    text-decoration: underline;
}
/* selected link */
.clBottom a:active
{
    /* Default color, since Dealer Portal in Brown, and Mode is
        determined in MasterPage.vb, and not in DealerPortalMaster.vb */
    /* Dark Brown RGB: 140 98 54 */
    color:#8C6236;
    text-decoration: underline;
}
/***********************************
         Depending on Mode
        (see MasterPage.vb),
        .clBottom changes color 
***********************************/
/* Customer Info page */
.Mode1 .clBottom a:hover, .Mode1 .clBottom a:active
{
    /* Dark Gray RGB: 129 129 129 */
    color:#818181;
}
/* Cabinet Line page */
.Mode2 .clBottom a:hover, .Mode2 .clBottom a:active
{
    /* Dark Green RGB: 81 122 71 */
    color:#517A47;
}
/* Hotel Line page */
.Mode3 .clBottom a:hover, .Mode3 .clBottom a:active
{
    /* Dark Blue RGB: 0 74 128 */
    color:#004A80;
}