@import url('../font/font.css');

html {
	font-size: var(--fontSize);
	font-family: var(--fontStyle);
	height: 100%;
	width: 100%;
	overflow: hidden;
	/* for iOS */
	position: fixed;
	/* for iOS */
}

body {
	background-color: var(--contentBG);
	height: 100%;
}

p {
	margin: 0.9em;
}

.hidden {
	display: none;
}

div.scroller::-webkit-scrollbar {
	width: 9px;
}
div.scroller {
	scrollbar-color: var(--accentDarkBG) var(--accentLightBGalpha);
}
div.scroller::-webkit-scrollbar-track {
	background: var(--accentLightBGalpha);
}
div.scroller::-webkit-scrollbar-thumb {
	background-color: var(--accentDarkBG) ;
	border-radius: 6px;
}

/*=== DEFAULT LAYOUT - GENERAL ===============================================*/
.default #root,
.sco #root {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.default #header h1,
.sco #header h1 {
	margin: 0;
	text-align: end;
	color: var(--accentDarkFG);
	font-size: 1.5em;
	padding-inline-end: 1em;
	padding-top: 0.5em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.default #accessibility,
.sco #accessibility {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

#main {
	z-index: 1;
	margin: 0 auto 60px;
	width: 100%;
}

/*=== DEFAULT LAYOUT - FLEXBOX ===============================================*/

/*--- ROOT -------------------------------------------------------------------*/
.default #root,
.sco #root {
	display: flex;
	flex-flow: column;
}

.default #header,
.sco #header {
	flex: 0 0 60px;
}

.default #main,
.sco #main {
	flex: 1 1 auto;
}

.default #document,
.sco #document {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.default #footer,
.sco #footer {
	flex: 0 0 20px;
}

/*--- MAIN -------------------------------------------------------------------*/
.default #main {
	display: flex;
	flex-flow: row;
}

/*--- MENU -------------------------------------------------------------------*/
.default #tplMnuCo > #tplMnuScroll {
	/* Must be set on all parent flex items of an overflowing item */
	min-height: 0;
	overflow: hidden;
}

.default #tplMnuCo{
	display: flex;
	flex-flow: column;
}

.default #tplMnuCo > .ueMnuSrlUp {
	order: 1;
	flex: 0 0 20px;
}

.default #tplMnuCo > #tplMnuScroll{
	order: 2;
	flex: 1 1 auto;
	overflow-y: auto;
	margin: 1em 0;
	position: relative;
	/* Necessaire pour le centrage automatique de l'item de menu courant */
}

.default #tplMnuCo > .ueMnuSrlDwn {
	order: 3;
	flex: 0 0 20px;
}

/*--- DOCUMENT ---------------------------------------------------------------*/
.default #content {
	flex: 1 1 auto;
	background: var(--contentBG);
	color: var(--contentFG);
	position: relative;
}

.default .scroller{
	/* DEBUG - IE11 : ne peut pas scroller un flex auto */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding-block: 1em;
	padding-inline:1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	/* for iOS */
}


/*=== DEFAULT LAYOUT - TOOLS MENU ============================================*/
.default #tools ul {
	list-style-type: none;
	padding: 0;
	padding-inline-start: 1em;
	margin: 0;
}

.default #tools li {
	display: inline-block;
	height: 50px;
}

.default #tools .btnTool{
	display: inline-block;
	padding-top: 1em;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding-inline-start: 40px;
	overflow: hidden;
	background: url(../img/tpl/menu-tools.svg) no-repeat top;
	background-size: 100%;
}

/*=== LAYOUT - ACCESSIBILITY MENU  ===========================================*/
#accessibility {
	font-size: 60%;
	list-style-type: none;
	padding: 0;
	margin: 0;
	z-index: 2;
}

#accessibility li {
	display: inline-block;
	margin: 0 1em;
}

#accessibility a {
	opacity: 0;
	color: var(--accentLightBG);
	text-decoration: none;
}

#accessibility:hover a {
	opacity: 0.2;
}

#accessibility a:focus {
	opacity: 1;
}

/*=== LAYOUT - SUB-WINDOWS ===================================================*/

/*--- CONTAINER --------------------------------------------------------------*/
.subWindow_over {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accentDarkFG);
	opacity: 0.6;
}

.subWindow_win {
	position: absolute;
	top: 3em;
	bottom: 3em;
	left: 3em;
	right: 3em;
	display: flex;
	flex-flow: column;
	background-color: var(--accentDarkFG);
	border: 2px solid var(--accentDarkBG);
}

.subWindow_ti {
	flex: 0 0 1.5em;
	background-color: var(--accentDarkBG);
	color: var(--accentLightBG);
	padding-inline-start: 0.5em;
	font-weight: bold;
}

.subWindow_co {
	flex: 1 1 auto;
	position: relative;
}

.subWindow_co>a.focusOnCloseBtn {
	position: absolute;
	left: -1000px;
	top: -1000px;
}

.subWindow_fra {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

a.subWindow_x {
	display: inline-block;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	padding-inline-start: 16px;
	overflow: hidden;
	background: url(../img/content/buttons.svg) no-repeat top;
	background-size: 100%;
	background-position: 0 -32px;
	position: absolute;
	top: 2px;
	inset-inline-end: 2px;
}

.subWindow_co a.closeWin{
	display:none;
}

/*--- subWin.eval - FLEXBOX --------------------------------------------------*/
.subWin.eval #root {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	flex-flow: column;
}

.subWin.eval #header {
	position: absolute;
	text-align: end;
	width: 100%;
	z-index: 1;
}

.subWin.eval #accessibility {
	padding-inline-end: 20px;
}

.subWin.eval #accessibility a {
	color: var(--accentDarkBG);
}

.subWin.eval #main{
	flex: 1 1 auto;
	display: flex;
	flex-flow: column;
}

.subWin.eval #document {
	flex: 1 1 auto;
	display: flex;
	flex-flow: column;
}

.subWin.eval #content {
	flex: 1 1 auto;
	position: relative;
	padding: 0 0.5em;
	color: var(--contentFG);
}

.subWin.eval .scroller{
	/* DEBUG - IE11 : ne peut pas scroller un flex auto */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1em;
	overflow-y: auto;
}

/*--- subWin.eval - NAVBAR ---------------------------------------------------*/
.subWin.eval #main {
	background: url(../img/tpl/back-bottom-straight.svg) no-repeat bottom;
	background-size: 100% 60px;
}

.subWin.eval #navigation {
	flex: 0 0 45px;
	padding-top: 15px;
	position: relative;
}

.subWin.eval #navigation .evalCounter {
	position: absolute;
	font-size: 2em;
	color: var(--accentLightBG);
	top: 20px;
	inset-inline-start: 5px;
}

.subWin.eval #navigation nav {
	text-align: end;
}

.subWin.eval #navigation ul {
	display: inline-block;
	list-style-type: none;
	padding: 5px 0 0 0;
	margin: 0;
	text-align: end;
}

.subWin.eval #navigation li {
	display: inline-block;
	height: 30px;
}

.subWin.eval #navigation a {
	display: inline-block;
	padding-top: 1.5em;
	margin: 0;
	margin-inline-end: 1em;
	box-sizing: border-box;
	width: 35px;
	height: 35px;
	padding-inline-start: 35px;
	overflow: hidden;
	background: url(../img/tpl/buttonsEval.svg) no-repeat top;
	background-size: 100%;
}

.subWin.eval #navigation a.btnNav.prevEval {
	background-position: 0 0;
}

.subWin.eval #navigation a.btnNav.nextEval {
	background-position: 0 -70px;
}
html[dir='rtl'] .subWin.eval #navigation a {
	transform: scaleX(-1);
}

.subWin.eval #navigation a:hover {
	opacity: 0.9;
}

.subWin.eval #navigation span.btnNav {
	display: inline-block;
	padding-top: 1.5em;
	margin: 0;
	margin-inline-end: 1em;
	box-sizing: border-box;
	width: 35px;
	height: 35px;
}

.subWin.eval #navigation span.btnNav span {
	display: none;
}

