@font-face {
  font-family: 'MuseoSans';
  src: url('MuseoSans.ttf') format('truetype');
}
 
body {
  margin: 0;
  padding: 0;
  font-family: MuseoSans, tahoma, sans-serif;
  line-height: 1.2;
  background-color: #eee;
  font-size: 11pt;
}

article {
  background-color: white;
  border-radius: 10px;
  border: 1px solid black;
  -moz-box-shadow: -3pt 3pt 3pt #ccc;
  -webkit-box-shadow: -3pt 3pt 3pt #ccc;
  box-shadow: -3pt 3pt 3pt #ccc;
  margin: 10px auto;
  max-width: 800px;
  padding: 5px 25px;
}

@media screen and (max-width: 600px) {
  article {
    padding: 5px;
  }
}

h2, h3 { font-weight: normal; }

h1 {
  font-size: 18pt;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 30px;
}

span.sub {
  display: inline-block;
  margin-top: 10px;
  font-size: 9pt;
  line-height: 1.5;
}

h2 {
  padding: 8px 25px;
  margin: 15px -25px;
  font-size: 140%;
  border-bottom: 1px solid #157;
  border-top: 1px solid #157;
  background: #9cd;
}

div.cover {
  float: right;
  padding-bottom: 10px;
}

section:after{
  clear: both;
  content: "";
  display: block;
}

div.cover img {
  border: 1px solid black;
  -moz-box-shadow: 2px 2px 2px #bbb;
  -webkit-box-shadow: 2px 2px 2px #bbb;
  box-shadow: 2px 2px 2px #bbb;
  margin-bottom: .1em;
  margin-right: 1em;
  margin-left: 1em;
}

a:link, a:visited {
  color: #822;
  text-decoration: none;
}

dl, p {
  max-width: 500px;
}

dl, dt, dd { margin: 0; padding: 0; }
dd { margin-bottom: .2em; padding-left: 10px; }
dl { margin-bottom: .8em; padding: 0; }
