.tooltip {
	position: relative;
	font-size: 8pt;
	text-decoration: none;
	color: black;
}
.tooltip:hover {
	color: #3B185A;
}


.tooltip:before, .tooltip:after {
	position: absolute;
	transition: All 0.5s ease;
	-webkit-transition: All 0.5s ease;
	-moz-transition: All 0.5s ease;
	-o-transition: All 0.5s ease;
	margin-left: -245px;
	margin-bottom: -5px;
	left: 50%;
	bottom: 300%;
	display: block;
	color: #000;
	opacity: 0;
}
.tooltip:before {
	content: attr(tooltip);
	border: solid 1px #C79900;
	background: #FFF;
	width: 250px;
	text-align: center;
	z-index: 2;
	font-size: 10px;
	line-height: 18px;
	padding: 5px;
}
.tooltip:after {
	content: '\25c6';
	margin-left: 0;
	margin-top: 10px;
	width: 15px;
	height: 15px;
	z-index: 1;
	line-height: 28px;
	color: #C79900;
	font-size: 10px;
}
.tooltip:hover:before, .tooltip:hover:after {
	bottom: 150%;
	opacity: 1;
}