/* === START - article ====================================================== */
html[dir='ltr'] section.article>.hBk_ti,
html[dir='ltr'] .sco section.article>.mainContent_ti{
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
html[dir='rtl'] section.article>.hBk_ti,
html[dir='rtl'] .sco section.article>.mainContent_ti{
	background-image: linear-gradient(to left, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
section.article>.hBk_ti,
.sco section.article>.mainContent_ti {
	background-size: 100% var(--borderWidth);
	background-position: bottom;
	background-repeat: no-repeat;
	padding-bottom: 4px;
	font-size: 1.6em;
}

section > .hBk_ti,
.sco section > .mainContent_ti {
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient),rgba(0,0,0,0) 100%);
	background-size: 100% var(--borderWidth);
	background-position: bottom;
	background-repeat: no-repeat;
	padding-bottom: 4px;
	font-size: 1.3em;
	margin-top: 25px;
}


figcaption {
	vertical-align: middle;
	font-style: italic;
}

.zoom a.resLnk {
	display: inline-block;
	line-height: 20px;
	vertical-align: middle;
	padding-inline: 25px 0;
	margin-inline-start: 0.5em;
	box-sizing: border-box;
	background-image: url(../img/content/buttons.svg);
	background-repeat: no-repeat;
}
html[dir='ltr'] .zoom a.resLnk {
	background-position: left -200px;
}
html[dir='rtl'] .zoom a.resLnk {
	background-position: right -200px;
}

a.tooltip_a.info {
	display: inline-block;
	margin-inline: 0.5em 0;
	width: 20px;
	height: 20px;
	background: url(../img/content/buttons.svg) no-repeat top;
	vertical-align: middle;
}
a.tooltip_a.info span {
	position: absolute;
	left: -9999px;
}

.tooltip {
	background-color: var(--accentLightBG);
	border: 2px solid var(--accentDarkBG);
}

.tooltip_co {
	padding: 2px 4px;

}

.tooltip_ti {
	background-color: var(--accentDarkBG);
	min-height: 20px;
	color: var(--accentDarkFG);
	text-align: center;
	padding-inline-end: 20px;
}

.tooltip_x {
	display: inline-block;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	padding-inline-start: 16px;
	overflow: hidden;
	background: url(../img/content/buttons.svg) no-repeat top;
	background-size: 100%;
	background-position: 0 -32px;
	position: absolute;
	top: 2px;
	inset-inline-end: 2px;
}
.tooltip p {
	margin: 0.3em 0;
}
.tooltip .resInFlow img {
	max-width:100%;
	height:auto;
}
.cc-button img {
	vertical-align: middle;
}


/* Nomenclature */
.ttnome{
	width: 100%
}

.ttnome td{
	text-align: center;
	background-color: var(--footerBG);
}

.ttnome.equ td:last-of-type{
	white-space: normal;
}

.ttnome tr:first-child td{
	font-style: italic;
}

section.nome table{
	border-collapse: collapse;
	width: 100%;
}

section.nome table th,
section.nome table td{
	text-align: center;
	padding: 0.5em 1em;
	border-bottom: 1px solid black
}

section.nome table th{
	padding: 5px 10px;
}
section.nome table p {
	margin: 0.1em 0.2em;
}

section.nome table td:last-of-type{
	white-space: nowrap
}


/* === STOP - article ======================================================= */

/* === CodeMirror =========================================================== */
.CodeMirror-static {
	margin-inline-start: 40px;
}

.CodeMirror-static pre {
	/* Reset some styles that the rest of the page might have set */
	border-radius: 0;
	border-width: 0;
	background: transparent;
	font-size: inherit;
	margin: 0;
	white-space: pre;
	word-wrap: normal;
	line-height: inherit;
	color: inherit;
	z-index: 2;
	position: relative;
	overflow: visible;
	border-inline-end: 30px solid transparent;
	width: fit-content;
	font-family: monospace;
	tab-size: 2;
}

.CodeMirror-line {
	position: relative;
	min-height: 16px;
}

.CodeMirror-linenumber {
	position: absolute;
	top: 0;
	width: 30px;
	padding-block: 0;
	padding-inline: 5px 3px;
	min-width: 20px;
	min-height: 16px;
	text-align: end;
	color: #676767;
	background-color: #f7f7f7;
	font-size: 0.8em;
	inset-inline-start: -38px;
}

.cm-keyword {
	color: #708;
}

.cm-atom {
	color: #219;
}

.cm-number {
	color: #164;
}

.cm-def {
	color: #00f;
}

.cm-variable {
	color: black;
}

.cm-variable-2 {
	color: #05a;
}

.cm-variable-3 {
	color: #085;
}

.cm-property {
	color: black;
}

.cm-operator {
	color: black;
}

.cm-comment {
	color: #a50;
}

.cm-string {
	color: #a11;
}

.cm-string-2 {
	color: #f50;
}

.cm-meta {
	color: #555;
}

.cm-error {
	color: #f00;
}

.cm-qualifier {
	color: #555;
}

.cm-builtin {
	color: #30a;
}

.cm-bracket {
	color: #997;
}

.cm-tag {
	color: #170;
}

.cm-attribute {
	color: #00c;
}

.cm-header {
	color: blue;
}

.cm-quote {
	color: #090;
}

.cm-hr {
	color: #999;
}

.cm-link {
	color: #00c;
}

.cm-negative {
	color: #d44;
}

.cm-positive {
	color: #292;
}

.cm-header,
.cm-strong {
	font-weight: bold;
}

.cm-em {
	font-style: italic;
}

.cm-link {
	text-decoration: underline;
}

.cm-invalidchar {
	color: #f00;
}

/* === STOP - CodeMirror ==================================================== */

/* === START - scCode ======================================================= */
.scCodeActive {
	border: 1px solid var(--accentLightBG);
	background-color: var(--contentBG);
}

.scCodeCtrl {
	background-color: var(--accentLightBG);
	padding: 0;
	height: 19px;
	text-align: end;
	z-index: 2;
	position: relative;
}

.scCodeActive .CodeMirror-static {
	transition: margin-inline-start 200ms ease-in;
}

.scCodeLineNums-invisible .CodeMirror-linenumber {
	display: none;
}

.scCodeLineNums-invisible .CodeMirror-static {
	margin-inline-start: 2px;
}

.scCodeRaw-invisible .scCodeRaw,
.scCodeRaw-visible .scCodeCode {
	display: block;
}

.scCodeActive .scCodeRaw,
.scCodeActive .scCodeCode {
	transition: opacity 1s ease-out;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.scCodeRaw-invisible .scCodeCode,
.scCodeRaw-visible .scCodeRaw {
	opacity: 1;
	height: auto;
	overflow: auto;
}

.scCodeCtrl a {
	display: inline-block;
	width: 20px;
	height: 19px;
	background-image: url("../img/content/code.svg");
	background-repeat: no-repeat;
	background-position: -0px -0px;
	margin: 0 1px;
}

.scCodeCtrl a:hover {
	opacity: 0.8;
}

.scCodeCtrl a span {
	display: none;
}

.scCodeCtrl a.scCodeBtnLineNums {
	background-position: -0px -20px;
}

.scCodeLineNums-invisible .scCodeCtrl a.scCodeBtnLineNums {
	background-position: -20px -20px;
}

.scCodeRaw-visible .scCodeCtrl a.scCodeBtnLineNums {
	visibility: hidden;
}

.scCodeCtrl a.scCodeBtnRaw {
	background-position: -0px -40px;
}

.scCodePlain .scCodeCtrl a.scCodeBtnRaw {
	background-position: -0px -20px;
}

.scCodeRaw-visible .scCodeCtrl a.scCodeBtnRaw {
	background-color: silver;
}

.scCodeRaw-visible.scCodePlain .scCodeCtrl a.scCodeBtnRaw {
	background-position: -20px -20px;
	background-color: inherit;
}

.scCodeCtrl a.scCodeBtnWrap {
	background-position: -0px -80px;
}

.scCodeWrap-on .scCodeCtrl a.scCodeBtnWrap {
	background-color: silver;
}

.scCodeRaw-visible .scCodeCtrl a.scCodeBtnWrap {
	visibility: hidden;
}

.scCodeCopyMsg.scCodeHidden {
	display: block;
	height: 0;
}

.scCodeCopyMsg.scCodeVisible {
	display: block;
	height: 18px;
}

.scCodeCopyMsg {
	position: absolute;
	z-index: 1;
	opacity: 0.8;
	top: 19px;
	width: 100%;
	background-color: #f7ed99;
	border-bottom: 1px solid #e4ca8c;
	color: #7e652a;
	text-align: center;
	overflow: hidden;
	transition: height 200ms linear;
	inset-inline-start: 0;
}

/* === STOP - scCode ======================================================== */

/* === START - SEARCH ======================================================= */
.mnu_sch>.capt,
.mnu_tgle_o,
.mnu_tgle_c {
	color: var(--accentDarkBG);
}

.schCmds {
	position: relative;
}

.schLabel {
	position: absolute;
	left: -9999px;
}

.schPropose a:hover {
	text-decoration: none;
}

.schBtnPropose:hover,
.schBtnPropose:focus {
	background-color: #F6F6F6;
}

.schPropose {
	position: absolute;
	top: 29px;
	width: 140px;
	padding: 5px 2px;
	border: 1px solid var(--accentDarkBG);
	border-top: 0;
	background-color: var(--contentBG);
	z-index: 100;
	font-size: 0.7em;
	box-shadow: 0 4px 4px #666;
	inset-inline-start: 0;
}

.schBtnPropose {
	display: block;
	text-decoration: none;
	color: var(--contentEmp);
	font-style: italic;
	padding: 0 2px;
	margin: 1px;
}

.schBtnPropose:hover,
.schBtnPropose:active,
.schBtnPropose:focus {
	outline: none;
	text-decoration: none;
	background-color: var(--accentDarkBG);
	color: var(--accentDarkFG);
	border-radius: 2px;
}

.schProposeExceeded {
	display: block;
	color: var(--contentEmp);
	font-style: italic;
	padding: 2px 3px;
}

.schProp_no {
	display: none;
}

.schDisplay_off .schResFrame {
	display: none;
}

input.schInput {
	border: 1px solid #000000;
	height: 21px;
	padding: 0 2px;
	width: 140px;
}

input.schBtnLaunch {
	background: url("../img/search/find.svg") no-repeat center left;
	background-size: 100%;
	border: none;
	cursor: pointer;
	color: transparent;
	height: 38px;
	width: 38px;
	padding: 0;
	margin-inline-start: 5px;
	display: inline-block;
	vertical-align: middle;
}

.schCmds_act input.schInput {
	border: 1px solid var(--accentDarkBG);
	color: var(--accentDarkBG);
}

.schResults .schPgeBk .schPgeBtn,
.schResults .mnu_sch_yes .mnu_lnk {
	background: url("../img/search/schPgeRank.svg") no-repeat right center;
}

.schResults .schNoRes {
	text-align: center;
	font-size: 1.5em;
	margin-top: 18px;
}

.schResults .mnu_sch,
.schResults .schPgeBtn>span {
	display: block;
	background-color: var(--contentBG);
}

.schResults .schPgeRank_1 .mnu_sch,
.schResults .schPgeRank_1 .schPgeBtn>span {
	margin-inline-end: 14px;
}

.schResults .schPgeRank_2 .mnu_sch,
.schResults .schPgeRank_2 .schPgeBtn>span {
	margin-inline-end: 28px;
}

.schResults .schPgeRank_3 .mnu_sch,
.schResults .schPgeRank_3 .schPgeBtn>span {
	margin-inline-end: 42px;
}

.schResults .schPgeRank_4 .mnu_sch,
.schResults .schPgeRank_4 .schPgeBtn>span {
	margin-inline-end: 56px;
}

.schResults .schPgeRank_5 .mnu_sch,
.schResults .schPgeRank_5 .schPgeBtn>span {
	margin-inline-end: 70px;
}

.schResults .schPgeRank_6 .mnu_sch,
.schResults .schPgeRank_6 .schPgeBtn>span {
	margin-inline-end: 84px;
}

.schResults .schPgeRank_7 .mnu_sch,
.schResults .schPgeRank_7 .schPgeBtn>span {
	margin-inline-end: 98px;
}

.schResults .schPgeRank_8 .mnu_sch,
.schResults .schPgeRank_8 .schPgeBtn>span {
	margin-inline-end: 112px;
}

.schResults .schPgeRank_9 .mnu_sch,
.schResults .schPgeRank_9 .schPgeBtn>span {
	margin-inline-end: 124px;
}

.schResFrame {
	position: fixed;
	left: 50%;
	bottom: -80px;
	max-width: 700px;
	width:calc(100% - 2em);
	transform: translate(-50%);
	color: var(--accentDarkBG);
	background-color: var(--accentLightBG);
	border-right: 1px solid var(--accentDarkBG);
	border-top: 1px solid var(--accentDarkBG);
	border-left: 1px solid var(--accentDarkBG);
	height: 50px;
	transition: all 0.4s ease-out;
	z-index: 91;
	box-shadow: 0 0 10px var(--accentDarkBG);
}

.schDisplay_on .schResFrame {
	bottom: 0;
}

.schDisplayList_on .schResFrame {
	height: 530px;
}

.schResList {
	position: absolute;
	bottom: 5px;
	left: 5px;
	top: 5px;
	right: 5px;
	display: none;
}

.schDisplayList_on .schResList {
	display: block;
}

.schResListSrl {
	position: absolute;
	bottom: 42px;
	left: 0;
	top: 0;
	right: 0;
	overflow: auto;
	background-color: var(--contentBG);
	padding: 5px;
}

.schResults a {
	margin: 0 5px;
}

.schResults a.schParentBtn {
	color: #666;
	font-style: italic;
	font-size: 95%;
}

.schResults li.mnu_sel_yes a.schParentBtn {
	font-weight: bold;
}

.schBtnTgle {
	background: url(../img/search/schBtn.svg) no-repeat;
	background-size: 100%;
	background-position: 0 -27px;
	width: 26px;
	height: 27px;
	display: block;
	position: absolute;
	bottom: 7px;
	z-index: 1;
	inset-inline-start: 6px;
}

.schDisplayList_on .schBtnTgle {
	background-position: 0 0;
}

.schBtnTgle span {
	display: none;
}

.schBtnReset {
	background: url(../img/search/schBtn.svg) bottom left no-repeat;
	background-size: 100%;
	width: 26px;
	height: 27px;
	display: block;
	position: absolute;
	top: -12px;
	inset-inline-end: -15px;
}

.schBtnReset:hover {
	opacity: 0.8;
}

.schBtnReset span {
	display: none;
}

.schHitBox,
.schResBox,
.schLbl {
	text-align: center;
	margin-block: 4px 0;
	margin-inline: 40px;
}

.schHitBox {
	position: absolute;
	bottom: 27px;
	left: 0;
	right: 0;
}

.schLbl {
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
	margin-inline-start: 0;
	z-index: 0;
}

.schDisplay_none .schResBox {
	text-align: center;
	margin-block: 20px 6px;
	margin-inline: 200px 20px;
}

.schDisplay_none .schHitBox {
	display: none;
}

.schBtnNxt,
.schBtnPrv,
.schBtnPrvHit,
.schBtnNxtHit {
	background: url(../img/search/schBtn.svg) no-repeat;
	background-size: 100%;
	position: absolute;
	width: 26px;
	height: 27px;
	z-index: 1;
}

.schBtnAct_no,
.schBtnHitAct_no {
	display: none;
}

.schBtnNxt span,
.schBtnPrv span,
.schBtnPrvHit span,
.schBtnNxtHit span {
	display: none;
}

.schDisplay_none .schBtnNxt,
.schDisplay_none .schBtnPrv,
.schDisplay_none .schBtnPrvHit,
.schDisplay_none .schBtnNxtHit {
	display: none;
}

.schDisplay_one .schBtnNxt,
.schDisplay_one .schBtnPrv {
	display: none;
}

.schBtnNxt {
	background-position: 0 -40px;
}

.schBtnPrv {
	background-position: 0 -55px;
}

.schBtnNxtHit {
	background-position: 0 -58px;
}

.schBtnPrvHit {
	background-position: 0 -88px;
}

.schBtnPrvHit {
	top: 10px;
	inset-inline-start: 0;
}

.schBtnNxtHit {
	top: 10px;
	inset-inline-end: 5px;
}

.schBtnPrv {
	right: 57px;
	top: 0;
}

.schBtnNxt {
	right: 5px;
	top: 0;
}

.schPgeBk .schPgeBtn span {
	background-position: center right;
	background-repeat: no-repeat;
	display: block;
	padding-right: 165px;
}

.schPgeBk .mnu_lnk span {
	background-position: center right;
	background-repeat: no-repeat;
	display: block;
}

.schPgeBk span.schPgeRank {
	position: absolute;
	left: -10000px;
}

.schResFrame a.schPgeBtn,
.schResFrame a.mnu_lnk {
	margin: 2px;
	display: block;
	color: var(--contentEmp);
}

div.schResFrame li.mnu_sel_yes .schPgeBtn,
div.schResFrame div.mnu_sel_yes .mnu_lnk {
	font-weight: bold;
	cursor: default;
}

div.schResFrame div.mnu_sch_no a.mnu_lnk {
	color: #aaa;
	cursor: default;
	text-decoration: none;
}

div.schResFrame div.mnu_sch_no a.mnu_lnk:hover {
	text-decoration: none;
}


.schResListSrl ul.mnu_root {
	padding: 0;
	padding-inline-start: 20px;
}

.schResListSrl li.mnu_b {
	list-style-type: none;
	margin: 0;
}

.schResListSrl ul {
	color: var(--contentEmp);
	margin: 0;
	list-style: disc;
	padding-inline-start: 13px;
	list-style-position: outside;
}

.schResListSrl ul.schParentList {
	list-style-type: none;
}

.schResListSrl ul.schParentList_c {
	display: none;
}

.schResListSrl ul.schParentList_o {
	display: block;
}

li.schPgeBk {
	position: relative;
}

div.schResFrame .schPgeBk .schPgeBtn:hover,
div.schResFrame .mnu_sch_yes .mnu_lnk:hover {
	color: var(--contentEmp);
	text-decoration: underline;
}

div.schResFrame div.mnu_sel_yes .mnu_lnk:hover{
	text-decoration: none;
}

.schResCnt,
.schHitCnt {
	display: inline-block;
	min-width: 40px;
	text-align: center;
}

.schDisplay_none .schResCnt,
.schDisplay_one .schResCnt {
	display: none;
}

.schHit {
	background-color: var(--contentEmp);
	color: var(--contentBG);
	border-radius: 3px;
}

.schHit_current {
	background-color: var(--contentEmp);
	color: var(--contentBG);
	border-radius: 3px;
	box-shadow: 0 0 5px 0 var(--contentEmp);
}

.schTerm {
	font-weight: bold;
}

.schTerm em {
	font-weight: normal;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a:hover {
	text-decoration: none;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a.mnu_lnk {
	color: #BBB;
	cursor: default;
}

.tplSchBox {
	position: relative;
	z-index: 2;
}

/* === STOP - SEARCH ======================================================== */

/* === START - FOCUS ======================================================== */
a:focus,
input:focus,
video:focus,
button:focus,
[type="checkbox"]:checked:focus+label:before,
[type="checkbox"]:not(:checked):focus+label:before {
	border-color: transparent;
	outline: 2px dotted rgb(78, 188, 225);
	transition: outline .25s ease-in-out;
}

/* === STOP - FOCUS ========================================================= */

/* === START - FOOTER ======================================================= */
.default #footer,
.sco #footer {
	font-size: 0.8em;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: var(--footerFG);
	background-color: var(--footerBG);
}

#footer>a {
	text-decoration: none;
	overflow-wrap: break-word;
	margin-left: 5px;
	margin-right: 5px;
	color: var(--footerFG);
}

/* === STOP - FOOTER ======================================================== */

/* === START - BALISE PEDAGOGIQUE =========================================== */
.resInFlow {
	text-align: center;
	margin: 10px;
}

.resInFlow_ti {
	background-color: var(--accentLightBG);
	color: var(--accentLightFG);
	margin: 5px 15%;
	padding: 8px;
}

.resInFlow_ti .bkBase {
	margin-top: 10px;
}

.resInFlow_ti .desc {
	text-align: start;
}

/* SVG */
.resInFlow.svg svg {
	max-width: 630px;
	height: auto;
}

.listing {
	margin: 10px;
}

/* BALISES PEDAGOGIQUES */
.cBk,
.pBk {
	--pb-color: var(--pBkOthers);
	--pb-color-light: var(--pBkOthersLight);
	background-image: linear-gradient(0deg, var(--pb-color) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-repeat: no-repeat;
	background-size: var(--borderWidth) 100%;
}
html[dir='ltr'] .cBk,
html[dir='ltr'] .pBk{
	background-position: right bottom;
}
html[dir='rtl'] .cBk,
html[dir='rtl'] .pBk{
	background-position: left bottom;
}

.warning {
	--pb-color: var(--pBkWarning);
	--pb-color-light: var(--pBkWarningLight);
}

.basic {
	--pb-color: var(--pBkBasic);
	--pb-color-light: var(--pBkBasicLight);
}

.cBk_ti,
.pBk_ti {
	font-size: 1.2em;
	margin-bottom: 0;
	text-align: end;
}

.iBk_ti {
	font-size: 1.2em;
	margin-bottom: -10px;
	line-height: 40px;
	margin-inline-start: 15px;
}

html[dir='ltr'] .cBk_co,
html[dir='ltr'] .pBk_co{
	background-image: linear-gradient(to right, var(--pb-color) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
html[dir='rtl'] .cBk_co,
html[dir='rtl'] .pBk_co{
	background-image: linear-gradient(to left, var(--pb-color) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
.cBk_co,
.pBk_co {
	background-color: var(--pb-color-light);
	border-radius: 0 0 0 5px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% var(--borderWidth);
	padding: 1px 4px 4px 4px;
	margin-bottom: 15px;
	margin-inline-end: 1px;
}

.cBk_ti>a,
.pBk_ti>span {
	display: flex;
	align-items:center;
}
.complement_ti.cBk_ti > a {
	background-position-y: 0.5em;
}
.cBk_ti i.type,
.pBk_ti i.type {
	background: url("../img/content/blocks.svg") no-repeat scroll transparent;
	color: var(--pb-color);
	flex: 0 0 auto;
	height: 40px;
	margin-inline-start: 20px;
	order: 2;
	padding-left: 40px;
	line-height:40px;
}

.pBk_ti span.title {
	flex: 1 1 auto;
	margin-inline-start: 20px;
	order: 1;
	text-align: start;
}

.cBk_ti span.title {
	flex: 1 1 auto;
	order: 1;
	text-align: start;
}

.def_ti i.type {background-position: 0 -40px;}
.remark_ti i.type {background-position: 0 -80px;}
.legal_ti i.type {background-position: 0 -120px;}
.remind_ti i.type {background-position: 0 -160px;}
.method_ti i.type {background-position: 0 -200px;}
.advice_ti i.type {background-position: 0 -240px;}
.complement_ti i.type {background-position: 0 -280px;}
.basic_ti i.type {background-position: 0 -320px;}
.simulation_ti i.type {background-position: 0 -360px;}
.example_ti i.type {background-position: 0 -400px;}
.syntax_ti i.type {background-position: 0 -440px;}

/* === STOP - BALISE PEDAGOGIQUE ============================================ */

/* === START - PRIMITIVE ==================================================== */

.txt_ili::marker,
.txt_oli::marker {
	color: var(--contentEmp);
}

.resLnk {
	color: var(--contentEmp);
	text-decoration: none;
}

.op_txt_ul {
	color: var(--contentEmp);
	text-decoration: none;
}

.op_txt_ul:hover {
	text-decoration: underline;
}

.op_txt_ul::after {
	color: var(--contentEmp);
	font-family: "fontello";
	content: " \e808";
}

.op_txt_ul:hover::after {
	font-family: "fontello";
	content: " \e809";
}

.txt_ico_tim img,
.txt_form_tim img {
	vertical-align: middle;
}

.txt_form_tim .MathJax_SVG_Display {
	display: inline !important;
}

.txt_ul {
	color: var(--contentEmp);
	text-decoration: none;
}

.dwnLnk {
	color: var(--contentEmp);
	text-decoration: none;
}

.dwnLnk:hover {
	text-decoration: underline;
}

.dwnLnk::after {
	font-family: "fontello";
	content: " \e803";
	color: var(--contentEmp);
}

.dwnLnk:hover::after {
	font-family: "fontello";
	content: " \2B63\FE0E";
	font-size: 105%;
	line-height:1em;
}

.subLnk {
	color: var(--contentEmp);
	text-decoration: none;
}

.subLnk:hover {
	text-decoration: underline;
}

.subLnk::after {
	font-family: "fontello";
	content: " \e805";
	color: var(--contentEmp);
}

.subLnk:hover::after {
	font-family: "fontello";
	content: " \2B61\FE0E";
	font-size: 105%;
	line-height:1em;
}

.infoAnc::after {
	font-family: "fontello";
	content: " \2606\FE0E";
}

.infoAnc:hover::after {
	font-family: "fontello";
	content: " \2605\FE0E";
	font-size: 105%;
	line-height:1em;
}

.infoAnc.dwnLnk::after {
	font-family: "fontello";
	content: " \2606\FE0E \e805";
}

.infoAnc.dwnLnk:hover::after {
	font-family: "fontello";
	content: " \2605\FE0E \2B61\FE0E";
	font-size: 105%;
	line-height:1em;
}

.txt_tb {
	border-collapse: collapse;
	margin: 15px auto;
}

.txt_tb th {
	border: 2px solid var(--contentEmp);
	background-color: var(--accentLightBG);
}

.txt_tb td {
	border: 1px solid var(--contentEmp);
}

.txt_tb td.txt_word_tbtd {
	text-align: center;
}

.txt_tb td.txt_num_tbtd {
	text-align: end;
}

.txt_tb caption {
	font-style: italic;
}

.txt_tb p {
	margin: 0.1em 0.2em;
}

q:before,
q:after {
	content: " ";
}

.txtRes {
	display: flex;
	flex-flow: row;
}

.txtRes .img {
	flex: 0 0 auto;
}

.txtRes .txt {
	flex: 1 1 auto;
	align-self: center;
}

.txt_blockquote_div {
	position: relative;
	display: block;
	margin: 0;
	padding:1em 40px;
}

.txt_blockquote_div:before {
	position: absolute;
	top: 0;
	font-size: 4em;
	color: var(--contentEmp);
	opacity: 0.6;
}
html[dir='ltr'] .txt_blockquote_div:before{
	content: "«";
	left: 0;
}
html[dir='rtl'] .txt_blockquote_div:before{
	content: "»";
	right: 0;
}

.txt_blockquote_div:after {
	position: absolute;
	bottom: 0;
	font-size: 4em;
	color: var(--contentEmp);
	opacity: 0.6;
}
html[dir='ltr'] .txt_blockquote_div:after{
	content: "»";
	right: 0;
}
html[dir='rtl'] .txt_blockquote_div:after{
	content: "«";
	left: 0;
}

.lnkDoc {
	margin: 0 1em 1em;
}

i.webInstruct p {
	margin-bottom: 0;
}

i.webInstruct {
	color: #676767;
}

.txt_auth_tl {
	font-weight: bold;
}

.txt_ed_tl {
	text-decoration: underline;
}

.resInFlow_ti .cbkClosed {
	display: inline-flex;
}

.cbkClosed > a {
	text-decoration: none;
	color: var(--contentFG);
	display: flex;
}

.cbkClosed > a::before{
	font-family: "fontello";
	margin-inline-end: 5px;
	font-size: 15px;
}

a.iBk_closed::before,
a.iBk_open:hover::before {
	content: "\e806 ";
}

a.iBk_closed:hover::before,
a.iBk_open::before {
	content: "\e807 ";
}

/* === STOP - PRIMITIVE ===================================================== */


/* === START - QUIZ ========================================================= */

/* --- GENERAL STYLES ------------------------------------------------------- */
.quizBody {
	display: flex;
	flex-flow: column;
	margin-top: 4em;
}

.quizBody>* {
	flex: 0 0 auto;
}

.quizBody>.toolbar {
	order: 1;
}

.coQuiz .quizBody>.toolbar {
	order: 4;
}

.quizBody>.question {
	order: 2;
}

.quizBody>.subQuiz {
	order: 3;
}

.quizBody>.response {
	order: 3;
}

.quizBody>.globalExp {
	order: 4;
}

.toolbar {
	background-color: var(--accentLightBG);
	height: 40px;
	display: flex;
}

.toolbar .scoreBox{
	background-color: transparent;
}

/* Toolbar dans liste de Quiz */
.subQuiz .toolbar {
	background-color: var(--accentLightBGalpha);
}

.subQuiz .quizBody {
	margin-top: 0;
}

.coQuiz .subQuiz .toolbar {
	background-color: var(--contentBG);
}

.toolbar .btnQuiz {
	text-decoration: none;
	color: var(--contentEmp);
	font-weight: bold;
	line-height: 40px;
	height: 40px;
	margin-left: 20px;
	padding-inline-start: 10px;
	padding-right: 5px;
}

.toolbar .btnQuiz span{
	background: url("../img/tpl/toolbar-quiz.svg") no-repeat scroll transparent;
	padding-right:35px;
	display:inline-block;
	height: 40px;
}

.toolbar .btnQuiz:hover {
	background-color: var(--contentEmp);
	color: var(--contentBG);
}

.toolbar .correction span{background-position: right 5px;}
.toolbar .correction:hover span{background-position: right -81px;}
.toolbar .reset span{background-position: right -39px;}
.toolbar .reset:hover span{background-position: right -125px;}

.question >.rBk {
	margin-top: 20px;
	background-image: linear-gradient(to right, #434e52 0%, rgba(0, 0, 0, 0) 100%);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 1px;
}
.coQuiz .question >.rBk{
	background-image:none;
}
.sol {
	background-color: #f9f9f9;
	padding: 0.1em 1em;
}
.scoreBox {
	background-color: #f9f9f9;
	font-weight: bold;
	line-height: 40px;
	padding: 0 1em;
}

.answBest {
	color: #468847;
}

.answWorst {
	color: #D51921;
}

.cbkClosed .cBk_closed, .cbkClosed .gExpln_closed, .cbkClosed .explain_closed{
	background: url("../img/quiz/practOpen.png") no-repeat scroll left top rgba(0, 0, 0, 0);
	padding-left:20px;
}

.cbkClosed .cBk_open, .cbkClosed .gExpln_open, .cbkClosed .explain_open{
	background: url("../img/quiz/practClose.png") no-repeat scroll left top rgba(0, 0, 0, 0);
	padding-left:20px;
}

.quest .hBk_co {
	padding-inline-start: 42px;
	min-height: 60px;
	position: relative;
}

.quest .hBk_co::before {
	content:"";
	background: url("../img/quiz/blocks.svg") no-repeat scroll transparent 0 -100px;
	position: absolute;
	top:0;
	height: 50px;
	width: 40px;
	inset-inline-start:0;
}

.cbkClosed .cBk_ti a {
	padding-inline-start: 25px;
}

.collBlk_open,
.globalExp {
	background-image: linear-gradient(180deg, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-repeat: no-repeat;
	background-size: var(--borderWidth) 100%;
	margin-inline-start: 9px;
	padding-inline-start: 5px;
	margin-top: 1em;
}
html[dir='ltr'] .collBlk_open,
html[dir='ltr'] .globalExp{
	background-position: left bottom;
}
html[dir='rtl'] .collBlk_open,
html[dir='rtl'] .globalExp{
	background-position: right bottom;
}

.question > .res {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.exoAsw {
	margin-top: 20px;
}

.explain_ti {
	font-weight: normal;
}

/* --- QCU/QCM STYLES ------------------------------------------------------- */
.response_ti {
	font-weight: normal;
	font-size: 1em;
	display: flex;
	flex-flow: row;
	font-style: italic;
	color: #676767;
	margin: 0 0 .5em;
}

.response_ti>span:nth-child(-n+2) {
	flex: 0 0 auto;
	width: 6em;
	text-align: center;
}

.response_ti>span:last-child {
	flex: 1 1 auto;
}

ul.choiceList {
	display: flex;
	flex-flow: column;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

li.choiceList_ch {
	flex: 0 0 auto;
	display: flex;
	flex-flow: row;
}

.choiceList_in {
	flex: 0 0 auto;
	width: 6em;
	text-align: center;
}

.choiceList_sol {
	flex: 0 0 auto;
	width: 6em;
	text-align: center;
}

.choiceList_la {
	flex: 1 1 auto;
}

.choiceList_la p {
	margin-top: 0;
	margin-inline-start: 0;
}
.choiceList_ch input[type="radio"],
.choiceList_ch input[type="checkbox"] {
	font-size: inherit;
	width: 1em;
	height: 1em;
}

/* --- QCU/QCM GRAPHIQUE ------------------------------------------------------- */
.choiceMap_map {
	margin: 0 auto;
}

/* --- CATEGORISATION/ORDONNANCEMENT ------------------------------------------------------- */
.mtTable, .pairTable {
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px;
}

.mtTable td, .pairTable td {
	vertical-align: top;
}

.mtTdBasket {
	width: 30%;
}

.mtTdBasketSol {
	display: none;
}

.mtTdArrow {
	width: 20px;
	background: url("../img/quiz/drag.svg") no-repeat center center;
}

.mtTdSol {
	width: 50%;
}

.mtTdDropCont,
.mtTdBasket {
	padding: 0;
	margin: 0;
}

.mtTdBasket .ddBasket,
.mtTdBasket .ddBasketCatch {
	min-height: 250px;
}

.mtTdHeading {
	text-align: center;
}

.olTableSol {
	width: 100%;
}

.olTdSolHead {
	width: 9em;
}

.ddBasket {
	margin-bottom: 5px;
}

.ddBasketCatch,
.ddDropCatch {
	border: 1px solid var(--contentEmp);
}

.ddBasketCont,
.ddDropCont {
	padding: 2px;
}

.ddBasketSol,
.ddDropContIfEmpty span {
	display: none;
}

.ddRepArea {
	margin-bottom: 5px;
}

.mtLabel p,
.mtLabelSol p,
.ddLabel p,
.ddLabelSol p {
	text-indent: 0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 1.1em;
}

.ddDropTi {
	font-weight: bold;
	background-color: var(--contentEmp);
	color: var(--contentBG);
	text-align: center;
}

.ddDropContIfEmpty {
	height: 27px;
	background: url("../img/quiz/drop.svg") no-repeat center center;
}

.mtTdSol .ddDropContIfEmpty,
.olTableSol .ddDropContIfEmpty {
	background: inherit;
}

/* Pair table */
.pairTable .ddDropCatch {
	display: flex;
	flex-direction: row-reverse;
}

.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable  .ddDropCont {
	flex: 0 0 50%;
}

.pairTable .ddDropTi {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*Cadre gris des étiquettes */
.ddLabel,
.ddLabelSol {
	text-align: center;
	border: 1px solid #808080;
	background-color: var(--contentBG);
	padding: 2px;
	width: 10em;
	cursor: move;
	margin: 0.1em 0.1em 0.2em 0.1em;
	display: inline-block;
	zoom: 1;
	/* Hack inline-block pour ie6 & 7*/
	vertical-align: top;
}

.mtLabel,
.mtLabelSol {
	display: inline-block;
	zoom: 1;
	/* Hack inline-block pour ie6 & 7*/
	vertical-align: top;
	padding: 2px;
	margin: 2px;
	border: 1px solid #808080;
	background-color: var(--contentBG);
	cursor: move;
}

.mtLabel span.myTT_a {
	cursor: move;
}

.mtLabelSol,
.mtLabelSol span.myTT_a,
.ddLabelSol {
	cursor: default;
}

/*Survol des paniers */
.ddBasketDragOver,
.ddCatchDragOver {
	background-color: var(--accentLightBG);
}

/*Fin du panier*/
.ddBasketEnd,
.ddCatchDragEnd {
	clear: both;
}

/*Titres des catégories et des étiquettes  */
.ddDropTi p,
.ddLabel p,
.ddLabelSol p {
	margin: 0;
	text-align: center;
}

/* Si le panier de propositions est vide */
.ddBasketIfEmpty {
	clear: both;
	font-style: italic;
	font-size: 0.9em;
	color: #686868;
	text-align: center;
	padding: 5px 0;
}

.sortableLabelList {
	list-style: none;
	padding:0;
	display: flex;
	flex-flow: wrap;
}
.sortableLabelItem {
	border: 1px solid #808080;
	background-color: var(--contentBG);
	margin: 0.8em;
	display:flex;
	align-items: center;
	padding: 2px 5px;
	position: relative;
	border-radius: 1em;
	max-width: 20em;
}

.sortableLabelItem_selected {
	animation: drag 5s 1;
}

@keyframes drag {
	from {
		border-color: var(--accentLightBG);
	}

	to {
		border-color: #808080;
	}
}

.sortableLabelItem .label{
	flex: 1 1 auto;
}
.sortableLabelItem .sorter{
	display:flex;
	flex-direction: column;
}

.sortableLabelItem .sorter a{
	font-family: "fontello";
	text-decoration: none;
	font-size: 1.3em;
	background-color: var(--contentEmp);
	color: var(--contentBG);
	border-radius: 50%;
	width: 20px;
	line-height: 20px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sortableLabelItem .sorter a span, .matchLabelListItem .targets > a span, .pairLabelListItem .targets > a span{
	position: absolute;
	left: -9999px;
}

a.btnSort_up{
	inset-inline-start: -10px;
}
a.btnSort_up::before{
	content:"\e833";
}

a.btnSort_down{
	inset-inline-end: -10px;
}
a.btnSort_down::before {
	content:"\ea34";
}

.sortableLabelItem:first-child .sorter a.btnSort_up,
.sortableLabelItem:last-child .sorter a.btnSort_down {
	visibility: hidden;
}

.matchLabelList{
	list-style: none;
	padding:0;
	display: flex;
	flex-flow: wrap;
}
.matchLabelListItem {
	border: 1px solid #808080;
	background-color: var(--contentBG);
	margin: 0.5em;
	display:flex;
	flex-direction:column;
	padding: 2px;
	position: relative;
	border-radius: 0.2em;
	width: 225px;
}
.matchLabelListItem .label {
	padding: 0 3px;
}
.matchLabelListItem p {
	margin: 0;
	line-height: 100%;
}
.matchLabelListItem .targets{
	position: relative;
	border: 1px solid #808080;
	display: flex;
	align-items: center;
}
.matchLabelTargetList {
	list-style: none;
	padding:0;
	background-color: var(--accentLightBG);
	width: calc(100% - 24px);
	min-height: 30px;
}
.matchLabelTargetList_open{
	box-shadow: 0 0 5px 0 #0000006b;
	z-index:2;
	position: absolute;
	top: 0;
	inset-inline-start: 0;
}
.matchLabelTargetList_closed input{
	visibility:hidden;
}
.matchLabelTargetList_ch{
	display: flex;
	padding: 0.2em;
	align-items: center;
	min-height: 30px;
	box-sizing: border-box;
}

.matchLabelListItem .targets > a.dropToggle {
	background-color: var(--contentEmp);
	color: var(--contentBG);
	font-family: "fontello";
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height:100%;
	position: absolute;
	min-height: 30px;
	top: 0;
	inset-inline-end: 0;
}

.matchLabelTargetList_dropdown_closed::before {
	content:"\2b63";
}

.matchLabelTargetList_dropdown_open::before {
	content:"\2b61";
}

.pairLabelList{
	list-style: none;
	padding:0;
}
.pairLabelListItem {
	margin: 0.5em;
	display:flex;
	padding: 3px;
	position: relative;
	border-radius: 0.2em;
	align-items: center;
}
.pairLabelListItem .label {
	min-width: 200px;
	min-height: 30px;
	border: 1px solid;
	padding: 0 3px;
	display: flex;
	align-items: center;
	margin-inline-end: 0.5em;
}
.pairLabelListItem p {
	margin: 0;
	line-height: 100%;
}
.pairLabelListItem .targets{
	position: relative;
	display: flex;
	align-items: center;
	min-height: 30px;
	min-width: 260px;
}
.pairLabelTargetList {
	border: 1px solid #808080;
	list-style: none;
	padding:0;
	background-color: var(--accentLightBG);
	width: calc(100% - 54px);
	min-height: 30px;
}
.pairLabelTargetList_open{
	border: 1px solid transparent;
	box-shadow: 0 0 5px 0 #0000006b;
	z-index:2;
	position: absolute;
	top: 0;
	inset-inline-start: 0;
}
.pairLabelTargetList_closed input{
	visibility:hidden;
}
.pairLabelTargetList_ch{
	display: flex;
	padding: 0.2em;
	align-items: center;
	min-height: 30px;
	box-sizing: border-box;
}

.pairLabelListItem .targets > a.dropToggle {
	background-color: var(--contentEmp);
	color: var(--contentBG);
	font-family: "fontello";
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 100%;
	position: absolute;
	min-height: 30px;
	top: 0;
	inset-inline-end: 30px;
}
.pairLabelTargetList_deselect{
	inset-inline-end: 0;
}
.pairLabelTargetList_dropdown_closed::before {
	content:"\2b63";
}
.pairLabelTargetList_dropdown_open::before {
	content:"\2b61";
}
.pairLabelTargetList_deselect::before {
	content:"\1f5d9";
}

input {
	cursor: pointer;
}

/*Réponse juste*/
.ddLabel_Right,
.assmntResult_Right,
.sortLabel_Right,
.fixedLabel_Right {
	cursor: default;
	padding: 1px;
	border: 2px solid #468847;
}

.ddLabel_Right span.myTT_a,
.assmntResult_Right span.myTT_a {
	cursor: default;
}

/*Réponse fausse */
.ddLabel_Wrong,
.assmntResult_Wrong,
.sortLabel_Wrong,
.fixedLabel_Wrong {
	cursor: default;
	padding: 1px;
	border: 2px solid #D51921;
}

.ddLabel_Wrong span.myTT_a,
.assmntResult_Wrong span.myTT_a {
	cursor: default;
}

.subQuiz {
	padding: 0 0 20px 0;
}

.subQuiz_ti {
	border-bottom: 1px solid;
}

/* --- TAT / field / num ------------------------------------------------------- */
.cloze_p {
	line-height: 1.6em;
}
.txt_gap_tl input, .txt_gap_tl select, input.exoInput {
	font-size: inherit;
}

.gapAnswer {
	border-radius: 0 3px 3px 0;
	border-left: 0;
	background-color: var(--accentLightBG);
	padding: 2px 4px;
}

.assmntResult_0 input, .assmntResult_0 select {
	color: red;
	text-decoration: line-through;
}

.assmntResult_1 input, .assmntResult_1 select {
	color: green;
}

span.exoSol {
	font-weight: bold;
	margin-inline-start: 1em;
}

/* --- EVALUATION ------------------------------------------------------- */
.assmntUa .gotoEval {
	display: flex;
	justify-content: center;
}

.assmntUa .gotoEval .btnEval {
	background: transparent url("../img/tpl/buttonsEval.svg") no-repeat scroll right -160px / 40px auto;
	color: var(--contentEmp);
	display: inline-block;
	font-size: 1.2em;
	height: 40px;
	padding-right: 50px;
	text-decoration: none;
	line-height: 40px;
}

.assmntUa .gotoEval .btnEval:hover {
	opacity: 0.9;
}

.assmntUa #content .obj {
	background-color: var(--accentLightBG);
	margin: 20px 10%;
	padding: 10px;
}

/* Eval buttons */
.btnAssmnt {
	display: flex;
	padding-inline-start: 40px;
	color: var(--contentEmp);
	font-size: 1.2em;
	text-decoration: none;
	line-height: 33px;
}
.btnAssmnt::after {
	content: ' ';
	height: 33px;
	width: 33px;
	background: url("../img/quiz/eval.svg") no-repeat scroll transparent;
	margin-inline-start: 0.5em;
}
.btnAssmnt:hover {
	opacity: 0.9;
}
.btnStartE::after {background-position: right 0;}
html[dir='rtl'] .btnStartE::after {transform: scaleX(-1);}
.btnValidateE::after {background-position: right 0;}
.btnCloseE::after {background-position: right 0;}
.btnRestartE::after {background-position: right -36px;}
.btnScoreE::after {background-position: right -73px;}
.btnGotoSolE::after {background-position: right -109px;}
.btnAssmnt span {
	display: inline-block;
	line-height: 33px;
}

.solBody .question .rBk {
	background: none;
}

.subWin .solBody .question,
.subWin .solBody .score,
.subWin .solBody .sol,
.subWin .solBody .explain {
	padding-inline-start: 50px;
	min-height: 50px;
	margin: 0.6em 0 0.3em 0;
	position: relative;
}

.subWin .solBody .question_ti,
.subWin .solBody .score_ti,
.subWin .solBody .sol_ti,
.subWin .solBody .explain_ti {
	font-style: italic;
	font-weight: bold;
	color: var(--contentEmp);
}

.subWin .solBody .question::before,
.subWin .solBody .score::before,
.subWin .solBody .sol::before,
.subWin .solBody .explain::before {
	content:"";
	background: url("../img/quiz/blocks.svg") no-repeat scroll transparent;
	position: absolute;
	top:0;
	height: 50px;
	width: 40px;
	inset-inline-start:0;
}
.subWin .solBody .question::before {
	background-position: 0 -100px;
}
.subWin .solBody .score::before {
	background-position: 0 -50px;
}
.subWin .solBody .explain::before {
	background-position: 0 -150px;
}

/* === STOP - QUIZ ======================================================== */

/* === START - TOOLS ======================================================== */

/*REF */
.glosFra dfn,
.glosFra dt {
	color: var(--contentEmp);
	font-weight: bold;
}

.glosFra dd {
	margin-inline-start: 15px;
}

.glosFra .mDiv,
.glosFra .mField {
	background-image: linear-gradient(180deg, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-repeat: no-repeat;
	background-size: var(--borderWidth) 100%;
}
html[dir='ltr'] .glosFra .mDiv,
html[dir='ltr'] .glosFra .mField{
	background-position: left bottom;
}
html[dir='rtl'] .glosFra .mDiv,
html[dir='rtl'] .glosFra .mField{
	background-position: right bottom;
}
/*Credits*/

.resCreditsLnk {
	text-decoration: none;
	padding-inline-end: 12px;
	color: var(--contentEmp);
}

a.resCreditsLnk:hover {
	text-decoration: underline;
}

/* === STOP - TOOLS ======================================================== */

/* === START - scImageMgr ===================================================== */
.scImgZmOver,
.scImgSeqOver {
	background: var(--contentBG);
}

.scImgZmMag,
.scImgSeqMag {
	box-shadow: 0 0 5px 0 #000000;
	cursor: crosshair;
}

.imgZoom {
	display: inline-block;
}

.imgLoading .scImgGalCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/content/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
	inset-inline-start: 0;
}

.imgLoading .scImgGalFra {
	display: none;
}

.galFra {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: start;
}

.galFra img {
	padding: 5px;
}

.seqFra {
	display: flex;
	justify-content: center;
}

.scImgSep {
	display: none;
}

a.galPvLnk:hover {
	opacity: 0.8;
}

.scImgGalCvs {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.scImgGalImgFra {
	background-color: var(--contentBG);
	border-radius: 5px;
	padding: 5px;
	padding-bottom: 30px;
	overflow: hidden;
}

.scImgGalCo {
	list-style: none;
	padding: 0;
	margin: 0;
	height: 0;
}

.scImgGalTbr {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.scImgGalTbr .scImgGalCount {
	display: inline;
	bottom: 5px;
	font-style: italic;
	color: #808080;
	cursor: default;
	inset-inline-end: 35px;
}

div.scImgGalOver,
div.scImgZmOver,
div.scImgSeqOver {
	background-color: black;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

div.scImgGalTi {
	font-style: italic;
	color: #808080;
	cursor: default;
	font-size: 12px;
	position: absolute;
	bottom: 5px;
	inset-inline-start: 5px;
}

div.scImgGalTbr span,
a.scImgGalBtnCls span {
	display: none;
	position: absolute;
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls,
div.scImgGalTbr a,
a.scImgSeqBtnPrv,
a.scImgSeqBtnNxt {
	font-family: 'fontello' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ffffff;
	width: 30px;
	text-align: center;
	text-decoration: none;
}

a.scImgGalBtnCls:before,
a.scImgZmBtnCls:before,
a.scImgSeqBtnCls:before {
	content: "\1F5D9\FE0E";
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	display: block;
	top: 5px;
	font-size: 2em;
	inset-inline-end: 5px;
}

.isMobile_true a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	top: 10px;
}

a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	position: absolute;
}

div.scImgGalTbr a {
	display: block;
	position: absolute;
}

div.scImgGalTbr a:hover {
	text-decoration: none;
}

a.scImgGalBtnPrv,
a.scImgGalBtnNxt {
	top: 1.5em;
	font-size: 4em;
	margin-top: -1.25em;
	position: fixed !important;
	width: 1em !important;
	height: 100%;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.isMobile_true a.scImgGalBtnPrv,
.isMobile_true a.scImgGalBtnNxt {
	position: absolute !important;
}

a.scImgGalBtnPrv:before,
a.scImgSeqBtnPrv:before {
	content: "\e833";
}

a.scImgGalBtnPrv{
	inset-inline-start: 5px;
}

a.scImgGalBtnNxt:before,
a.scImgSeqBtnNxt:before {
	content: "\ea34";
}

a.scImgGalBtnNxt{
	inset-inline-end: 5px;
}

a.scImgGalBtnPse:before {
	content: "\23F8\FE0E";
}

a.scImgGalBtnPly,
a.scImgGalBtnPse,
a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	font-size: 1.5em;
	color: #808080 !important;
	bottom: 4px;
	right: 0;
}

a.scImgGalBtnPly:before {
	content: "\23F5\FE0E";
}

.noScroll {
	overflow: hidden;
}

div.scImgZmCvs,
div.scImgSeqCvs {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

.imgLoading .scImgZmCvs::before,
.imgLoading .scImgSeqCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/content/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

div.scImgZmFra,
div.scImgSeqFra {
	background-color: var(--contentBG);
	border-radius: 5px;
	padding: 5px;
}

div.scImgZmTlb,
div.scImgSeqTlb {
	margin-top: 5px;
	text-align: end;
}

a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	position: fixed;
}

a.scImgZmBtnCls span,
a.scImgSeqBtnCls span,
a.scImgGalBtnNoPrv,
a.scImgSeqBtnPlay span,
a.scImgSeqBtnPause span,
a.scImgSeqBtnPrv span,
a.scImgSeqBtnNxt span {
	display: none;
}

a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	text-decoration: none;
}

a.scImgSeqBtnPlay:before {
	content: "\23F5\FE0E";
	display: block;
	margin-top: -4px;
}

a.scImgSeqBtnPause:before {
	content: "\23F8\FE0E";
	display: block;
	margin-top: -4px;
}

.scImgZmCo,
.scImgSeqCo {
	text-align: center;
}

.scImgZmCo div,
.scImgSeqCo div {
	z-index: 2002;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0;
}

.scImgZmCo iframe,
.scImgSeqCo iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0;
}

.scImgZmCo a,
.scImgSeqCo a {
	text-decoration: none;
}

.scImgZmCo a img,
.scImgSeqCo a img {
	border: 0;
}

.scImgZmCo img,
.scImgSeqCo img {
	background-color: var(--contentBG);
}

.scImgSeqToolsOver {
	background: #EEE;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
}

.scImgSeqToolsOver a {
	position: static;
	color: #666 !important;
	font-size: 1.7em;
}

.seqFra .galPv {
	margin-top: 0.3em;
	visibility: hidden;
}

/* === STOP - scImageMgr ====================================================== */

/* === START - RICHSTREAM ============================================= */
.teContainer {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.teContainer:not(.teReady) {
	opacity: 0.5;
}

.teContainer:not(.teReady)>.hBk_co {
	opacity: 0;
}

.teVisuallyHidden {
	display: block !important;
	width: 0 !important;
	height: 0 !important;
	padding: 0 !important;
	border: none !important;
	overflow: hidden !important;
	outline: none !important;
}

/* Alternative à l'icône de l'activé en float : absolu et flex avec pseudo after de la même taille que l'icône */
.module .teContainer>h2.hBk_ti:before {
	position: absolute;
	inset-inline-end: 1em;
}

.teContainer>h2.hBk_ti {
	display: flex;
}

.teContainer>.hBk_ti::after {
	content: '';
	display: block;
	margin-inline-end: 10px;
	width: 120px;
}

.teContainer>.hBk_co {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

.teMainArea {
	display: flex;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

html[dir='ltr'] .teSegmentHead_ti{
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
html[dir='rtl'] .teSegmentHead_ti{
	background-image: linear-gradient(to left, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
}
.teSegmentHead_ti {
	background-size: 100% var(--borderWidth);
	background-position: bottom;
	background-repeat: no-repeat;
	padding-bottom: 4px;
	font-size: 1.3em;
	margin-top: 0;
}

/* Media */
.teMediaArea {
	min-width: 0;
	min-height: 0;
}

.teMediaArea video {
	background: transparent;
}

.teContainer.teVideoType .teMediaArea {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

/* Force un aspect 16:9 sur les iframes */
.teMediaArea>mediaelementwrapper {
	position: relative;
	overflow: hidden;
	flex: 0 1 auto;
	display: block;
}

.teMediaArea>mediaelementwrapper::before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.teMediaArea>mediaelementwrapper>* {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}

.teContainer.teVideoType .teMediaArea::after {
	content: '';
	display: flex;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 75px;
	height: 75px;
	pointer-events: none;
	justify-content: center;
	align-items: center;
	color: white;
}

.teContainer.teVideoType.tePaused:not(.tePlayed) .teMediaArea::after {
	background: transparent url("../img/richStream/videoPlayPause.svg") no-repeat 0 0;
}

.teContainer.teVideoType.teVideoPlay .teMediaArea::after {
	background: transparent url("../img/richStream/videoPlayPause.svg") no-repeat 0 0;
	animation: bezelFadeout .5s linear 1 normal forwards;
}

.teContainer.teVideoType.teVideoPause .teMediaArea::after {
	background: transparent url("../img/richStream/videoPlayPause.svg") no-repeat 0 -75px;
	animation: bezelFadeout .5s linear 1 normal forwards;
}

@keyframes bezelFadeout {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: scale(2)
	}
}

.teMediaArea>.teSubtitlesArea {
	text-align: center;
	font-size: 1.2em;
	padding: 0 1em;
	box-sizing: border-box;
	margin-top: -2.2em;
	z-index: 1;
}

.teMediaArea>.teSubtitlesArea>div {
	display: inline-block;
	background: rgba(0, 0, 0, 0.7);
	padding: 0.4em;
	border-radius: 0.5em;
	color: #fff;
	text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
	margin: 0 auto;
	white-space: pre-line;
}

/* Content */
.teContentArea {
	display: flex;
	flex: 0 0 0;
	transition: flex 0.5s;
	position: relative;
	min-width: 0;
	align-items: center;
	justify-content: center;
}

.teContainer.teActiveAside .teContentArea {
	flex-basis: 50px;
}

.teContainer.teActiveSegment .teContentArea,
.teContainer.teActivePause .teContentArea {
	flex-basis: 40%;
}

.teContainer.teActiveSegment.teActiveAside .teContentArea,
.teContainer.teActivePause.teActiveAside .teContentArea {
	flex-basis: calc(40% + 50px);
}

.teContainer.teAudioType .teContentArea {
	flex-grow: 1;
}

.teSegment,
.tePause {
	flex: 1;
	margin: 1em;
	transition: opacity 0.3s ease-in;
}

.teSegmentAside {
	transition: opacity 0.3s ease-in;
}

.tePause {
	align-self: stretch;
	overflow: auto;
}

.teSegment[hidden],
.tePause[hidden],
.teSegmentAside[hidden],
.teContainer.teActivePause .teSegment,
.teContainer.teActivePause .teSegmentAside {
	display: block;
	flex: 0;
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
	margin: 0;
	visibility: hidden;
}

/* Compléments */
.teSegmentCompls {
	list-style: none;
	padding: 1em 0;
	margin: 0;
}

.teSegmentCompl {
	display: block;
	position: relative;
	margin: 1em 0;
	text-align: end;
	width: 35px;
	height: 40px;
	background: url(../img/content/blocks.svg) no-repeat scroll transparent;
	background-position: 0 -241px;
}

.teSegmentCompl {
	color: var(--contentEmp);
}

.teSegmentCompl>span {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.5em;
	transition: opacity 0.4s ease-in;
	opacity: 0;
	visibility: hidden;
	white-space: nowrap;
	position: absolute;
	right: -1000px;
	height: 40px;
	line-height: 45px;
	z-index: 2;
	font-weight: bold;
	padding: 0 0.5em;
}

.teSegmentCompl:hover>span,
.teSegmentCompl:focus>span {
	opacity: 1;
	visibility: visible;
	inset-inline-end: 45px;
}

/* Controleur */
.teController {
	display: flex;
	flex: 0 0 3em;
	margin-top: 0.5em;
	position: relative;
	justify-content: space-between;
	justify-content: space-evenly;
}

.teController>* {
	margin: 0 0.5em;
}

.teControllerNavArea {
	display: flex;
	flex-direction: column;
	flex: 3;
}

.teTimeline {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	position: relative;
	border: solid 1px var(--contentEmp);
	-webkit-user-select: none;
	-moz-user-select: none;
}

.teTimeline li {
	position: relative;
	display: flex;
}

.teTimeline li>div {
	display: flex;
}

.teTimeline a {
	display: flex;
	flex: 1 1 100%;
	border-inline-start: solid 1px var(--contentEmp);
	color: inherit;
	text-decoration: inherit;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.teTimeline a:hover {
	cursor: pointer;
}

.teTimeline a span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.teTimeline li.teActive>a {
	background-color: #727d80;
}

.teTimeline li>a.tlQuizList {
	display: none;
	background-color: silver;
	flex: 1 2 1em;
	border-inline-style: dashed;
}

.teTimeline li:hover>a.tlQuizList,
.teTimeline li.teActive>a.tlQuizList {
	display: block;
}

.teTimeline a:hover {
	outline: none;
	background-color: silver;
}

.teTimeline a:active {
	outline: none;
	background-color: grey;
}

.teTimeline li:first-child a:first-child {
	border-inline-start: none;
}

.teTimeline a>span {
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.teTimeline li>ul a {
	border-top: none;
}

.tlQuizList {
	display: none;
	background-color: silver;
	flex: 1 2 1em;
	border-inline-style: dashed;
}

.teTimeline li:hover>.tlQuizList,
.teTimeline .teActive>.tlQuizList {
	display: block;
}

.teTimes {
	display: flex;
	flex-direction: column;
}

.teTimes>* {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.teQuizListActions {
	text-align: center;
}

.teQuizListStart .tePauseNext {
	background: url(../img/tpl/button-start.svg) no-repeat scroll right center / 40px 40px transparent;
	color: var(--contentEmp);
	display: inline-block;
	font-size: 1.2em;
	height: 40px;
	padding-right: 50px;
	text-decoration: none;
	line-height: 40px;
}

.tePauseNext,
.tePauseResume {
	background: url(../img/quiz/eval.svg) no-repeat scroll transparent;
	background-position: right 0;
	height: 33px;
	display: inline-block;
	padding-right: 40px;
	padding-left: 40px;
	color: var(--contentEmp);
	font-size: 1.2em;
	text-decoration: none;
	line-height: 33px;
}

/* Panel */
.teController>.panel {
	position: absolute;
	bottom: calc(100% + 10px);
	z-index: 1;
	padding-block: 0.2em;
	padding-inline: 1em 0.2em;
	background-color: var(--contentBG);
	border: 2px solid var(--contentEmp);
}

.teController>.panel>.panelLabel {
	width: 2.4em;
	background-size: auto 1.6em;
}

.teController>.panel>.panelLabel[hidden] {
	display: none !important;
}

.teController>.panel>.panelLabel:hover {
	opacity: 0.7;
}

.teController>.panel>.panelClose {
	border: none;
	background: transparent center / contain no-repeat;
	color: inherit;
	-webkit-appearance: none;
	padding: 0;
	font-size: inherit;
	margin: 0;
	cursor: pointer;
	background: url(../img/content/buttons.svg) no-repeat top;
	background-size: 100%;
	background-position: 0 -32px;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 2px;
	inset-inline-end: 2px;
}

.teController>.panel>.panelClose>span {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}

.teController>.panelInput {
	display: none;
}

.teController>.panelInput:not(:checked)+.panelLabel+.panel {
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	visibility: hidden;
}

/* Boutons */
.teController>button,
.teController>label,
.panel>button,
.teMute{
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--contentEmp);
	position: relative;
	cursor: pointer;
}

.teController>button,
.panel>button,
.teMute{
	background: none;
	border: none;
	min-height: 0;
}

.teController>button:disabled,
.panel>button:disabled,
.teMute:disabled{
	opacity: 0.5;
}

.teController>input[type=checkbox] {
	display: none;
}

.teController>button>span,
.teController>label>span,
.panel>button>span,
.teMute>span {
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.tePlayPause::before,
.tePreviousTime::before,
.teNextTime::before,
.teMute::before,
.teSettingsBtn::before,
.teFullscreen::before,
.teTocPanel_label::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: transparent url("../img/richStream/icons.svg") no-repeat 0 0;
}

.tePlayPause::before {
	background-position: 0 0;
}

.tePlayPause[aria-pressed=true]::before {
	background-position: 0 -18px;
}

.teContainer.teSeeking .tePlayPause::before {
	background-position: 0 -36px;
	animation: spin 2s linear infinite;
}

.tePreviousTime::before {
	background-position: 0 -162px;
}

.teNextTime::before {
	background-position: 0 -180px;
}

.teMute::before {
	background-position: 0 -54px;
	width: 21px;
}

.teMute[aria-pressed=true]::before {
	background-position: 0 -72px;
	width: 21px;
}

.teSettingsBtn::before {
	background-position: 0 -90px;
}

.teFullscreen::before {
	background-position: 0 -108px;
}

.teFullscreen[aria-pressed=true]::before {
	background-position: 0 -126px;
}

.teTranscriptLink {
	display: flex;
	width: 2em;
	justify-content: center;
	align-items: center;
	color: var(--contentEmp);
}

.teTranscriptLink::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: transparent url("../img/richStream/icons.svg") no-repeat 0 -180px;
}

.teTranscriptLink>span {
	display: none;
}

.txt_tcLink {
	color: var(--contentEmp);
	text-decoration: none;
}

.txt_tcLink:hover {
	text-decoration: underline;
}

.teVolumeArea {
	position: relative;
	display: flex;
}

.teController input[type=range] {
	-webkit-appearance: none;
	display: block;
	border: solid 1px var(--contentEmp);
	color: var(--accentLightBG);
	padding: 0;
	margin: 0;
}


.teController input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 0;
}

html[dir='ltr'] .teController input[type=range]::-webkit-slider-runnable-track{
	background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0))
}
html[dir='rtl'] .teController input[type=range]::-webkit-slider-runnable-track{
	background-image: linear-gradient(to left, currentColor var(--value, 0), transparent var(--value, 0))
}
.teController input[type=range]::-webkit-slider-runnable-track {
	border: 0;
	user-select: none;
	height: 100%;
}

.teController input[type=range]::-moz-range-progress {
	background: currentColor;
	height: 100%;
}

.teController input[type=range]::-moz-range-thumb {
	width: 0;
	border: none;
}

input[type=range].teVolume {
	height: 0.5em;
	width: 7em;
	align-self: center;
	transform: translateX(7em) rotate(-90deg);
	transform-origin: left;
	margin-inline-start: -7em !important;
	position: absolute;
	left: 50%;
	top: 0.1em;
	visibility: collapse;
	opacity: 0;
	transition: visibility 0s 1.5s, opacity 0.5s 1s;
}

input[type=range].teSeek {
	margin-bottom: 0.2em;
	width: auto;
	flex: 0 0 0.8em;
}

.teController input[type=range]:hover,
.teController input[type=range]:focus,
.teMute:hover+input[type=range].teVolume,
.teMute.focus+input[type=range].teVolume {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s 0s, opacity 1s 0s;
}

.teSubtitlesPanel{
	inset-inline-end: 0;
	padding-inline-end: 20px;
}

.tePanel label {
	cursor: pointer;
}

/* Toc */
.teTocPanel {
	left: 0;
	right: 0;
	width: 80%;
	margin: 0 auto;
}

.teTocPanel_label::before {
	background-position: 0 -144px;
}

.teToc {
	padding-inline-start: 0;
	list-style: none;
}

.teToc li {
	margin: 0.3em 0;
}

.teToc a {
	color: black;
	text-decoration: none;
}

.teToc li.teActive>a {
	text-decoration: underline;
}

.teToc a:hover {
	text-decoration: underline;
}

/* Settings */
.tePanel {
	position: absolute;
	background-color: var(--contentBG);
	border: 2px solid var(--contentEmp);
	padding: .5em 1em;
	white-space: nowrap;
	transition: opacity 0.2s ease-in;
}

.tePanel[hidden] {
	display: block;
	visibility: collapse;
	opacity: 0;
	transition: opacity 0.2s ease-in, visibility 0s linear 0.2s;
}

.teSettingsPanel {
	bottom: 2.7em;
	inset-inline-end: 0;
}

.tePanel > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tePanel button, .tePanel a {
	-webkit-appearance: none;
	border: none;
	background: none;
	color: inherit;
	font-size: inherit;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.tePanel a {
	margin-inline-start: 1.1em;
}

.teSubtitlesPanel {
	top: 0;
	inset-inline-end: calc(100% + 0.2em);
}

.teQualitiesPanel,
.tePlaybackRatesPanel {
	bottom: 0;
	inset-inline-end: calc(100% + 0.2em);
}

.teSubtitlesBtn[aria-pressed=true], .teQualitiesBtn[aria-pressed=true], .tePlaybackRatesBtn[aria-pressed=true] {
	text-decoration: underline;
}

.teSubtitlesBtn::before, .teQualitiesBtn::before, .tePlaybackRatesBtn::before {
	content: '';
	display: inline-block;
	opacity: 0.5;
	margin-inline-start: 0.2em;
	margin-inline-end: 0.5em;
	padding: 2px;
	border-style: solid;
	border-color: var(--contentEmp);
	border-width: 0 0 2px 2px;
	transform: rotate(45deg);
}

.teSubtitlesBtn[aria-pressed=true]::before, .teQualitiesBtn[aria-pressed=true]::before, .tePlaybackRatesBtn[aria-pressed=true]::before {
	opacity: 1;
}

.teSettingsPanel input {
	display: none;
}

.teSettingsPanel input + span::before {
	content: '';
	width: 9px;
	height: 9px;
	display: inline-block;
	background-color: var(--contentEmp);
	opacity: 0.5;
	margin-inline-end: 0.5em;
	transition: opacity 0.2s ease-in;
}

.teSettingsPanel input[type=radio] + span::before {
	border-radius: 100%;
}

.teSettingsPanel input:checked + span::before {
	opacity: 1;
}

/* === STOP - RICHSTREAM ============================================= */

/* === START - RESPONSIVE DESIGN ============================================ */
@media (max-width: 1000px) {
	.pairTable .ddDropCatch{
		flex-direction: column;
	}
	.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
		flex: 1 1 auto;
	}
}
@media (max-width: 800px) {
	body {
		margin: 0;
	}

	.default #main {
		flex-flow: column;
		background: none;
		margin:0;
	}
}

@media (max-width: 700px) {
	.pairTable .ddDropCatch{
		flex-direction: column;
	}
	.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
		flex: 1 1 auto;
	}
}

@media (max-width: 500px) {
	.pairLabelListItem{
		flex-direction: column;
		align-items: stretch;
		margin: 1em 0.5em;
	}
	.pairLabelListItem .label{
		min-width: initial;
		margin: 0 0 3px 0;
	}
	.pairLabelListItem .targets{
		min-width: initial;
	}
}

/* === STOP - RESPONSIVE DESIGN ============================================= */
/* Topaze-specific styles */

a{
	color: var(--contentEmp);
	text-decoration:none;
}
a:hover{
	opacity:0.7;
}

.default #header, .sco #header{
	background: url(../img/tpl/back-top-straight.svg) no-repeat top;
	background-size: 100% 70px;
}

.default #header h1, 
.sco #header h1{
  font-size: 2em;
  padding-inline-start:60px;
}

#tplFra {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	overflow: auto;
	position: absolute;
	padding: 1em;
}

h1.subFra_ti {
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	font-size: 1.6em;
	padding-bottom: 4px;
	margin-block-start: 0;
}

#content h2 {
	text-align: end;
	margin: 0;
}

.btnQuizMde {
	display: inline-block;
	padding-top: 1em;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding-inline-start: 40px;
	overflow: hidden;
	background: url(../img/quiz/quizMode.svg) no-repeat top;
	background-position: 0 0px;
	background-size: 100%;
	vertical-align: middle;
	margin-inline-start: 0.5em;
}

.btnQuizMde span {
	display: none;
}

.btnQuizMde.quizSteped {
	background-position: 0 -80px;
}

.logos .logo {
	background-color: var(--accentDarkBG);
	border-radius: 5px;
	box-shadow: 0 1px 4px rgba(115, 115, 155, 0.5);
	display: inline-block;
	margin: 1em;
	padding: 2px 2px 0;
}

#main {
	z-index: auto;
  margin:0;
}

a.disabled_entry {
	color: silver;
	cursor: default;
}

a.disabled_entry:hover {
	opacity: 1;
}

.chart {
	display: initial !important;
}

.indexRequired_yes {
	border: 1px solid #b33333;
	box-shadow: 0 0 3px #ef6b6b inset;
}
.password_yes {
	-webkit-text-security: disc;
}
.inputSize {
	padding: 2px;
}

.userVar,
.userIndex,
.inputSize {
	font-size: inherit;
	font-family: Sans-serif;
	white-space: pre;
}

.quizResult .question>.rBk {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.loading_true #arc>div {
	visibility: hidden;
}

.mediaWeb video {
	width: 100%;
	height: auto;
	max-width: 640px;
}

/* === START - SEARCH ======================================================= */
#schBox {
    width: 200px;
	margin-top:10px;
}

div.schResFrame .schPgeBkAct_off>a.schPgeBtn {
	color: silver;
	cursor: default;
}

div.schResFrame .schPgeBkAct_off>a.schPgeBtn:hover {
	text-decoration: none;
	color: silver;
}

/* === STOP - SEARCH ======================================================== */

/*=== DEFAULT LAYOUT - TOOLS MENU ============================================*/
.default #tools {
	position: absolute;
	top:0;
	inset-inline-start:0;
	width:60px;
	z-index:2;
	bottom:20px;
}
.default #tools ul.toolcase {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
}

.default #tools li.search{
	position:absolute;
	top:0;
	inset-inline-start:60px;
}

.default #tools .btnOut {	background-position: 0 0;}
.default #tools .btnMap {	background-position: 0 -80px;}
.default #tools .btnBib{	background-position: 0 -160px;}
.default #tools .btnGlos{	background-position: 0 -240px;}
.default #tools .btnAcr{	background-position: 0 -320px;}
.default #tools .btnCredits{	background-position: 0 -400px;}
.default #tools .btnBack{	background-position: 0 -480px;}
.default #tools .btnNext{	background-position: 0 -560px;}
.default #tools .btnDocs {    background-position: 0 -640px;}
.default #tools .btnSynthesis {    background-position: 0 -720px;}
.default #tools .btnRef {    background-position: 0 -800px;}
.default #tools .btnNome {    background-position: 0 -880px;}

/*	=== START - VISUAL MAP ================================================ */
.visualMap {
	transform-style: preserve-3d;
	z-index: 2;
}

.subFra_co .visualMap_img {
	left: 50% !important;
	transform: translateX(-50%);
}

.zoomMap_over {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.6;
	background: #000000;
}

.zoomMapBtn {
	background: url("../img/tpl/btnZen.svg") no-repeat scroll 0 0 / 18px auto rgba(0, 0, 0, 0);
	height: 18px;
	position: absolute;
	width: 18px;
	top: 3px;
	inset-inline-start: 3px;
}

.zoomMapBtn span {
	display: none;
}

.zoomMapBtn.zoom_true {
	background: url("../img/tpl/btnZen.svg") no-repeat scroll 0 -36px / 18px auto rgba(0, 0, 0, 0);
}

a.zoomMapBtn:hover {
	opacity: 1;
}
/*	=== STOP - VISUAL MAP ================================================ */

/*	=== START - MENU MOBILE ================================================ */
#tools a.btnZen {
	background: url("../img/tpl/mnuMobile.svg") no-repeat scroll 0 0 / 30px auto rgba(0, 0, 0, 0);
	height: 30px;
	position: absolute;
	width: 30px;
	opacity: 1;
	top: 13px;
	inset-inline-start: 15px;
}

#tools a.btnZen:hover {
	opacity: 0.7;
}

#tools a.btnZen span {
	display: none;
}

#root.zen_true #tools ul {
	display: none;
}

