/* 
    Document   : jqTooltip
    Created on : Aug 3, 2015, 9:30:40 AM
    Author     : admin
    Description:
        Purpose of the stylesheet follows.
*/
  .ui-tooltip {
    
    background: #fbec88;
    color: black;
    padding: 3px;
/*    font-weight: normal !important;*/
    border-radius: 6px;
    border: 0.5px solid black !important;
    box-shadow: 0 0 7px gray;
    min-width: 40px !important;
    z-index: 20000000 !important;
  }
  
  .ui-tooltip *{
    font-size: 11px !important;
  }
  
   .ui-tooltip, .arrow:after {
    background: #fbec88;
    border: 0.5px solid black;
  }
 
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }
  
  .tooltipRtl {
    font-size:10px;
    /*padding:10px;*/
    /*z-index: 99;*/
    /* for IE */
    filter:alpha(opacity=100);
    /* CSS3 standard */
    opacity:1;
    direction:rtl;
}
.tooltipLtr {
    font-size:10px;
    /*padding:10px;*/
    /*z-index: 99;*/
    /* for IE */
    filter:alpha(opacity=100);
    /* CSS3 standard */
    opacity:1;
    direction:ltr;
}

