.tool-tip {
	position: relative;
	text-align: center;
	background-color: #3131ff;
	border-radius: 30%;
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 30px;
	cursor: default;
	padding: 0px;
	margin: 2px;
}

.float_right {
	float: right;
}
.float_right p {
	margin-left: -280px;
}
.float_left {
	float: left;
}

/*
 HELP Style: '?'
 */
.help-tip:before {
	content: '?';
	font-weight: bold;
	color: #fff;
}
.help-tip:hover p {
	display: block;
}

/*
 INFO Style: 'i'
 */
.info-tip:before {
	content: 'i';
	font-weight: bold;
	color: #fff;
}
.info-tip:hover p {
	display: block;
}

/*
 TIPP Style: '!'
 */
.tipp-tip:before {
	content: '!';
	font-weight: bold;
	color: #fff;
}
.tipp-tip:hover p {
	display: block;
}

/*
 GENERAL SETTINGS
 */

.tool-tip p {	/* The tooltip */
	display: none;
	text-align: left;
	background-color: #fff;
	padding: 20px;
	width: 300px;
	position: relative;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	border: 3px solid #0A3D9A;
	right: -4px;
	color: #000;
	font-size: 13px;
	line-height: 1.4;
	z-Index: 9999;
	margin-top: -5px;
}

/* The pointer of the tooltip */
/*
.help-tip p:before{ 
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
	right:10px;
	top:-12px;
}
*/
/* Prevents the tooltip from being hidden */
.help-tip p:after{ 
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}

