@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 {
  grid-area: 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 {
    display: grid;
    grid-template-columns: 250px minmax(742px, auto);
    grid-template-areas: "left main";
  }
  #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 #container {
    display: grid;
    grid-template-columns: 250px minmax(950px, auto);
  }
  #wrapper .layout-from-size--xl {
    display: block;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #wrapper .layout-from-size--xxl {
    display: block;
  }
}
/* XXX-Large devices (larger desktops, 1600px and up) */
@media (min-width: 1600px) {
  #wrapper #container {
    grid-template-columns: 250px 1350px;
    margin-left: auto;
    margin-right: auto;
  }
  #header .inside,
  #footer .inside {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.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) */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #wrapper #header #header-right {
    display: none;
  }
  #wrapper #container #left {
    position: static;
    display: block !important;
    background-color: transparent;
    width: 100%;
  }
}
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;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 1.7em;
}
#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;
}

/*
for custom
*/
/* @import "custom/demo"; */
/*
for debug
*/
/*@import "custom/debug";*/

/*# sourceMappingURL=style-sheet.css.map */

body {
    background-color: #fff;
    color: #333;
}

#header{
  background-color: #fff;	
  border-bottom: solid 3px #004e94;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
  z-index:10000;
}

#header-right{
	font-size:2em;
}

#wrapper #container {
	padding-bottom: 5em;
}

#wrapper #container #main a{
	color: #004e94;
}

#container #left {
    background-color: #fff;
}

#container #left {
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
}


#container #left a {
	display: block;
	color: #004e94; 
}
#container #left a:hover{
	color: #000; 
}
#wrapper #container #left nav ul li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

#container #left nav ul li:hover {
    color: #c1d8f0;
}

#container #left nav .active {
    color: #000;
}

#container #main table td, #main table th {
    border-bottom-color: #efefef;
    border-right-color: #efefef;
}

#footer {
    background-color: #F0F0E9;
    border-top: 1px solid #004e94;
    font-size: 0.8em;
    line-height: 1.5em; 
}

#footer h6{
	font-weight: bold;
}
#footer ul li {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
}

#container #left .invisible {
    /* not for accessibility */
    display: none;
}

#logo{
  width: 50px;
  height: 33px;
}

@media (min-width: 768px) {
  #logo{
    width: 75px;
    height: 50px;
  }
}

@media (min-width: 992px) {
	
  #logo{
    width: 150px;
    height: 100px;
  }
	
  #wrapper #container #left {
      border-top: none;
      box-shadow: none;
    }
    
    wrapper #container #main h1{
    	margin-bottom: 1.5em;	
    }
    #wrapper #container #main h2{
    	margin-top: 3em;	
    }
    
    #wrapper #container #left #menu{
  	  position: fixed;
    }
    
    #container #left #menu .active,
	#container #left #menu ul li:hover{
	    padding-left: 6px;
	}
	
    #footer .inside div div:nth-child(n+3){
	  padding-top:12px;
    }
}
