@media print {

    img {
        max-width:100% !important;
        page-break-inside: avoid;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    div.header {
	background-color: #f0e1d2;
    }
}


@import url(https://fonts.googleapis.com/css?family=Open+Sans);
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  background: #f0e1d2;
}
body {
  font: 15px/1em "Open Sans", sans-serif;
  background: #f0e1d2;
}

/* Main Nav */
#main-nav {
  position: absolute;
  width: 100%;
  background: #bbb;
  z-index: 1;
  height: 75px;
  left: 0;
  top: 300px;
} /* Height of header */
#main-nav.fixed {
  position: fixed;
  top: 0;
}

#main-nav li {
  float: left;
  text-align: center;
  width: 20%;
}
#main-nav .current a {
  background: #aaa;
  color: #fff;
}
#main-nav a {
  padding: 30px;
  display: block;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
}
#main-nav a:hover {
  background: #ddd;
}

/* Main Content */
#main-wrapper {
  width: 85%;
  margin: 0 auto;
}

.wrapper {
  height: 375px;
  text-align: center;
  font-weight: bold;
  padding: 150px 0 0 0;
} /* Height of nav bar added to total height: 300 */

/* Section Background Colors */
#main-header,
#main-footer {
  background: #f0e1d2;
}
#section01 {
  background: #CCCCCC;
}

#section02 {
  background: #e74c3c;
}
#section03 {
  background: #16a085;
}
#section04 {
  background: #2c3e50;
}
