/*********************/
/*** Police Verlag ***/
/*********************/
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-Book.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-Bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-Black.otf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-BookItalic.otf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-BoldItalic.otf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "verlag";
  src: url("../fonts/Verlag-BoldItalic.otf");
  font-weight: 900;
  font-style: italic;
}
/************************/
/*** Police Open Sans ***/
/************************/
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-ExtraBold.ttf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-Italic.ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-BoldItalic.ttf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-ExtraBoldItalic.ttf");
  font-weight: 900;
  font-style: italic;
}
/***********************/
/***** Style GRICS *****/
/***********************/
body {
  font-family: "Open-Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8rem;
  color: #303030;
  padding: 0 15px;
}
/************************************/
/******** Titres et en-têtes ********/
/************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "verlag", sans-serif;
  line-height: normal;
  color: #000000;
}
h1 {
  font-weight: 900;
  font-size: 40px;
  margin: 30px 0;
}
h2 {
  font-weight: bold;
  font-size: 30px;
  margin: 20px 0;
}
h2.H2-Annexe {
  font-weight: bold;
  font-size: 30px;
  margin-top: 60px;
}
h3 {
  font-weight: bold;
  font-size: 26px;
  margin: 20px 0;
}
h4 {
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0;
}
h5 {
  font-weight: bold;
  font-size: 22px;
  margin: 20px 0;
}
h6 {
  font-weight: bold;
  font-size: 22px;
  margin: 20px 0;
}
/***************************/
/*** Paragraphe standard ***/
/***************************/
p {
  font-size: 18px;
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
  margin-top: 18px;
  margin-bottom: 18px;
}
/***************************/
/*** Paramètres d'images ***/
/***************************/
img.cadre {
  border: 1px solid #000000;
}
img.inline-icon {
  margin-bottom: -3px;
  max-height: 18px;
}
img.pdf {
  max-height: 400px;
}
/***********************************************/
/*** paramètres de listes à puces et numéros ***/
/***********************************************/
e ul,
ul>li>ul,
ul>li>ul>li>ul,
ul>li>ul>li>ul>li>ul,
ol,
ol>li>ol,
ol>li>ol>li>ol,
ol>li>ol>li>ol>li>ol {
  margin: 10px 0;
}
ul img,
ol img {
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
li {
  font-family: "Open-Sans", sans-serif;
  margin-bottom: 15px;
}
/* Liste numérotée avec sous-liste alphabétique et sous-sous liste en chiffres romains */
ol.AlphaNumeric {
  list-style: decimal;
}
ol.AlphaNumeric>li>ol {
  list-style: lower-alpha;
}
ol.AlphaNumeric>li>ol>li>ol {
  list-style: lower-roman;
}
/* Liste à puces rond-cercle-carré */
ul.puces {
  list-style: disc;
  margin-top: 18px;
}
ul.puces>li>ul {
  list-style: circle;
}
ul.puces>li>ul>li>ul {
  list-style: square;
}
ul.puces>li>ul>li>ul>li>ul {
  list-style: disc;
}
ul.puces>li>ul>li>ul>li>ul>li>ul {
  list-style: circle;
}
ul.puces>li>ul>li>ul>li>ul>li>ul>li>ul {
  list-style: square;
}
/**************************************/
/*** Liste numérotée Cercles Rouges ***/
/**************************************/
ol.Liste-Cercles-Rouges {
  counter-reset: li;
  list-style-type: none;
  padding-left: 10px;
}
ol.Liste-Cercles-Rouges>li {
  position: relative;
  padding: 5px 0 5px 60px;
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 40px;
}
ol.Liste-Cercles-Rouges>li:before {
  content: counter(li);
  counter-increment: li;
  font-weight: bold;
  font-size: 22px;
  height: 40px;
  width: 40px;
  border: 1px solid #FC4242;
  border-radius: 50%;
  color: white;
  Background-color: #FC4242;
  text-align: center;
  line-height: 40px;
  position: absolute;
  left: 0;
  top: 4px;
  box-shadow: 5px 5px 5px #C0C0C0;
}
/*********************************/
/*** Guillemetisation standard ***/
/*********************************/
/* Guillemets français */
span.guillemets {
  white-space: normal;
}
span.guillemets:before {
  white-space: nowrap;
  content: "« ";
}
span.guillemets:after {
  white-space: nowrap;
  content: " »";
}
/****************************************/
/*** Citation: guillemets et italique ***/
/****************************************/
span.citation {
  white-space: normal;
  font-style: italic;
}
span.citation:before {
  white-space: nowrap;
  font-style: normal;
  content: "« ";
}
span.citation:after {
  white-space: nowrap;
  font-style: normal;
  content: " »";
}
/************************************************************/
/*** Mise en forme pour deux-points avec espace insécable ***/
/************************************************************/
span.deux-points {
  white-space: normal;
}
span.deux-points:after {
  white-space: nowrap;
  content: " :";
}
/***************************************/
/*** paramètres exposants et indices ***/
/***************************************/
sup {
  vertical-align: top;
  font-size: 12px;
  position: relative;
  top: -0.4em;
}
/*sup:before {
  white-space: nowrap;
  content: " ";
}*/
h1 sup {
  font-family: "verlag", sans-serif;
  font-weight: 900;
  vertical-align: top;
  font-size: 20px;
  position: relative;
  top: -0.2em;
}
h2 sup {
  font-family: "verlag", sans-serif;
  font-weight: 900;
  vertical-align: top;
  font-size: 15px;
  position: relative;
  top: -0.1em;
}
h3 sup {
  font-family: "verlag", sans-serif;
  font-weight: 900;
  vertical-align: top;
  font-size: 13px;
  position: relative;
  top: -0.1em;
}
/**************************************************/
/*** paramètres Highlight Nouveautés 5.0.251.xx ***/
/**************************************************/
div.nouveau-5_0_251_00 {
  font-family: "verlag", sans-serif;
  font-weight: 900;
  font-size: 22px;
  padding: 30px;
  padding-left: 50px;
  border-radius: 8px;
  border: 1px solid #FFE100;
  background-color: #FFFF64;
  margin: 30px 0;
  background-image: url(../images/001-Commun/Nouveaute_Jaune.png);
  background-repeat: no-repeat;
  background-position: 10px 25px;
  background-size: 32px;
}
div.nouveau-5_0_251_00::before {
  content: "Nouveauté 5.0.251";
}
span.nouveau-5_0_251_00 {
  background-color: #FFFF64;
}
/**************************************************/
/*** paramètres Avertissement (Boîte Important) ***/
/**************************************************/
.warning-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #FFE100;
  background-color: #FFFFC8;
  margin: 30px 0;
  background-image: url(../images/001-Commun/warning-box-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}
/*******************************************/
/*** paramètres Alerte (Boîte Attention) ***/
/*******************************************/
.alert-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #FFBCBC;
  background: #FFEDED;
  margin: 30px 0;
  background-image: url(../images/001-Commun/alert-box-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}
/*****************************/
/*** paramètres Boîte Note ***/
/*****************************/
.notice-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #B1E3FF;
  background-color: #EEF9FF;
  margin: 30px 0;
  background-image: url(../images/001-Commun/notice-box-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}
/********************************/
/*** paramètres Boîte Astuces ***/
/********************************/
.tips-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #C8EBBC;
  background: #EEFFE8;
  margin: 30px 0;
  background-image: url(../images/001-Commun/tips-box-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}
/*********************************/
/*** paramètres Chemin d'accès ***/
/*********************************/
.path-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #dcbceb;
  background-color: #f8e8ff;
  margin: 30px 0;
  background-image: url(../images/001-Commun/path-box-icon.svg);
  Background-size: 25px;
  background-repeat: no-repeat;
  background-position: 10px 10px;
}
/*******************************/
/*** paramètres Bloc de code ***/
/*******************************/
.code-box {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #000000;
  background-color: #333333;
  margin: 30px 0;
}
.code-box p {
  font-size: 18px;
  font-family: "Consolas";
  font-weight: 300;
  line-height: 1rem;
  color: #72e0d1;
}
/**********************************/
/*** paramètres Boîte d'exemple ***/
/**********************************/
.example-box {
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid #FF9B59;
  background-color: #FFCD9B;
  margin: 30px 0;
}
/* vieux bloc de code...
pre {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #dddddd;
  background-color: #F6F6F6;
  margin: 30px 0;
  font-size: 16px;
  font-family: "Source Code Pro";
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
  max-height: 300px;
  overflow: scroll;
} */
.notice-box h5,
.tips-box h5,
.alert-box h5,
.warning-box h5,
.example-box h5,
.path-box h5 {
  margin: 0;
  color: #2A2F35;
}
/*************************************/
/*** paramètres de texte déroulant ***/
/*************************************/
a.dropspot {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
a.dropspot:before {
  content: "► ";
  color: black;
}
a.dropspot.pressed:before {
  content: "▼ ";
  color: black;
}
/***********************************/
/*** Spécification tableau GRICS ***/
/***********************************/
.clear-table td {
  background: white;
}
.clear-table-no-border,
.clear-table-no-border td {
  background: white;
  border: none !important;
}
.clear-cell {
  background: white;
  border: none !important;
}
.clear-row {
  background: white !important;
}
table {
  font-family: "Open-Sans", sans-serif !important;
  font-size: 18px;
  border-collapse: separate !important;
  border-spacing: 0;
  border: 1px solid #DDDDDD !important;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 18px;
  margin-bottom: 20px;
}
table p {
  margin: 0;
}
table th,
table td {
  padding: .75rem !important;
  border: 1px solid #DDDDDD !important;
}
table td:first-child {
  font-weight: bold !important;
}
table thead,
{
border-radius: 10px 10px 0 0;
}
thead th:first-child {
  border-radius: 8px 0 0 0;
}
thead th:last-child {
  border-radius: 0 8px 0 0;
}
table thead,
table th {
  background: #34B233;
  color: white;
  font-family: "verlag", serif;
  font-weight: bold;
  font-size: 22px;
  text-align: left;
}
table th p {
  font-family: "verlag", serif;
}
table tbody tr:nth-of-type(odd) {
  background: #F6F6F6;
}
.red-cell,
.red-cell th {
  background-color: #ff5a5f !important;
}
/************* Fin tableau *************/
/********************************/
/********** Hyperliens **********/
/********************************/
a {
  color: #0073cf;
}
a:hover {
  color: #ff5a5f;
}
/********************/
/*** Fil d'ariane ***/
/********************/
.breadcrumbs {
  padding: 30px 0;
  font-weight: bold;
}
.breadcrumbs-home-displaytext {
  font-weight: bold;
}
.breadcrumbs-separator {
  font-size: 18px;
  font-weight: normal;
}
.separator {
  font-size: 18px;
  font-weight: normal;
}
/*** Spécification conteneurs ***/
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 15px;
}
.content-topic {
  width: 75%;
}
.right-panel {
  width: 25%;
}
.right-panel .minitoc {
  border-left: 1px solid #ddd;
  padding-left: 20px;
  position: sticky;
  overflow: scroll;
  max-height: 500px;
  top: 10px;
}
.minitoc {
  scrollbar-width: none;
}
.minitoc-caption {
  font-size: 22px !important;
  font-family: "verlag";
  margin: 10px 0;
}
.minitoc::-webkit-scrollbar {
  -ms-overflow-style: none;
  display: none;
}
.minitoc-list li {
  padding: 10px 20px;
  margin-left: -20px;
  margin-bottom: 0;
}
.minitoc-list>li:hover {
  border-left: 2px solid #000;
}
.minitoc-list ol {
  margin: 0px;
  padding: 0 10px;
}
.minitoc-list-item {
  font-family: "Open-Sans";
  text-decoration: none;
  color: #353535;
}
.minitoc-list-item:hover {
  color: #353535;
}
/**************************/
/*** Pied-de-page GRICS ***/
/**************************/
.footer-grics {
  background-color: #37424A;
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.footer-grics a,
.footer .copyright {
  color: #bdc0c4;
}
.footer-grics a:hover {
  text-decoration: none;
}
.footer-grics p {
  margin: 0 0 1rem;
  text-align: center;
}
.footer-grics p:last-child {
  margin: 0;
}
/*** Footer Oshara ***/
.footer {
  margin-top: 20px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #ddd;
  gap: 20px;
}
.footer p {
  font-weight: 300;
  color: #4D4D4D;
  margin: 0;
}
.footer .seealso-caption {
  font-size: 20px;
  font-weight: bolder;
  color: #4D4D4D;
}
.footer li a {
  font-family: "Open-Sans";
  font-weight: 300;
  color: #0073CF;
  text-decoration: underline;
}
.footer li a:hover {
  color: #4D4D4D;
}
.footer-top,
.footer-bottom {
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  justify-content: space-between;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.footer-logo,
.footer-desc,
.footer-socials,
.copyright {
  width: 50%;
}
.footer-logo img {
  width: 160px;
}
.copyright {
  padding: 0 15px;
  text-align: right;
}
.copyright p {
  font-size: 16px;
}
.socials-list {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.socials-list-item {
  float: left;
  margin: 0 20px 0 0;
}
.socials-list-item img {
  min-width: 35px;
  margin: 0;
}
/*** seealso-list ***/
.seealso-list li {
  padding: 10px 20px;
  margin-left: -20px;
  margin-bottom: 0;
}
.seealso-list>li:hover {
  border-left: 2px solid #000;
}
.seealso-list ol {
  margin: 0px;
  padding: 0 10px;
}
.seealso-list-item {
  font-family: "Open-Sans";
  text-decoration: underline;
  color: #0073CF;
}
.seealso-list-item:hover {
  color: #353535;
}
/*** FIN seealso-list ***/
/************************************/
/*** Vieilles listes à débarasser ***/
/************************************/
/* Liste numérotée avec sous-liste alphabétique */
ol.Decimal {
  list-style: decimal;
}
ol.Decimal>li>ol {
  list-style: lower-alpha;
}
/* liste à puces par défaut RoboHelp */
ul.Disc {
  list-style: disc;
}
/************************************/
/*** Division pour bulle de texte ***/
/************************************/
.triangle-isosceles {
  position: relative;
  padding: 15px;
  margin: auto;
  width: 50%;
  color: #FFFFFF;
  background: #37424A;
  border-radius: 10px;
}
/*** Le triangle de la bulle de texte ***/
.triangle-isosceles:after {
  content: "";
  position: absolute;
  bottom: -15px;
  /* value = - border-top-width - border-bottom-width */
  left: 50%;
  /* controls horizontal position */
  border-width: 15px 15px 0;
  /* vary these values to change the angle of the vertex */
  border-style: solid;
  border-color: #37424A transparent;
  /* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}
/*********************************************************************/
/*** Division pour pied-de-page avec barre horizontale et triangle ***/
/*********************************************************************/
.bas-de-page {
  position: relative;
  margin-bottom: 25px;
  Border-style: none none solid none;
  border-color: #0073CF;
  border-width: 5px;
}
/*** Le triangle de la barre horizontale ***/
.bas-de-page:after {
  content: "";
  position: absolute;
  bottom: -25px;
  /* value = - border-top-width - border-bottom-width */
  left: 50%;
  /* controls horizontal position */
  border-width: 25px 25px 0;
  /* vary these values to change the angle of the vertex */
  border-style: solid;
  border-color: #0073CF transparent;
  /* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}
/******************************************/
/*************** Responsive ***************/
/******************************************/
@media only screen and (max-width: 677px) {
  .flex-container,
  .container {
    flex-wrap: wrap;
  }
  .footer-logo,
  .footer-desc,
  .footer-socials,
  .copyright,
  .footer-menu,
  .content-topic,
  .right-panel {
    width: 100%;
  }
  .copyright {
    text-align: left;
  }
}
/****************************************************/
/***** Conteneur pour sélecteur de version PGRH *****/
/****************************************************/
.container {
  display: flex;
  gap: 50px;
  max-width: 1440px;
  margin: auto;
  padding: 0 15px;
}
.container.version-switch {
  align-items: center;
}
.btn-dropdown {
  padding: 10px;
  background: #34B233;
  border: none;
  border-radius: 4px;
  color: #fff;
}
.ver-dropdown {
  display: inline-block;
  position: relative;
}
.ver-dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
  background: #fff;
}
.ver-dropdown:hover .ver-dropdown-content {
  display: block;
}
.ver-dropdown-content a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
}
.ver-dropdown-content a:hover {
  color: #FFFFFF;
  background-color: #34B233;
}
.inner {
  display: flex;
  gap: 20px;
}
.container.column {
  flex-direction: column;
}
/*****************************************/
/************** Mode Sombre **************/
/*****************************************/
.dark-mode body {
  Background: #01080D;
  color: #B3B3B3;
}
.dark-mode .topic body {
  Background: red !important;
  color: #B3B3B3;
}
/*** Spécification typo ***/
.dark-mode a {
  color: #0073cf;
}
.dark-mode a:hover {
  color: #ff5a5f;
}
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: #E6E6E6 !important;
}
.dark-mode p,
.dark-mode span {
  color: #B3B3B3;
}
.dark-mode .footer li a {
  color: #B3B3B3;
}
/*** Spécification conteneurs" ***/
.dark-mode .alert-box {
  border: 1px solid #4D0000;
  background-color: #330000;
}
.dark-mode .notice-box {
  border: 1px solid #00314D;
  background-color: #002133;
}
.dark-mode .tips-box {
  border: 1px solid #244A17;
  background-color: #0B2104;
}
.dark-mode .notice-box h5,
.dark-mode .tips-box h5,
.dark-mode .alert-box h5 {
  margin: 0;
  color: #B3B3B3;
}
/*** Spécification table ***/
.dark-mode .clear-table td {
  background: #01080D;
}
.dark-mode .clear-table-no-border,
.dark-mode .clear-table-no-border td {
  background: #01080D;
}
.dark-mode .clear-cell {
  background: #01080D;
}
.dark-mode .clear-row {
  background: #01080D !important;
}
.dark-mode table {
  border: 1px solid #031726;
}
.dark-mode table th,
.dark-mode table td {
  border: none !important;
}
.dark-mode table td:first-child {
  color: #fff !important;
}
.dark-mode table thead,
.dark-mode table th {
  background: #0073cf;
  color: white;
}
.dark-mode table tbody tr:nth-of-type(odd) {
  background: #031726;
}
.dark-mode .red-cell,
.dark-mode .red-cell th {
  background-color: #ff5a5f !important;
}
.dark-mode .right-panel .minitoc {
  border-color: #353535;
}
.dark-mode .minitoc-list>li:hover {
  border-left: 2px solid #fff;
}
.dark-mode .footer {
  background-color: #03131C;
  border-color: #00314C;
}
.dark-mode .footer-bottom {
  border-color: #00314C;
}
.dark-mode .socials-list-item img {
  filter: invert(100%) sepia(20%) saturate(7482%) hue-rotate(182deg) brightness(122%) contrast(95%);
}
ul.Circle {
  list-style: circle;
}
table.borderonly {
  border-collapse: collapse;
}
table.borderonly td {
  padding-top: 2px;
  padding-right: 4px;
  padding-bottom: 2px;
  padding-left: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #bfbfbf;
}
table.borderonly th {
  padding-top: 2px;
  padding-right: 4px;
  padding-bottom: 2px;
  padding-left: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #bfbfbf;
}
ol.RoundNumbers {
  counter-reset: item1;
  list-style: none;
  padding-left: 25px;
  margin-left: 15px;
}
ol.RoundNumbers>li {
  position: relative;
  line-height: 25px;
  margin-bottom: 2px;
}
ol.RoundNumbers>li:before {
  counter-increment: item1;
  content: counter(item1, decimal);
  text-align: center;
  position: absolute;
  left: -29px;
  margin-right: 4px;
  width: 25px;
  overflow: hidden;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  height: 25px;
  line-height: 25px;
}
ol.NestedNumbering {
  counter-reset: item1;
  list-style: none;
  padding-left: 40px;
  margin-left: 0px;
}
ol.NestedNumbering>li {
  position: relative;
}
ol.NestedNumbering>li:before {
  counter-increment: item1;
  content: counter(item1, decimal)".";
  text-align: right;
  position: absolute;
  left: -44px;
  margin-right: 4px;
  width: 40px;
  overflow: hidden;
}
ol.NestedNumbering>li>ol {
  list-style: none;
  counter-reset: item2;
  padding-left: 60.1px;
  margin-left: -20.1px;
}
ol.NestedNumbering>li>ol>li:before {
  counter-increment: item2;
  content: counter(item1, decimal)"." counter(item2, decimal)".";
  text-align: right;
  position: absolute;
  left: -64.1px;
  margin-right: 4px;
  width: 60.1px;
  overflow: hidden;
}
ol.NestedNumbering>li>ol>li {
  position: relative;
}
ol.NestedNumbering>li>ol>li>ol {
  list-style: none;
  counter-reset: item3;
  padding-left: 90.1px;
  margin-left: -50.1px;
}
ol.NestedNumbering>li>ol>li>ol>li:before {
  counter-increment: item3;
  content: counter(item1, decimal)"." counter(item2, decimal)"." counter(item3, decimal)".";
  text-align: right;
  position: absolute;
  left: -94.1px;
  margin-right: 4px;
  width: 90.1px;
  overflow: hidden;
}
ol.NestedNumbering>li>ol>li>ol>li {
  position: relative;
}
ol.NestedNumbering>li>ol>li>ol>li>ol {
  counter-reset: item4;
  list-style: none;
  padding-left: 120.2px;
  margin-left: -80.2px;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li {
  position: relative;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li:before {
  counter-increment: item4;
  content: counter(item1, decimal)"." counter(item2, decimal)"." counter(item3, decimal)"." counter(item4, decimal)".";
  text-align: right;
  position: absolute;
  left: -124.2px;
  margin-right: 4px;
  width: 120.2px;
  overflow: hidden;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol {
  counter-reset: item5;
  list-style: none;
  padding-left: 150.2px;
  margin-left: -110.2px;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol>li {
  position: relative;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol>li:before {
  counter-increment: item5;
  content: counter(item1, decimal)"." counter(item2, decimal)"." counter(item3, decimal)"." counter(item4, decimal)"." counter(item5, decimal)".";
  text-align: right;
  position: absolute;
  left: -154.2px;
  margin-right: 4px;
  width: 150.2px;
  overflow: hidden;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol>li>ol {
  counter-reset: item6;
  list-style: none;
  padding-left: 180.3px;
  margin-left: -140.3px;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol>li>ol>li {
  position: relative;
}
ol.NestedNumbering>li>ol>li>ol>li>ol>li>ol>li>ol>li:before {
  counter-increment: item6;
  content: counter(item1, decimal)"." counter(item2, decimal)"." counter(item3, decimal)"." counter(item4, decimal)"." counter(item5, decimal)"." counter(item6, decimal)".";
  text-align: right;
  position: absolute;
  left: -184.3px;
  margin-right: 4px;
  width: 180.3px;
  overflow: hidden;
}
ol.RoundSquare {
  list-style: disc;
}
ol.RoundSquare>li>ol {
  list-style: square;
}
ol.RoundSquare>li>ol>li>ol {
  list-style: circle;
}
ol.RoundSquare>li>ol>li>ol>li>ol {
  list-style: disc;
}
ol.RoundSquare>li>ol>li>ol>li>ol>li>ol {
  list-style: square;
}
ol.RoundSquare>li>ol>li>ol>li>ol>li>ol>li>ol {
  list-style: circle;
}