:root {
	--blue: #003ECF;
	--indigo: #6B87E9;
	--purple: #5530BE;
	--pink: #e83e8c;
	--red: #FB6A6A;
	--orange: #EBBB41;
	--yellow: #FFDF36;
	--green: #78C550;
	--teal: #1AC6AB;
	--cyan: #00A3FF;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--red-contra: #de2626;
	--primary: #3247B8;
    --body: #0F1E33;
    --stroke-box: #D1D9EB;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto-Regular'), url(../fonts/Roboto/Roboto-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto Light';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto-Light'), url(../fonts/Roboto/Roboto-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto Medium';
    font-style: normal;
    font-weight: 500;
    src: local('Roboto-Medium'), url(../fonts/Roboto/Roboto-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto-Bold'), url(../fonts/Roboto/Roboto-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto Black';
    font-style: normal;
    font-weight: 900;
    src: local('Roboto-Black'), url(../fonts/Roboto/Roboto-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: local('RobotoCondensed-Regular'), url(../fonts/Roboto/RobotoCondensed-Regular.ttf) format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Roboto"; */
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: var(--body);
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: #BDBDBD;
    border-radius: 10px;
} */
/* * {
	scrollbar-color: #BDBDBD #FFF;
	scrollbar-width: thin;
}

*::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	border-radius: 999px;
}

*::-webkit-scrollbar-track {
	background: #FFF;
	border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
	background-color: #BDBDBD;
	border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #BDBDBD;
} */

/* body{
    font-family: "Roboto";
} */

.container{
    padding: 0 15px;
}

.row{
    margin: 0 -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto{
    padding-left: 15px;
    padding-right: 15px;
}

b, strong{
    font-family: "Roboto Bold";
    font-weight: 700;
}

.text-medium{
    font-family: "Roboto Medium" !important;
}

.text-bold{
    font-family: "Roboto Bold" !important;
    font-weight: 700;
}

.text-lightblue{
    color: #2383F3 !important;
}

.text-primary{
    color: var(--primary) !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-center{
    text-align: center !important;
}

.page-wrapper {
    display: flex;
    position: relative;
    width: 100%;
}

#show-sidebar {
    position: fixed;
    left: 0;
    top: 120px;
    border-radius: 0 4px 4px 0px;
    /* width: 35px; */
    transition-delay: 0.3s;
    /* background-color: rgba(50,71,184,0.9); */
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    display: none;
}

#show-sidebar:focus{
    box-shadow: none;
}

.icon.icon-angle-double::before {
    content: "";
    width: 24px;
    height: 24px;
    cursor: pointer;
    /* mask: url(../images/icon-search.svg) center / 24px 24px no-repeat;
    -webkit-mask: url(../images/icon-search.svg) center / 24px 24px no-repeat; */
    mask: url("../images/icon-double-arrow-left.svg") center / 24px 24px no-repeat;
    -webkit-mask: url("../images/icon-double-arrow-left.svg") center / 24px 24px no-repeat;
    transform: rotate(180deg);
    background-color: var(--white);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.page-wrapper #sidebar.show .icon.icon-angle-double::before {
    transform: none;
}

.page-wrapper #sidebar{
    flex: 0 0 25%;
    max-width: 25%;
    margin-left: -25%;
    /* padding: 0 15px; */
    /* height: 100vh; */
    overflow: auto;
    border-right: 1px solid var(--stroke-box);
    transition: all 0.3s ease-in-out;
}

.page-wrapper #sidebar.show{
    margin-left: 0;
}

.page-wrapper .page-content{
    /* flex: 0 0 75%;
    max-width: 75%; */
    padding: 15px;
    /* height: 100vh; */
    overflow: auto;
    transition: all 0.3s ease-in-out;
    flex: 1;
}

.header-help {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--stroke-box);
    padding:10px 15px;
}
/* .header-help .m-home{
    align-self: center;
} */
.header-help h2 {
    margin: 0 50px 0 0 !important;
    color: var(--primary);
    /* padding-left: 10px; */
    font-size: 20px;
    line-height: 30px;
    text-indent: 0;
    /* align-self: center; */
    display: inline-block;
    cursor: pointer;
}

.header-help .title-page {
    flex-grow: 1;
}

.icon.icon-home::before {
    content: "";
    width: 24px;
    height: 24px;
    cursor: pointer;
    /* mask: url(../images/icon-search.svg) center / 24px 24px no-repeat;
    -webkit-mask: url(../images/icon-search.svg) center / 24px 24px no-repeat; */
    mask: url("../images/icon-home.svg") center / 18px 18px no-repeat;
    -webkit-mask: url("../images/icon-home.svg") center / 18px 18px no-repeat;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 8px;
}

