body{
	/* background-image: url("../../navigationimages/greengrid.gif"); /* local */
	background-image: url("../navigationimages/greengrid.gif");  /* server */
}

a{
	font-weight: bold;
}

img {
    padding: 0;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
}

#topBar{
	/* display: inline; */
	width: 100%;
	height: 60px; /* TODO: this is new */
	background-color: rgb(255, 206, 0);

	border-style: solid;
	border-width: 0px 0px 1px 0px;
}

#mycologLogo{
	position: absolute;
	z-index: 1;
}

marquee{
	left:0px;
	position: absolute;
}

.scrollingImage{
	height: 60px;
}

nav{
	width: 20%;
	height:100%;
	text-align: center;
	display: inline-block;
	float: left;

	/* position: fixed; */

	border-style: solid;
	border-width: 0px 1px 1px 0px;
}

nav a{
	color: #EEE34B;
}

#navContent{
	width: 20%;
	position: absolute;
	z-index: 1;
}

.navButton{
	display: inline-block;
	width: 100%;
	height:100%;
	text-align: center;
	background-color: rgb(255, 206, 0);

	box-sizing: border-box;
	font-family: Helvetica;
	font-size: 140%;
	color: black;
	text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);

	padding: 3% 0% 3% 0%;
	border-style: solid;
	border-width: 2px 1px 2px 2px;
	margin: 0% 0% 4% 0%;
}

.navButton:link{
	 text-decoration: none;
}

#recommendation{
	color: white;
	text-align: center;
	background-color: #666666;
}

#recommendation a:link{
	color: rgb(153,204,153);
	font-size: 19px;
}

#navBarFooter{
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 11px;
}

#navBackgroundImage{
	width: 20%;
	height:100%;
	position: absolute;

 	transform: scale(0.99);

	/* background-image: url("../../navigationimages/indexPageMushroom.jpg"); /* LOCAL */
	background-image: url("../webimages/index_page_images/indexPageMushroom.jpg"); /* Copyright free image sourced from pxhere.com  https://pxhere.com/en/photo/1013925 */ /* SERVER */
	filter: blur(4px);
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#mainContent{
	width: 79%;
	/* height:100%;*/ /* This has to be disabled. The content might be bigger than the max screen size so it has to scale larger than the screen size */
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	float: right;
	text-align: center;
}

.centeredLeft{
	display: inline-block;
	text-align: left;
}

footer{
	display: none;
	width:100%;
	text-align: center;
	background-color: black;
}

footer a{
	color: #EEE34B;
}

/* START SIDEBAR */
/* The sidebar menu */
.sidebar {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 3; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

/* The sidebar links */
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* The button used to open the sidebar */
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
	/* My custom changes to the open btn below*/
	display: none;
	opacity: 0.5;
  position: fixed;
	left: 82%;
	top: 5%
}

.openbtn:hover {
  background-color: #444;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s; /* If you want a transition effect */
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}
/* END SIDEBAR */
