/* up
CSS tooltip
*/

/* .tooltip class-Selektor fuer nicht positionierte Inline-Elemente (z.B. Text); 
   fuer Block-Elemente (z.B. IMGs) entsprechend anpassen oder direkt formatieren */

/*
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted silver;
}
*/

/* Chevron */
.tooltip .tooltiptext {
	visibility: hidden;
	min-width: 50px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;

	font-size: 11px;  /* up, Verdana */
	line-height: normal;
	text-align: center;
	background-color: #c4c5c7;  /* up */
	color: #0a0a0a;

	padding: 3px 8px 4px 7px;
	position: absolute;
	z-index: 1;
	top: -3px;  /* 0px */
	left: 20px;  /* 0px */

/* Fade in tooltip on hover */

	opacity: 0;
	-moz-transition: opacity 2s;
	-webkit-transition: opacity 2s;
	-o-transition: opacity 2s;
	transition: opacity 2s;
}

.tooltip a:focus .tooltiptext {
	visibility: visible;
	border-top:1px dotted #dd0000;
	filter: Alpha(opacity=85);  /* IE lt9 */
	opacity: 0.85;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	filter: Alpha(opacity=85);  /* IE lt9 */
	opacity: 0.85;
}

/* @media only screen and (max-width: 550px) {
.tooltip .tooltiptext { visibility:visible; opacity:0.85; }
} */
