body {
  width: 80%;
  font-size: 16px;
  line-height: 1.2;
  font-family: 'Times New Roman',serif;
  font-family: sans-serif;
}

img {
  max-width: 80%;
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid black;
}

ul.letter {
  list-style: none;
  padding: 0;
}

#header {
  position: fixed;
  background-color: white;
  top: 0;
  padding-bottom: .5em;
}

.alphabet {
  color: #999;
  position: absolute;
  top: 100px;
  width: 325px;
  font-size: 12px;

}

.alphabet a {
  color: black;
}


#entries h3 {
  display: inline-block;
  margin-bottom: .5em;
  font-weight: normal;
}

#entries li {
  font-size: 13px;
}

.count {
  display: inline-block;
  margin-top: 3em;
  border: 2px solid black;
  padding: .25em;
  font-weight: bold;
}


#howto p:first-child {
  font-size: 1.2em;
  margin-bottom: 2em;
  line-height: 1.5;
}

#howto img {
  display: block;
}

ol {
  margin-bottom: 2em;
}

h1{
  font-size: 1.5em;
  display: inline-block;
  margin-bottom: 1em;
  padding-top: .25em;
  border-top: 3px solid white;
}

h1.title {
  color: black;
  border: 3px solid black;
  padding: .25em;
  position: fixed;
  z-index: 100;
  background-color: white;
}

h1.title a {
  color: black;
  text-decoration: none;
}

h2 {
  color: black;
}

.warning {
  color: red;
}

.source {
  text-align:center;
  margin-top: 3em;
  font-size: 14px;
}

.source a {
}

.info {
  margin-top: 3em;
  font-size: 12px;
}



/* numbered list item styling */
ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 2em 2em; /* Give each list item a left margin to make room for the numbers */
    padding: 4px 0 0 1em;
    list-style:none; /* Disable the normal item numbering */
}
ol > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-2px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    color:black;
    border:2px solid black;
    font-weight:bold;
    text-align:center;
}
li ol,
li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}