.default .zen_false #content {
	margin-inline-start: 60px;
}

.default .zen_false #header h1,
.sco .zen_false #header h1 {
	padding-inline-start: 270px;
}

/*	=== STOP - MENU MOBILE ================================================ */

/* === START - PLAN ================================================ */
.outlineFra {
	padding: 1em;
}

.outlineFra .subFra_co {
	display: -webkit-flex;
	display: flex;
	flex-flow: row nowrap;
	-webkit-flex-flow: row;
}

div#mnuFra {
	font-size: 18px;
	-webkit-flex: 2 1 auto;
	flex: 1 1 auto;
}

div.progFra {
	margin: 20px;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
}
div.progFra span.progInd{
	width:160px;
	height:160px;
	background: transparent url(../img/prog/0.svg) no-repeat right 0 / 160px auto;
	display: inline-block;
}
}
div.progFra.prog-10 span.progInd{
	background-image: url(../img/prog/10.svg);
}
div.progFra.prog-20 span.progInd{
	background-image: url(../img/prog/20.svg);
}
div.progFra.prog-30 span.progInd{
	background-image: url(../img/prog/30.svg);
}
div.progFra.prog-40 span.progInd{
	background-image: url(../img/prog/40.svg);
}
div.progFra.prog-50 span.progInd{
	background-image: url(../img/prog/50.svg);
}
div.progFra.prog-60 span.progInd{
	background-image: url(../img/prog/60.svg);
}
div.progFra.prog-70 span.progInd{
	background-image: url(../img/prog/70.svg);
}
div.progFra.prog-80 span.progInd{
	background-image: url(../img/prog/80.svg);
}
div.progFra.prog-90 span.progInd{
	background-image: url(../img/prog/90.svg);
}
div.progFra.prog-100 span.progInd{
	background-image: url(../img/prog/100.svg);
}

