.tooltip {
	z-index:1030;
	display:block;
	visibility:visible;
	font-size:12px;
	line-height:1.4;
	opacity:0;
	filter:alpha(opacity=0);
	position: absolute;
}
.tooltip.in {
	opacity:.9;
	filter:alpha(opacity=90);
}
.tooltip.fade {
	opacity:0;
	-webkit-transition:opacity .3s linear;
	-moz-transition:opacity .3s linear;
	-ms-transition:opacity .3s linear;
	-o-transition:opacity .3s linear;
	transition:opacity .3s linear;
}
.tooltip.fade.in {
	opacity:1
}
.tooltip.top {
	margin-top:-3px;
	padding:5px 0;
}
.tooltip.right {
	margin-left:3px;
	padding:0 5px;
}
.tooltip.bottom {
	margin-top:3px;
	padding:5px 0;
}
.tooltip.left {
	margin-left:-3px;
	padding:0 5px;
}
.tooltip-inner {
	max-width:200px;
	padding:3px 8px;
	color:#D1D1D2;
	text-align:center;
	background-color:rgba(33,33,33,.97);
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
	border-radius:4px;
}
.tooltip-arrow {
	width:0;
	height:0;
	border-color:transparent;
	border-style:solid;
	position: absolute;
}
.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
	bottom:0;
	border-width:5px 5px 0;
	border-top-color:rgba(33,33,33,.97);
}
.tooltip.top .tooltip-arrow {
	left:50%;
	margin-left:-5px;
}
.tooltip.top-left .tooltip-arrow {
	left:5px;
}
.tooltip.top-right .tooltip-arrow {
	right:5px;
}
.tooltip.right .tooltip-arrow {
	top:50%;
	left:0;
	margin-top:-5px;
	border-width:5px 5px 5px 0;
	border-right-color:rgba(33,33,33,.97);
}
.tooltip.left .tooltip-arrow {
	top:50%;
	right:0;
	margin-top:-5px;
	border-width:5px 0 5px 5px;
	border-left-color:rgba(33,33,33,.97);
}
.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
	top:0;
	border-width:0 5px 5px;
	border-bottom-color:rgba(33,33,33,.97);
}
.tooltip.bottom .tooltip-arrow {
	left:50%;
	margin-left:-5px;
}
.tooltip.bottom-left .tooltip-arrow {
	left:5px;
}
.tooltip.bottom-right .tooltip-arrow {
	right:5px;
}