.tipsy { font-size: 12px; position: absolute; z-index: 100000; }
  .tipsy-inner { margin-left: 5px; padding: 8px 10px; background-color: white; border: 1px solid #333; color: black; max-width: 200px; text-align: left; }
  .tipsy-inner { border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
  .tipsy-arrow { position: absolute; background: url('/images/frontend/tipsy.png') no-repeat top left; width: 9px; height: 5px; z-index: 100}
  .tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px; }
    .tipsy-nw .tipsy-arrow { top: 0; left: 10px; }
    .tipsy-ne .tipsy-arrow { top: 0; right: 10px; }
  .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left; }
    .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left; }
    .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left; }
  .tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; }
  .tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 10px; height: 9px; }

  .tipsy-inner{
        /*  para IE */
        /*filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=2);*/
        /*  para Firefox */
        -moz-box-shadow: 2px 2px 5px #666666;
        /* para Chrome y Safari */
        -webkit-box-shadow: 2px 2px 5px #666666;
        /* para Opera */
        box-shadow: 2px 2px 5px #666666;
    }