/**
 * @about: 	results.css - CSS file which is included on pages showing search results
 * 			The over-specified selectors have a purpose; they need to override the default module CSS (which uses the overly specified selectors as well)
 */

.mod-searchengine #content {
	max-width: none;
}

/**
 * #pbsearch_form
 * Layout of the search form (input field + button) topping the search results.
 */

#pbsearch_form {
	margin-bottom: 2em;
}

#pbsearch_form fieldset {
	position: relative;
	margin-bottom: 0;
}

#pbsearch_form input {
	width: 100%;
	height: 40px;
	margin: 0;
	padding: .1em 3em .1em 1em;
	border-radius: 3em;
	font-size: 16px;
}

#pbsearch_form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	color: inherit;
	background-color: transparent;
}

#pbsearch_form .inner-button {
	display: none;
}

#pbsearch_form button:after {
	font-family: 'icons';
	content: '\e800';
}

#pbsearch_form + h2 {
	display: none;
}

/**
 * Title & amount of searchresults
 */

h2.first {
	margin-bottom: 2px;
}

/**
 * .searchResults
 * Layout of the search results
 */

.searchResults ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.searchResults li {
	position: relative;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}

.searchResults .sr-result-last {
	border-bottom: 0;
}

.searchResults li a {
	display: block;
	padding: 20px;
	text-decoration: none;
	color: #000;
}

.searchResults li a:hover {
	background-color: #e4e4e4;
	color: inherit;
}

.searchResults li a:hover .sr-title,
.searchResults li a:hover .sr-description,
.searchResults li a:hover strong {
	color: #000;
}

.searchResults li .sr-title {
	display: block;
	margin-bottom: .5em;
	font-size: 1.3em;
	color: #000;
}

.searchResults li .sr-description {
	margin-bottom: 0;
}

.searchResults strong {
	color: #000;
}

/**
 * .pagesTop
 * Layout of pagination component
 */

.pagesTop {
	margin: 1em 0;
	border-top: 1px solid #eae8e2;
	overflow: hidden;
	text-align: center;
	font-size: 1.2em;
}

.pagesTop a,
.pagesTop strong {
	display: block;
	float: left;
	margin-right: 1px;
	padding: 10px 15px;
	text-decoration: none;
	color: #fff;
	background-color: #000;
}

.pagesTop strong,
.pagesTop a:hover {
	background-color: #000;
}

/**
 * Hide (the usual) unneccesary elements
 */

.searchduration,
.searchResults .relevance {
	display: none;
}