/*******************************************************************************

FILE: tooltip.css
AUTHOR: Takashi Okamoto mud(tm) - http://www.mudcorp.com/
VERSION: 1.1 - added support for WIN IE6
DATE: 04/08/2006

--------------------------------------------------------------------------------

This file is part of MudToolTip.

	MudToolTip is free for anyone to use, but this header MUST be
	included, and may not be modified.

*******************************************************************************/

/*
body, a {
	background-color: white;
	color: black;
	font-family: georgia;
}
*/


img {
	border: none;
}

.tooltip {
	cursor: pointer;
}

#tooltipbox {
	position: absolute;
	width: 200px;
	height: 100px;
	z-index: 100;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: .8;
}

div.tooltipbox-pointer {
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 18px;
	background: url(../images/tooltip.gif) no-repeat;
}

#tooltipbox-content {
	padding: 4px;
	font-size: 10px;
	font-family: "Times New Roman", Times, Georgia, serif;
	font-style: normal;
	font-weight: bold;
	color: white;
	background-color: #333;
}

#footer {
	position: absolute;
	padding: 10px;
	bottom: 50px;
	font-family: Verdana, Monaco, Arial, Geneva, Helvetica, sans-serif;
	font-size: 9px;
}