@charset "utf-8";
/* CSS Document */

  .tooltip {
    display: inline;
    position: relative;
  }
  .tooltip:hover:after {
    bottom: 26px;
    content: attr(msg); /* este es el texto que será mostrado */
    left: -90px;
    position: absolute;
    z-index: 98;
    /* el formato gráfico */
    background:#444; /* el color de fondo */
    border-radius: 5px;
    color: #FFF; /* el color del texto */
    font-family: Arial;
    font-size: 12px;
    padding: 5px 15px;
    text-align: justify;
    text-shadow: 1px 1px 1px #000;
    width: 150px;
  }
  .tooltip:hover:before {
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
    /* el triángulo inferior */
    border: solid;
    border-color: #444 transparent;
    border-width: 6px 6px 0 6px;
  }