<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  font-size: 16px;
  --font-sans: Arial, sans-serif;
  --font-size-body: 12px;
  --color-dark-grey-text: #333333;
  --color-grey-bg: #7a7a7a;
  --color-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
}

html, body {
  width: 100%;
  height: 100%;

  scrollbar-base-color: var(--color-dark-grey-text);
  scrollbar-3dlight-color:#000000;
  scrollbar-arrow-color:#bfbfbf;
  scrollbar-darkshadow-color:#000000;
  scrollbar-face-color: var(--color-dark-grey-text);
  scrollbar-highlight-color:#000000;
  scrollbar-shadow-color:#000000;
  scrollbar-track-color:#000000;
}

body {
  color: var(--color-dark-grey-text);
  font-size: var(--font-size-body);
  font-family: var(--font-sans);

  background-color: var(--color-grey-bg);
  background-image: url('../icons/bg_body.gif');
  background-repeat: repeat-x;
}

p {
  margin-top: .25rem;
  margin-bottom: 1rem;
}

a {
  color: var(--color-dark-grey-text);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

h1, h3 {
  padding-bottom: 1rem;
  font-size: 1.375rem; /* 22px */
  font-weight: normal;
  line-height: 1.625rem; /* 26px */
}

h2 {
  margin-top: .25rem;
  font-size: 1rem;
}

.label {
  color:#BFBFBF;
  text-decoration: none;
  text-align: left;
}

/*--------content--------*/
.content-wrapper {
  min-height: 100%;

  display: grid;
  grid-template-columns: 216px 320px 200px;
  grid-template-rows: 16rem 1fr 3.75rem;
  grid-row-gap: 2rem;

  background-image: url('../icons/bg_wrapper.jpg');
  background-repeat: repeat-x;
  background-position: 0px 225px;
}

.main-content {
  min-height: 100%;
  grid-column: 2 / span 1;
  line-height: 1.5;
  background-image: url('../icons/bg_content.html');
  background-repeat: repeat-y;
}

/*--------header--------*/
.header {
  height: 14.0625rem; /* 225px */
  grid-column: span 3;
  grid-row: 1;
  padding-top: calc(2rem - 1px);

  display: flex;
  flex-wrap: wrap;

  border-right:1px solid #b0b0b0;
  background-color: #b0b0b0;
}

.header-cover {
  max-height: 12.125rem; /* 194px */
}

.header-logo {
  background-color:#b0b0b0;
}

/*--------header nav--------*/
.header-navigation {
  flex-grow: 1;
  height: 1.875rem;
  background-color: var(--color-dark-grey-text);
}

.header-navigation a {
  padding-top: .375rem; /* 6px */
  padding-bottom: .5rem; /* 8px */
  padding-left: .625rem; /* 10px */
  padding-right: .625rem; /* 10px */

  color:#696969;
  text-decoration: none;
  text-align: center;
  height: 1.875rem; /* 30px */
  line-height: 2.5; /* 30px / 12px */
}

.header-navigation a:hover, .header-navigation a.is-active {
  color: #C2C2C2;
}

.not-active, .is-active {
  background-image: url('../icons/bg_menu.gif');
  background-repeat: no-repeat;
  background-position:bottom right;
}

/*--------footer--------*/
.footer {
  grid-column: 2 / span 2;
  grid-row: 3;
  height: 3.75rem; /* 60px */

  display: flex;
  justify-content: flex-end;
  align-items: center;

  color: var(--color-dark-grey-text);
  background-image: url('../icons/bg_footer.gif');
  background-repeat: no-repeat;
  background-position: 46% 0;

}

/*--------footer nav--------*/
.footer-nav {
  padding-right: 1rem;
}

.footer-link {
  padding-top: .25rem; /* 4px */
  padding-left: .25rem; /* 4px */
  color: var(--color-dark-grey-text);
  text-decoration: none;
}

.footer-link::before {
  content: "|";
  margin-right: .5rem;
  margin-left: .5rem;
  display: inline-block;
}

/*--------media queries--------*/
@media (max-width: 736px) {
  .content-wrapper {
    grid-template-columns: 100%;
    grid-template-rows: 18rem 1fr 3.75rem;
    grid-row-gap: 2rem;
    padding: 0 1rem;
  }

  .main-content, .footer {
    margin-top: 0;
    grid-column: span 1;
  }
}

@media (max-width: 550px) {
  .header {
    height: auto;
  }

  .header-navigation {
    width: 100%;
  }
}
/*--------media queries ende--------*/
</pre></body></html>