/* this class is used to style the links/hot areas where a tooltip should go */
.showAcgTooltip
{
	cursor:hand;
	cursor:pointer;
	jcolor:#0071c5;
	border-bottom:1px dotted;
}

.acgTooltip
{
	position:absolute;
	z-index:9999;
	overflow:hidden;
	max-width:320px;
	width:80%;
	
	pointer-events:none;
	font-size:1.1em;
	padding:1em;
	jopacity:0.9;
	color:#004280;
	
	jborder:1px solid #939598;
	border:2px solid #000000;
	
/*
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
*/
	
	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);
}