#tooltip {
	text-align: center;
	color: #FFF;
	background: #52a6e1;
	position: absolute;
	z-index: 100;
	padding: 1em;
	border-radius: 5px;
	font-size: 0.8em;
	font-weight: bold;
	line-height: 1.3;
	opacity: 0.5;
		-moz-box-shadow: 0px 0px 5px 1px #9A9A9A;
		-webkit-box-shadow: 0px 0px 5px 1px #9A9A9A;
	box-shadow: 0px 0px 5px 1px #9A9A9A;
}
#tooltip:after {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #52a6e1;
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
}
#tooltip.top:after {
	border-top-color: transparent;
	border-bottom: 10px solid #52a6e1;
	top: -20px;
	bottom: auto;
}
#tooltip.left:after {
	left: 10px;
	margin: 0;
}
#tooltip.right:after {
	right: 10px;
	left: auto;
	margin: 0;
}
@media print, screen and (min-width:768px){
#tooltip {
	padding:15px;
	font-size:1em;
	line-height:1.5;
}
}