/*-------------------------
	Inline help tip
--------------------------*/


.help-tip{
	position: absolute;
	top: 247px;
	right: 65px;
	text-align: center;
	background-color: #666666;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 14px;
	line-height: 18px;
	cursor: default;
}

.help-tip:before{
	content:'?';
	font-weight: bold;
	color:#fff;
}

.help-tip:hover p{
	display:block;
	transform-origin: 100% 0%;
    margin-top: -101px;
	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{
	display: none;
	text-align: justify;
	background-color: #666666;
	padding: 6px;
	width: 250px;
	position: absolute;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	left: -171px;
	color: #FFF;
	font-size: 8px;
	line-height: 1.4;
}

.help-tip p:before{
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border-bottom-color:#bdbebf;
	right:95px;
	top:84px;
}

.help-tip p:after{
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}
