html {
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  color: #444;
  font: normal 14px/1.5 Arial, sans-serif;
}

div {
  border: 0 solid orange;
}

a {
  text-decoration: none;
}

a:link {
  color: #00e;
}

a:visited {
  color: #551a8b;
}

a:hover, a:active {
  color: #00e;
}

h1 {
  position: fixed;
  top: 72px;
  left: 60px;
  color: #999;
  font: xx-large/1.25 Courier New, monospace;
}

#sidebar {
  height: 100%;
  width: 60px;
  position: fixed;
  top: 0;
  left: 0;
}

#main {
  height: 100%;
  width: 100%;
}

#header {
  height: 168px;
  width: 100%;
}

#footer {
  position: relative;
  left: 60px;
  bottom: 0;
  color: #848484;
  font: normal 12px/1.5 Arial, sans-serif;
}
  

#title-crumbs p {
  margin: 0;
}

#title-crumbs {
  height: 1em;
  position: fixed;
  top: 40px;
  left: 60px;
}

#menu {
  height: 100%;
  width: 338px;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  z-index: 1;
  background-color: transparent;
}

#menu ul {
  width: 277px;
  position: relative;
  top: 172px;
  left: 60px;
  border-right: 1px solid #ebebeb;
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu li {
  padding-top: .25em;
  line-height: 1.25em;
}

#sandwich {
  display: none;
  transition: display 10s;
}

#closeBtn {
  display: none;
}

#content {
  min-height: 142px;
  width: 100%;
  position: relative;
  left: 350px;
  margin-left: 42px;
}

.this {
  color: #333;
  font: small Arial,sans-serif;
  text-align: justify;
}

.caps {
  font-size: medium;
  font-variant: small-caps;
}

.feedback {
  display: inline-block;
}

@media screen and (max-width: 700px) {

#main {
  height: 100%;
  width: 100%;
}  
  
#menu {
  width: 0;
  background-color: white;
  background-color: rgba(255,255,255,0.9);
  transition: 0.3s;
}

#sandwich {
  display: block;
  position: relative;
  top: 10px;
  cursor: pointer;
}

#sandwich div {
  width: 24px;
  height: 4px;
  background-color: #ebebeb;
  border: 0;
  margin: 4px auto;
}

#closeBtn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  color: #ebebeb;
  font-size: 36px;
  line-height: .75;
  cursor: pointer;
}

#content {
  left: 18px;
}

}
  