.tooltipsy {
    background-color: #FFFFFF;
    
    color: #808080;
    padding: 10px;
    position: relative;
	max-width: 150px;
	margin-top: -10px;
	
	font-size: 13px;
	line-height: 16px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px; /* border radius */
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box; /* prevents bg color from leaking outside the border */
	background-color: #fff; /* layer fill content */
	-moz-box-shadow: 2px 0 14px rgba(31,29,25,.26); /* drop shadow */
	-webkit-box-shadow: 2px 0 14px rgba(31,29,25,.26); /* drop shadow */
	box-shadow: 2px 0 14px rgba(31,29,25,.26); /* drop shadow */
	
	z-index: 99;

}

.tooltipsy:after {
    width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #FFFFFF;
    content: "";
    position: absolute;
    right: 75px;
    top: -10px;
    z-index: 100;
}

