

#ajax_tooltipObj{

}
#ajax_tooltipObj div{

}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */

#ajax_tooltipObj .ajax_tooltip_arrow{        /* Left div for the small arrow */
        width:0px;
        position:absolute;
        left:0px;
        top:0px;
        color: #000000;
        z-index:1000005;
        height:0px;
}

#ajax_tooltipObj .ajax_tooltip_content{
        border:1px solid #000000;        /* Border width */
        right:0px;        /* Same as border thickness */
        top:20px;
        position:absolute;
        width:50px;        /* Width of tooltip content */
        height:40px;        /* Height of tooltip content */
        background-color:#FFFFFF;   /* Background color */
        color: #000000;
        padding:2px;        /* Space between border and content */
        font-size:7pt;        /* Font size of content */
        font-family:verdana;
        overflow:auto;        /* Hide overflow content */
        z-index:1000001;
}