﻿[data-tip] {
	position:relative;
    z-index:999999!important;
}
[data-tip]:before {
	content:'';
	/* hides the tooltip when not hovered */
	display:none;
	content:'';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #0052cc;	
	position:absolute;
	top:35px;
	left:35px;
	z-index:8;
	font-size:0;
	line-height:0;
	width:0;
	height:0;
    z-index:999999!important;
}
[data-tip]:after {
	display:none;
	content:attr(data-tip);
	position:absolute;
	top:40px;
	left:0px;
	padding:5px 8px;
	background:#0052cc;
	color:#fff;
	z-index:9;
	font-size: 12px;
	height:18px;
	line-height:18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	white-space:nowrap;
	word-wrap:normal;               
    width:auto;
    height:30px;
    z-index:999999!important;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
	display:block;	
}