.tooltip {
	position:absolute;
	z-index:1030;
	display:block;
	visibility:visible;
	font-size:12px;
	line-height:1.4;
	opacity:0;
	filter:alpha(opacity=0)
}

.tooltip.in { 
	opacity:.9;
	filter:alpha(opacity=90)
}

.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: 350px;
	padding: 10px 10px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #4B7292;
	border-radius: 4px;
	font-family: 'Open Sans', arial, Helvetica, sans-serif;
	font-size: 13px;
}

.tooltip-arrow{
	position:absolute;
	width:0;
	height:0;
	border-color:transparent;
	border-style:solid
	}
	
.tooltip.top .tooltip-arrow{
	bottom:0;
	left:50%;
	margin-left:-5px;
	border-width:5px 5px 0;
	border-top-color:#4B7292;
}

.tooltip.top-left .tooltip-arrow{
	bottom:0;
	left:5px;
	border-width:5px 5px 0;
	border-top-color:#000
}

.tooltip.top-right .tooltip-arrow{
	bottom:0;
	right:5px;
	border-width:5px 5px 0;
	border-top-color:#000
}

.tooltip.right .tooltip-arrow{
	top:50%;
	left:0;
	margin-top:-5px;
	border-width:5px 5px 5px 0;
	border-right-color:#000
}

.tooltip.left .tooltip-arrow{
	top:50%;
	right:0;
	margin-top:-5px;
	border-width:5px 0 5px 5px;
	border-left-color:#000
}
.tooltip.bottom .tooltip-arrow{
	top:0;
	left:50%;
	margin-left:-5px;
	border-width:0 5px 5px;
	border-bottom-color:#000
}

.tooltip.bottom-left .tooltip-arrow{
	top:0;
	left:5px;
	border-width:0 5px 5px;
	border-bottom-color:#000
}

.tooltip.bottom-right .tooltip-arrow{
	top:0;
	right:5px;
	border-width:0 5px 5px;
	border-bottom-color:#000
}

.pull-right{
	float:right!important
}