@charset "utf-8";
/* CSS Document */

body{
  font-family:Helvetica,Arial,sans-serif;
  color: #000;
  font-size: 11pt;
  text-align: center;
  overflow-y: scroll;
}

table { border-collapse: collapse }

a{
  color: #005d5d;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #EB5A05;
  text-decoration: none;
  background-color: transparent;
}

p{
  line-height: 1.4em;
  margin: 10pt 0px 0px 0px;
}

#lang{
  display:inline;
  text-decoration: none;
  font-size: 10pt;
  font-weight: normal;
}

#lang a {
  color: #4C9B1B;
  font-weight: normal;
}

#lang a:hover {
  color: #EB5A05;
  font-weight: normal;
}

h4, h4 a {
  display:inline;
  font-size: 20pt;
  margin: 0 0 0 0;
  color: #4C9B1B;
  text-align: center;
}

h5{
  margin: 20pt 0 9pt 0;
  padding: 0 0 0 0;
  font-size: 17pt;
  color: #473;
  font-weight: 200;
}

#box {
  text-align: center;
}

#content{
  display: inline-block;
  padding: 0 0 13pt 0;
  width: 40em;
  line-height: 15pt;
  text-align: justify;
  text-justify: newspaper;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

#tooltip{
  display: inline-block;
  font-size: 10pt;
  height: 12pt;
  color: #000;
  background-color: #fff;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
}

#langinfo{
  font-size: 20pt;
  height: 24pt;
  color: #f55;
  text-align: center;
}

#langinfo span.key {
  color: #999;
  padding-left: 26pt;
}

#langinfo span.key:first-child {
  padding-left: 0pt;
}

#map{
	margin: 0 0 0 0;
	float:left;
	width: 100%;
	height: 590px;
}

ul.navbar {
  display: inline-block;
  list-style: none;
  margin: 4pt 0pt 0pt 0pt;
  padding: 0;
}

ul.navbar li {
  float: left;
  margin: 0 0 0 1.5em;
  padding: 0;
  font-size: 10pt;
  display:inline-block;
}

ul.navbar li:first-child {
  margin: 0 0 0 0; 
}

ul.navbar a {
  font-weight: normal
}

ul.navbar span.arrow {
  font-size: 9pt;
  height: 10pt;
}

.divider {
  clear: both;
}

table.index {
  margin: 6pt 0 0 0;
  display:inline-block;
  text-align: left;
}

table.index tr td {
  vertical-align: top;
  font-family: Helvetica, Verdana, sans-serif;
  font-size: 11pt;
  border-width: 0px;
  padding: 2pt 4pt;
}

table.index tr td a {
  font-size: 11pt;
  font-weight: normal;
}

table.index tr:nth-child(even) { background: #efd }

table.index {
  border: 1px solid #aaa;
}

table.index tr:first-child {
  border: 1px solid #aaa;
}

table.index tr th {
  vertical-align: top;
  text-align: left;
  font-weight: bold;
  padding: 2pt 4pt;
  min-width: 75pt;
}

table.index tr th span {
  font-size: 9pt;
  font-weight: normal;
}

table.index tr th:last-child {
  min-width: 0pt;
}

/* HTML marker styles */
.price-tag {
  align-items: center;
  pointer-events: auto;
  background-color: var(--color, #FFFFFF);
  border-radius: 50%;
  color: var(--font_color, #263238);
  display: block;
  font-size: var(--font_size, 14px);
  font-weight: bold;
  gap: 15px;
  height: var(--size, 15px);
  justify-content: center;
  padding: 4px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-out;
  width: var(--size, 15px);
  z-index: 1;
}
.price-tag:hover {
  z-index: 999 !important;
}
.price-tag::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 15px solid var(--color, #FFFFFF);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  bottom: -10px;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  /* z-index: 0; */
}