@charset "UTF-8";
/* CSS Document */
/* Energy Demand Calculator Programming & Design by jdlstudio.com */

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #ffffff;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  padding: 0px;
  margin: 0px;
  width: 189px;
  height: 129px;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #fff;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}
/* Float the link section to the right */
.header-left {
  float: left;
  margin-left:75px;
  margin-top:32px;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .header-left {
    float: none;
	margin-left:0px;
	padding-left: 0px;
  }
  .header-left > img {
	margin-left:0px;
	padding-left: 0px;
	max-width: 100%;
  }
}