/*ANCHOR - tooltip*/
a.tooltip2 {
	position: relative;
	text-decoration: none;
	color: #04668d;
	cursor: pointer;
}
a.tooltip2:after {
	content: attr(data-tooltip2);
	position: absolute;
	text-align: left;
	font-size: 0.7em;
	bottom: 130%;
	left: 20%;
	background: #ffcb66;
	padding: 5px 15px;
	color: black;
	border-radius: 10px;
	width: 400px;
	white-space: pre-line;
	opacity: 0;
	display: none;
	transition: all 0.6s ease;
}
a.tooltip2:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 20px solid #ffcb66;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	transition: all 0.4s ease;
	opacity: 0;
	left: 30%;
	bottom: 90%;
}
a.tooltip2:hover:after {
	bottom: 100%;
}
a.tooltip2:hover:before {
	bottom: 70%;
}
a.tooltip2:hover:after,
a.tooltip2:hover:before {
	display: block;
	opacity: 1;
	transition: all 0.6s ease;
}

