/* Container is necessary because td cannot be positioned relative */

.tooltip{
    background:white;
    border: 1px solid #548ff4;
    color: mediumblue;
    font-size: 11px;
    width: 180px;
    min-height: 10px;
    letter-spacing: 1px;
    line-height: 15px;
    position: absolute;
    text-align: center;
    top:0px;
    left:22px;
    display:none;
    padding:5px 10px;

}
.tooltip:after{
    content:'';
    position:absolute;
    bottom:0px;
    width:8px;
    height:8px;
    border-bottom:1px solid #548ff4;
    border-right:1px solid #548ff4;
    background:white;
    left: 2%;
    top: 2%;
    margin-left:-10px;
    -moz-transform:rotate(135deg);
    -webkit-transform:rotate(135deg);
    transform:rotate(135deg);
}
.toolLink{
    position:relative;
    cursor:help;
    border-radius: 35px;
    background-color: #548ff4;
    color: white;
    text-decoration: none;
    padding: 0px 3px 0px 4px;
    margin: 0px;
    width: 10px;
    font-size: 11px;
    font-weight: bold;

}

.toolLink:hover .tooltip{
    display:block;
}

#myProfile p{
    padding: 0;
    margin: 0;
}

.menu{
    position:relative;
    text-decoration: none;
    padding: 0;
    margin: 0;
    font-family: helvetica;
    font-size: 16px;
    font-weight: normal;
    color: #cccccc;
    border: none;
}

.menu:hover{
    cursor: pointer;
    color: #999999;
}