/* this class is used to style the links/hot areas where a tooltip should go */
.showAcgTooltip
{
	cursor:hand;
	cursor:pointer;
	border-bottom:1px dotted;
}

.acgTooltip
{
	position:absolute;
	z-index:9999;
	overflow:hidden;
	max-width:320px;
	width:80%;
	
	/*
	// If you want the tooltip to disappear when the mouse is over the tooltip, use "pointer-events:none"
	pointer-events:none;
	*/
	jfont-size:1.1em;
	padding:1em;
	jcolor:#004280;
	
	jborder:1px solid #939598;
	border:2px solid #000000;
	
	background-color:#ffffff;
}

#acgTooltipOverlay
{
	cursor:hand;
	cursor:pointer;
	
	position:fixed;
	z-index:9998;
	top:0;
	left:0;
	width:100%;
	height:100%;
	/* IE won't detect mousemove events if there is no background, so we have to set a background and opacity to 0 */
	background:#000;
	opacity:0;
	filter:alpha(opacity=0);
}