/* 
    Document   : btooltip
    Created on : Feb 26, 2013, 9:39:37 AM
    Author     : 84023
    Description:
        Purpose of the stylesheet follows.
*/

/* tooltip for general */

.btooltipHolder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
}

.btooltipHolder.tip_top {
    padding-bottom: 5px;
}

.btooltipHolder.tip_bottom {
    padding-top: 5px;
}

.btooltipHolder.tip_right {
    padding-left: 5px;
}

.btooltipHolder.tip_left {
    padding-right: 5px;
}

.btooltipContent {
    font-size: 11px;
    color: #fff;
    /*    text-shadow: 0 0 2px #000;*/
    padding: 4px 8px;
    /*    border: 1px solid rgba(142,184,226,0.25);*/
    border: 1px solid #8EB8E2;
    background-color: #8EB8E2;
    background-color: rgba(142,184,226,0.92);
    /*    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));*/
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: 0 0 3px #555;
    -webkit-box-shadow: 0 0 3px #555;
    -moz-box-shadow: 0 0 3px #555;
}

.btooltipArrow,.btooltipArrowInner {
    position: absolute;
    border-color: transparent;
    border-style: solid;
    border-width: 6px;
    height: 0;
    width: 0;
}

.btooltipHolder.tip_top div.btooltipArrow {
    /*    border-top-color: #8EB8E2;*/
    border-top-color: rgba(142,184,226,0.35);
}

.btooltipHolder.tip_bottom div.btooltipArrow {
    /*    border-bottom-color: #8EB8E2;*/
    border-bottom-color: rgba(142,184,226,0.35);
}

.btooltipHolder.tip_right div.btooltipArrow {
    /*    border-right-color: #8EB8E2;*/
    border-right-color: rgba(142,184,226,0.35);
}

.btooltipHolder.tip_left div.btooltipArrow {
    /*    border-left-color: #8EB8E2;*/
    border-left-color: rgba(142,184,226,0.35);
}

.btooltipHolder.tip_top div.btooltipArrowInner {
    margin-top: -7px;
    margin-left: -6px;
    border-top-color: #8EB8E2;
    /*        border-top-color: rgba(142,184,226,0.92);*/
}

.btooltipHolder.tip_bottom div.btooltipArrowInner {
    margin-top: -5px;
    margin-left: -6px;
    border-bottom-color: #8EB8E2;
    /*        border-bottom-color: rgba(142,184,226,0.92);*/
}

.btooltipHolder.tip_right div.btooltipArrowInner {
    margin-top: -6px;
    margin-left: -5px;
    border-right-color: #8EB8E2;
    /*        border-right-color: rgba(142,184,226,0.92);*/
}

.btooltipHolder.tip_left div.btooltipArrowInner {
    margin-top: -6px;
    margin-left: -7px;
    border-left-color: #8EB8E2;
    /*border-left-color: rgba(142,184,226,0.92);*/
}

/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio:0) {	
    .btooltipContent {
        padding: 4px 8px 5px 8px;
        background-color: rgba(142,184,226,0.88);
    }
    .btooltipHolder.tip_bottom div.btooltipArrowInner { 
        border-bottom-color: rgba(142,184,226,0.88);
    }
    .btooltipHolder.tip_top div.btooltipArrowInner { 
        border-top-color: rgba(142,184,226,0.92);
    }
}
