/**
 * @project     OTRS (http://www.otrs.org) - Agent Frontend
 * @version     $Revision: 1.2 $
 * @copyright   OTRS AG
 * @license     AGPL (http://www.gnu.org/licenses/agpl.txt)
 */

/**
 * @package     Skin "Default"
 * @section     Tooltips
 */

@media screen,projection,tv,handheld {

div.TooltipContainer {
    position: absolute;
    z-index: 4000;
    display: none;
}

div.Tooltip {
    width: 244px;
}

div.Tooltip.TongueLeft {
    margin-left: -37px;
}

/* RTL intentionally the same */
.RTL div.Tooltip.TongueLeft {
}

div.Tooltip.TongueRight {
    margin-left: -202px;
}

/* RTL intentionally the same */
.RTL div.Tooltip.TongueRight {
}

div.Tooltip > div.Tongue {
    height: 20px;
}

div.Tooltip > div.Content {
    padding: 5px 10px 15px 10px;
}

div.Tooltip.TongueLeft > div.Content {
    background: transparent url(../img/bubble_tongueleft.png) no-repeat bottom center;
}

div.Tooltip.TongueLeft > div.Tongue {
    background: transparent url(../img/bubble_tongueleft.png) no-repeat top center;
}

div.Tooltip.TongueRight > div.Content {
    background: transparent url(../img/bubble_tongueright.png) no-repeat bottom center;
}

div.Tooltip.TongueRight > div.Tongue {
    background: transparent url(../img/bubble_tongueright.png) no-repeat top center;
}


} /* end @media */