/*
*******************************************************************************
						Copyright (c) 2005, 2006 John Ha
*******************************************************************************
This work is licensed under the Creative Commons Attribution License. To view
a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/2.5/
*******************************************************************************
If this code has helped you in anyway, any acknowledgement would be appreciated
*******************************************************************************
*/
#dom-tooltips {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1000;
	display: block;
	visibility: hidden;
	padding: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: #69c;
	background-color: #f0f8ff;
	color: #69c;
	font-family: Verdana, Sans-Serif;
	font-size: 10px;
}
#dom-tooltips ul {
	margin: 0 0 0 -20px;
	list-style: square;
}
* html #dom-tooltips ul {
	margin: 0 0 0 20px;
}
#dom-tooltips li {
	margin: 0;
}
#dom-tooltips small {
	color: #69c;
}