﻿/*Tooltip UI component by www.menucool.com */


/*For tooltip box*/

div#mcTooltip {
    color: #DDDDDD;
    border-color: #666666;
    padding: 2px;
}

div#mcTooltip,
div.mcTooltipInner {
    font-size: 11px;
    line-height: 14px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.9);
    /* For IE 5.5 - 7*/
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}


/* For hyperlink within tooltip */

div#mcTooltip a {
    color: #6CF;
}


/*Close button. Available when sticky or overlay has been set to true, or is on iPhone, iPad, Android, BlackBerry, or IEMobile devices. */

div#mcttCloseButton {
    width: 14px;
    height: 14px;
    position: absolute;
    /*background-image:url(closeBtn.gif);*/
    cursor: pointer;
    overflow: hidden;
    top: 12px;
    right: 12px;
    left: auto;
}


/* Only applies when overlay has been set to true or 1 */

div#mcOverlay {
    background-color: black;
    opacity: 0.5;
    filter: alpha(opacity=50);
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 4;
}


/*The settings below should remain unchanged*/

div#mcTooltipWrapper {
    position: absolute;
    visibility: hidden;
    overflow: visible;
    z-index: 9999999999;
    top: -2000px;
}

div#mcTooltip {
    float: left;
    border-style: solid;
    position: relative;
    overflow: hidden;
}

div.mcTooltipInner {
    float: left;
    position: relative;
    width: auto;
    height: auto;
}

div#mcttCo {
    position: absolute;
    text-align: left;
}

div#mcttCo em,
div#mcttCo b {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
}

#mcTooltip div a {
    display: none;
}

svg>g>g:last-child {
    pointer-events: none
}