/*
Tooltips
Version: 1.0.0
last updated on 2008.01.15
(c) 2007 swoop inc. (http://www.swoop.jp/)
*/

div.tooltip {
	background-color: #E44C48;
	border: 1px solid #E31C17;
	color: #FFF;
	height: auto;
	left: 0;
	padding: 5px;
	position: absolute;
	top: 0;
	width: 25em;
	width: auto;
	z-index: 20;
	
	-moz-border-radius-bottomleft: 7px;
	-moz-border-radius-bottomright: 7px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 7px;
	-moz-opacity: .91;
}
	
/* The title/alt within the Tooltip. */

div.tooltip p {
	border-bottom: 0px;
	font-size: 10px;
	line-height:1.5em;
	margin: 0;
	padding: 0 3px;
	
	-moz-opacity: 1;
}

/* The URI below the title of an anchor Tooltip. */

div.tooltip p.destination {
	border-bottom: 0px;
    font-size: 9px;
    padding-top: 3px;
	text-align: left;
	
	-moz-opacity: 1;
}

/*- The Access Key of an anchor. */

div.tooltip p span.accesskey {
	color: #D11717;
}

/* Display the help cursore in Abbreviations, Acronyms, Deletions and Inserts.-->
To turn off, comment around the style. To turn on, remove comment from around the style. Note, img is turned off by default. */

abbr {
	cursor: help;
}

acronym {
	cursor: help;
}

del {
	cursor: help;
}

ins {
	cursor: help;
}

/*
img {
	cursor: help;
}
*/