.stickytooltip{
display: none;
position: absolute;
display: none;
border: 0px solid black; /*Border around tooltip*/
background: white;
z-index:3000;
width: px;
font-family: tahoma;
font-size: 25px;
text-align: center;
color: #086c8c;

-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
-moz-box-shadow:0px 0px 3px #000000;
-webkit-box-shadow:0px 0px 3px #000000;
box-shadow:0px 0px 3px #000000;
/*IE 7 AND 8 DO NOT SUPPORT BLUR PROPERTY OF SHADOWS*/
background-image: -moz-linear-gradient(top, #ffffff, #e3e3e3);
background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#e3e3e3));
background-image: -o-linear-gradient(top, #ffffff, #e3e3e3);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e3e3');
/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
/*Element must have a height (not auto)*/
/*All filters must be placed together*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e3e3')";
/*Element must have a height (not auto)*/
/*All filters must be placed together*/
background-image: linear-gradient(top, #ffffff, #e3e3e3);
-moz-background-clip: padding-box;
-webkit-background-clip: padding-box;
background-clip: padding-box;
/*Use "background-clip: padding-box" when using rounded corners to avoid the gradient bleeding through the corners*/
/*--IE9 WILL PLACE THE FILTER ON TOP OF THE ROUNDED CORNERS--*/
opacity:0.8;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
/*-ms-filter must come before filter*/
filter: alpha(opacity=80);
/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
/*All filters must be placed together*/

}

h2 {
  padding: 0px;
  margin: 0px;
  font-family: trebuchet ms;
  font-size: 16px;
  font-style: italic;
  line-height: 15px;}

.stickytooltip .stickystatus{ /*Style for footer bar within tooltip*/
background:;
color:white;
padding-top:0px;
text-align:center;
font:bold 0px Arial;
}