@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #000 url("../images/background.jpg");
  font-family: "Roboto", sans-serif;
}
body.disabled-scroll {
  overflow: hidden;
}
body .icon {
  max-width: 30px;
  font-size: 28px;
}
body .empty {
  text-align: center;
  padding: 0.5em 0;
  border-radius: 3px;
  background: #ffecb5;
  color: #664d03;
}
body .content *:not(img):not(a), body .text *:not(img):not(a) {
  all: revert;
}

@media screen and (max-width: 480px) {
  html,
body {
    min-width: 320px;
  }
}
#header {
  text-align: center;
  margin: 15px 15px 10px;
}
#header a {
  text-decoration: none;
  color: currentColor;
}
#header .content {
  font-family: "UTMAmbrosia", sans-serif;
  font-size: 5rem;
  text-shadow: -1px -1px 1px #46330a;
  color: #4b3b18;
  margin-bottom: 0.8rem;
}
#header .sub-header {
  font: italic 500 1.5rem "Roboto", sans-serif;
  color: #4b3b18;
}
#header .icon {
  position: fixed;
  display: none;
  right: 6px;
  top: 6px;
}
#header .icon.menu {
  color: #fff;
  box-shadow: 1px 1px 5px 1px #666;
  border: 1px solid #666;
  border-radius: 3px;
  background-color: #d8b675;
}
#header .languages {
  display: none;
  text-align: center;
  margin: 1rem 0 0;
}
#header .languages form {
  display: inline-block;
  margin: 0 1px;
}
#header .languages form input[type=image] {
  max-width: 2em;
}

@media screen and (max-width: 736px) {
  #header .content {
    font-size: 4rem;
  }
  #header .sub-header {
    font-size: 1.2rem;
  }
  #header .icon {
    display: inline-block;
  }
  #header .languages {
    display: block;
  }
}
#container {
  min-height: 100vh;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#container #content {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  width: 1000px;
  min-height: 85%;
  background-color: #e3c281;
  box-shadow: 6px 6px 60px 10px #e3c281;
  border-radius: 6px;
}
#container #content #main-content {
  padding: 20px;
  margin-top: 30px;
  display: flex;
  flex: 1 auto;
  min-height: 60%;
}

@media screen and (max-width: 736px) {
  #container {
    padding: 0;
  }
  #container #content {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
    border-radius: unset;
  }
  #container #content #main-content {
    padding: 10px;
    margin-top: 40px;
  }
}
#footer {
  text-align: center;
  font-size: 0.7em;
  color: #800000;
  padding: 0 10px;
}
#footer a {
  text-decoration: none;
  color: currentColor;
}

#sidebar {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
}
#sidebar.close {
  -webkit-animation: slidein 1s forwards !important;
          animation: slidein 1s forwards !important;
}
#sidebar .brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 2.5rem;
}
#sidebar .brand h2 {
  display: none;
}
#sidebar .brand h2 > span {
  font-family: "UTMAmbrosia", sans-serif;
  font-size: 2rem;
  text-shadow: 1px 1px 2px #999;
  color: #4b3b18;
}
#sidebar .brand h2 > span a {
  position: relative;
  top: -2px;
}
#sidebar .brand .icon {
  margin-right: 3px;
  color: #4b3b18;
}
#sidebar .brand .icon.close {
  display: none;
}
#sidebar nav {
  display: none;
}
#sidebar nav ul.parent {
  overflow: auto;
  max-height: calc(100vh - 10rem);
}
#sidebar.open {
  width: 100vw;
  height: 100vh;
  background-color: #d8b675;
  -webkit-animation: slideout 1s;
          animation: slideout 1s;
}
#sidebar.open .brand {
  border-bottom: 1px dotted #7f3f3f;
}
#sidebar.open .brand h2 {
  padding-left: 0.5rem;
  flex: 1 auto;
  display: initial;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#sidebar.open .brand h2 a {
  text-decoration: none;
  color: currentColor;
}
#sidebar.open .brand h2 a .icon {
  border: none;
  margin-right: 0.1rem;
}
#sidebar.open .brand .icon.close {
  display: inline-block;
}
#sidebar.open nav {
  display: block;
  margin-top: 1rem;
  padding: 0 0.5rem;
}
#sidebar.open nav .languages {
  text-align: center;
  background: url("../images/bg_entryfooter.gif") center bottom no-repeat;
  padding-bottom: 1.5em;
}
#sidebar.open nav .languages form {
  display: inline-block;
  margin: 0 1px;
}
#sidebar.open nav .languages form input[type=image] {
  max-width: 2em;
}
#sidebar.open nav ul.parent {
  padding: 1rem 0;
}
#sidebar.open nav ul.parent > li > a {
  font-weight: 500;
}
#sidebar.open nav ul.parent li {
  background: #d8b675 url("../images/bullet.gif") no-repeat 3px 11px;
  line-height: 2rem;
}
#sidebar.open nav ul.parent li.active > a, #sidebar.open nav ul.parent li:hover > a {
  text-decoration: underline;
  color: #930000;
}
#sidebar.open nav ul.parent li:last-child a {
  border: none;
}
#sidebar.open nav ul.parent li a {
  text-decoration: none;
  color: currentColor;
  margin-left: 15px;
  border-bottom: 1px dotted #7f3f3f;
  display: block;
}
#sidebar.open nav ul.parent li ul {
  margin-left: 1em;
}

