/* PowerTip Plugin */
#powerTip {
	cursor: default;
	background-color: #333;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 3px;
	color: #fff;
	font-size:13px;
	display: none;
	padding: 5px;
	position: absolute;
	white-space: nowrap;
	z-index: 2147483647;
}
#powerTip:before {
	content: "";
	position: absolute;
}
#powerTip.n:before, #powerTip.s:before {
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	left: 50%;
	margin-left: -6px;
}
#powerTip.s:before {
	border-bottom: 6px solid #333;
	border-bottom: 6px solid rgba(0, 0, 0, 0.8);
	top: -6px;
}