.icon.icon-download-file::before {
    content: "";
    width: 24px;
    height: 24px;
    cursor: pointer;
    mask: url("../images/icon-download-file.svg") center / 24px 24px no-repeat;
    -webkit-mask: url("../images/icon-download-file.svg") center / 24px 24px no-repeat;
    background-color: var(--white);
    display: inline-block;
    position: absolute;
    left: 12px;
    top: 3px;
}

.btn.btn-icon {
    padding: 4px 12px 4px 40px;
    position: relative;
    white-space: nowrap;
    height: 34px;
}

.page-wrapper #sidebar .sidebar-header{
    padding: 15px;
    /* position: sticky;
    top: 0;
    background-color: var(--white); */
}

.page-wrapper #sidebar .sidebar-body{
    padding: 10px 15px 15px;
    max-height: calc(100% - 70px);
    overflow: auto;
    border-top: 1px solid var(--stroke-box);
}

.search-group {
    position: relative;
}

.form-control {
    display: block;
    width: 100%;
    /* height: calc(2.375rem + 2px); */
    height: auto;
    padding: 7px 50px 7px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--body);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--stroke-box);
    border-radius: 4px;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--stroke-box);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(201, 215, 245, 0.25);
}

.search-group .icon.icon-search::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    cursor: pointer;
    /* mask: url(../images/icon-search.svg) center / 24px 24px no-repeat;
    -webkit-mask: url(../images/icon-search.svg) center / 24px 24px no-repeat; */
    mask: url("../images/icon-search.svg") center / 24px 24px no-repeat;
    -webkit-mask: url("../images/icon-search.svg") center / 24px 24px no-repeat;
    background-color: #7A8BC6;
}

.MsoToc2{
    padding-left: 10px
}
.MsoToc3{
    padding-left: 20px
}
.MsoToc4{
    padding-left: 30px
}

.MsoToc1 a, .MsoToc2 a, .MsoToc3 a, .MsoToc4 a {
    color: #000 !important;
    text-decoration: none !important;
}

.MsoToc1 a.active, .MsoToc2 a.active, .MsoToc3 a.active, .MsoToc4 a.active,
.MsoToc1 a:hover, .MsoToc2 a:hover, .MsoToc3 a:hover, .MsoToc4 a:hover {
    /* text-decoration: underline !important; */
    color: var(--primary) !important;
    font-family: "Roboto Bold";
}

.btn.btn-primary, a.btn.btn-primary, .btn.btn-primary:hover, a.btn.btn-primary:hover, .btn.btn-primary:focus, a.btn.btn-primary:focus, .btn.btn-primary:active, a.btn.btn-primary:active {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

a.btn{
    text-decoration: none !important;
}

.btn {
    font-family: 'Roboto Medium';
    font-size: 16px;
    line-height: 24px;
}

table {
    width: 100%;
    max-width: 700px;
    border: 1px solid #000;
    margin: 0 auto 10px;
}

.WordSection3 h1, .WordSection3 h2, .WordSection3 h3, .WordSection3 h4, .WordSection3 h5, .WordSection3 h6 {
    color: var(--primary);
    margin-bottom: 10px !important;
}

p img {
    margin: 10px 0;
    max-width: 100%;
    height: auto;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 30px;
    text-decoration: none !important;
    z-index: 9999;
}

.back-to-top i {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background-color: #444;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* .wrapper-content {
    display: flex;
}

.wrapper-content #sidebar{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
    height: 100vh;
    overflow: auto;
}

.wrapper-content #content{
    flex: 0 0 75%;
    max-width: 75%;
    padding: 15px;
    height: 100vh;
    overflow: auto;
}

.MsoToc2{
    padding-left: 10px
}
.MsoToc3{
    padding-left: 20px
}
.MsoToc4{
    padding-left: 30px
} */

/* #show-sidebar {
    position: fixed;
    left: 0;
    top: 38px;
    border-radius: 0 4px 4px 0px;
    width: 35px;
    transition-delay: 0.3s;
} */

/* .page-wrapper{
    display: flex;
}

.page-wrapper .page-content, #show-sidebar, #close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar-wrapper {
    width: 25%;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -25%;
    z-index: 999;
    padding: 15px;
    overflow: auto;
} */

/* .page-wrapper.toggled .sidebar-wrapper {
    left: 0px;
} */

/* .org-theme .sidebar-wrapper, #show-sidebar {
    background: linear-gradient(-20deg, rgba(9,46,168,1) 0%, rgba(15,37,110,1) 100%);
    background-color: #fff;
} */