div#mnuFra ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	padding: 0;
}

div#mnuFra ul ul {
	padding-inline-start: 1em;
}

div#mnuFra a {
	color: var(--contentEmp);
	text-decoration: none;
}

div#mnuFra a.disabled_entry {
	color: silver;
	cursor: default;
}

map area.disabled_entry {
	cursor: default;
}

div#mnuFra a.disabled_entry:hover {
	text-decoration: none;
}

/* === STOP - PLAN ================================================ */

/*=== START - STEPTOOLS ===============================================*/
.navNode.default .stepTools {
	display: none;
}
.default .stepTools{
	flex: 0 0 var(--menuWidth);
	background-color: var(--accentLightBG);
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-flow: column;
	flex-flow: column;
}

.default .stepTools #arc {
	flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	order: 2;
	padding: 0 1em;
}

.default .stepTools #arc .arcBk_ti {
	text-align: end;
	background-image: linear-gradient(to left, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	font-size: 1.6em;
	padding-bottom: 4px;
}

.default .stepTools #arc .arcList {
	list-style-type: none;
}

.default .stepTools .required_index {
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}

.default .stepTools .required_index>p {
	color: #579fc0;
	text-align: center;
}

.default .stepTools .countDownBk {
	order: 3;
	text-align: center;
	width: 300px;
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}

