body {
	width: 100%;
	height: 100%;

	position: relative;

	background-color: rgb(240, 240, 240);
	background-image: url("/resources/background.jpg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: center top;

	font-family: Verdana, Arial, Helvetica;
}

@media (max-width: 1998px) {
    body {
        background-size: 1998px auto; /* Force the image to its minimum width */
    }
}

#container {
	max-width: 1000px;
	margin: auto;
	margin-bottom: 35px;
}

#header {
	height: 80px;

	background-color: rgb(255, 215, 0);
	background-image: url("/resources/header.png");
	background-repeat: no-repeat;
}
#header-side {
	margin-top: 20px;
	float: right;
}
#search {
	position: relative;
	background-color: white;
	border: 1px solid #ccc;
	margin: 4px 8px;
	padding: 1.5px;
	font-size: 16px;
}
#search:hover {
	border-color: #666;
}
#search-query {
	border: none;
	outline: none;
	padding: 0 2px;
	vertical-align: middle;
	width: 251px;
}
#search-button {
	background: transparent;
	opacity: 0.7;
	border: none;
	padding-left: 0;
	float: right; /* Firefox bugfix? */
}
#search-icon {
	position: absolute;
	top: 5px;
	right: 9.5px;
	background-image: url("/resources/search.png");
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	/*margin-top: -2px;
	margin-right: 2px;*/
}

.strip {
	min-height: 42px;
	min-width: 1px; /* iPhone overflow bugfix */

	background-color: forestgreen;

	font-size: 0;

	overflow: auto;
	-webkit-overflow-scrolling:touch;
}
.strip * {
	font-size: 14px;
}

#content {
	background-color: white;

	padding: 6px 14px;
}

.navigation-list {
	padding: 0 20px;
	display: inline-block;
}

.navigation-list a {
	height: 42px;
	display: table-cell;
	padding: 7px 10px;
	vertical-align: middle;
	text-decoration: none;

	color: gold;
	white-space: nowrap;
}

#navigation .navigation-list a:hover,
#navigation .navigation-list a.active {
	background-color: rgb(255, 215, 0);
	color: forestgreen;
}

#footer {
	text-align: center;
}

#footer .navigation-list a:hover,
#footer .navigation-list a.active {
	color: white;
}

/* BREADCRUMBS */

#breadcrumbs {
	font-size: 0;
	margin-bottom: 0.75em;

	padding: 0;
}

#breadcrumbs li {
	font-size: 14px;
	font-weight: bold;
	font-style: normal;

	display: inline;
}
#breadcrumbs a {
	color: #228B22;

  padding: 0 16px 0 0;
  margin: 0 3px 0 0;

  background-image: url("/resources/breadcrumb-arrow.png");
	background-repeat: no-repeat;
	background-position: right 0px top;
}
#breadcrumbs em {
	color: black;
	font-style: normal;
}

@media (max-width: 560px) {
	#header {
		height: 115px;
	}
	#header-side {
		width: 100%;
		margin-top: 70px;
	}
	#search-query {
		width: calc(100% - 30px);
	}

	#content {
		padding-left: 12px;
		padding-right: 12px;
	}
}

/* GENERAL */

h1 {
	padding-top: 20px;
	font-size: 14px;
	color: #333333;
	font-weight: bold;
	margin: 0;
}

/* RESULTS */

#result-list {
	margin-top: 10px;
}

.result {
	width: 100%;

	padding: 10px;
	border-bottom: 1px solid #e4e6e8;
}
.result:hover {
   background-color: #f8f8f8;
}
.result:first-child {
	border-top: 1px solid #e4e6e8;
}
.result:after {
	/* clearfix */
	content: "";
	display: table;
	clear: both;
}
.result a:hover {
	text-decoration: none;
}
.result-summary {
	display: inline-block;
}
.result-extra {
	float: right;
	display: inline-block;
}

.result-title {
	font-size: 18px;
	margin: 0;
}
.result-title:hover {
	text-decoration: underline;
}
.result-subtitle {
	display: inline;

	font-size: 12px;
	margin: 0;
	margin-top: 4px;
}

.result-extra span {
	display: block;
	text-align: right;
}
.result-extra a:not(:hover) {
	color: inherit;
}
.result-journal {
	font-size: 14px;
	margin-top: 3px;
}
.result-author {
	font-size: 12px;
	font-style: italic;
}
