
/* Create a drop cap effect.
*/
.dropcap {
  width: 1em;
  height: 1em;
  float: left;
  text-align: center;
  font-size: 30pt;
  color:green;
  font-style: normal;
  font-weight: bold;
}

/* Raised cap.
*/
.raisedcap {
  font-size: 250%;
  font-weight: bold;
  line-height: 100%;
  color: black;
  margin-right: -3px;
}

/* Basic heading layout.
*/
h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  font-variant: small-caps;
}


