/* For those content based styles */
#content p {
  text-align: justify;
}

.content h1 {
  margin-top: 3px;
  font-size: large;
}

/* Round the borders */
#copy, #overcopy, #product, #overproduct {
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-right-radius: 10px;
  background-color: #f1efeb;
}

#copy, #overcopy {
  width: 334px;
  float: left;
  padding: 5px;
  border: 2px solid black;
}

body>#page #copy { width: 289px; }

#product, #overproduct {
  width: 350px;
  float: right;
  border: 2px solid black;
  padding: 5px;
}


