.tooltipsy
{
	padding: 8px 10px;
	border-radius: 6px;
    max-width: 200px;
    color: #fff;
    background-color: #333;
	position:relative;
	margin:0;
	font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    line-height: 14px;
	z-index:2;
	pointer-events:none;
}
.tooltipsy::before {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index:1;
}