.default .stepTools .countDownImg {
	order: 4;
	text-align: center;
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	margin: 0.5em 0;
}

.coach {
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	margin: 1em;
	text-align: center;
	order: 1;
}

/* STEPTOOLS - NAVIGATION BUTTONS	*/
.default .stepTools #arc {
	text-align: end;
}

.default .stepTools #arc a {
	display: inline-block;
	height: 40px;
	padding-inline: 10px 50px;
	background: transparent url(../img/tpl/buttons.svg) no-repeat right 0 / 40px auto;
	text-decoration: none;
	font-size: 1.2em;
	margin: 0.5em 0;
}
.home.fileProtocol .stepTools #arc a.btnStart{
	display: none;
}

.default .stepTools #arc a.btnLast {
	background-position: right -60px;
}

.default .stepTools #arc a.btnReset {
	background-position: right -180px;
}

.default .stepTools #arc a.btnPlan {
	background-position: right -120px;
}

.default .stepTools #arc a.btnValid {
	background-position: right -240px;
}

.default .stepTools #arc a.btnImage {
	background: none;
	padding: 0 10px;
}

.default .stepTools #arc a span {
	display: inline-block;
	padding: 10px 0 0;
}

.default .stepTools #arc a:hover {
	opacity: 0.9;
	color: var(--contentEmp);
}

