/* CSS for extension wt_csstooltip - Tooltips/Bubble-Help */


a.wt_csstooltip {
    	position: relative;
    	z-index: 240;
    	/*cursor: help;*/
	text-decoration: none; 
	border-bottom:1px dotted #00614D;
}
a.wt_csstooltip:hover { 
	z-index: 250; 
	text-decoration: none; 
    	background-color: #eee;
}
a.wt_csstooltip dfn {
	display: none;
	font-style: normal;
	z-index: 250; 
}
a.wt_csstooltip:hover dfn {
	display: block;
    	position: absolute;
    	top: 2em;
	width:300px;
    	left: 2em;
	overflow: hidden;
    	font-size: 11px;
	color: #ffffff;
	font-weight: normal;
	background: url(/fileadmin/templates/wt_csstooltip/DSD-Tooltips-BG.jpg) no-repeat;
	background-color: #00614D;
	z-index: 999999; 
	padding: 5px;
}
