html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 9px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  position: absolute;
}

.dc-container {
  margin: auto;
  max-width: var(--maxWidth);
  padding: 0 9px;
}

.dc-none {
  display: none;
}

.dc-block {
  display: block;
}

.dc-inline {
  display: inline;
}

.dc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.dc-flex-1, .dc-flex-2, .dc-flex-3, .dc-flex-4 {
  width: 100%;
}

.dc-float-right {
  float: right;
}

.dc-float-left {
  float: left;
}

.dc-clear {
  clear: both;
}

.dc-w-100 {
  width: 100%;
}

.dc-w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.dc-h-100 {
  height: 100%;
}

.dc-h-fit {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.dc-input {
  border-radius: 19px;
  padding: 5px;
  border: 1px solid #d8d8d8;
  background-color: transparent;
  color: var(--textLightMode);
}

.dc-input:focus {
  outline: none;
}

.dc-button {
  padding: 9px;
  border-radius: 19px;
  border: none;
  outline: none;
  font-family: inherit;
  background-color: #548070;
  color: white;
}

.dc-field {
  border: none;
  background-color: #e6e6e6;
  padding: 9px;
  border-bottom: 1px solid transparent;
  border-radius: 19px;
}

.dc-field:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #e0e0e0;
}

.dc-field::-webkit-input-placeholder {
  font-size: 10pt;
  font-family: 'Roboto';
}

.dc-field:-ms-input-placeholder {
  font-size: 10pt;
  font-family: 'Roboto';
}

.dc-field::-ms-input-placeholder {
  font-size: 10pt;
  font-family: 'Roboto';
}

.dc-field::placeholder {
  font-size: 10pt;
  font-family: 'Roboto';
}

.dc-select {
  border: none;
  border-radius: 9px;
}

.dc-transparent {
  background-color: transparent;
  border: none;
  outline: none;
}

.dc-switch {
  position: relative;
}

.dc-switch span {
  border-radius: 29px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border: 2px solid gray;
  width: 111%;
}

.dc-switch input[type=checkbox] {
  height: 20px;
  width: 30px;
  opacity: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.dc-switch > span::after {
  content: '\2600';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 34%;
  color: #ff9800;
  display: block;
  font-size: 11pt;
  left: 3px;
  -webkit-transition: left .5s;
  transition: left .5s;
}

.dc-switch > input[type=checkbox]:checked ~ span::after {
  left: 25px;
  content: '\263D';
  -webkit-transition: left .5s;
  transition: left .5s;
  font-weight: bold;
}

.dc-v-middle {
  vertical-align: middle;
}

.dc-bold {
  font-weight: bold;
}

.dc-italic {
  font-style: italic;
}

.dc-underline {
  text-decoration: underline;
}

.dc-text-center {
  text-align: center;
}

.ads-sample {
  background-color: #918181;
  border-radius: 5px;
  color: white;
  font-size: 1.25rem;
  padding: 2rem 1.5rem;
  margin: auto;
  text-align: center;
}

table.dc-table {
  width: 100%;
  border-collapse: collapse;
}

table.dc-table th {
  text-align: left;
  background-color: #918181;
  color: white;
  padding: 5px;
}

table.dc-table td {
  padding: 3px;
}

table.dc-table tr:nth-child(even):not(:first-child) {
  background-color: #e4e4e4;
  color: #7a7a7a;
}

blockquote {
  padding: 9px 9px 19px;
  border-radius: 19px;
  font-style: italic;
  font-family: serif;
  font-size: 17pt;
  border: 1px dashed gray;
  margin: 0;
}

blockquote::before {
  content: '\201D';
  color: #8e8e8e80;
  font: 600 2.5rem Arial, sans-serif;
  left: 1rem;
  top: 0;
}

code {
  color: #e9721e;
  background-color: #eaeaea;
  padding: 3px;
  border-radius: 3px;
}

pre {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
}

pre code {
  color: inherit;
  background-color: inherit;
  padding: 3px;
  border-radius: 3px;
  display: block;
  overflow-x: auto;
  padding: .5em;
  background: #002b36;
  color: #839496;
}

.dc-goto {
  position: fixed;
  bottom: 19px;
  right: 17px;
  background-color: #c3d9de;
  padding: 5px 7px 5px 7px;
  border-radius: 19px;
  z-index: 100;
}

.dc-goto svg {
  width: 17px;
  height: 17px;
}

.dc-404, .dc-no-article {
  text-align: center;
  padding: 59px 0;
  font-size: 17pt;
  border-radius: 9px;
}

.blog-feeds {
  display: none;
}

.dc-toc > h2 {
  margin: 0;
  display: inline;
}

.dc-toc h2:after {
  content: ' [show]';
  font-weight: normal;
  cursor: pointer;
  font-size: 10pt;
}

.dc-toc.show h2:after {
  content: ' [hide]';
}

.dc-toc ul, .dc-toc ul {
  counter-reset: item;
  list-style: decimal;
  margin-top: 0;
}

.dc-toc > ul, .dc-toc > ol {
  padding: 0;
  height: 0;
  overflow: hidden;
  counter-reset: item;
  list-style: decimal;
  margin-top: 0;
}

.dc-toc > ul li, .dc-toc > ol li {
  display: block;
}

.dc-toc > ul li a, .dc-toc > ol li a {
  font-weight: normal !important;
}

.dc-toc > ul li:before, .dc-toc > ol li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}

