/*
 * qTip2 - Pretty powerful tooltips - v2.2.1
 * http://qtip2.com
 *
 * Copyright (c) 2014 
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Mon Sep 8 2014 04:00 EDT-0400
 * Plugins: viewport
 * Styles: core
 */
.qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;

z-index: 300000;

	font-size: 15px;
	line-height: 20px;

	direction: ltr;

	box-shadow: none;
	padding: 0;
}
.qtip.tt_list_tooltip, .qtip.tt_list_tooltip_1 {
	max-width: 600px;
	min-width: 50px;
	border: 1px solid #054571;
}


	.qtip-content{
		position: relative;
		padding: 0px 0px;
		overflow: hidden;

		text-align: left;
		word-wrap: break-word;
	}

	.qtip-titlebar{
		position: relative;
		padding: 5px 35px 5px 10px;
		overflow: hidden;

		border-width: 0 0 1px;
		font-weight: bold;
	}

	.qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }

	/* Default close button class */
	.qtip-close{
		position: absolute;
		right: 13px; top: 10px;
		z-index: 11; /* Overlap .qtip-tip */

		cursor: pointer;
		outline: medium none;
		background-image: url(img/close_grau.png);
		border: 1px solid transparent;
		opacity: 0.5;
	}
	.qtip-close:hover{
		opacity: 1.0;
	}

		.qtip-titlebar .qtip-close{
			right: 4px; top: 50%;
			margin-top: -9px;
		}

		* html .qtip-titlebar .qtip-close{ top: 16px; } /* IE fix */

		.qtip-titlebar .ui-icon,
		.qtip-icon .ui-icon{
			display: block;
			text-indent: -1000em;
			direction: ltr;
			color: transparent;
		}

		.qtip-icon, .qtip-icon .ui-icon{
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			border-radius: 3px;
			text-decoration: none;
		}

			.qtip-icon .ui-icon{
				width: 24px;
				height: 24px;

				line-height: 24px;
				text-align: center;
				text-indent: 0;
				

				color: transparent;
				
			}

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.qtip-focus{}

/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.qtip-hover{}

/* Default tooltip style */
.qtip-default{
	background-color: #f4f4f4;  
	color: #585858;
	box-shadow: 5px 5px 12px rgba(0,0,0,.2);
	-webkit-box-shadow: 5px 5px 12px rgba(0,0,0,.2);
}

.tt_list_tooltip.qtip-default{
	background-color: #f4f4f4;  
	border: 1px solid #a9c209;
	color: #585858;
	box-shadow: 5px 5px 12px rgba(0,0,0,.2);
	-webkit-box-shadow: 5px 5px 12px rgba(0,0,0,.2);
}

	.qtip-default .qtip-titlebar{
		background-color: #FFEF93;
	}

	.qtip-default .qtip-icon{
		
	}

	.qtip-default .qtip-titlebar .qtip-close{
		border-color: #AAA;
		color: transparent;
	}
