/*
	Site-wide style sheet
	William Albert Wilkinson
	Updated 27 January 2005
*/

/* 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;
}

/* Frame around the text/image.
*/
.framegroove {
  border-style: groove;
  border-color: green;
  border-width: 10px;
  padding: 10px;
}


/* Basic heading layout.
*/
h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  font-variant: small-caps;
  color: black;
  font-style: bold;
}


/* General
*/

hr {height: 3px; background: blue}
body {background-color: lightcyan;}


