/* GENERAL */
* {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
}
html {
  overflow-y: scroll;
  background: #FFF;
}

h1 { 
  display: block;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0;
  margin-right: 0;
  font-weight: normal;
}

header, main, #no-results, footer {
  width: 1000px;
  margin: 0 auto;
}
main {
  min-height: 360px;
}

.clear:after {
  content: '';
  display: table;
  clear: both;
}

/* HEADER */
header {
  position: relative;
  height: 80px;
  margin-top: 5px;
  border-bottom: 2px solid #eee;
}
#logo_image {
  position: absolute;
  top: 25px;
  left: 0;
  float: left;
}

#logo_image img {
  height: 50px;
}

.navbar
{
	overflow: hidden;	
	margin-right:5px;
	margin-top:0px;
	height: 40px;
	top: 20px;
	padding: 40px 0px 0px 0px;
}

.navbar a {
	float: right;
	text-align:center;
	font-size: 32px;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	margin-left: 20px;
	margin-right: 20px;
}

.dropdown {
	float: right;
	overflow: hidden;
/*	z-index: 10;*/
}

.dropdown .dropbtn { 
  border: none;
  font-size: 32px;
  outline: none;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
 /* z-index: 10;*/
}

.navbar a:hover, .dropdown:hover .dropbtn {
	color: #ff0000;
/*	z-index: 10;*/
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  font-size: 16px;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* FOOTER */
footer {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}
footer a {
  text-decoration: none;
  color: #ff0000;
}
footer a:hover {
  text-decoration: underline;
  color: #ff0000;
}
