
.qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;

	/*tamanho caixa*/
	width: 375px;
	height: 70px;
	

	font-size: 14px;/*tamanho letra*/
	line-height: 20px;/*tamanho linha titulo*/

	direction: ltr;

	box-shadow: none;
	padding: 0;
}

	.qtip-content{
		position: relative;
		padding: 5px 9px;
		overflow: hidden;
		
		text-align: center;/*hiperTexto*/
		word-wrap: break-word;
	}

	.qtip-titlebar{
		position: relative;
		padding: 5px 35px 5px 10px;
		overflow: hidden;
		
		border-width: 0 0 1px;
		font-weight: bold;
	}

	.qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }

	
/*! Red tooltip style */
.qtip-red{
	background-color: #F78B83; /*fundo topo*/
	border-color: #D95252;
	color: white; /*letras topo*/
}
	/*barra topo*/
	.qtip-red .qtip-titlebar{
		background-color: #F06D65;
	}

	.qtip-red .qtip-close .qtip-icon{
		background-position: -102px 0;
	}

	.qtip-red .qtip-icon{
		border-color: #D95252;
	}

	.qtip-red .qtip-titlebar .ui-state-hover{
		border-color: #D95252;
	}


/*! Green tooltip style */
.qtip-green{
	background-color: #CAED9E;/*fundo topo*/
	border-color: #90D93F;
	color: white;
}

	.qtip-green .qtip-titlebar{
		background-color: #2E8B57;/*barra topo*/
	}

	.qtip-green .qtip-close .qtip-icon{
		background-position: -42px 0;
	}



/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.qtip-rounded .qtip-titlebar{
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}



