@charset "UTF-8";
/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* X-Small devices (portrait phones, less than 576px and up) */
#wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "container" "footer";
  /* header row */
  /* footer row */
}
#wrapper #header {
  grid-area: header;
  position: sticky;
  top: 0;
  /* !! use: background-color: #XYZ !!; */
}
#wrapper #container {
  grid-area: container;
  /* left column */
  /* main column */
  /* right column */
  display: grid;
  grid-template-areas: "main";
}
#wrapper #container #left {
  grid-area: left;
  display: none;
}
#wrapper #container #main {
  grid-area: main;
  padding-top: 24px;
}
#wrapper #container #right {
  padding-top: 24px;
  display: none;
}
#wrapper #footer {
  grid-area: footer;
}
#wrapper .inside {
  padding: 24px 24px 24px 24px;
}
#wrapper .layout-from-size--s, #wrapper .layout-from-size--m, #wrapper .layout-from-size--l, #wrapper .layout-from-size--xl, #wrapper .layout-from-size--xxl {
  display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #wrapper .layout-from-size--s {
    display: block;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  body {
    font-size: 1.2em;
  }
  #wrapper .layout-from-size--m {
    display: block;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #wrapper #container #left {
    padding-top: 24px;
    display: block;
  }
  #wrapper .layout-from-size--l {
    display: block;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  body {
    font-size: 1.4em;
    line-height: 1.3em;
  }
  #wrapper .layout-from-size--xl {
    display: block;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #wrapper #container {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  #wrapper #header .inside,
  #wrapper #footer .inside {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  #wrapper .layout-from-size--xxl {
    display: block;
  }
}
/* XXX-Large devices (larger desktops, 1600px and up) */
.layout-grid--1-1-1-1 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.layout-grid--1-3 {
  display: grid;
  grid-template-columns: 25% 75%;
}
.layout-grid--1-1, .layout-grid--2-2 {
  display: grid;
  grid-template-columns: 50% 50%;
}
.layout-grid--3-1 {
  display: grid;
  grid-template-columns: 75% 25%;
}
.layout-grid--1-1-1 {
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.layout-grid--2-1 {
  display: grid;
  grid-template-columns: 66% 33%;
}
.layout-grid--1-2 {
  display: grid;
  grid-template-columns: 33% 66%;
}
.layout-grid-l-display--inline {
  display: grid;
}
.layout-grid-l-display--inline div:not(:first-child) {
  margin-top: 6px;
}

/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .layout-grid-l-display--inline {
    grid-template-columns: repeat(2, 1fr);
  }
  .layout-grid-l-display--inline div {
    margin-top: 6px;
    margin-right: 6px;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
/* XX-Large devices (larger desktops, 1400px and up) */
#wrapper {
  /* header row */
}
#wrapper #header #header-right {
  text-align: right;
}
#wrapper #header #menu--close {
  display: none;
}
#wrapper #container {
  /* left column */
}
#wrapper #container #left {
  position: fixed;
  width: 100vw;
  /* main column */
}
#wrapper #container #left #menu ul li {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#wrapper #container #left #menu ul li:first-child {
  padding-top: 0em;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #wrapper #container {
    position: relative;
  }
  #wrapper #container #left {
    position: absolute;
    display: none;
    width: auto;
    right: 0px;
  }
}
/* Large devices (desktops, 992px and up) */
body {
  font-family: sans-serif;
}

#wrapper {
  /* header row */
}
#wrapper #header {
  line-height: 1.5em;
}
#wrapper #container #main h1 {
  margin-top: 1.25em;
  font-size: 1.25em;
  margin-bottom: 0.95em;
}
#wrapper #container #main h2 {
  margin-top: 1.2em;
  font-size: 1.2em;
  margin-bottom: 0.9em;
}
#wrapper #container #main h3 {
  margin-top: 1.15em;
  font-size: 1.15em;
  margin-bottom: 0.85em;
}
#wrapper #container #main h4 {
  margin-top: 1.1em;
  font-size: 1.1em;
  margin-bottom: 0.8em;
}
#wrapper #container #main h5 {
  margin-top: 1.05em;
  font-size: 1.05em;
  margin-bottom: 0.75em;
}
#wrapper #container #main h6 {
  margin-top: 1em;
  font-size: 1em;
  margin-bottom: 0.7em;
}
#wrapper #container #main h1 {
  margin-top: 0em;
}
#wrapper #container #main p {
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: justify;
  text-align-last: none;
  hyphens: auto;
}
#wrapper #container #main ul li {
  margin-left: 8px;
  padding-left: 9px;
  list-style: "·";
}
#wrapper #container #main ul li:not(:first-child) {
  margin-top: 6px;
}
#wrapper #container #main ul li:not(:last-child) {
  margin-bottom: 6px;
}
#wrapper #container #main table {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
}
#wrapper #container #main table tr td,
#wrapper #container #main table tr th {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  padding: 12px;
}
#wrapper #container #main table tr td:first-child,
#wrapper #container #main table tr th:first-child {
  padding: 12px 12px 12px 0px;
}
#wrapper #container #main table tr td:last-child,
#wrapper #container #main table tr th:last-child {
  border-right: none;
}
#wrapper #container #main table tr:last-child td {
  border-bottom: none;
}
#header {
  background-color: #376F99;
  color:#efefef;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
  z-index:2;
}

body {
  color:#333;
  background-color: #cfdfe6;
}

#header #header-right #menu-header{
  display: none;
}	

#container #left {
  background-color:#376F99;
  color: #fff;
  border-top: #cfdfe6 solid 1px;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  z-index:3;
}

#container #left #menu ul li:not(:last-child) {
  border-bottom: 1px solid #cfdfe6;
}

#header #header-right #menu-header .active,
#container #left #menu .active {
  color: #004965;
}

#container #left #menu a{
	display: block;
}

#header #header-right #menu-header a:hover,
#container #left #menu a:hover {
  color: #60a5bf;
}

#main a {
	color:#005676;
}

#wrapper #container #main p{
	text-align: left;
}

#main table td, #main table th {
  border-bottom-color: #333;
  border-right-color: #333;
}

#footer {
  background-color: #5e7c87;
  color: #efefef;
  border-top: 1px solid #376F99;
  font-size: 0.75em;
  line-height: 1.75em;
}

#footer h6{
  font-size: 1.2em;
  line-height: 1em;
  padding-bottom:12px;
}

#footer a {
	color: #ffa966;
}

/*
.invisible{
	position: absolute;
	top: -1600px;
}
*/
.invisible {
    /* not for accessibility */
    display: none !important;
}

@media (min-width: 768px) {
  #container #left,
  #header #header-right #menu-button{
  	display: none !important;
  }	
	
  #header #header-right #menu-header{
  	display: block;
  }
  #header #header-right #menu-header li{
    display: inline;
    font-size: 0.75em;
    padding-left:12px;
  }
  #wrapper #container #main .mod_article{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
  }
  #wrapper #container #main .mod_article .ce_text{
  	padding-right:24px;
  }
  #wrapper #container #main .mod_article h1{
    grid-column: 1 / span 2;	
  }
}
