/* --- Ai Auto Links --- */

.autolink-tooltip {
	display: none;
}

.autolink-span {
	
}

.autolink-link {
	color: #4592cd;
}

body.ck-editor span.no-autolink {
	color: #ff0000;
	background: #ffeeee;
	border-radius: 2px;
}

/* --- QTip Core --- */

.qtip {
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 400px;
	min-width: 50px;
	direction: ltr;
	box-shadow: none;
	padding: 0;
	
	font-size: 0.929em;
	line-height: 1.4em;
}

.qtip-content {
	position: relative;
	overflow: hidden;
	text-align: left;
	word-wrap: break-word;
	
	padding: 5px 9px;
}

.qtip-titlebar {
	position: relative;
	overflow: hidden;
	border-width: 0 0 1px 0;
	border-style: solid;
	font-weight: bold;
	
	padding: 5px 35px 5px 10px;
}

.qtip-titlebar + .qtip-content {
	border-top-width: 0 !important;
}

/* Default close button class */
.qtip-close {
	position: absolute;
	right: -9px;
	top: -9px;
	cursor: pointer;
	outline: medium none;
	border: 1px solid transparent;
}

.qtip-titlebar .qtip-close {
	right: 4px;
	top: 50%;
	margin-top: -9px;
}

/* IE fix */
* html .qtip-titlebar .qtip-close {
	top: 16px;
}

.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: 18px;
	height: 14px;
	line-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 */
/* E.g. added/removed on mouseenter/mouseleave respectively */
.qtip-hover {}

/* --- Styling --- */

.qtip-default {
	border: 1px solid #7CCE0F;
	background-color: #F8FFF0;
	color: #326401;
	
	border-color: #4fa1dd;
	background-color: #f4fafd;
	color: #2f4f7b;
	
	-moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
	
	/*-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;*/
}

.qtip-default .qtip-titlebar {
	background-color: #e8f5e0;
	border-color: #d8e5d0;
	
	background-color: #e0eef5;
	border-color: #d0dee5;
	
	/*-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;*/
}

.qtip-default .qtip-icon {
	border-color: #CCC;
	background: #F1F1F1;
	color: #777;
}
	
.qtip-default .qtip-titlebar .qtip-close {
	border-color: #AAA;
	color: #111;
}

/* 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: 0;
	top: 0;
	width: 100%; height: 100%;
}

/* 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)";
}