div.Tooltip {
	cursor: default;
	z-index: 99999;
	position: absolute;
	min-width: 100px;
	max-width: 300px;
	min-height: 40px;
}

/* fix min-with, max-width, min-height and max-height in IE6- */
* html div.Tooltip {
	width: 200px;
}

div.Tooltip * {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

div.Tooltip .Body {
	background: transparent url(./images/tooltip_body.png) repeat scroll center center;
}

div.Tooltip .Body .Content {
	color: #ffffff;
}

div.Tooltip .Top {
	height: 7px;
	background: transparent url(./images/tooltip_top.png) repeat-x scroll center top;
}

div.Tooltip .TopRightConner {
	width: 7px;
	height: 7px;
	background: transparent url(./images/tooltip_top-right.png) no-repeat scroll right top;
}

div.Tooltip .RightBorder {
	width: 7px;
	background: transparent url(./images/tooltip_right.png) repeat-y scroll right center;
}

div.Tooltip .BottomRightConner {
	width: 7px;
	height: 7px;
	background: transparent url(./images/tooltip_bottom-right.png) no-repeat scroll right bottom;
}

div.Tooltip .Bottom {
	height: 7px;
	background: transparent url(./images/tooltip_bottom.png) repeat-x scroll center bottom;
}

div.Tooltip .BottomLeftConner {
	width: 7px;
	height: 7px;
	background: transparent url(./images/tooltip_bottom-left.png) no-repeat scroll left bottom;
}

div.Tooltip .TopLeftConner {
	width: 7px;
	height: 7px;
	background: transparent url(./images/tooltip_top-left.png) no-repeat scroll left top;
}

div.Tooltip .LeftBorder {
	width: 7px;
	background: transparent url(./images/tooltip_left.png) repeat-y scroll left center;
}

div.Tooltip .Arrow {
	width: 14px;
	height: 14px;
	background: transparent url(./images/tooltip_arrow.png) no-repeat scroll 15px bottom;
}