.default .stepTools #arc a span .imgTransWTitle {
	display: block;
	padding: 10px;
}

.default .stepTools .stepToolsBtn {
	display: none;
	background: url(../img/search/schBtn.svg) no-repeat;
	background-size: 100%;
	background-position: 0 -27px;
	width: 26px;
	height: 27px;
	position: absolute;
	top: 15px;
	inset-inline-start: 15px;
	z-index: 1;
}

.default .stepTools .stepToolsBtn.closedBarBtn {
	background-position: 0 0;
}

.default .stepTools .stepToolsBtn span {
	display: none;
}

/*=== STOP - STEPTOOLS ===============================================*/


/* === START - COUNTDOWN ================================================ */
.countDownBk {
	font-family: "Digit", monospace;
	color: #ffffff;
	-webkit-transition: opacity 0.5s ease-in-out;
	/* transition pour Chrome et Safari */
	-moz-transition: opacity 0.5s ease-in-out;
	/* transition pour Firefox */
	-o-transition: opacity 0.5s ease-in-out;
	/* transition pour Opéra */
	transition: opacity 0.5s ease-in-out;
}

.countDownBk.top {
	position: absolute;
	top: 0;
	inset-inline-start: 270px;
	line-height: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.progressBar.countDownBk.top {
	line-height: 35px;
}

.zen_true .countDownBk.top {
	inset-inline-start: 70px;
}

.discreet,
.progressive {
	font-size: 16px;
	text-shadow: 0 0 1px;
}

.loud {
	font-size: 38px;
	text-shadow: 0 0 2px;
}

.display_no {
	opacity: 0;
}

.display_yes {
	opacity: 1;
}

.progressBar .countDownDiv {
	font-size: 15px;
	color: #fff
}

.progressBar .progress {
	display: block;
	padding: 1px;
	border: 0 none;
	background-color: #f7f7f7;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
	height: 12px;
	color: #aaa;
	width: 200px;
	margin: 0.5em auto 0;
}

.progressBar.top .progress,
.progressBar.top {
	width: 350px;
}

.progressBar .progress::after {
	content: "";
	display: block;
	height: 12px;
	width: var(--width, 0);
	background: #fff;
	background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, .4) 33%, rgba(0, 0, 0, .4) 66%, transparent 66%);
	border-radius: 2px;
	background-size: 35px 20px, 100% 100%, 100% 100%;
	animation: animate-stripes 5s linear infinite;
	border-inline-end: 1px solid;
}

