html {
	box-sizing: border-box;
}
body {
    margin: 0;
}
html, body {
    font-family: Verdana,sans-serif;
    font-size: 14px;
}

h1 { font-size: 28px; color: #57380d; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    margin: 10px 0;
}

a:link { color: #0000CC; text-decoration: none; }
a:visited { color: #551A8B; text-decoration: none; }
a:hover { text-decoration: underline; }

.smallInfo {
	font-size: 8pt;
	color: #888;
}
.smallInfo a:link  { color: #4446cc; }
.smallInfo a:visited { color: #614e91; }
input[type=text] { width: 90%; }
textarea { width: 90%; }

.wrong {  color: red; }
blockquote {
  width:95%;
  margin:4px auto;
  font-style:italic;
  color: #494949;
  padding:0.6em 10px 0.6em 10px;
  border-left:8px solid #999288 ;
  position: relative;
  background:#fafafa;
}

/* --------------------------- jsMenu --------------------------*/
.menu {	display: inline;
	float: right;
  margin: 0;
	padding: 0;
	z-index: 30
}
.menuLinks {
  position: absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: #E0E0E0;
	border: 1px solid #C0C0C0;
}
.menuImg {
  margin: -6px 0 0px 4px;
  cursor: pointer;
}
.menuImg:hover { background: #E0E0F0; }
.menuLinks a {
  position: relative;
  display: block;
  margin: 0;
  padding: 5px 8px;
  width: auto;
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  background: #F0F0F0;
  color: #202020;
  font: 11px arial
}
.menuLinks a:hover {
  background: #C0C0C0;
	color: #202020;
	text-decoration: none;
}


/* --------------------------- Tabs --------------------------- */
.tabBar {
	padding: 2px 8px 3px 8px;
	border-bottom: #f0efeb 1px solid;
}
.tabActive {
	margin: 0px 1px;
	padding: 3px 10px 4px 10px;
	background-color: #FFFFFF;
	font-weight: bold;
	border-left: 1px #f0efeb solid;
	border-top: 1px #f0efeb solid;
	border-right: 1px #f0efeb solid;
	border-bottom-width: 0;
}
.tabInactive {
	margin: 0px 1px;
	padding: 3px 10px;
	background-color: #f0efeb;
}
.tabContent {
	padding: 10px 6px 6px 6px;
	border-left: 1px #f0efeb solid;
	border-bottom: 1px #f0efeb solid;
	border-right: 1px #f0efeb solid;
}
.tabContent ul {
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
}


/*----------------------*/
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #d6c39e;
    color: #fff;
    text-align: center;
    border-radiusX: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #d6c39e transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/*----------------------*/
* { Xbox-sizing: border-box; }
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 6px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}