html body #mainContent .highlighted_prompt,
html body .modal .highlighted_prompt {
    background-color: #ffff75;
    margin: .5em 0;
    padding: 5px 5px 5px 20px;
    font-size: 12px;
    border-radius: 2px;
    border: none;
    line-height: 130%;
    position: relative;
    display: inline-block;
}

    html body #mainContent .highlighted_prompt.marketing,
    html body .modal .highlighted_prompt.marketing { /* Evgeny: This is used when we're trying to
                                            bring something to the user's attention, but not so much 
                                            because it's important to them, but because it allows us
                                            to sell a little more or so.
                                        */
        background-color: #fff6a8;
    }

    html body #mainContent .highlighted_prompt:before,
    html body .modal .highlighted_prompt:before {
        content: '\e81f';
        font-family: "fontello";
        display: block;
        position: absolute;
        left: 4px;
        top: 5px;
    }

    html body #mainContent .highlighted_prompt.wait_prompt:before,
    html body .modal .highlighted_prompt.wait_prompt:before {
        content: '\e860';
    }

    html body #mainContent .highlighted_prompt a,
    html body .modal .highlighted_prompt a {
        text-decoration: underline;
        font-weight: bold;
    }


    html body #mainContent .highlighted_prompt a[role=button],
    html body .modal .highlighted_prompt a[role=button] {
        text-decoration: none;
        border-bottom: dashed 1px;
    }