.tipsy {
    padding: 5px;
    font: 11px tahoma;
    letter-spacing: 1px;
    opacity: 0.8;
    -moz-opacity: 0.8;
    -ms-filter: "alpha(opacity=80)"; /* IE 8 */
    filter: alpha(opacity=80); /* IE < 8 */
    background-repeat: no-repeat;
    background-image: url(../images/tipsy/arrows.gif);
}
.tipsy-inner {
    padding: 6px 8px;
    background-color: #000;
    color: #fff;
    max-width: 200px;
    text-align: center;
	
	border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
}

/* Grey */
.tipsy.tipsy-grey {
    background-image: url(../images/tipsy/arrows-grey.gif);
}
.tipsy.tipsy-grey .tipsy-inner {
    background-color: #616161;
}

/* Blue */
.tipsy.tipsy-blue {
    background-image: url(../images/tipsy/arrows-blue.gif);
}
.tipsy.tipsy-blue .tipsy-inner {
    background-color: #01A0FF;
}

/* Green */
.tipsy.tipsy-green {
    background-image: url(../images/tipsy/arrows-green.gif);
}
.tipsy.tipsy-green .tipsy-inner {
    background-color: #54B801;
}

.tipsy-north {
    background-position: top center;
}
.tipsy-south {
    background-position: bottom center;
}
.tipsy-east {
    background-position: right center;
}
.tipsy-west {
    background-position: left center;
}