#tabletooltip td div.chat-bubble
{
    display: none;
    background-color: #fff; /* border: 1px solid #C6C3C4;*/
    border: 1px solid #8A8A88;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 6px 4px 4px 4px;
    font-size: 10px;
    margin-top: 12px; 
}

#tabletooltip td:hover div.chat-bubble
{
    display: block;
    position: absolute;
}

#tabletooltip td:hover div.chat-bubble-arrow-border
{
    border-color: transparent transparent #8A8A88 transparent;
    content: '';
    display: block;
    position: absolute;
    top: -13px;
    left: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
}

#tabletooltip td:hover div.chat-bubble-arrow
{
    border-color: transparent transparent #fff transparent;
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
}

/* IE6 */

#tabletooltip td:hover div.chat-bubble-arrow
{
    _border-left-color: pink;
    _border-bottom-color: pink;
    _border-right-color: pink;
    _filter: chroma(color=pink);
    display: inline;
}




