/*!
 * qTip2 - Pretty powerful tooltips - v2.0.1-39-
 * http://qtip2.com
 *
 * Copyright (c) 2013 Craig Michael Thompson
 * Released under the MIT, GPL licenses
 * http://jquery.org/license
 *
 * Date: Wed Mar 27 2013 01:23 GMT+0000
 * Plugins: svg ajax tips modal viewport imagemap ie6
 * Styles: basic css3
 */

/* Core qTip styles */
.qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;

	max-width: 400px;
	min-width: 50px;
	
	font-size: 13px;
	font-weight: 600;
	line-height: 14px;

	direction: ltr;
	box-shadow: none;
	padding: 0;
}

/* Fluid class for determining actual width in IE */
	.qtip-fluid{
		display: block;
		visibility: hidden;
		position: static !important;
		float: left !important;
	}

	.qtip-content{
		position: relative;
		padding: 6px;
		overflow: hidden;
		border-style: solid;
		text-align: justify;
		/*word-wrap: break-word;*/
	}

	.qtip-titlebar{
		position: relative;
		min-height: 14px;
		padding: 5px 35px 5px 10px;
		overflow: hidden;
		border-width: 2px 2px 0;
		border-style: solid;
		font-weight: bold;
	}

	.qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }

	/* Default close button class */
	.qtip-close{
		position: absolute;
			right: 4px;
			top: 50%;
			margin-top: -9px;
			cursor: pointer;
			outline: medium none;
			border-width: 1px;
			border-style: solid;
	}

		.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;
			/*vertical-align: middle;*/
		}

		.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: 18px;
				height: 14px;

				text-align: center;
				text-indent: 0;
				font: normal bold 10px/13px Tahoma,sans-serif;

				color: inherit;
				background: transparent none no-repeat -100em -100em;
			}


/* 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{
	max-width: 240px;
	border: 2px solid #1565C0;
}

	.qtip-default .qtip-titlebar,
	.qtip-default .qtip-content
	{
	    border: none;
		background-color: #1565C0;
	    color: #ffffff;
	    color: rgba(255,255,255,0.87);
	}

.qtip-default .qtip-icon{
		border-color: #CCC;
		background: #F1F1F1;
		color: #777;
	}
	
	.qtip-default .qtip-titlebar .qtip-close{
		border-color: #AAA;
		color: #111;
	}

.qtip-default.maxwidth320 {
	max-width: 320px;
}

/*! Dark tooltip style */
.qtip-dark {
	border: none;
}
.qtip-dark .qtip-titlebar,
.qtip-dark .qtip-content{
	border: none;
	background-color: #181D22;
	color: #F1F2F4;
    color: rgba(255,255,255,0.87);
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
}

.qtip-dark .qtip-content:hover{
	text-decoration: none;
}

	.qtip-dark .qtip-content{
		padding: 8px 8px 5px;
	}

	.qtip-dark .qtip-icon{
		border-color: #181D22;
	}

	.qtip-dark .qtip-titlebar .ui-state-hover{
		border-color: #181D22;
	}
	
	.qtip-dark .qtip-tip,
	.qtip-dark .qtip-tip *{
		background-color: #181D22 !important;
	} 

/* Zone Switcher */
.qtip.ui-tooltip-zone-switcher {
	border: 1px solid gray;
	max-width: 330px;
	width: 260px;
}

.ui-tooltip-zone-switcher .qtip-content{
	background: #FFF;
	padding: 0;
}

	.qtip.ui-tooltip-zone-switcher .qtip-tip,
	.qtip.ui-tooltip-zone-switcher .qtip-tip *{
		color: #999;
		background: transparent;
		background-color: #FFF;
		border: 0px dashed transparent;
	}

/* Tips plugin */
.qtip .qtip-tip{
	margin: 0 auto;
	overflow: hidden;
	z-index: 10;
}

	.qtip .qtip-tip,
	.qtip .qtip-tip .qtip-vml,
	.qtip .qtip-tip canvas{
		position: absolute;

		color: #1565C0;
		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;
	}

/* Modal plugin */
#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)";
	}

/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE6+, Safari 2+ */
.qtip-shadow
{
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-rounded .qtip-content,
.qtip-tipsy,
.qtip-tipsy .qtip-content,
.qtip-youtube,
.qtip-youtube .qtip-content{
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

.qtip-rounded .qtip-titlebar,
.qtip-tipsy .qtip-titlebar,
.qtip-youtube .qtip-titlebar{
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

.qtip-rounded .qtip-titlebar + .qtip-content,
.qtip-tipsy .qtip-titlebar + .qtip-content,
.qtip-youtube .qtip-titlebar + .qtip-content{
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar{
	filter: none;
	-ms-filter: none;
}
