/* DEFAULT CSS for ubernyms.
 * ALL rules are applied only to items with the ubernyms class on them
 * this way we avoid messing up existing styles as much as possible.
 */
/* Base acronym and abbr style */
.ubernym acronym, .ubernym abbr, span.ubernym, a.ubernym   {
    cursor: help;
    color: #74a021;
    border-bottom: 1px dashed #74a021;
}

a.ubernym {
    border-bottom: 1px double #74a021;
}    

/* Abbreviation speech styles */
.ubernym acronym {speak : normal;}
.ubernym abbr.acronym {speak : normal;}
.ubernym abbr.initialism {speak : spell-out;}
.ubernym abbr.truncation {speak : normal;}

/* Javascript DomTT tooltip styles */
div.ubernym
{
    background-color: #00264b;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 13px;
    font-family: "Trebuchet MS", sans-serif;
    width: 250px;
    left: 0;
    top: 0;
    padding: 4px;
    position: absolute;
    text-align: left;
    z-index: 20;
    -moz-border-radius: 0 10px 10px 10px;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=87);
    -moz-opacity: .87;
    -khtml-opacity: .87;
    opacity: .87;
}

div.ubernym .contents
{
    margin: 0;
    padding: 0 3px;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
div.ubernym p
{
    color: #D17E62;
    font-size: 9px;
    padding: 3px 0 0 0;
    margin: 0;
    text-align: left;
    -moz-opacity: 1;
}

/* IF there is a caption, .caption and .contents are done inside a table */
div.ubernym table .contents
{
    border-top: 1px dotted #fff;
    font-size: 11px;
    font-weight: normal;
}