@keyframes animate-stripes {
	100% {
		background-position: -100px 0px;
	}
}


/* === STOP - COUNTDOWN ================================================ */

/* === START - MENU OPALE ============================================== */
.uePage nav#menu {
	background-color: var(--accentLightBG);
	display: flex;
	position: relative;
	flex: 0 0 auto;
	order: 1;
}

.uePage #content {
	order: 2;
}

.uePage .zen_false #content,
.uePage #content {
	margin-inline-start: 20px;
}

.uePage .zen_false nav#menu,
.uePage.spiderMode .zen_false #content {
	margin-inline-start: 60px;
}

.uePage .stepTools {
	order: 3;
}

.uePage #tplMnu {
	display: flex;
	flex: 2 1 auto;
	justify-content: center;
	border-inline-end: 1px solid var(--accentDarkBG);
}

.tplMnuOn {
	width: var(--menuWidth);
}

.uePage #tplMnuCo {
	padding: 1em;
}

.uePage #tplMnu .ueMnuSrlUpBtn,
.uePage #tplMnu .ueMnuSrlDwnBtn {
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
	width: calc(var(--menuWidth, 300px) - 20px);
	height: calc(var(--menuWidth, 300px) / 15);
	padding-inline-start: calc(var(--menuWidth, 300px) - 20px);
	overflow: hidden;
	background: url(../img/tpl/menu-scroller.svg) no-repeat top;
	background-size: 100%;
}

