/*
 * Tooltip.js styles
 */

#tooltip {
	position:absolute;
	background:#DB2A64;
	color:#ffffff;
	padding:8px;
	z-index:999;
	width:250px;
	height:auto;
	border-radius: 5px;
}

#tooltip.alt-tooltip {
	background:#FFFFFF;
	color:#000;
	border: 1px solid blue;
	width:150px;
}