/* Shell enclosing navigation bar with shadow and rounded corners */
#navShell{
	background-color: #5B736F;
	border-radius: 6px 6px 0px 0px;
	box-shadow: 3px 2px 2px grey;
}

nav ul{
	list-style-type: none;
	overflow: hidden;
	margin: 0;
  padding: 0;
	width: 100%;
	display: table;
}

nav ul li{
	display: table-cell;
	color: #EAD4A7;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}

nav#nav1 ul li{
	min-height: 47px;
}

nav ul li a, .navitem, .navHead {
  padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.dropbtn {
  padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;	
}

.dropbtn, .navitem, .navHead, .dropdown-content a {
	font-size: 23px;
	margin: 0;
	border: none;
	cursor: pointer;
	font-family: 'League Gothic';
}

.dropbtn {
	width: 120px;
}

/* First entry on second nav bar has constant highlight and fixed width */
.navHead {  
	/*width: 190px;*/
	padding-right: 15px;
}

/* Second background color for active navigation elements */
nav ul li:hover, nav ul .dropdown:hover .dropbtn, nav ul .active, .navHead {
	/*background-color: #EAD4A7;*/
	color: white;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
  position: absolute;
  background-color: #5B736F;
  min-width: 160px;
  z-index: 1;
	box-shadow: 3px 2px 2px grey;
}

/* Links inside the dropdown */
.dropdown-content a {
	display: block;
	color: #EAD4A7;
	text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	color: white;
}

/* Home button hover needs a rounded left upper corner */
#homeButton:hover{
	border-radius: 6px 0px 0px 0px;
}

/* Home button image size */
#homeButton img {
	height: 42px;
}