/*
 * qTip2 - Pretty powerful tooltips - v2.2.1
 * http://qtip2.com
 *
 * Copyright (c) 2014 
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Sat Sep 6 2014 06:07 EDT-0400
 * Plugins: None
 * Styles: core css3
 */
.qtip{
	position: absolute;
	z-index:9999;/*99999999*/
	left: -28000px;
	top: -28000px;
	display: none;

	max-width: 800px/*580px*/;
	min-width: 80px;

	font-size: 10.5px;
	line-height: 16px;

	direction: ltr;

	box-shadow: none;
	padding: 5px;
}

	.qtip-content{
		position: relative;
		padding: 5px; padding-top:5px;
		overflow: hidden;

		text-align: left;
		word-wrap: break-word;
		
		font-size:12px;
		line-height:16px;
	}

	.qtip-titlebar{
		position: relative;
		padding: 5px 35px 0 5px;
		overflow: hidden;

		border-width: 0 0 1px;
		font-weight: bold;
		
		font-size:13px;
	}

	.qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }

	/* Default close button class */
	.qtip-close{
		position: absolute;
		right: 0; top: 0;
		z-index: 11; /* Overlap .qtip-tip */

		cursor: pointer;
		outline: none;

		border: none;
	}

		.qtip-titlebar .qtip-close{
			right: 1px; top: 1px;
		}

		* html .qtip-titlebar .qtip-close{ top: 16px; } /* IE fix */

		.qtip-titlebar .ui-icon,
		.qtip-icon .ui-icon{
			display: block;
			text-indent: -1000em;
			direction: ltr;
		}

		.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: 16px;
				height: 16px;

				line-height: 16px;
				text-align: center;
				text-indent: 0;
				font: normal bold 12px/13px Tahoma,sans-serif;

				/*color: inherit;
				background: transparent none no-repeat -100em -100em;*/
		
				color:#FFF;
				background:#F00;
			}

/* 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{
	border: 1px solid #cccccc;
	background-color: #ffffff;
	color: #000000;
}

	.qtip-default .qtip-titlebar{
		background-color: #ffffff;
	}

	.qtip-default .qtip-icon{
		border-color: #cccccc;
		background: #ffffff;
		color: #000000;
	}

	.qtip-default .qtip-titlebar .qtip-close{
		
	}

/*! Light tooltip style */
.qtip-light{
	background-color: white;
	border-color: #E2E2E2;
	color: #454545;
}

	.qtip-light .qtip-titlebar{
		background-color: white;
	}

.qtip-shadow{
	-webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap{
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.qtip-rounded .qtip-titlebar{
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar{
	filter: none;
	-ms-filter: none;
}

.qtip .qtip-tip{
	margin: 0 auto;
	overflow: hidden;
	z-index: 10;
	
}

	/* Opera bug #357 - Incorrect tip position
	https://github.com/Craga89/qTip2/issues/367 */
	x:-o-prefocus, .qtip .qtip-tip{
		visibility: hidden;
	}

	.qtip .qtip-tip,
	.qtip .qtip-tip .qtip-vml,
	.qtip .qtip-tip canvas{
		position: absolute;

		color: #123456;
		background: transparent;
		border: 0 dashed transparent;
	}
	
	.qtip .qtip-tip canvas{ top: 0; left: 0; }

	.qtip .qtip-tip .qtip-vml{
		behavior: url(#default#VML);
		display: inline-block;
		visibility: visible;
	}

#qtip-overlay{
	position: fixed;
	left: -10000em;
	top: -10000em;
}

	/* Applied to modals with show.modal.blur set to true */
	#qtip-overlay.blurs{ cursor: pointer; }

	/* Change opacity of overlay here */
	#qtip-overlay div{
		position: absolute;
		left: 0; top: 0;
		width: 100%; height: 100%;

		background-color: black;

		opacity: 0.7;
		filter:alpha(opacity=70);
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	}

/*.curTooltip{
	min-width:40px !important; width:auto !important; background:#fff !important; border:1px solid #ee7f01 !important; color:#ee7f01 !important; padding:3px 10px !important; text-align:center !important;
	-webkit-border-radius:2px; -khtml-border-radius:2px; -moz-border-radius:2px; -ms-border-radius:2px; -o-border-radius:2px; border-radius:2px !important;
}*/

.calendarTooltipp{ min-width:275px; max-width:400px; }

.qtipmodal-ie6fix{
	position: absolute !important;
}
