.tooltip_link {
	position: relative;
}
.tooltip {
    display: none;
    position: absolute;
    padding: 10px;
    margin: 0 0 12px 0;
    z-index: 100;
    bottom: -52px;
    right: -20px;
    background: #007388;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
	border-radius: 5px;
    width: 150px;
    text-align: left;
}
.tooltip:after {
    content: "";
    display: block;
    position: absolute;
    top: -18px;
    right: 18px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-top: 10px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 10px solid #007388;
}
/*.tooltip:before {
    content: "";
    position: absolute;
    border: 0 solid #007388;
    bottom: -14px;
    z-index: 100;
	border-right-width: 10px;
    border-bottom: 14px solid transparent;
    width: 50%;
    right: 50%;
}*/