div.speechbubbles_c{
background-color:#166B94; /*background color of tooltip*/
border:1px solid white;
position:absolute;
top:0;
z-index:100;
visibility:hidden;
line-height:1.3em;
padding:8px;
width:300px; /*default width of tooltip*/
 color : white;
 font-size: 0.7em;

border-radius:8px; /*CSS3 border radius*/
-moz-border-radius:8px;
-webkit-border-radius:8px;
box-shadow:0 0 10px #888888; /*CSS3 shadow*/
-moz-box-shadow:0 0 10px #888888;
-webkit-box-shadow:0 0 10px #888888;
}



div.speechbubbles_c div.speechbubbles_c-arrow_c{  /*shared CSS for arrow DIV (upwards pointing)*/
border-color: transparent transparent #166B94 transparent; /*border color should be same as div.speechbubbles background color*/
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
top:-19px;
left:20px;
z-index:101;
_display:none; /*IE hack to hide arrow in IE6*/
}

div.speechbubbles_c div.speechbubbles_c-arrow_c-border{ /*shared CSS for arrow border DIV*/
border-color: transparent transparent white transparent; /*border color should be same as div.speechbubbles border color*/
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
top:-20px;
left:20px;
z-index:101;
_display:none; /*IE hack to hide arrow in IE6*/
}


div.downversion_c div.speechbubbles_c-arrow_c{ /*down arrow DIV specific CSS*/
border-color: #166B94 transparent transparent transparent; /*border color should be same as div.speechbubbles background color*/
top:auto;
bottom:-19px;
}


div.downversion_c  div.speechbubbles_c-arrow_c-border{ /*down arrow border DIV specific CSS*/
border-color: white transparent transparent transparent; /*border color should be same as div.speechbubbles border color*/
top:auto;
bottom:-20px;
}