.toolmsg{
    display: inline;
	position: relative;
	}
		
.toolmsg:hover:after{
	border: solid;
    border-color: #333;
	border-width: 2px;
    background-color: #AFD1ED;
    background: #AFD1ED;
    border-radius: 5px;
    bottom: 26px;
    color: #000000;
    content: attr(title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
	}
		
.toolmsg:hover:before{
	border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
	}
	
    
/* Example

<a href="#" title="This is some information for our tooltip." class="toolmsg"><span title="More">CSS3 Tooltip</span></a>

---------------------------*/
