/*search.css*/

.searchPage-form label {
	position: relative;
	display: block;
}
.searchPage-text {
	border-radius: 4px;
	border: 1px solid #ccc;
	width: 100%;
	display: block;
	padding: .25em;
}
.searchPage-btn {
	position: absolute;
	padding: .25em .5em;
	right: 0;
	top: 0;
	background: transparent;
	border: 0;
	color: #E20F1C;
}
.searchPage-resultTxt {
	text-align: center;
	display: block;
}
.searchPage-resultTxt span {
	font-weight: bold;
}

.search-result dt  {
	padding-top: 25px;
}
.search-result dd {
	padding-bottom: 25px;
	border-bottom: 1px solid #ccc;
}
.search-result dd:last-of-type {
	border-bottom: 0;
}

.search-result dt a {
	color: #e20f1c;
}



@media screen and (min-width: 768px) {
	.searchPage-form label {
		display: inline-block;
		width: 300px;
		margin-right: .5em;
	}
	.searchPage-text {
		display: inline-block;
	}
	.searchPage-resultTxt {
		display: inline;
	}
}