/* PowerTip Plugin */
#powerTip {
	cursor: default;
	background-color: #fff; /* fallback for browsers that dont support rgba */
	background-color: white;
	border-radius: 6px;
	display: none;
	padding: 10px;
	position: absolute;
	max-width: 400px;
	z-index: 1001;
	border: solid 1px #CCC;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

#powerTip h4{
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 5px;
}

#powerTip.n:before, #powerTip.e:before, #powerTip.s:before, #powerTip.w:before,
#powerTip.ne:before, #powerTip.nw:before, #powerTip.se:before, #powerTip.sw:before {
	content: "";
	position: absolute;
}
#powerTip.n:before, #powerTip.s:before {
	border-right: 5px solid white;
	border-left: 5px solid white;
	left: 50%;
	margin-left: -5px;
}
#powerTip.e:before, #powerTip.w:before {
	border-bottom: 5px solid white;
	border-top: 5px solid white;
	margin-top: -5px;
	top: 50%;
}
#powerTip.n:before {
	border-top: 10px solid white;
	bottom: -10px;
}
#powerTip.e:before {
	border-right: 10px solid #white;
	left: -10px;
}
#powerTip.s:before {
	border-bottom: 10px solid white;
	top: -10px;
}
#powerTip.w:before {
	border-left: 10px solid white;
	right: -10px;
}
#powerTip.ne:before, #powerTip.se:before {
	border-right: 10px solid white;
	border-left: 0;
	left: 10px;
}
#powerTip.nw:before, #powerTip.sw:before {
	border-left: 10px solid white;
	border-right: 0;
	right: 10px;
}
#powerTip.ne:before, #powerTip.nw:before {
	border-top: 10px solid white;
	bottom: -10px;
}
#powerTip.se:before, #powerTip.sw:before {
	border-bottom: 10px solid white;
	top: -10px;
}
