<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
	EASYDEVIS_MODAL.CSS
	pour les fenêtres modales
*/


/* LA FENETRE MODAL */
.modal_fenetre {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal_content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    /*border: 1px solid #888;*/
    width: 40%;
}

/* The Close Button */
.modal_close1 {
    color: darkgreen;
    float: left;
    font-size: 16px;
    font-weight: bold;
}

.modal_close1:hover,
.modal_close1:focus {
    color: blue;
    text-decoration: none;
    cursor: pointer;
}
/* The Close Button */
.modal_close2 {
    color: red;
    float: left;
    font-size: 16px;
    font-weight: bold;
}

.modal_close2:hover,
.modal_close2:focus {
    color: darkred;
    text-decoration: none;
    cursor: pointer;
}
/* The Close Button */
.modal_close1_foufou {
    color: darkgreen;
    float: left;
    font-size: 16px;
    font-weight: bold;
}

.modal_close1_foufou:hover,
.modal_close1_foufou:focus {
    color: blue;
    text-decoration: none;
    cursor: pointer;
}
/* The Close Button */
.modal_close2_foufou {
    color: red;
    float: left;
    font-size: 16px;
    font-weight: bold;
}

.modal_close2_foufou:hover,
.modal_close2_foufou:focus {
    color: darkred;
    text-decoration: none;
    cursor: pointer;
}</pre></body></html>