/* CSS needed for the script */

#ajax_tpObj{
        z-index:1000000;
        text-align:left;
}
#ajax_tpObj div{
        position:relative;
}

/* 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_tpObj .ajax_tp_arrow{        /* Left div for the small arrow */
        background-image: url(/images/arrowL.gif);
        width:20px;
        position:absolute;
        left:0px;
        top:0px;
        background-repeat:no-repeat;
        background-position:center left;
        z-index:1000005;
        height:60px;
}

#ajax_tpObj .ajax_tp_content{
        border:2px solid #954C93;        /* Border width */
        left:18px;        /* Same as border thickness */
        top:0px;
        position:absolute;
        width:250px;       /*  Width of tooltip content */
        height:auto;       /* Height of tooltip content */
        background-color:#FAF8E6;        /* Background color */
        padding:5px;        /* Space between border and content */
        font-size:0.8em;        /* Font size of content */
        overflow:auto;       /*  Hide overflow content auto */
        z-index:1000001;
}

/* CSS needed for the script for Right Arrow Div */

#ajax_tpObjR{
        z-index:1000000;
        text-align:left;
}
#ajax_tpObjR div{
        position:relative;
}

/* 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_tpObjR .ajax_tp_arrowR{        /* Left div for the small arrow */
        background-image: url(/images/arrowR.gif);
        width:20px;
        position:absolute;
        right:98px;
        top:0px;
        background-repeat:no-repeat;
        background-position:center right;
        z-index:1000005;
        height:60px;
}

#ajax_tpObjR .ajax_tp_contentR{
        border:2px solid #954C93;        /* Border width */
        right:116px;        /* Same as border thickness */
        top:0px;
        position:absolute;
        width:250px;       /*  Width of tooltip content */
        height:auto;       /* Height of tooltip content */
        background-color:#FAF8E6;        /* Background color */
        padding:5px;        /* Space between border and content */
        font-size:0.8em;        /* Font size of content */
        overflow:auto;       /*  Hide overflow content auto */
        z-index:1000001;
}