@media screen and (max-width: 736px) {
  #sidebar {
    display: block;
  }
}
@-webkit-keyframes slideout {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slideout {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes slidein {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes slidein {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
#main-content .menu {
  width: 250px;
  min-width: 250px;
}
#main-content .menu .languages {
  text-align: center;
  padding: 0.2em 0 0.3em;
}
#main-content .menu .languages form {
  display: inline-block;
  margin: 0 1px;
}
#main-content .menu .languages form input[type=image] {
  max-width: 2em;
}
#main-content .menu ul.parent {
  background: #d8b675 url("../images/bg_leftform.jpg") repeat;
}
#main-content .menu ul.parent:before {
  background: #d8b675 url("../images/leftform_top.jpg") center no-repeat;
  display: block;
  content: "";
  height: 31px;
}
#main-content .menu ul.parent:after {
  background: #d8b675 url("../images/leftform_bottom.jpg") center no-repeat;
  display: block;
  content: "";
  height: 31px;
}
#main-content .menu ul.parent li {
  background: #d8b675 url("../images/bullet.gif") no-repeat 3px 11px;
  line-height: 2rem;
  padding: 0 10px 0 3px;
  position: relative;
}
#main-content .menu ul.parent li.active > a, #main-content .menu ul.parent li:hover > a {
  text-decoration: underline;
  color: #930000;
}
#main-content .menu ul.parent li:last-child a {
  border: none;
}
#main-content .menu ul.parent li:hover ul {
  visibility: visible;
}
#main-content .menu ul.parent li a {
  text-decoration: none;
  color: currentColor;
  margin-left: 15px;
  display: block;
  border-bottom: 1px dotted #7f3f3f;
  font-weight: 500;
}
#main-content .menu ul.parent li ul {
  position: absolute;
  z-index: 1;
  visibility: hidden;
  width: 100%;
  top: 0;
  left: 100%;
}
#main-content .menu ul.parent li ul li {
  border-left: 1px solid #AF9A6D;
  border-right: 1px solid #AF9A6D;
}
#main-content .menu ul.parent li ul li:first-child {
  border-top: 1px solid #AF9A6D;
  border-top-right-radius: 6px;
}
#main-content .menu ul.parent li ul li:last-child {
  border-bottom: 1px solid #AF9A6D;
  border-bottom-right-radius: 6px;
}
#main-content .menu .page-view {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 0.5em;
}
#main-content .menu .page-view > div {
  margin-top: 0.5em;
}

