a.Ntooltip {
	position: relative; /* es la posición normal */
	text-decoration: none !important; /* forzar negritas */
}

a.Ntooltip:hover {
	z-index:999; /* va a estar por encima de todo */
	background-color:#96AB27; /* DEBE haber un color de fondo */
}

a.Ntooltip span {
display: none; /* el elemento va a estar oculto */
}

a.Ntooltip:hover span {
	display: block; /* se fuerza a mostrar el bloque */
	position: absolute; /* donde va a estar */
	width:153px; /* el ancho por defecto que va a tener */
	padding:3px; /* la separación entre el contenido y los bordes */
	background-color: #96AB27; /* el color de fondo por defecto */
	color: #FFFFFF; /* el color de los textos por defecto */
	right: 45px;
	top: 0px;
	height: 53px;
	font-size: 16px;
}
a.Ntooltip span img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;

}
