/* CSS Document */

/* Relativer Tooltip */
a.tooltip {
	text-decoration: none;
	color: #FF9900;
  }
  
a.tooltip:link  {
	text-decoration: none;
	color: #FF9900;
	position: relative;
  }
  
a.tooltip:visited {
	text-decoration: none;
	position: relative;
	color: #FF9900;
  }
  
 a.tooltip:active  {
	text-decoration: none;
	color: #FF9900;
  }
  
a.tooltip:hover {
	color: #FFFFFF;
	background: transparent;
  }

a.tooltip span {
  display: none;  
  text-decoration: none; 
}

a.tooltip:hover span {
	display: block;
	position: absolute;
	left: 35px;
	width: 350px;
	z-index: 500;
	color: #EFE0C9;
	border:1px solid #D3BEAB;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 8px;
	background-image: url(bilder/layout/back_90proz_rot.png);
	background-repeat: repeat;
	top: 0px;
  }
  
a.tooltip span b {
	display: block;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
	color: #FF9900;
	border: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: normal;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 3px;
	margin-left: 0;
}
a.tooltip span label {
	width: 50px;
}
