@charset "utf-8";
/* CSS Document */

.floating
{
	/*WIDTH AND HEIGHT OF THE TOOLTIP*/
	width:auto;
	height:12;
	
	/*THIS IS THE BORDER OF THE TOOLTIP*/
	border-style:solid;
	border-width:1px;
	border-color:#333;
	
	/*BACKGROUND-COLOR AND TEXT-COLOR*/
	color:#333;
	background-color:rgba(255,255,255,0.9);
	
	/*CHOOSE WHAT FONT YOU WANT IN THE TOOLTIP*/
	font-family:Calibri;
	
	/*PADDING AND WORD-WRAPPING*/
	padding: 0px 3px 0px 3px;
	word-wrap:break-word;
	
	/*DO NOT CHANGE*/
	display:none; 
	position:absolute;
	z-index: 99999;
}

.floating p

{
	dispay: inline;
	margin-top: 0; padding-top: 0;
}

