    .videopress-related-videos-tooltipable {
        position: relative; 
    }

    .videopress-related-videos-tooltip-wrapper { 
        width: 175px;
        position: absolute; /* Absolute will make the tooltip float above other content in the page */
        top: 40px;
        display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
        color: white;
        font-weight: bold;
        font-size: 9pt; /* A font size is needed to maintain consistancy */
        z-index:100;
        text-decoration : none;
    }

    .videopress-related-videos-tooltip-top { /* Top section of the tooltip */
        width: 175px;
        height: 30px;
        background: transparent url("tooltip-top.gif") no-repeat;
    }

    .videopress-related-videos-tooltip-middle { /* Middle section of the tooltip */
        padding: 8px 15px;
        background: #A1D40A url("tooltip-middle.gif") repeat-x top;
    }

    .videopress-related-videos-tooltip-bottom { /* Bottom Section of the tooltip */
        height: 13px;
        background: transparent url("tooltip-bottom.gif") no-repeat;
    }

