/*!
 * jQuery UI Tooltip 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tooltip/#theming
 */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa; }

.ui-tooltip, .arrow:after {
  background: #fff;
  border: 1px solid #888; }

.ui-tooltip {
  padding: 10px;
  color: #666;
  border-radius: 6px;
  box-shadow: 0 0 7px #888; }

.arrow {
  width: 40px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  left: 50% !important;
  margin-left: -30px;
  bottom: -20px; }

.arrow.top {
  top: -20px;
  bottom: auto; }

.arrow.left {
  left: 12%; }

.arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 15px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px #888;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  tranform: rotate(45deg); }

.arrow.top:after {
  bottom: -20px;
  top: auto; }

