/* the styles for the elements */
body {
	font-family: 'Noto Serif', serif;
    font-size: 120%;
	width: 98%;
	background-color: #b3b3b3;
}

a { font-weight: bold; }
a:link { color: #070ab9; }
a:hover, a:focus { color: #6a6af1; }
a:visited { color: #042261;}

ul { line-height: 1.5; }
li, p { font-size: 95%; }
em { font-weight: bold; }

/* the styles for the header */
header{
	padding: 10px;
	border: 2px solid black;
	background-image: linear-gradient( 30deg, #9b9b9b 0%, #616161 100%);
}
header h2 {
	font-size: 220%;
    color: #799abe;
    text-align: center;
	text-shadow: 2px 2px 2px black;
}

header h3 {
	font-size: 130%;
	font-style: italic;
    text-align: center;
}


/* the styles for the main content */
main { 
	clear: left;
 }
main{text-align: left;}
main h1 { font-size: 170%; }
main h2 { font-size: 130%; }
main h3 {
	font-size: 175%;
	color: #1e58a3;
	text-shadow: 1px 1px 1px black;
} 

main p.indent { text-indent: 2em; }
main a.date_passed { color: gray; }

/* the styles for the footer */
footer p {
	font-size: 12px;
	text-align: right;
	margin-right:80px;
}
/*Menu Styles*/
  ul#dropdownmenu {
	display: flex;
	justify-content: center;
	list-style: none;
	background: #e3e3e3;
	background: rgba(126, 94, 94, 0.5);
	
	margin-left: 10px auto;
	padding: 10px;
	box-shadow: 0px 2px 1px rgba#e3e3e3;
	position: relative;
  }
  ul#dropdownmenu > li { 
	display: inline-block; 
	position: relative;
	margin-left: 10px;
	background: #999999;
	background: rgba(0,0,0,.5);
	padding: 5px 20px;
	
	box-shadow: 0px -1px 0px rgba(255,255,255,.5), 0px 2px 0 rgba(0,0,0,.5);
  }
  ul#dropdownmenu > li:first-child {
	margin-left: 0px;
  }
  ul#dropdownmenu li a { 
	text-decoration: none;
	display: block;
	color: #dddddd;
	text-shadow: 0 1px 2px rgba(0,0,0,.5);
	z-index: 1;
	position: relative;
  }
  ul#dropdownmenu ul { 
	display: none; 
	position: absolute;
	top: 90%;
	left: 14px;
	list-style: none;
	background: #e3e3e3;
	width: 9em;
	padding: 10px;
	z-index: 9999;
  }
  ul#dropdownmenu > li:hover {
	color: 255,255,255;
	background: rgb(0, 0, 0);
  }
  ul#dropdownmenu > li:hover ul { 
	display: block; 
	margin-left: -.77em;
	background: #444;
	box-shadow: 2px 2px 0 rgba(0,0,0,.5);
  }
  ul#dropdownmenu > li:hover ul li a { 
	color: #CCC;
  }
  ul#dropdownmenu > li:hover ul li a:hover { 
	color: #ccc;
	background: rgb(0, 0, 0);
  }
/* styles for custom classes */

.title{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 25%;
	min-width: 250px;
}
.imgCopy{font-size: 10px;}
.underTitle{
	font-style: italic;
}
.xsmall{font-size: x-small;}
.center{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.floatLeft{
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}
.mainList{
	list-style: none;
}
.mainText{
	padding-left: 20px;
	padding-right: 20px;
}
.flex-container {
	padding: 0;
	margin: 0;
	list-style: none;
	
	display: flex;
	
	-webkit-flex-flow: row wrap;
	justify-content: space-around;
  }
  .cover{
	  object-fit: cover;
	  width: 50px;
	  height: 100px;
  }

.slicknav_menu {
	display:none;
}
  /*Media Queries*/
  @media (max-width:770px) {
	body{
		width: 100%;
		margin: 0;
		border: none;
	}
	header h3{
		font-size: .9em;
	}
	ul#dropdownmenu{
		display: flex;
		margin: 0;
		border-radius: 0;
		
	}
	ul#dropdownmenu > li{
		border: none;
		font-size: 2.5vw;
		justify-content: stretch;
		width: 100%;
		margin: 0;
		padding: 0;
		border-radius: 0;
	}
	ul#dropdownmenu > li:hover ul{
		font-size: 3vw;
	}
  }
