a.tip {
	position: relative;
	cursor: pointer;
	font: normal normal 85% sans-serif;
	text-shadow: #090A0B 0 -1px;
	display: inline-block;
	border: 0px;
}

a.tip > i {
	text-align: left;
	font-family: 'Noto Sans', sans-serif;
	font-size: 0.7em;
	line-height: 150%;
	color: #110b12;
	text-shadow: white 0 1px;
	background: #DDD;
	background-clip: padding-box;
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5);
	border: 5px solid #111;
	border: 5px solid rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	position: absolute;
	width: 200px;
	left: 50%;
	margin-left: -100px;
	padding: 10px 10px;
	bottom: 100%;
	margin-bottom: 15px;
	visibility:hidden;
	opacity:0;
	-webkit-transition: opacity 0.5s linear;
	-moz-transition: opacity 0.5s linear;
	-ms-transition: opacity 0.5s linear;
	-o-transition: opacity 0.5s linear;
	transition: opacity 0.5s linear;
}

a.tip > i:before, a.tip > i:after {
	content: "";
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	top: 100%;
	left: 50%;
	margin-left: -25px;
}

a.tip > i:before {
	border-top: 10px solid #111;
	border-top: 10px solid rgba(0, 0, 0, 0.5);
	margin-top: 5px;
}

a.tip > i:after{
	border-top: 10px solid #DDD;
	margin-top: -2px;
	z-index: 1;
}

a.tip:hover > i {
	visibility: visible;
	opacity: 1;
}