.stickytooltip {
	position: absolute;
	display: none;
	display: none;
	background: white;
	border: 5px solid black; /*Border around tooltip*/
	z-index: 3000;
    box-shadow: 5px 5px 8px #818181; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 5px 5px 8px #818181;
	-moz-box-shadow: 5px 5px 8px #818181;
}

.stickytooltip .stickystatus { /*Style for footer bar within tooltip*/
	padding-top: 5px;
    background: black;
	color: white;
	text-align: center;
	font: bold 10px Helvetica, Arial, sans-serif;
}