/* Navbar container */
.navbar {
  overflow: hidden;
  width:100%;
  background-color: #00263a;	
}
#navdiv{
	overflow: hidden;
	
	width:100%;
	margin: 0 0 0 0;
	padding:0;
	border-bottom:1px solid gray;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: .8em;
  color: white;
  text-align: center;
  padding: 0;
  text-decoration: none;
}
/* Add a background color to navbar links on hover */
.navbar a:hover{
  color:orange;
  background-color:#cee0ea;
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: inherit;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/*.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}*/

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #00263a;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #00263a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*Next and previous buttons*/
a.prevbtn{
	 padding: 6px 20px 6px 15px;	 
}
a.nextbtn{
	 padding: 6px 15px 6px 20px;
}
a.prevbtn:link, a.nextbtn:link, a.prevbtn:visited, a.nextbtn:visited {
  color: #00263a;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a.prevbtn:hover, a.nextbtn:hover {
  text-decoration: underline;
}
a.prevbtn:active,a.nextbtn:active{
	
}
ul.navlist{
	list-style-type: none;
	margin-bottom:10px;
}
.nextbtn{/*Used to postion the 'next' link.*/
  position:fixed;
  right:1%;
  top:80%;
  width:75px;
  font-size:0.85em;
  text-align:center;
}
.prevbtn{/*Used to postion the 'next' link.*/
  position:fixed;
  left:1%;
  top:80%;
  width:75px;
  font-size:0.85em;
  text-align:center;
}

/*End Next and previous buttons*/

/*********FORMATTING FOR SITE MENU*********/
a.menulink{
	text-decoration:none;
	background-color:white;
	display:block;
	padding: 1px;
	color:#151188;
	width:250px;
	font-size:.8em;
	margin-right:3px;
}
a.menulink:hover{
	color:green;
	text-decoration:underline;
}

div.menupage{
	margin:3% 10%;
	width:100%;
}
span.menutitle{
	font-size:.9em;
	font-weight:600;
	color:#0b0947;	
}
hr.foothr{
	margin-top:100px;
	color:#f2f2f2;
	height:2px;
	clear:both; /*This is under divs that float left. Clear makes it not float.*/
}