/* Style sheet for EFMB web page */

body {
	font-family: Ariel, Futura, Verdana;
	margin: 10px;
	background-image: linear-gradient(rgba(255,187,0,1), white);
	background-size: 1000px;
}

/* General selector values */

/* Paragraph break height */
p {
	line-height: 1.4em;
}

h1 {
	font-family: Skia, Futura, Verdana, Ariel;
	color: #344152;
	font-size: 3em;
	margin: 0;
	padding: 0.25em;
	text-align: center;
	font-weight: bold;}

h2 {
	font-family: Skia, Futura, Verdana, Ariel;
	color: #344152;
	font-size: 2em;
	margin: 0;
	padding: 0.1em;
	padding-left: 1em;
	text-align: center;
	font-weight: plain;}

h3 {
	font-family:  Skia, Futura, Verdana, Ariel;
	font-size: 1.25em;
	font-weight: bold;
}

img {
	border-width: 0;
	border-color: black;
}
					
#content img {
	padding: 2px;
	float: right;

}

a {
	text-decoration: none;
}


a:link {
	color: #1C86EE;
}

a:visited {
	color: #104E8B;
}


/* Layout */

#header {
	position: absolute;
	top: 10;
	left: 10;
	text-align: center;
}

#althead {
	display: none;
}


#content {
	position: absolute;
	top: 180;
	left: 10;
	text-align: left;
	margin: 75 0 0 0; 
}

#picture {
	padding: 1px;
	float: right;
	text-align: center;
	font-size: 8pt;
	margin: 0 0 1em 1em;
}

#bib {
	padding: 10px;
	text-align: left;
	font-size: 0.9em;
	margin: 0 5em 1em 1em;
	color: gray;
}

.container {
	height: 150px;
	width: 1150;
  	position: relative;
  	margin:  0 5em 1em 1em;
}


.quote {
  	width: 500;
  	height: 100%;
  	position: absolute;
  	top: 0;
  	left: 0;
  	opacity: 1;;
	color: rgba(135, 94, 23, 1);
	font-family: Bradley hand, segue script, modern love;
	font-size: 13pt;
}

.overlay {
  	z-index: 9;
	float: right;
  	margin: 0px;
}
/* dropdown layout */

/* Style The Dropdown Button */

.dropbtn {
  	background-color: white;
  	color: black;
  	padding: 10px;
  	font-size: 16px;
  	border: none;
  	cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  	position: relative;
  	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  	display: none;
  	position: absolute;
  	background-color: white;
  	min-width: 160px;
  	box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.2);
  	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 5px 5px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}