/* tooltip styling. uses a background image (a black box with an arrow) */ 
div.tooltip { 
    /*background:transparent url(img/tooltip/black_arrow_big.png) no-repeat scroll 0 0; */
	 background-color: black;
	 text-align:center;
    font-size:9px; 
	 font-weight: bold;
    height:72px; 
    padding:3px; 
    width:102px; 
    display:none; 
    color:#fff; 
	 z-index: 20;
} 
 
div.tooltip div{
	font-size: 12px;
	margin: 0 auto;
	margin-bottom: 8px;
	margin-top: 6px;
	width: 96%;
	
}
div.tooltip a{
	text-decoration: none;
}
