/* reset CSS */
* {
  margin:      0;
  padding:     0;
  font-size:   1em;
  font-weight: normal;
  border:      none;
  color:            black;
  background-color: transparent;
}
a { color: blue; }
a:visited { color: purple; }
html { background-color: white; }

/* tmp */
pre { overflow: auto; }

/* Header */
#header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 142px;
  background-color: black;
}

#header #logo { position: absolute; left: 0; top: 0; }
#header #truck { position: absolute; right: 0; top: 0; }
#header span {
  display:  block;
  position: absolute;
  left:     145px;
  right:    241px;
  top:       20px;
  font-size:      40px;
  line-height:    45px;
  text-transform: uppercase;
  text-align:     center;
  background-color: white;
}

/* Footer */
#footer {
  text-align: center;
}

/* Navigation */
#navigation {
  position: absolute;
  top: 142px;
  left: 0;
  width: 13em;
  margin-left: 1.5em;
}

#navigation h2 { display: none; }

#navigation li {
  margin: 0;
  list-style-type: square;
  color: #7be;
  margin-top: -1px; /* hack to collapse borders together */
}
#navigation li * { display: block; padding: 0.5em; margin-left: -1.5em;  padding-left: 1.5em; }
#navigation li a:hover { background-color: #7be; }

#navigation li a { border: 1px solid black; }
#navigation li span {
  border: 1px solid black;
  border-right: none;
  color: black;
  font-weight: bold;
}

/* Contact information */
#contact {
  position: absolute;
  margin-top: 142px;
  top: 27.5em;
  left: 0;
  width: 14.5em;
  text-align: center;
}
#contact h2,
#contact dt.address { display: none; }
#contact .org { font-weight: bold; }
#contact .locality::after { content: ", "; }
#contact .region { margin-right: 0.5em; }
#contact dt { font-weight: bold; }
#contact dt.phone,
#contact dd.phone,
#contact dt.fax,
#contact dd.fax { display: inline; }
#contact dd::after { content: "\A"; white-space: pre; }


/* Content */

#body {
  margin-top: 142px;
  margin-left: 15em;
  position: relative;
  border-left: 3px solid #dd9;
  padding-left: 1em;
}

h1 {
  margin: 0;
  padding: 0.1em;
  font-size: 2.25em;
  font-weight: bold;
  border-bottom: 3px solid #dd9;
}

p { margin: 1em 0; }

#body ul { margin-left: 2em; list-style-type: disc; }

