
A {
    color		: #000000;
    font-weight		: bold;
}

/*
 * The anchor pseudo-class can be combined with a normal class:
 *   A.menu:hover { color: blue }
 * and then
 *   <a class=menu href="...">menu item</a>
 *
 * Background color: R=213 G=201 B=191  #D5C9BF
 *                 : R=198 G=195 B=185  #C6C3B9
 * Default: #0000E0
 * Hover:   #FFE000
 */
A:link {
    text-decoration	: none;
    background		: transparent;
}

A:active {
    text-decoration	: none;
    background		: transparent;
}

A:visited {
    text-decoration	: none; 
    background		: transparent; 
}

A:hover { 
    color		: #FFFFFF;
    text-decoration	: none; 
    background		: transparent; 
}