.uePage #tplMnu .ueMnuSrlDwnBtn {
	transform: rotate(180deg);
}

.uePage #tplMnu ul ul {
	padding: 0 10px;
}

.uePage #tplMnu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.uePage #tplMnu #tplMnuScroll>ul>li {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.uePage #tplMnu #tplMnuScroll li {
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-size: 100% 1px;
	background-position: bottom;
	background-repeat: no-repeat;
}

.uePage #tplMnu #tplMnuScroll a {
	color: black;
	text-decoration: none;
	display: block;
	margin-bottom: 3px;
}

.uePage #tplMnu #tplMnuScroll span {
	display: inline-block;
	margin-bottom: 3px;
}

.uePage #tplMnu #tplMnuScroll .mnu_sel_yes {
	background-color: var(--accentDarkBG);
	color: white;
	border-radius: 5px;
	padding: 2px 5px;
}

.btnMnuTglOn,
.btnMnuTglOff {
	background: transparent url("../img/tpl/mnuTgle.svg") no-repeat scroll 0 0 / 35px auto;
	display: block;
	height: 35px;
	inset-inline-end: -20px;
	position: absolute;
	top: 40%;
	width: 20px;
}

.btnMnuTglOn {
	background-position: 0 -41px;
}

.btnMnuTglOn span,
.btnMnuTglOff span {
	display: none;
}

/* === END - MENU OPALE =============================================== */

/* === START - MEDIANODE ==================================================== */
.default.mediaNode #main {
	display: block;
	position: relative;
}

.default.mediaNode .zen_false #main {
	margin-inline-start: 60px;
}

.default.mediaNode #content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.default.mediaNode .zen_false #content {
	margin-inline-start: 0;
}

.default.mediaNode .scroller {
	padding: 0;
}

.default.mediaNode .nodeBk_ti {
	visibility: hidden;
}

.default.mediaNode .background {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: black;
}

.default.mediaNode .background .tePlayer {
	width: auto;
	position: static;
}

.default.mediaNode .background .tepMainArea {
	width: auto;
	position: static;
}

.default.mediaNode .tePlayer.teVideoType video,
.default.mediaNode .tePlayer.teVideoType mediaelementwrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
}

.default.mediaNode .stepTools {
	position: absolute;
	bottom: 2em;
	left: 1em;
	right: 1em;
	display: none;
	background-color: transparent;
}

.default.mediaNode_showArc .stepTools {
	display: inherit;
}

.default.mediaNode .stepTools #arc {
	text-align: inherit;
	padding: 0;
	font-size: 105%;
}

.default.mediaNode div.focusImage.right {
	text-align: end;
}

.default.mediaNode div.focusImage.left {
	text-align: start;
}

.default.mediaNode div.focusImage.center {
	text-align: center;
}

.default.mediaNode .arcBk_ti {
	display: none;
}

.default.mediaNode .arcBk_co {
	display: flex;
	flex-direction: column;
}

.default.mediaNode .mcqArc .arcBk_co {
	align-items: center;
}

.default.mediaNode .arcBk_co p {
	margin: 1.2em;
}

.default.mediaNode .arcIntro,
.mcqArc {
	background-color: rgba(255, 255, 255, 0.8);
	margin: 0 1.2em;
}

.default.mediaNode .arcList {
	display: flex;
	padding: 0;
	min-width: 0;
}

.default.mediaNode .arcList>li {
	flex: 1 1 auto;
	background-color: rgba(255, 255, 255, 0.8);
	margin: 1.2em 1.2em 0 1.2em;
	padding: 1.2em;
	text-align: center;
}

.default.mediaNode .unaryArc .arcBk_co>div {
	background-color: rgba(255, 255, 255, 0.8);
	margin: 1.2em 1.2em 0 1.2em;
	padding: 1.2em;
	text-align: center;
}

/* === STOP - MEDIANODE ===================================================== */

/* === START - CREDITS ================================================ */
.resCredits .cc-button {
	vertical-align: top;
}

.crResTt {
	position: absolute;
	background: #fff;
	box-shadow: 0 0 3px;
	height: 250px;
	overflow: hidden;
}

.idxFra {
	margin: 0;
	padding-inline-start: 14px;
	background-image: linear-gradient(180deg, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 1px 100%;
	border-top: 1px solid var(--accentDarkBG);
	padding-top: 0.5rem;
	margin-inline: 16px;
	margin-bottom: 2rem;
	padding-bottom: 0.3rem;
}

.idxEntryTi {
	margin-top: 0.5em;
	margin-inline-start: 16px;
	font-size: 1.2rem;
	font-weight: bold;
}

.idxEntryCallers_co {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.idxEntryCallers {
	color: #666;
	display: flex;
	font-style: italic;
	margin-top: 0.2rem;
}

.idxEntryCaller {
	margin-inline-start: 0.3rem;
}

.idxEntryCaller a:not(:last-child):after {
	content: ", ";
}

/* === STOP - CREDITS ================================================ */

/* === START - TIME ALERT ============================================ */
.sessionTimeAlert_hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.7;
	z-index: 9999;
}

.sessionTimeAlert_co {
	background: var(--accentLightBG) url("../img/tpl/inactivite.svg") no-repeat scroll center center / 180px auto;
	border: 2px solid var(--accentDarkBG);
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 0 15px #222;
	color: var(--contentEmp);
	display: table;
	font-size: 1.8em;
	height: 200px;
	left: 50%;
	margin-left: -175px;
	margin-top: -100px;
	padding: 10px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 350px;
	z-index: 10000;
}

.sessionTimeAlert_co div {
	margin-top: 52px;
}

/* === STOP - TIME ALERT ============================================= */


/* === START - RESPONSIVE DESIGN ===================================== */
.mediaWeb .resInFlow_co {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.mediaWeb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* tablets - portrait */
@media (max-width: 1200px) {
	.default .stepTools {
		flex: 0 0 200px;
	}
}

@media (max-width: 900px) {
	.coach img {
		max-height: 60px;
		width: auto;
	}

	body {
		font-size: 0.8em;
	}

	.subWindow_win {
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
	}

	.pBk .type span,
	.stepToolsHide_true .arcBk_co {
		display: none;
	}

	.loud {
		font-size: 16px;
	}

	.countDownBk.top {
		inset-inline-start: 230px;
	}

	#tools a.btnZen {
		display: inline;
	}

	.outlineFra .subFra_co {
		flex-flow: column nowrap;
		text-align: center;
	}

	.default.topaze .stepTools .stepToolsBtn,
	.default.uePage .stepTools .stepToolsBtn {
		display: initial;
	}

	.default #main .stepTools {
		flex: 0 0 auto;
	}

	.default .zen_false main .stepTools,
	.default .zen_false #main #menu,
	.uePage .zen_false #content {
		margin-inline-start: 60px;
	}

	input.schInput {
		width: 100px;
	}

	.default .zen_false #header h1,
	.sco .zen_false #header h1 {
		padding-inline-start: 220px;
	}

	#tplMnu {
		border-inline-end: none;
	}

	.uePage #content,
	.uePage nav#menu,
	.uePage .stepTools {
		order: 0;
	}

	.uePage #content {
		margin-inline-start: 0;
	}

	.schResFrame {
		inset-inline-start: 10%;
		margin-inline-start: 0;
		inset-inline-end: 10%;
		width: auto;
	}

	.btnMnuTglOn,
	.btnMnuTglOff {
		background-position: 0 -87px;
		height: 20px;
		inset-inline-end: 40%;
		top: -20px;
		width: 35px;
	}

	.btnMnuTglOn {
		background-position: 0 -117px;
	}

	.uePage #tplMnu {
		border-inline-end: none;
		border-top: 1px solid var(--accentDarkBG);
	}
}

@media (max-width:600px) {

	.default #header h1,
	.sco #header h1 {
		font-size: 1.5em;
		padding: 1em 1em 0 60px;
	}

	.default.mediaNode .arcList {
		flex-direction: column;
	}
}

@media (max-width: 500px) {
	.default .isCountDown_true #header {
		flex: 0 0 110px;
	}

	.default .isCountDown_true #header,
	.sco .isCountDown_true #header {
		background-size: 100% 120px;
	}

	.default .isCountDown_true #header h1,
	.sco .isCountDown_true #header h1 {
		padding-top: 50px;
	}

	.default .isCountDown_true #tools ul.toolcase {
		margin-top: 120px;
	}
}

@media (max-height: 630px) {
	.schDisplayList_on .schResFrame {
		height: auto;
		top: 100px;
	}
}