/**
 * Projekt: Heinrich-Kirchner-Website
 * Gehört zu "jquery.tooltip.js"
 */

#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #999;
	background-color: #eee;
	/*
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	*/
	padding: 5px;
	opacity: 0.85;
	text-align: left;
	max-width: 240px;
	min-width: 240px;
}

#tooltip h3, #tooltip div { margin: 0; }
#tooltip h3 {
	color: navy;
	font-size: 0.9em;
}

#tooltip div.body {
	font-size: 0.85em;
}



