.tooltip-container {
	position: relative;	/* Forces tooltip to be relative to the element, not the page */
	cursor: pointer;
	background: #146499;		/* Makes you cursor have the help symbol */
}

.tooltip {
	display: block;
	position: absolute;
	width: 280px;
	padding: 15px 15px;
	left: 55%;
	bottom: 35px;
	margin-left: -145px;
	z-index: 100;
	/* Tooltip Style */
	color: #000;
	border: 2px solid #ccc;
	background: #CCC;
	text-align: left;
	border-radius: 8px;
	/* Tooltip Style */
	opacity: 0;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-0-transition:all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	/* reset tooltip, to not use container styling */
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	line-height: 18px;
}

.tooltip:before, .tooltip:after{
	content: '';
	position: absolute;
	bottom: -13px;
	left: 40%;
	margin-left: -9px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid rgba(0,0,0,0.1);
}
.tooltip:after{
	bottom: -12px;
	margin-left: -10px;
	border-top: 10px solid #ccc;
}

.tooltip-container a{
	color: #146499;
	font-size: 12px;
	text-decoration: none;
}

.tooltip-container:hover .tooltip, a:hover .tooltip {
	/* Makes the Tooltip slightly transparent, Lets the barely see though it */
	opacity:0.9;
	/* Changes the scale from 0 to 1 - This is what animtes our tooltip! */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-o-transform:scale(1);
	-ms-transform:scale(1);
	transform:scale(1);
}

/* Pure CSS3 Animated Tooltip - Custom Classes
---------------------------------------------------- */
.tooltip-style1 {
	color: #000;
	border: 2px solid #fff;
	background: #ccc;
	font-style: normal;
}
.tooltip-style1:after{
	border-top:10px solid #fff;
}
