/* PowerTip Plugin */
/* http://cssarrowplease.com */
/* http://stevenbenner.github.io/jquery-powertip/ */
/* 5183b5 [rgba(81, 131, 181, 0)] = dark blue border, d3e8f5 [rgba(211, 232, 245, 0)] = light blue background */
/* 444444 [rgba(68, 68, 68, 0)] = gray border, e4e8c7 [rgba(228, 232, 199, 0)] = light green background */
/* faedb7 = yellow bg*/
#powerTip {
	position: absolute;
	cursor: default;
	/*background-color: #d3dad2; 333;*/
	/*background-color: rgba(0, 0, 0, 0.8);*/
	border-radius: 6px;
	background: #faedb7; 
	border: 2px solid #444444;
	color:#333;
	font-size:12px;
	display: none;
	padding: 10px;
	/*width: 98%;*/
	min-width: 150px;
	max-width: 500px;
	white-space: normal;
	z-index: 2147483647;
	/*
	filter: alpha(opacity = 95);
	opacity:0.95;
	*/
}
#powerTip:before {
	content: "";
	position: absolute;
}
/*e = east = pop to right*/
#powerTip.e:after, #powerTip.e:before {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
#powerTip.e:after {
	border-color: rgba(228, 232, 199, 0);
	border-right-color: #faedb7;
	border-width: 10px;
	top: 50%;
	margin-top: -10px;
}
#powerTip.e:before {
	border-color: rgba(68, 68, 68, 0);
	border-right-color: #444444;
	border-width: 13px;
	top: 50%;
	margin-top: -13px;
}
/*s = south = pop to bottom*/
#powerTip.s:after, #powerTip.s:before {
	bottom: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#powerTip.s:after {
	border-color: rgba(228, 232, 199, 0);
	border-bottom-color: #faedb7;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}
#powerTip.s:before {
	border-color: rgba(68, 68, 68, 0);
	border-bottom-color: #444444;
	border-width: 13px;
	left: 50%;
	margin-left: -13px;
}
/*w = west = pop to left*/
#powerTip.w:after, #powerTip.w:before {
	left: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
#powerTip.w:after {
	border-color: rgba(228, 232, 199, 0);
	border-left-color: #faedb7;
	border-width: 10px;
	top: 50%;
	margin-top: -10px;
}
#powerTip.w:before {
	border-color: rgba(68, 68, 68, 0);
	border-left-color: #444444;
	border-width: 13px;
	top: 50%;
	margin-top: -13px;
}
/*n = north = pop to top*/
#powerTip.n:after, #powerTip.n:before {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
#powerTip.n:after {
	border-color: rgba(228, 232, 199, 0);
	border-top-color: #faedb7;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}
#powerTip.n:before {
	border-color: rgba(68, 68, 68, 0);
	border-top-color: #444444;
	border-width: 13px;
	left: 50%;
	margin-left: -13px;
}