html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 15px;
}

/*  HEADER
*/
#header {
  padding: 5px;
}
#header input {
  width: 30%;
  height: 30px;
  font-size: 15px;
}
#header #search_button {
  width: 60px;
  height: 32px;
  background: #d0d0d0;
  font-size: 15px;
  border: 0;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

/* SEARCH RESULTS
*/
#search_results {
  padding: 5px;
  height: 458px;
  overflow: scroll;
  overflow-x: hidden;
}

.result {
  margin: 5px 0px 5px 5px;
}

.result .link {
  color: steelblue;
}
.result .link:hover {
  text-decoration: none;
}

.result .description {
  color: #999;
  font-style: italic;
  font-size: 13px;
}