
* {
	font-family: Arial, sans-serif, Verdana;
	color: #444;
}

h1 {
	font-size: 120%;
	color: #257525;
	display: inline;
}

h2 {
	display: inline;
}

h3 {
	display: inline;
}

h4 {
	font-size: 13px;
	display: inline;
	font-weight: 400;
}

h5 {
	font-size: 75%;
	display: inline;
}

h6 {
	font-size: 85%;
	display: inline;
	color: red;
}


a {
    color: #33e;
	text-decoration: none;
}

input[type="submit"] {
	border: medium solid #153c8b;
	background-color: #153c8b;
	color: #ddd;
}

input[type="button"] {
	border: medium solid #153c8b;
	background-color: #153c8b;
	color: #ddd;
}

p {
	display: inline;
}

.tabhell {
	background-color: #bbb;	
}

.tabdunkel {
	background-color: #999;	
}

.linkbutton {
	font-family: Arial, sans-serif, Verdana;
	font-size: 80%;
	padding: 5px 7px;
    background-color: #eee;
    color: #444;
    border-radius: 3px;
    border: solid 1px #333;
    user-select: none;
    text-decoration: none;
}

.linkbutton:hover {
    color: #fff;
    background-color: #999;
    text-decoration: none;
}
.linkbutton:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #888;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 350px;
  background-color: #777;
  color: #fff;
  font-size: 80%;
  text-align: center;
  border-radius: 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: #777 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}  

