/* CSS Document for tooltip*/
/*tooltips*/
#tooltip {
	position: absolute;
	border: 1px solid #8993A6;
	background: #F7F7F8;
	padding: 2px 5px;
	color: #666666;
	display: none;
	font-size: 10px;
	/*
	min-width: 140px !important;
	max-width: 160px !important;
	width: 140px;
	*/
	width: auto;
	/*width: 220px;*/
	margin: 0 5px 0 0;
	height: auto;
}

/* the class for the italic text that will have a tooltip */
.tooltip {
	color: #5A8ACC;
	cursor:pointer;
}

.tooltip img {
	vertical-align:middle;
}