/**
 * @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)
 */

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

#content #pbsearch_form {
	width: 80%;
	margin: 0 10% 2em;
	padding: 5px;
	background: #eaeaea;
	border-radius: 5px;
}

#pbsearch_form fieldset {
	margin-bottom: 0;
}

#pbsearch_form input {
	float: left;
	width: 80%;
	font-size: 14px;
}

#pbsearch_form button {
	margin-left: 5px;
}

/**
 * Title & amount of searchresults
 */

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

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

.searchResults dt {
	margin: 1em 0 .3em;
	font-weight: bold;
	color: #4a4a4a;
}

.searchResults dt a {
	padding-left: 0;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.2em;
	color: #000;
	background-image: none;
}

.searchResults strong {
	color: #04276f;
}

.searchResults .desc {
	padding-bottom: 1em;
}

.searchResults .url {
	display: block;
	width: 100%;
	padding: 0 0 0.5em;
	border-bottom: 1px dotted #ddd;
	text-align: right;
}

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

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

.pagesTop a,
.pagesTop strong {
	padding: .1em .3em;
	text-decoration: none;
}

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

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