/* CSS Document mit BÖM */
.searchField {
	display: -webkit-box; display: flexbox; display: box; display: -ms-flex; display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	vertical-align: middle;
	max-width: 100%;
}

.searchField .altInput,
.searchField .searchbutton {
	border: 1px solid #a6a6a6;
	vertical-align: top;
	display: inline-block;
	line-height: 18px;
	box-shadow: none;
	background-color: rgba(255,255,255,0.8);
}
.searchField .altInput {
	height: 20px;
	border-right: none;
	padding: 0px 5px;
	border-radius: 3px 0 0 3px;
	font-size: 90%;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.searchField .searchbutton {
	font-size: 100%;
	height: 17px;
	width: 16px;
	padding: 1px 2px 0;
	color: #fff;
	border-left: none;
	border-radius: 0 3px 3px 0;
	text-decoration: none;
}
.searchField .searchbutton:hover {
	box-shadow: 0 0 10px #666 inset;
}
