/* Screen version of content presentation */
@media screen {
  /* Some special elements */
  p.member {
    height: 134px; /* This is only for old browsers like IE6 */
  }
  html > body p.member {
    min-height: 134px;
    height: auto;
  }
  img.face {
    width: 100px;
    height: 125px;
    float: left;
    margin: 5px 10px 10px 0;
    border: solid 1px #999;
    padding: 1px;
  }
}

/* Print version of content presentation */
@media print {
  h2, h3 {
    clear: left;
  }
  img.face {
    float: left;
    margin-right: .5em;
    margin-bottom: .5em;
    border: solid 1pt #000;
  }
}