* {
  box-sizing: border-box;
}

body {
	height:100%;
	font-family: Arial, Helvetica, sans-serif;
	background-color: white;
}

a:hover {
	text-decoration: none !important;
}

#main {
	margin-top: 50px !important;
	position:relative;
	padding-top:85px;
	margin:0 auto;
	width:100%;
	min-height:100%;
	overflow:auto;
}

#mainContent {
	margin-bottom:100px;
}

/* Style the header */
.header {
  background-color: #f1f1f1;
  padding: 30px;
  text-align: center;
  font-size: 35px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Create three unequal columns that sits next to each other */
.column {
	min-height:300px;
}

/* Left and right column */
.column.side {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* Middle column */
.column.middle {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

/* Style the footer */
.footer {
	position:absolute;
	width:auto;
	bottom:0px;
	background-color: lightgrey;
	padding-left: 50px;
	padding-right:50px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

/* Style for images */
#imgStyle {
	border-radius: 25px;
}

#navD ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: auto;
	background-color: #0088FF;
	color: white !important;
	text-decoration: none !important;
}
	
#navD li a {
	display: block;
	color: white !important;
	text-decoration: none !important;
	padding: 8px 16px;
	text-align: center;
}

#navD li a:hover:focus {
	background-color: lightgrey;
	color: #0088FF !important;
	text-decoration: none !important;
}

/* SIDENAV */

/* The side navigation menu */
.sidenav {
	text-decoration: none !important;
	margin-top: 50px;
	height: 100%; /* 100% Full-height */
	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 1; /* Stay on top */
	top: 0; /* Stay at the top */
	left: 0;
	background-color: #0088FF;
	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 sidenav */
	visited: text-decoration: none !important;
	active: text-decoration: none !important;
	hover: text-decoration: none !important;
	focus: text-decoration: none !important;
}

/* The navigation menu links */
.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none !important;
	font-size: 25px;
	color: white;
	display: block;
	transition: 0.3s;
	visited: text-decoration: none !important;
	active: text-decoration: none !important;
	hover: text-decoration: none !important;
	focus: text-decoration: none !important;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
	background-color: lightgrey;
	color: #0088FF;
	text-decoration: none !important;
	visited: text-decoration: none !important;
	active: text-decoration: none !important;
	hover: text-decoration: none !important;
	focus: text-decoration: none !important;
}

/* 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;
  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) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
	visited: text-decoration: none !important;
	active: text-decoration: none !important;
	hover: text-decoration: none !important;
	focus: text-decoration: none !important;
}

@media (max-height: 991px) {
  #myLogo {
	  margin-left:25px;
  }

#NavMStyle {
	font-size: 30px;
	color: white;
	text-decoration: none !important;
	visited: text-decoration: none !important;
	active: text-decoration: none !important;
	hover: text-decoration: none !important;
	focus: text-decoration: none !important;
}