/*****ANIMATIONS*****/

.tooltip {
	transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
}

.tooltip span {
	pointer-events: none;
	opacity: 0;
	filter: alpha(opacity=0);
	bottom: 0;
	
	transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
}

.tooltip:hover span {
	pointer-events: auto;
	opacity: 1;
	filter: alpha(opacity=100);
	bottom: 30px;
}

/*****END ANIMATIONS*****/

/*****TOOLTIP*****/

.tooltip {
	font-weight: 700;
	color: #FF9900;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.tooltip:hover {
	color: #FF9900;
}

.tooltip span {
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	color: #fff;
	min-width: 150px;
	max-width: 300px;
	padding: 12px 20px;
	left: -50%;
	margin-left: -35px;
	display: block;
	position: absolute;
	z-index: 30;
	background-color: #FFF;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25),inset 0 0px 0 rgba(0, 0, 0, 0.1);
	border-radius: 1px;
}

.tooltip:hover span {
	display: block;
}

.tooltip span:before, .tooltip span:after /* Triangle */ {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	margin-left: -10px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #ffffff;
	z-index: 29;
}

.tooltip span img {
	max-width: 300px; /* Maximum width of image to display. probably don't want any larger or else it will be too distracting. */
	padding: 6px 0;
	clear: right;
}

/*****END TOOLTIP*****/
