<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***********************************************************************************************************************************/
/************************                                   /!\  AVANT D'EDITER /!\                                          ************************/
/************************                                             VOIR                                                   ************************/
/************************                                   www.dev.equideow.com/doc                                    ************************/
/************************                                          ET                                                   ************************/
/************************               dev.owlient.eu/wiki/index.php/Guide_Int%C3%A9gration_Equideow              ************************/
/***********************************************************************************************************************************/

/***********************************************************************************************************************************/
/* SCROLLABLE-CONTENT - GENERIC ****************************************************************************************************************/
/***********************************************************************************************************************************/
.scrollable-content {
	position: relative;
	overflow: hidden;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.scrollable-content,
.scrollable-content .content {
	width: 100%; 
	height: auto; /* height est calculÃ© dans le JS ou surchargÃ© en CSS */
}

.scrollable-content .inner-container {
	position: absolute;
	top: 0;
     width: calc(100% + 20px);
	overflow-x: hidden;
	overflow-y: scroll;
}

.scrollable-content .scrollbar {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 6px;
	min-height: 32px;
	max-height: 100%;
	height: auto; /* height est calculÃ© dans le js */
	background-color: rgba(0,0,0,.4);
	z-index: 300;
	border-radius: 10px;
}


/***********************************************************************************************************************************/
/* PAGE NUMBERING ******************************************************************************************************************/
/***********************************************************************************************************************************/

div.pageNumbering{
     margin-top:10px;
}
div.pageNumbering &gt; ul{
     margin:0;
     padding:0;
}
div.pageNumbering &gt; ul &gt; li{
     margin-right:5px;
     margin-bottom: 5px;
     display:inline-block;
     height:22px;
     min-width:24px;
}
div.pageNumbering &gt; ul &gt; li.page,
div.pageNumbering &gt; ul &gt; li.empty{
     text-align:center;
}
div.pageNumbering &gt; ul &gt; li.page{
     background-color:#d1d070;
     border-radius:3px;
     border:1px solid #d1d070;
}
div.pageNumbering &gt; ul &gt; li.page.selected,
div.pageNumbering &gt; ul &gt; li.page:hover{
     background-color:#FAFAC6;
     border:1px solid #d1d070;
}
div.pageNumbering &gt; ul &gt; li.page.selected &gt; a{
     color:#710;
     text-shadow:inherit;
}
div.pageNumbering &gt; ul &gt; li.page &gt; a{
     color:#253a07;
     text-shadow:0 1px 0 #e9e8ab;
     display:block;
     padding:3px 2px;
}
div.pageNumbering &gt; ul &gt; li.page &gt; a:hover{
     color:#710;
     text-decoration:none;
}
div.pageNumbering &gt; ul &gt; li.page.simplified.next a{
     padding-left:5px;
     padding-right:25px;
}
div.pageNumbering &gt; ul &gt; li.page.simplified.previous a{
     padding-left:25px;
     padding-right:5px;
}
div.pageNumbering &gt; ul &gt; li.previous a{
     background-position:left 0;
}
div.pageNumbering &gt; ul &gt; li.next a{
     background-position:right -22px;
}
div.pageNumbering &gt; ul &gt; li.previous.disabled a{
     background-position:left -44px;
     cursor:default;
}
div.pageNumbering &gt; ul &gt; li.next.disabled a{
     background-position:right -66px;
     cursor:default;
}
div.pageNumbering &gt; ul &gt; li.previous a,
div.pageNumbering &gt; ul &gt; li.previous.disabled a,
div.pageNumbering &gt; ul &gt; li.next a,
div.pageNumbering &gt; ul &gt; li.next.disabled a{
     background-image:url(/media/equideo/image/interface/pagination.png);
     background-repeat:no-repeat;
}
div.pageNumbering &gt; ul &gt; li.previous.disabled{
     background-color:transparent;
     border:1px solid transparent;
}
div.pageNumbering &gt; ul &gt; li.next.disabled{
     background-color:transparent;
     border:1px solid transparent;
}

/* for sowcle ***********************************************************************************************************************/
div.sowcle-pageNumbering{
     margin-bottom:10px;
     height:32px;
}
div.sowcle-pageNumberingBottom{
     margin-top:10px;
}</pre></body></html>