<style type="">

/*POP IN*/

	/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
    margin-top :15px;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/*BOUTONS*/

.btn {
    border: none; /* Remove borders */
    color: black; /* Add a text color */
    padding: 20px 40px; /* Add some padding */
    cursor: none; /*Add a pointer cursor on mouse-over */ */
}

.success {background-color: #C3C9C6; font-size:13px; float:left;} 
.success:hover {background-color: #A6ADAD; font-size:13px; float:left;}

.info {background-color: #C3C9C6; font-size:13px; float:left;} 
.info:hover {background: #A6ADAD; font-size:13px; float:left;}

.warning {background-color: #C3C9C6; font-size:13px; float:left;} 
.warning:hover {background: #A6ADAD; font-size:13px; float:left;}

.danger {background-color: #C3C9C6; font-size:13px; float:left;} 
.danger:hover {background: #A6ADAD; font-size:13px; float:left;}

.default {background-color: #C3C9C6; color: black; font-size:13px; float:left; } /* Gray */ 
.default:hover {background: #A6ADAD; font-size:13px; float:left;}

.btn {
    position: relative;
    background-color: #C3C9C6;
    border: none;
    font-size: 13px;
    color: #000000;
    padding: 7px;
    width: 70px;
    text-align: center;

    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.btn:after {
    content: "";
    background: #A6ADAD;
    display: block;
    position: absolute;
/*     padding-top: 300%; */
/*     padding-left: 350%; */
    margin-left: -20px!important;
/*     margin-top: -120%; */
    opacity: 0;
    transition: all 0.8s
}

.btn:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}

p {
    font-size : 13px;
    /*margin-top : 15px*/
}

/*ul {
    font-size : 13px;
}*/

.textes {
	margin: 10px;
}

.textes img {
	width: 14px;
	float:left;
}


.textes h2 {
    font-size : 16px;
    margin-top:15px;

}

.textes p {
    font-size : 13px;
    color:black;

}

.textes ul li {
    font-size : 13px;
    color:black;
    margin-left:10px;
    
}

.textes a {
    font-size : 13px;
    color:#00a7de;
}

.textes table tr td {
    border:1px solid;
    border-color: black;
    text-align: center;
}


</style>