/*
 * qTip2 - Pretty powerful tooltips - v2.2.0
 * http://qtip2.com
 *
 * Copyright (c) 2013 Craig Michael Thompson
 * Released under the MIT, GPL licenses
 * http://jquery.org/license
 *
 * Date: Tue Dec 3 2013 03:05 EST-0500
 * Plugins: imagemap ie6
 * Styles: None
 */
.qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 280px;
	min-width: 50px;
	font-size: 10px;
	line-height: 1.6;
}
	.qtip-content{
		padding: 5px;
		position: relative;
		overflow: hidden;
		text-align: center;
		word-wrap: break-word;
	}
/* Default tooltip style */
.qtip-default{
	color: #000;
	background-color: #EAEAEA;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.qtip-default:before{
	content: "";
	display: block;
	margin-left: -5px;
	width: 0; height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fff transparent;
	position: absolute; bottom: -5px; left: 50%;
	
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

	.qtip-default .qtip-titlebar{background-color: #fff;}
	.qtip-default .qtip-icon{
		background: #fff;
		color: #000;
	}
.qtipmodal-ie6fix{position: absolute !important;}