/* #close-sidebar, #show-sidebar {
    display: block;
    width: 30px;
    height: 30px;
    background-color: green;
}

.page-wrapper.toggled #show-sidebar {
    left: -40px;
} */

/* .page-wrapper .page-content {
    display: inline-block;
    width: 80%;
    height: 100%;
    padding: 15px;
    overflow: auto;
}

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
      padding-left: calc(25% + 15px);
    }
  }

@media screen and (max-width:992px) {
  .page-wrapper.toggled .sidebar-wrapper
  {
    left: -25% !important;
  }
  .page-wrapper.toggled .page-content
  {
    padding-left:15px; 
  }

  .page-wrapper.toggled .sidebar-wrapper.relative-sidenav
  {
    left: 0 !important;
  }
}

@media screen and (max-width:768px)
{
  .page-wrapper.toggled .sidebar-wrapper.relative-sidenav
  {
    display: none;
  }
} */
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0cm;
margin-right:0cm;
margin-bottom:6.0pt;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
.WordSection3 h1
{mso-style-link:"Heading 1 Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:21.6pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:-21.6pt;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Roboto Medium";}
.WordSection3 h2
{mso-style-link:"Heading 2 Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:28.8pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:-28.8pt;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Roboto Medium";}
.WordSection3 h3
{mso-style-link:"Heading 3 Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:-36.0pt;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Roboto Medium";}
.WordSection3 h4
{mso-style-link:"Heading 4 Char";
margin-top:2.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:43.2pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:-43.2pt;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Roboto Medium";
font-weight:normal;}
.WordSection3 h5
{mso-style-link:"Heading 5 Char";
margin-top:2.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Calibri Light",sans-serif;
color:#2E74B5;
font-weight:normal;}
.WordSection3 h6
{mso-style-link:"Heading 6 Char";
margin-top:2.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Calibri Light",sans-serif;
color:#1F4D78;
font-weight:normal;}
p.MsoToc1, li.MsoToc1, div.MsoToc1
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoToc2, li.MsoToc2, div.MsoToc2
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoToc3, li.MsoToc3, div.MsoToc3
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoToc4, li.MsoToc4, div.MsoToc4
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:0cm;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoToc5, li.MsoToc5, div.MsoToc5
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:44.0pt;
line-height:107%;
font-size:11.0pt;
font-family:"Roboto";}
p.MsoToc6, li.MsoToc6, div.MsoToc6
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:55.0pt;
line-height:107%;
font-size:11.0pt;
font-family:"Roboto";}
p.MsoToc7, li.MsoToc7, div.MsoToc7
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:66.0pt;
line-height:107%;
font-size:11.0pt;
font-family:"Roboto";}
p.MsoToc8, li.MsoToc8, div.MsoToc8
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:77.0pt;
line-height:107%;
font-size:11.0pt;
font-family:"Roboto";}
p.MsoToc9, li.MsoToc9, div.MsoToc9
{margin-top:0cm;
margin-right:0cm;
margin-bottom:5.0pt;
margin-left:88.0pt;
line-height:107%;
font-size:11.0pt;
font-family:"Roboto";}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{mso-style-link:"Header Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:14.4pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:14.4pt;
font-size:14.0pt;
font-family:"Roboto";}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{mso-style-link:"Footer Char";
margin:0cm;
text-align:justify;
text-justify:inter-ideograph;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoTitle, li.MsoTitle, div.MsoTitle
{mso-style-link:"Title Char";
margin:0cm;
text-align:center;
font-size:13.0pt;
font-family:"Roboto";
letter-spacing:-.5pt;
font-weight:bold;}
p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
{mso-style-link:"Title Char";
margin:0cm;
text-align:center;
font-size:13.0pt;
font-family:"Roboto";
letter-spacing:-.5pt;
font-weight:bold;}
p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
{mso-style-link:"Title Char";
margin:0cm;
text-align:center;
font-size:13.0pt;
font-family:"Roboto";
letter-spacing:-.5pt;
font-weight:bold;}
p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
{mso-style-link:"Title Char";
margin:0cm;
text-align:center;
font-size:13.0pt;
font-family:"Roboto";
letter-spacing:-.5pt;
font-weight:bold;}
a:link, span.MsoHyperlink
{color:#0563C1;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:#954F72;
text-decoration:underline;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:0cm;
margin-right:0cm;
margin-bottom:6.0pt;
margin-left:36.0pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0cm;
margin-right:0cm;
margin-bottom:6.0pt;
margin-left:36.0pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;
font-size:13.0pt;
font-family:"Roboto";}
p.MsoTocHeading, li.MsoTocHeading, div.MsoTocHeading
{margin-top:12.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
line-height:107%;
page-break-after:avoid;
font-size:16.0pt;
font-family:"Roboto";
color:#2E74B5;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";
font-family:"Roboto";
font-weight:bold;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";
font-family:"Roboto";
font-weight:bold;}
span.Heading3Char
{mso-style-name:"Heading 3 Char";
mso-style-link:"Heading 3";
font-family:"Roboto";
font-weight:bold;}
span.Heading4Char
{mso-style-name:"Heading 4 Char";
mso-style-link:"Heading 4";
font-family:"Roboto";}
span.TitleChar
{mso-style-name:"Title Char";
mso-style-link:Title;
font-family:"Roboto";
letter-spacing:-.5pt;
font-weight:bold;}
span.HeaderChar
{mso-style-name:"Header Char";
mso-style-link:Header;
font-family:"Arial",sans-serif;}
p.HueCITTITLE, li.HueCITTITLE, div.HueCITTITLE
{mso-style-name:HueCIT_TITLE;
margin-top:6.0pt;
margin-right:0cm;
margin-bottom:6.0pt;
margin-left:0cm;
text-align:center;
line-height:115%;
font-size:20.0pt;
font-family:"Roboto";
font-weight:bold;}
span.FooterChar
{mso-style-name:"Footer Char";
mso-style-link:Footer;}
p.Bullet2, li.Bullet2, div.Bullet2
{mso-style-name:"Bullet 2";
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:1.0cm;
text-align:justify;
text-justify:inter-ideograph;
text-indent:-14.15pt;
line-height:16.0pt;
font-size:13.0pt;
font-family:"Roboto";
color:black;
layout-grid-mode:line;}
span.Heading6Char
{mso-style-name:"Heading 6 Char";
mso-style-link:"Heading 6";
font-family:"Calibri Light",sans-serif;
color:#1F4D78;}
span.Heading5Char
{mso-style-name:"Heading 5 Char";
mso-style-link:"Heading 5";
font-family:"Calibri Light",sans-serif;
color:#2E74B5;}
span.UnresolvedMention1
{mso-style-name:"Unresolved Mention1";
color:#605E5C;
background:#E1DFDD;}
span.red-text
{mso-style-name:red-text;}
span.text-normal
{mso-style-name:text-normal;}
span.msoIns
{mso-style-name:"";
text-decoration:underline;
color:teal;}
span.msoDel
{mso-style-name:"";
text-decoration:line-through;
color:red;}
.MsoChpDefault
{font-size:13.0pt;}
.MsoPapDefault
{margin-bottom:6.0pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:150%;}
/* Page Definitions */
@page WordSection1
{size:612.0pt 792.0pt;
margin:3.0cm 2.0cm 3.0cm 3.0cm;
border:solid windowtext 3.0pt;
padding:1.0pt 4.0pt 1.0pt 4.0pt;}
div.WordSection1
{page:WordSection1;}
@page WordSection2
{size:612.0pt 792.0pt;
margin:3.0cm 2.0cm 3.0cm 3.0cm;}
div.WordSection2
{page:WordSection2;}
@page WordSection3
{size:612.0pt 792.0pt;
margin:36.0pt 36.0pt 36.0pt 72.0pt;}
div.WordSection3
{page:WordSection3;}
/* List Definitions */
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}

table > tbody > tr > td, table > tbody > tr > th, table > tfoot > tr > td, table > tfoot > tr > th, table > thead > tr > td, table > thead > tr > th {
    padding: 8px;
    line-height: 24px;
    vertical-align: top;
    border-top: 1px solid #000;
}

table > tbody > tr > td p, table > tbody > tr > th p, table > tfoot > tr > td p, table > tfoot > tr > th p, table > thead > tr > td p, table > thead > tr > th p {
    margin-bottom: 0;
}

@media screen and (max-width:1140px){
    
}

@media screen and (max-width:1024px){
    .header-help h2 {
        margin: 0 140px 0 0 !important;
    }

    .page-wrapper #sidebar {
        position: fixed;
        left: -50%;
        top: 0;
        height: 100vh !important;
        background-color: var(--white);
        flex: 0 0 50%;
        max-width: 50%;
        transition: all 0.35s ease-in-out;
        z-index: 9999;
        margin-left: 0;
    }

    .page-wrapper #sidebar.show-mobile {
        left: 0;
    }

    #show-sidebar {
        display: block;
    }

    .page-wrapper #sidebar.show-mobile .icon.icon-angle-double::before {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 992px){

}

@media screen and (max-width: 768px){
    .header-help {
        justify-content: space-between;
        align-items: center;
    }

    .icon.icon-home::before {
        top: 0;
    }

    .header-help h2 {
        display: none;
    }
}

@media screen and (max-width: 600px){
    .page-wrapper #sidebar {
        left: -100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}