.dc-toc > ul.show, .dc-toc > ol.show {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

button, input[type=submit] {
  cursor: pointer;
}

h1, .h1 {
  font-size: 16pt;
  margin: 5px 0;
}

h2, .h2 {
  font-size: 15pt;
  margin: 5px 0;
}

h3, .h3 {
  font-size: 14pt;
  margin: 5px 0;
}

h4, .h4 {
  font-size: 13pt;
  margin: 5px 0;
}

h5, .h5 {
  font-size: 12pt;
  margin: 5px 0;
}

h6, .h6 {
  font-size: 11pt;
  margin: 5px 0;
}

svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  fill: var(--iconLightMode);
}

a {
  text-decoration: none;
  color: var(--linkLightMode);
  position: relative;
  margin: 0 !important;
}

a:hover {
  color: var(--linkHoverLightMode);
}

a::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: #9c9c9c;
  position: absolute;
  border-radius: 5px;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: width .2s ease-out;
  transition: width .2s ease-out;
}

a:hover::after {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: sans-serif;
  line-height: 1.7;
  margin: 0;
  color: var(--textLightMode);
  background-color: var(--bgLightMode);
}

aside {
  margin-bottom: 9px;
}

aside > * {
  position: -webkit-sticky;
  position: sticky;
  top: 35px;
}

.dc-navbar {
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-shadow: 1px 1px 7px var(--shadowLightMode);
          box-shadow: 1px 1px 7px var(--shadowLightMode);
  position: -webkit-sticky;
  position: sticky;
  background-color: var(--navLightMode);
  color: var(--textnavLightMode);
  top: 0;
  height: 45px;
  z-index: 3;
}

