
/* Top Menu --------------*/



/* Number Formating --------------*/
  .amtRight{
    text-align:right;
  }

  /* tooltip to show message on however --------------*/
  .tTip {
    position: relative;
    margin: 0px;
  }

  .tTip .tTextR {
    visibility: hidden;
    background: #eceeefc8;
    color: #0192ab;
    min-width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 100000;
    bottom: 125%; /* Above the button */
    right:0px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tTip:hover .tTextR {
    visibility: visible;
    opacity: 1;
  }