/* @group Elements - RICHTEXT styles - links */

@media all {}

@media print {
    a {color: #000; text-decoration: none;}
}

@media screen {

    /* Links */
    a.base, .richtext a {
        color: #4d4d4d;
        background-color: inherit;
        text-decoration: underline;
        border: 1px dotted transparent;
    }
    a.base:hover, .richtext a:hover {
        color: #0053a6;
        background-color: inherit;
        text-decoration: underline;
    }
    a.base:focus, .richtext a:focus {
        color: #0053a6;
        text-decoration: none;
        outline: 1px dotted #0053a6;
    }



    /* promote link (bolder) - used also in richtext */
    a.promote {
        font-weight: bold;
    }




}




/* @end */