<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

    --noir: #262626;
    --orange: #EF7D00;
    --vert-drapeau: #3FA535;
    --vert: #0f7705;
    --vert-fonce:#023A05;
    --blanc: #FFF;
}






#page_agenda{
    display: block;
    width: 100% !important;
    /* border: 1px solid rgb(215, 234, 13); */
    background-color: var(--blanc);
    padding: 15px;
}


#page_agenda .titre{
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100% !important;

    color: var(--noir);
    margin-top: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 208, 157, 0.2);
    border-radius: 4px;
    border-bottom: 3px solid var(--vert-fonce);
}
#page_agenda .titre h2{
    font-size: 16px;
    font-weight: 600;
}
#page_agenda .liste{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 3;

    /* border: 1px solid red; */
}
#page_agenda .liste::before{
    position: absolute;
    content: "";
    width: 8px;
    border-left: 0px dotted rgba(126, 126, 126, 0.3);
    top: 6px;
    bottom: 0;
    left: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

#page_agenda .liste .item{
    position: relative;
    width: 100%;
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    /* justify-content: space-between; */
    min-height: 50px;
    margin-bottom: 12px;
    padding: 10px;
    /* border: 1px solid red; */
    background-color: rgba(201, 230, 192, 0.2);
}
#page_agenda .liste .item{
    position: relative;
    background-color: rgba(201, 230, 192, 0.2);
}
#page_agenda .liste .item:nth-child(2),
#page_agenda .liste .item:nth-child(4),
#page_agenda .liste .item:nth-child(6){
    position: relative;
    background-color: rgba(207, 201, 166, 0.2);
}
#page_agenda .liste .item .libelle{
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid rgba(126, 126, 126, 0.0);
    padding: 0 !important;
    max-height: auto !important;
    margin-left: 0px !important;

    z-index: 5;
}
#page_agenda .liste .item .libelle .trait{
    position: absolute;
    left: 0px;
    top: -10px;
    margin-right: 10px;
    width: 22px;
    display: inline-block;
    border: 0px solid gainsboro;
    margin-bottom: 5px !important;
}
#page_agenda .liste .item .libelle .trait img{
    position: relative;
    display: inline-block;
    width: 18px;
}
#page_agenda .liste .item .libelle .date{
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--noir);
    /* border: 1px solid red; */
    padding-left: 22px;

}
#page_secondaire .liste .item .caption {
    position: relative;
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 22px;
}








/******************************************* Responsive********************/

@media screen and (max-width: 1520px) {

}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1350px) {
    
}
@media screen and (max-width: 1250px) {

}
@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
   
   
}
@media screen and (max-width: 640px) {
    
}
@media screen and (max-width: 480px) {
  
}


/**************       dark mode   ***********/
.dark-mode #page_agenda {
    background-color: rgba(126, 126, 126, 0.001);
}
.dark-mode #page_agenda .items .item{
    box-shadow: 0 4px 8px 0 rgba(189, 189, 189, 0.01), 0 6px 20px 0 rgba(195, 148, 41, 0.081);
}
.dark-mode #page_agenda .titre,
.dark-mode #page_agenda .liste .item .libelle .date{
    color: yellow !important;
}
.dark-mode #page_agenda .items .item a .caption .foot .right,
.dark-mode #page_agenda .one_video .item a .caption .foot .right{
    border: 1px solid yellow !important;
}
.dark-mode #page_agenda .titre{
    border-bottom: 1px solid yellow !important;
}
.dark-mode #page_agenda .trait,
.dark-mode #page_agenda .one_video{
    border-color: yellow;
}


.dark-mode #page_agenda .titre{
   background-color: rgb(43, 43, 43) !important;
}

.dark-mode #page_agenda .liste .item{
   background-color: rgb(34, 34, 34) !important;
   background: rgb(44, 44, 44) !important;
}
.dark-mode #page_agenda .one_video .item a .inner .icon span,
.dark-mode #page_galerie .liste .item .inner .icon,
.dark-mode #page_agenda .one_video .item a .inner .icon{
    background-color: #000 !important;
    background: #000 !important;
}
</pre></body></html>