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

#tooltip
{
text-align: center;
color: #fff;
background: #111;
background:#cd0d6d;
position: fixed;
    bottom: 0;
    left: 0;
z-index: 99999;
padding: 15px;
    margin: 0;
font-size:12px;
text-transform:uppercase;
letter-spacing:0.1em;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
font-weight:700;
box-shadow:2px 2px 20px rgba(0,0,0,0.15);
    top: inherit !important;
    line-height: 1.4em;
}

#tooltip:after /* triangle decoration */
{
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #111;
border-top: 10px solid #5F021F;
content: '';
position: absolute;
left: 50%;
bottom: 0;
margin-left: -10px;
display: none;
}

#tooltip.top:after
{
border-top-color: transparent;
border-bottom: 10px solid #111;
border-bottom: 10px solid #5F021F;
bottom: -20px;
bottom: auto;
display: none;
}

#tooltip.left:after
{
left: 10px;
margin: 0;
}

#tooltip.right:after
{
right: 10px;
left: auto;
margin: 0;
}