/** AFFICHER MASQUER INFOS DE PROFILS **/
.profut {   
    position: relative;
}

.infoprof {   
    background-color: #e8e8e8; 
    display: none;
    left: 1px;
    top: 0;
    padding: 4px;
    position: absolute;
    width: 120px;
}

.profut:hover .infoprof {
    display: block;
}
