@import url(https://fonts.googleapis.com/css?family=Cinzel);

html {
  margin: 0;
  padding: 0;
}

body {
	background-color: #f9f9f9;
	color: #333333;
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, Sans;
  line-height: 1.5;
}

a {
	color: #005AA3;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #333333;
  text-decoration: underline;
}

hr {
  border-color: #cccccc;
}

h1 {
	font-size: 200%;
  font-weight: normal;
}

h2 {
	font-size: 150%;
  font-weight: normal;
}

h3 {
  font-size: 120%;
  font-weight: normal;
}

#header-band {
  width: 100%;
  height: 60px;
  background-color: #49147e;
  position: absolute;
  z-index: -1;
}

.width-wrapper {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

#header {
	display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #4f1b87;
	background-image: url('/layout/images/header-bg.jpg');
	background-position: center;
	background-size: cover;
  color: white;
  padding: 0 1rem;
}

#header a {
  color: white;
}

#header-logo {
	font-size: 190%;
  flex: 1 1 auto;
}

#header-logo a {
	display: inline-block;
	margin-right: 0.5rem;
	font-family: 'Cinzel', serif;
}

#orbis-head-logo {
	height: 30px;
}

#header-links {
  flex: 1 1 auto;
  text-align: right;
}

#header-links #menu-toggle {
  display: none;
}

#header-links ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}

#header-links li {
  display: inline;
}

#header-links a {
	font-size: 130%;
	text-transform: uppercase;
	padding: 0 .5rem;
}

#header-links a img {
  height: 1rem;
}

#search-form {
  background: #4f4f4f;
  padding: 1.25rem;
  color: white;
}

#search-form h2 {
  font-weight: normal;
  font-size: 150%;
  margin: 0 0 .5rem 0;
}

#search-form select {
  width: 100%;
}

#search-form .keywords {
  display: flex;
  margin-top: .5rem;
}

#search-form .options {
  margin-top: .25rem;
}

#search-form input,
#search-form select {
  padding: .5rem;
  border-radius: .25rem;
  border: none;
}

#search-form input[type="text"] {
  flex: 1 1 auto;
  margin-right: .5rem;
  color: #6C34A8;
  font-size: 110%;
}

#search-form input[type="submit"] {
  flex: 0 0 3rem;
  font-size: 110%;
}

#search-form input[type="submit"]:hover,
#search-form input[type="submit"]:focus {
  filter: brightness(1.1);
}

#main-content {
  padding: 1rem 0;
}

.flex {
  display: flex;
}

.highlight {
	font-weight: bold;
	color: black;
	background-color: #FFFF33;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
}

#footer {
  color: white;
  text-align: right;
  background-color: #b1b1b1;
  padding: 1rem;
}

/* Responsive styles */
@media screen and (max-width: 760px) {
  #header-logo img,
  #header-links ul {
    display: none;
  }
  
  #header-links #menu-toggle {
    display: inline;
    background: transparent;
    border: none;
    margin-right: 1rem;
  }
  
  #header-menu {
    position: absolute;
    background: #49147e;
    top: 60px;
    right: 10px;
  }
  
  #header-menu li {
    display: block;
    padding: .5rem;
  }
}