/*! miniTip CSS - v1.5.3 */

#miniTip {
  /* main styles for tooltip */
  background-color: #111;
  opacity:.95;
	border: 4px solid black;
	color: ivory;
	font-size: .9em;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999;
  cursor:pointer;
}

#miniTip a {
  color: ivory;
  text-shadow: none;
}

/* title bar style */
#miniTip_t {
	background-color: #000;
	opacity:.95;
	padding: 4px 6px;
	white-space: nowrap;
	font-size: small;
}

/* main content style */
#miniTip_c { padding: 4px 8px; opacity: 1; }

/* arrow holder, no need to edit */
#miniTip_a {
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
}

/* arrow pointing down, change border-top color to change color of the arrow */
#miniTip .n {
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #000;
	border-bottom: 0;
}

/* arrow pointing up, change border-bottom color to change color of the arrow */
#miniTip .s {
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #000;
	border-top: 0;
}

/* arrow pointing left, change border-right color to change color of the arrow */
#miniTip .e {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	border-right: 8px solid #000;
	border-left: 0;
}

/* arrow pointing right, change border-left color to change color of the arrow */
#miniTip .w {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	border-left: 8px solid #000;
	border-right: 0;
}