.tipsy
{
    font-size: 1em;
    font-family: Segoe UI, Tahoma;
    position: absolute;
    padding: 5px;
    z-index: 10777;
}

.tipsy-inner
{
    background-color: #555;
    color: #FFF;
    max-width: 400px;
    padding: 5px 8px 5px 8px;
}

.tipsy-inner-center
{
    text-align: center;
}

.tipsy-inner-left
{
    text-align: left;
}

.tipsy-inner-right
{
    text-align: right;
}

/* Rounded corners */
.tipsy-inner {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* Uncomment for shadow */
.tipsy-inner {
    -webkit-box-shadow: 0 0 5px #000000;
    -moz-box-shadow: 0 0 5px #000000;
    box-shadow: 0 0 5px #000000;
}

.tipsy-arrow
{
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
}

/* Rules to colour arrows */
.tipsy-arrow-n
{
    border-bottom-color: #555;
}

.tipsy-arrow-s
{
    border-top-color: #555;
}

.tipsy-arrow-e
{
    border-left-color: #555;
}

.tipsy-arrow-w
{
    border-right-color: #555;
}

.tipsy-n .tipsy-arrow, .tipsy-nw .tipsy-arrow, .tipsy-ne .tipsy-arrow
{
    top: 0;
    border-top: none;
}

.tipsy-s .tipsy-arrow, .tipsy-sw .tipsy-arrow, .tipsy-se .tipsy-arrow
{
    bottom: 0;
    border-bottom: none;
}

.tipsy-n .tipsy-arrow, .tipsy-s .tipsy-arrow
{
    left: 50%;
    margin-left: -5px;
}

.tipsy-nw .tipsy-arrow, .tipsy-sw .tipsy-arrow
{
    left: 10px;
}

.tipsy-ne .tipsy-arrow, .tipsy-se .tipsy-arrow
{
    right: 10px;
}

.tipsy-e .tipsy-arrow, .tipsy-w .tipsy-arrow
{
    top: 50%;
    margin-top: -5px;
}

.tipsy-e .tipsy-arrow
{
    right: 0;
    border-right: none;
}

.tipsy-w .tipsy-arrow
{
    left: 0;
    border-left: none;
}

.error .tipsy-inner {
    background-color: #fff4c9;
    color: #000;
}

.error .tipsy-arrow-n{
    border-bottom-color: #fff4c9;
}

.error .tipsy-arrow-s{
    border-top-color: #fff4c9;
}

.error .tipsy-arrow-e{
    border-left-color: #fff4c9;
}

.error .tipsy-arrow-w{
    border-right-color: #fff4c9;
}