.dc-navbar .nav-wrapper {
  position: relative;
  background-color: inherit;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.dc-navbar .dc-btn-toggle {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.dc-navbar .blog-title {
  font-size: 16pt;
  font-weight: bold;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.dc-navbar .dc-menubar {
  background-color: inherit;
}

.dc-navbar .dc-menubar .treeview {
  position: relative;
}

.dc-navbar .dc-menubar .treeview ul {
  padding-left: 19px;
  list-style-position: inside;
  display: none;
}

.dc-navbar .dc-menubar .treeview.active ul {
  list-style-position: inside;
  display: block;
}

.dc-navbar .dc-menubar .treeview::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  position: absolute;
  top: 15px;
  right: 0;
  content: "";
  border-top: .3em solid gray;
  border-right: .25em solid transparent;
  border-left: .25em solid transparent;
}

.dc-navbar .dc-menubar > ul {
  list-style: none;
  margin: 0;
  padding: 11px;
  margin-top: 5px;
  display: block;
  width: 100%;
  left: -100%;
  -webkit-transition: left .5s;
  transition: left .5s;
  position: absolute;
  -webkit-box-shadow: 1px 1px 7px var(--shadowLightMode);
          box-shadow: 1px 1px 7px var(--shadowLightMode);
  background-color: inherit;
}

.dc-navbar .dc-menubar > ul li {
  padding: 5px 5px;
}

.dc-navbar.active .dc-menubar > ul {
  left: 0%;
}

.dc-navbar.onsearch .nav-wrapper {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.dc-navbar .dc-menubar, .dc-navbar .dc-onsearch {
  position: absolute;
  background-color: inherit;
  width: calc(100% - 18px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.dc-navbar .dc-onsearch {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.widget {
  padding: 5px;
}

.widget :not(.Blog) ul, .widget :not(.Blog) ol {
  list-style-position: inside;
  padding-left: 17px;
}

.widget .title {
  display: inline-block;
  border-bottom: 3px solid gray;
  padding-bottom: 9px;
}

.widget.FeaturedPost .widget-content {
  padding: 9px;
  border-radius: 9px;
  border: 4px dashed #878787;
  margin-bottom: 19px;
}

.widget.Blog {
  /* Page Navigation with Number */
}

.widget.Blog .blog-posts.hfeed .post-outer-container {
  margin-bottom: 33px;
  -webkit-box-shadow: 1px 1px 5px var(--shadowLightMode);
          box-shadow: 1px 1px 5px var(--shadowLightMode);
  padding: 9px 9px;
}

.widget.Blog .blog-post.container .separator {
  clear: both;
  text-align: unset !important;
}

.widget.Blog .blog-post.container .separator a {
  margin: 0 !important;
}

.widget.Blog .post-header, .widget.Blog .post-footer {
  font-size: 11pt;
  margin-bottom: 9px;
}

.widget.Blog .dc-label-link {
  padding: 2px 9px;
  background-color: #338b80c4;
  border-radius: 9px;
  color: #fff;
  margin: 0 1px;
  font-size: 9pt;
}

.widget.Blog .dc-breadcrumbs {
  line-height: 1.2em;
  width: auto;
  overflow: hidden;
  font-size: 80%;
  margin-top: 31px;
  margin-bottom: 13px;
  font-weight: 400;
}

.widget.Blog .dc-breadcrumbs svg {
  width: 16px;
  height: 16px;
  vertical-align: -4px;
}

.widget.Blog .dc-breadcrumbs svg path {
  fill: #666;
}

.widget.Blog .post-share-buttons {
  font-size: 15pt;
  font-weight: bold;
  margin-bottom: 19px;
}

.widget.Blog .blog-prev-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17pt 0 17pt;
}

.widget.Blog .related-post {
  padding: 0 11px;
  border-radius: 9px;
  position: relative;
  margin-top: 19px;
  border: 1px dashed;
}

.widget.Blog .related-post h4 {
  margin-bottom: 0;
  padding: 5px;
  background-color: #656360;
  display: inline;
  color: white;
  border-radius: 19px;
  position: relative;
  top: -10px;
}

.widget.Blog .related-post ul {
  padding: 0;
  list-style-position: inside;
  list-style-type: circle;
}

.widget.Blog .comments ul, .widget.Blog .comments ol {
  list-style: none;
  padding-left: 17px;
}

.widget.Blog .comments ul li, .widget.Blog .comments ol li {
  border-left: 1px dashed gray;
  position: relative;
  padding-bottom: 39px;
}

.widget.Blog .comments ul li .comment-reply, .widget.Blog .comments ol li .comment-reply {
  padding: 3px 15px 3px;
  background-color: #3e8587;
  color: white;
  border-radius: 0px 9px 9px 0px;
  font-size: 77%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.widget.Blog .comments .loadmore {
  display: none;
}

.widget.Blog .comments .thread-count, .widget.Blog .comments .comment-actions > .comment-reply {
  display: none;
}

.widget.Blog .comments .comment-block {
  position: relative;
  margin-top: 10px;
  margin-left: 60px;
  background-color: var(--boxLightMode);
  border: 1px dashed #717171;
  padding: 10px;
  border-radius: 10px;
}

.widget.Blog .comments .comment-block::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 60px;
  border-top: 1px dashed;
  left: -61px;
  top: 61px;
}

.widget.Blog .comments .avatar-image-container {
  margin: 0px 0px 0 5px;
  padding: 0px;
  position: absolute;
}

.widget.Blog .comments .avatar-image-container img {
  width: 51px;
  height: 51px;
  border-radius: 50%;
}

.widget.Blog .comments cite.user::after {
  content: '-';
  margin: 0 3px;
  font-weight: bold;
  font-size: 11pt;
}

.widget.Blog .blog-pager {
  padding: 19px 0;
  border-top: 1px dashed darkgrey;
}

.widget.Blog .blog-pager > * {
  margin: 0 1px 0 1px;
}

.widget.Blog .showpage a, .widget.Blog .showpageNum a, .widget.Blog .showpagePoint {
  position: relative;
  background: #9d9da0;
  display: inline-block;
  font-size: 13px;
  color: #fff;
  padding: 3px 11px;
  text-decoration: none;
  border-radius: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.widget.Blog .showpageOf {
  color: #ffffff;
  background-color: #817171;
  display: inline-block;
  font-size: 13px;
  padding: 3px 9px;
  border-radius: 17px;
}

.widget.Blog .showpageNum a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.02);
          box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.02);
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

.widget.Blog .showpage a:hover, .widget.Blog .showpageNum a:hover {
  background: #3e8587;
  color: #fff;
  position: relative;
}

.widget.Blog .showpagePoint, .widget.Blog .showpagePoint:hover {
  background: #34787a;
  color: #fff;
}

.widget.Profile {
  text-align: center;
}

.widget.Profile .profile-img {
  border-radius: 50%;
}

.widget.Label .list-label-widget-content li {
  padding: 3px 3px 3px;
  border-radius: 5px;
  margin-bottom: 3px;
  color: white;
  width: 48%;
  display: inline-block;
  -webkit-box-shadow: 1px 1px 5px var(--shadowLightMode);
          box-shadow: 1px 1px 5px var(--shadowLightMode);
}

.widget.Label .cloud-label-widget-content .label-name {
  border-bottom: 1px dashed gray;
  margin: 3px 3px 3px 0;
  padding: 5px;
  display: inline-block;
}

.widget.Label .cloud-label-widget-content .label-name::before {
  content: '#';
  font-weight: bold;
  margin-right: 3px;
  vertical-align: middle;
  font-size: 12pt;
}

.widget.Label .label-count {
  font-size: 7pt;
  vertical-align: super;
  margin-left: 5px;
}

.widget.Label .label-count::before {
  content: '(';
}

.widget.Label .label-count::after {
  content: ')';
}

.widget.BlogArchive .hierarchy:not(.posts) {
  padding-left: 0;
}

.widget.BlogArchive .hierarchy-title {
  display: inline;
}

.widget.BlogArchive .post-count {
  font-size: 7pt;
  vertical-align: super;
  margin-left: 5px;
}

.widget.BlogArchive .post-count::before {
  content: '(';
}

.widget.BlogArchive .post-count::after {
  content: ')';
}

.dc-footer-content {
  text-align: center;
  padding: 17px 0;
  line-height: 3;
  font-size: 11pt;
  border-top: 1px dashed gray;
}

.dc-footer {
  text-align: center;
  padding: 19px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #2c2c2c;
  color: white;
  font-size: 11pt;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dc-footer a {
  color: #06967a;
}

body.dark {
  color: var(--textDarkMode);
  background-color: var(--bgDarkMode);
}

body.dark svg {
  fill: var(--iconDarkMode);
}

body.dark a {
  color: var(--linkDarkMode);
}

body.dark a:hover {
  color: var(--linkHoverDarkMode);
}

body.dark .dc-input {
  color: var(--textDarkMode);
}

body.dark .dc-goto {
  background-color: #32565f;
}

body.dark .dc-field:focus {
  color: var(--textDarkMode);
}

body.dark .dc-navbar {
  background-color: var(--navDarkMode);
  color: var(--textnavDarkMode);
  -webkit-box-shadow: 1px 1px 7px var(--shadowDarkMode);
          box-shadow: 1px 1px 7px var(--shadowDarkMode);
}

body.dark .dc-navbar .dc-menubar > ul {
  -webkit-box-shadow: 1px 1px 7px var(--shadowDarkMode);
          box-shadow: 1px 1px 7px var(--shadowDarkMode);
}

body.dark .dc-navbar .dc-menubar .treeview ul {
  background-color: var(--navDarkMode);
}

body.dark .widget.Blog .blog-posts.hfeed .post-outer-container {
  -webkit-box-shadow: 1px 1px 5px var(--shadowDarkMode);
          box-shadow: 1px 1px 5px var(--shadowDarkMode);
}

body.dark .widget.Label .list-label-widget-content li {
  -webkit-box-shadow: 1px 1px 5px var(--shadowDarkMode);
          box-shadow: 1px 1px 5px var(--shadowDarkMode);
}

@media (min-width: 576px) {
  .dc-flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .dc-flex-2 {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .dc-flex-3 {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .dc-flex-4 {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
  .dc-navbar .dc-btn-toggle {
    display: none;
  }
  .dc-navbar h1 {
    display: inline;
    vertical-align: middle;
  }
  .dc-navbar .dc-menubar .treeview {
    position: relative;
  }
  .dc-navbar .dc-menubar .treeview ul {
    position: absolute;
    background-color: var(--navLightMode);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 1px 1px 5px grey;
            box-shadow: 1px 1px 5px grey;
    top: 39px;
    border-radius: 5px;
    padding: 0;
    padding-top: 9px;
  }
  .dc-navbar .dc-menubar .treeview ul li {
    white-space: nowrap;
    padding: 5px 13px;
    display: inline-block;
    margin: 0;
  }
  .dc-navbar .dc-menubar .treeview::after {
    position: static;
  }
  .dc-navbar .dc-menubar > ul {
    display: inline;
    vertical-align: middle;
    margin-right: 9px;
    float: right;
    clear: both;
    list-style: none;
    margin: 0 0 0 9px;
    padding: 0;
    margin-top: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: static;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    background-color: unset;
  }
  .dc-navbar .dc-menubar > ul li {
    display: inline;
    margin: 0 3px;
  }
  .widget.Blog .blog-posts.hfeed {
    border-left: 3px solid #dedbdb;
    padding: 0 15px;
  }
  .widget.Blog .blog-posts.hfeed .post-title.entry-title {
    margin-top: 0;
  }
  .widget.Blog .blog-posts.hfeed .post-outer-container {
    margin-bottom: 33px;
    padding: 9px;
    border-radius: 0 9px 9px 0;
    border-left: 5px solid #dedbdb;
    -webkit-box-shadow: 1px 1px 5px var(--shadowLightMode);
            box-shadow: 1px 1px 5px var(--shadowLightMode);
  }
  .widget.Blog .blog-posts.hfeed .post-outer-container::before {
    content: '';
    position: relative;
    width: 19px;
    left: -31px;
    height: 3px;
    display: block;
    background-color: #dedbdb;
  }
  body.dark .dc-navbar .dc-menubar > ul {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*# sourceMappingURL=style.css.map */