@media screen and (max-width: 736px) {
  #main-content .menu {
    display: none;
  }
  .body {
    padding: 0 0 2em 0 !important;
  }
}
#main-content .body {
  flex: 1 auto;
  padding: 0 0 2em 2em;
  line-height: 1.5rem;
}
#main-content .body.home-page {
  background: url("../images/bg_entryfooter.gif") center bottom no-repeat;
}
#main-content .body .title {
  text-transform: uppercase;
  color: #46320d;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  background: url("../images/bg_entryfooter.gif") center bottom no-repeat;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#main-content .body .text img {
  max-width: 100%;
}
#main-content .body .text p {
  margin-bottom: 15px;
}
#main-content .body .text em {
  font-style: italic;
}
#main-content .body .text strong {
  font-weight: 500;
}
#main-content .body .text a {
  text-decoration: none;
  color: #46320d;
}
#main-content .body .text a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  #main-content .body .title {
    font-size: 1.2rem;
  }
}
.posts a {
  text-decoration: none;
  color: #46320d;
}
.posts .heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2em;
}
.posts .heading:first-child {
  margin-top: 0;
}
.posts .post {
  padding: 1em 0 2em;
  background: url("../images/bg_entryfooter.gif") center bottom no-repeat;
}
.posts .post h2 {
  font-size: 1.2rem;
  border-bottom: 1px dotted #46320d;
  padding-bottom: 0.2em;
}
.posts .post .meta-data {
  margin-top: 0.5em;
  font-size: 0.8rem;
  line-height: 1rem;
  display: flex;
}
.posts .post .meta-data .category {
  flex: 1 auto;
  padding-left: 1.5em;
  background: url("../images/category.png") no-repeat;
}
.posts .post .meta-data .category a {
  text-decoration: underline;
}
.posts .post .meta-data .date {
  padding-left: 1.5em;
  background: url("../images/date.png") no-repeat;
}
.posts .post .info {
  margin-top: 1em;
}
.posts .post .info .description {
  text-align: justify;
}
.posts .post .info .read-more {
  text-align: right;
  margin-top: 1em;
  font-size: 0.8rem;
}
.posts .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid #95783b;
}
.posts .pagination .page, .posts .pagination .pagination_current, .posts .pagination a {
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin: 0 1px;
  border: 1px solid #493e29;
}
.posts .pagination a {
  text-decoration: none;
  background: #b69a67;
}
.posts .pagination .pages {
  font-weight: 500;
}
.posts .pagination .pagination_previous, .posts .pagination .pagination_next {
  padding: 1.5px 0;
}
.posts .pagination .pagination_previous span, .posts .pagination .pagination_next span {
  vertical-align: middle;
  max-width: 24px;
}
.posts .pagination .pagination_current {
  font-weight: 500;
  background: #37332e;
}

.detail a {
  text-decoration: none;
  color: #46320d;
}
.detail a:hover {
  text-decoration: underline;
}
.detail .post {
  padding-bottom: 2em;
  background: url("../images/bg_entryfooter.gif") center bottom no-repeat;
}
.detail .post h2 {
  font-size: 1.2rem;
  border-bottom: 1px dotted #46320d;
  padding-bottom: 0.2em;
}
.detail .post .meta-data {
  margin-top: 0.5em;
  font-size: 0.8rem;
  line-height: 1rem;
  display: flex;
}
.detail .post .meta-data .category {
  flex: 1 auto;
  padding-left: 1.5em;
  background: url("../images/category.png") no-repeat;
}
.detail .post .meta-data .category a {
  text-decoration: underline;
}
.detail .post .meta-data .date {
  padding-left: 1.5em;
  background: url("../images/date.png") no-repeat;
}
.detail .post .summary {
  margin-top: 1em;
  text-align: justify;
}
.detail .post .content {
  margin-top: 1em;
}
.detail .post .content p {
  margin-bottom: 1em;
}
.detail .more {
  border-top: 1px solid #95783b;
  margin-top: 1em;
}
.detail .more h3 {
  font-weight: 500;
  padding: 0.5em 0;
}
.detail .more ul {
  list-style: circle;
  padding-left: 1em;
}
.detail .more ul li {
  line-height: 1.2em;
}
.detail .more ul li a:hover {
  text-decoration: underline;
}
.detail .more ul li .date {
  margin-left: 0.3em;
}

@font-face {
  font-family: "UTMAmbrosia";
  src: url("../font/UTMAmbrosia.woff2") format("woff2"), url("../font/UTMAmbrosia.ttf") format("ttf"), url("../font/UTMAmbrosia.otf") format("otf");
}/*# sourceMappingURL=main.css.map */