body {
  font: 100%/1.4 "Trebuchet MS", Helvetica, Arial, sans-serif;
  color: #333;
}

.container-main {
  display: grid;
  grid-template-columns: 16.3em 1fr auto;
  grid-template-rows: 96px auto 1fr;
  grid-template-areas: "logo langs contact-info" "nav content content" "copyright content content";
}
@media screen and (max-width: 767px) {
  .container-main {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas: "logo langs nav-btn" "nav nav nav" "content content content" "copyright copyright copyright";
  }
}
@media print {
  .container-main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "content" "copyright";
  }
}

.logo {
  grid-area: logo;
  color: white;
  background-color: #4976b9;
  background-image: repeating-linear-gradient(-90deg, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px), repeating-linear-gradient(0, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print {
  .logo {
    display: none;
  }
}
.logo .logo-link {
  display: inline-block;
  padding: 10px;
}

.langs {
  grid-area: langs;
  color: white;
  background-color: #4976b9;
  background-image: repeating-linear-gradient(-90deg, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px), repeating-linear-gradient(0, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2em;
  color: white;
  font-size: 81.52%;
  line-height: 1.4;
}
@media print {
  .langs {
    display: none;
  }
}
.langs a {
  color: white;
}
.langs .lang-link {
  display: inline-block;
  margin: 10px 5px;
  padding: 0.5em 0.5em;
  font-size: 125%;
  text-decoration: none;
}
.langs .lang-link .title {
  text-transform: uppercase;
}
.langs .lang-link:hover {
  color: #E6EFFB;
}
.langs .lang-link.selected {
  border: 1px solid white;
}

.contact-info {
  grid-area: contact-info;
  color: white;
  background-color: #4976b9;
  background-image: repeating-linear-gradient(-90deg, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px), repeating-linear-gradient(0, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px);
  padding: 16px 16px 0 16px;
  text-align: right;
  font-size: 81.52%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contact-info {
    display: none;
  }
}
@media print {
  .contact-info {
    display: none;
  }
}
.contact-info p {
  letter-spacing: 0.75px;
  margin: 0;
  white-space: nowrap;
}
.contact-info p a {
  font-size: 150%;
  line-height: 1.4;
  color: white;
  text-decoration: underline;
  padding-left: 2px;
  padding-right: 0;
}
.contact-info p a:hover {
  color: #E6EFFB;
  text-decoration: underline;
  padding-left: 0;
  padding-right: 2px;
}
.contact-info .tel .tel-local {
  font-family: Georgia, serif;
  font-size: 150%;
  line-height: 1.4;
}

.nav {
  grid-area: nav;
  padding: 20px 1em 0 1em;
}
@media screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}
@media print {
  .nav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .nav {
    background: white url("../img/row2.bg.aabcd88d07.png") repeat-x;
  }
}

.nav-btn {
  grid-area: nav-btn;
  display: none;
  color: white;
  background-color: #4976b9;
  background-image: repeating-linear-gradient(-90deg, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px), repeating-linear-gradient(0, rgba(100, 139, 196, 0.85) 0px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 6px);
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media print {
  .nav-btn {
    display: none;
  }
}
.nav-btn .nav-btn-link {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("../img/outline_menu_white_48dp.9cd2ca85f0.png");
  border: 1px solid transparent;
}
.nav-btn .nav-btn-link.selected {
  border: 1px solid white;
}

.content {
  grid-area: content;
}
.content h1.title {
  color: #333;
}
@media screen and (min-width: 768px) {
  .content {
    background: white url("../img/row2.bg.aabcd88d07.png") repeat-x;
    padding-bottom: 3em;
  }
  .content h1.title {
    min-height: 62px;
    margin: 0;
    padding-top: 20px;
    font-size: 150%;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    color: white;
    white-space: nowrap;
    letter-spacing: 1px;
    font-variant: small-caps;
  }
  .content h2 {
    color: #3B6BA9;
    font-size: 160%;
    line-height: 1.4;
  }
  .content h2 * {
    color: #3B6BA9;
  }
}
@media screen and (max-width: 767px) {
  .content {
    padding: 1em;
  }
}
@media print {
  .content {
    padding: 1em;
  }
}

.copyright {
  grid-area: copyright;
}
.copyright p {
  font-size: 75%;
  line-height: 1.4;
  color: #444;
  margin: 0.25em auto;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin: 0 1em 0 1em;
    padding: 0 0.4em 0 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .copyright {
    border-top: 1px solid gray;
    padding: 1em 0 3em 0;
    margin: 0 1em 0 1em;
  }
}
@media print {
  .copyright {
    border-top: 1px solid gray;
    padding: 1em 0 3em 0;
    margin: 0 1em 0 1em;
  }
}

a {
  color: #0e7eaf;
}
a:hover {
  color: #0a587a;
}

h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-family: Arial, serif;
}
h1 a {
  font-family: Arial, serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-family: Georgia, serif;
}

.nav a {
  color: white;
  text-decoration: none;
  padding-right: 2px;
}
.nav a:hover {
  color: #E6EFFB;
  text-decoration: underline;
  padding-left: 2px;
  padding-right: 0;
}
.nav ul {
  padding: 0.4em 0.4em 0.4em 0.4em;
  text-indent: 10px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: white;
}
.nav ul li {
  background: linear-gradient(to bottom, #9fc0e9, #70a1e2 10px);
  margin: 1px 0px 1px 0px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.nav ul li.active > a {
  font-weight: bold;
  color: white;
}
.nav ul ul {
  padding-left: 10px;
  font-size: 87.5%;
  line-height: 1.4;
  margin-top: 6px;
  margin-bottom: -7px;
}
.nav ul ul li {
  background: #EDF7FF;
}
.nav ul ul li.active > a {
  font-weight: bold;
  color: #0e7eaf;
}
.nav ul ul li a {
  color: #0e7eaf;
}
.nav ul ul li a:hover {
  color: #0a587a;
}

.clear:before, .clear:after, .clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clear:after, .clearfix:after {
  clear: both;
}

.object-video {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .object-video {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}
@media screen and (min-width: 768px) {
  .object-video {
    max-width: 60%;
    padding-bottom: 33.75%;
  }
}

.object-video iframe,
.object-video object,
.object-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

@charset "UTF-8";
/* ====================== for RsT-generated content ======================== */
.system-messages,
.system-message {
  color: OrangeRed;
}

.container {
  overflow: hidden;
}

blockquote {
  /*quotes: "\201C""\201D""\2018""\2019"*/
  margin: auto 0;
}

blockquote:before {
  color: #ddd;
  content: "“";
  font-size: 3.5em;
  line-height: 0.1em;
  vertical-align: -0.4em;
}

blockquote:after {
  color: #ddd;
  content: "”";
  font-size: 3.5em;
  line-height: 0.1em;
  /*margin-right: 0.25em*/
  vertical-align: -0.4em;
}

.code,
.literal-block,
.output {
  max-width: 80%;
  margin-left: 50px;
  border-left: 1px solid gray;
  padding-left: 20px;
}

.contents .topic-title {
  font-size: 1.4em;
}

.toc-backref:hover:after {
  content: "  ↑";
}

.line-block {
  margin-top: 1em;
  margin-bottom: 1em;
}

.align-center, .figc {
  text-align: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.figure {
  display: inline-block;
  text-align: center;
  line-height: 0;
}

.figure .caption,
.figure .image {
  margin: 0;
  line-height: 1.4em;
}

.align-right {
  float: right;
}

.align-left {
  float: left;
}

.align-center, .figc {
  display: block;
  margin: 0 auto;
}

.figc {
  margin-bottom: 20px;
}

.figl {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.figr {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.figure.align-left {
  margin-right: 0.5em;
}

.footnote {
  font-size: smaller;
}

/* ====================== collections ======================== */
.collection,
.navigation {
  margin: 1em 0;
}

.collection .links,
.navigation .links {
  margin: 0;
}

.collection .images,
.navigation .images {
  list-style: none;
  padding: 0;
}

.collection .images li,
.navigation .images li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5em 0.5em 0;
}

.collection .images .figure,
.navigation .images .figure {
  display: block;
}

.navigation .images .figure a,
.collection .images .figure a {
  line-height: 1em;
}

.collection .images .figure .image,
.navigation .images .figure .image,
.collection .images .figure .caption,
.navigation .images .figure .caption {
  margin: 0;
  line-height: 1.5em;
}

.collection .gallery {
  list-style: none;
  padding: 0;
}

.collection .gallery li {
  display: inline-block;
  vertical-align: top;
  margin: 0 1.25em 1.5em 0;
}

.collection .gallery .figure {
  display: block;
}

.collection .gallery .figure a {
  line-height: 1em;
}

.collection .gallery .figure .image,
.collection .gallery .figure .caption {
  margin: 0;
  line-height: 1.5em;
}

.collection .size-thumb li {
  width: 170px;
  min-height: 170px;
}

.collection.polaroid .gallery .figure img {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.collection.rounded .gallery .figure img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.newsitem {
  margin-top: 1em;
  overflow: hidden;
}

.newsitem p {
  margin: 0.2em 0;
}

.newsitem .news-date {
  /*font-size: 1.15em*/
  font-size: 0.8em;
  display: block;
  margin: 0.2em 0;
  color: #555;
}

.newsitem .news-body {
  margin-left: 1em;
}

.dense {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  line-height: 1.2em;
}

ul.dense {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

ul.dense li {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  line-height: 1.2em;
}

/* ====================== tables ======================== */
.table-light {
  width: auto;
  margin-right: 3em;
  max-width: 80em;
  border-bottom: solid 1px gray;
  border-top: solid 1px gray;
  border-left: none;
  border-right: none;
}

.table-light td {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  text-align: left;
}

.table-light th {
  border-left: none;
  border-right: none;
  text-align: left;
  font-weight: normal;
}

.table-light thead {
  font-style: italic;
}

.table-light thead tr + tr td {
  border-bottom: solid 1px gray;
}

.table-light tr > td + td {
  padding-left: 1em;
  padding-top: 0.5em;
  white-space: nowrap;
  vertical-align: top;
}

.table-light tr > th + th {
  padding-left: 1em;
  vertical-align: top;
}

/* ====================== templates:main ======================== */
/* ====================== templates:default ======================== */
/* ====================== templates:article ======================== */
.template_page_article .document-body {
  max-width: 45em;
}
