/*	
 * PDFA: Tooltips
 * 
 * on mouseover display a tooltip
 * By Michael Robinson (mrobinson@mcdpartners.com)
 */
 ul.tooltips {
 	 position: static;
 }
  
 ul.tooltips li {
	position: static;
	display: block;
}

ul.tooltips li:hover, ul.tooltips li.hover {
	position: relative;
	z-index: 10;
}

ul.tooltips .tooltip {
	left: -9999em;
}

ul.tooltips li:hover .tooltip,
ul.tooltips li.hover .tooltip {
	left: 0px;
}
 
.tooltip {
	width: 248px;
	position: absolute;
	z-index: 99999;
}

.tooltip p {
	margin: 0;
	padding: 0;	
}

.tooltip .tip-top {
	height: 10px;	
	width: 247px;
	font-size: 1px;
	background: url(/images/tooltips/bg-top.png) left top no-repeat;
}

.tooltip .tip-middle {
	width: 247px;
	background: url(/images/tooltips/bg-middle.png) left top repeat-y;
}

.tooltip .tip-middle .tip-content {
	width: 245px;
	background-color: #80d0f8;
	font-size: 1.3em;	
}

.tooltip .tip-middle .tip-content .tip-inner-content {
	padding: 5px;	
}

.tooltip .tip-bottom {
	width: 247px;
	height: 4px;
	font-size: 1px;
	background: url(/images/tooltips/bg-bottom.png) left top no-repeat;	
}
