/* spezielle Definitionen je Info-Anwendung */
#content {
	min-height: 28em;
}

#content table.detailsGeschaeft {
	width: auto;
	font-size: 12px;
	line-height: 1.3;
}
#content table.detailsGeschaeft td {
	border-style: none;
}
#content table.detailsGeschaeft tr td:first-child {
	padding-left: 0;
}



#geschaeft.displaytag caption {
	overflow-x: scroll;
	display:none;
}

.scroll{
	width:auto;
	overflow-x: scroll;
	overflow-y: hidden;
}

a.tooltip {
    position: relative;
    text-decoration: none;
}
a.tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 20%;
    background: #ffcb66;
    padding: 5px 15px;
    color: black;
    -webkit-border-radius: 10px;
    -moz-border-radius   : 10px;
    border-radius        : 10px;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
    transition   : all 0.4s ease;
}
a.tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid #ffcb66;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
    transition   : all 0.4s ease;
    opacity: 0;
    left: 30%;
    bottom: 90%;
}
a.tooltip:hover:after {
    bottom: 100%;
}
a.tooltip:hover:before {
    bottom: 70%;
}
a.tooltip:hover:after, a:hover:before {
    opacity: 1;
}