
/*+++++++BUBBLE+++++++*/
.bubbleInfo {								
	position:relative;
	top: -6px;
	left: 4px;
	height: 18px;
	z-index: 101;
	width: 132px;
}/*Contains the popup bubble*/

.bubbleInfo:hover > #dpop, .bubbleInfo > #dpop, #dpop {									
/*	-webkit-transition-duration: .25s; */
	-webkit-transition-property: background,color,border,opacity,top;
	width: 125px;
	top:-2500px; /* so weit verschieben, dass Element unsichtbar */
	left:4px;
}
/*Adds a transition to the popup*/


#dpop {								
	background:#FFF;
	border:1px solid #a0c7ff;
	display:block;
	opacity:0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	padding:5px;
/*	position:absolute; */
	position:relative;
	top:26px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	-webkit-box-shadow:rgba(68,68,68,.5) 0px 3px 8px;
}
/*Having this styling on the invisible bubble is necessary so that the transitions only affects what we want*/

.bubbleInfo:hover > #dpop:after, #dpop:after {	
	border-color:#fff transparent transparent;
	border-style:solid;
	border-width:10px 10px;
	bottom:-20px;
	content:"\00a0";
	display:block; /* reduce the damage in FF3.0 */
	height:10;
	left:75px;
	position:absolute; 
	width:0;
}

.bubbleInfo:hover > #dpop {
	background: #FFFFFF;
	border: 1px #666666 solid;
	display: block;
	left:10px;
	opacity: 1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	padding: 10px;
	position: absolute;
	top: 15px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: rgba(68,68,68,.5) 0px 3px 8px;
}
/*When the bubbleInfo is hovered on, then the popup takes this styling*/

.popup-contents {							
background-color: white;
color: #666;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.2em;
width: 110px;
}

th {
text-align:left;
font-size:10pt;
color:black;
font-weight:bold;
}
td a {
text-align:left;
font-size:10pt;
color:black;
font-weight:bold;
}