/*
 * verbergen
 */
.hide {
	display: none;
}

/*
 * sichtbarer Bereich
 */

.show {
	display: inherit;
}

/*
 * readonly-Felder
 */

.inactive {
  background-color: lightgrey;
  color: grey;
}

.hand {
  cursor: hand;
}

/*
 * verbergen Suchmaschine
 */
.searchengine {
	display: none;
}

