/*
StyleSheet coding standards:

1. use lowercase if possible

2. format styles like this:

body
{
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif
}

3. existing html elements on top of the document, then all self defined .classes and at last all self defined #id's.

4. close every property with ; also the last one.
*/

BODY
{
  background-color: #fafffa;
  font-family: Verdana,Helvetica,Arial,sans-serif;
  text-align: left;
}

A
{
  color: blue;
  text-decoration: none;
}

A:visited
{
  color: purple;
  text-decoration: none;
}

A:hover
{
  text-decoration: underline;
}

TD
{
  vertical-align: top;
}

TH
{
  border-color: #006600;
  border-style: solid;
  border-width: thin;
  font-weight: bold;
}

H1
{
  vertical-align: middle;
  text-align: center;
  font-family: Times,serif;
  font-size: 36px;
  font-weight: bold;
  font-variant: small-caps;
  margin: 0.5em;
}  

.bigheader
{
  background-color: #003300;
  color: #eeffee;
}

.splitter
{
  height: 0;
  margin: 0;
  clear: left;
}

.hennytext
{
  color: #663300;
  padding: 0.5em;
  font-family: Comic Sans MS,Fantasy;
  text-align:  justify;
  text-indent: 1em;
}

.menu1
{
  width: 10em;
  color: #003300;
  background-color: #ccddcc;
  border-color: #006600;
  border-style: none solid solid solid;
  border-width: thin;
  padding: 0.5em;
}

.menu2
{
  margin-left: 1em;
}

.text
{
  padding: 0.5em;
  text-align: justify;
}

.tabletext
{
  text-align: left;
}

.pedigree
{
  font-size: 80%;
  text-align: left;
  vertical-align: middle;
}

.address
{
  margin: 0 1em 1em 0;
  padding: 1em 1em 1em 1em;
  float: left;
  border-color: #006600;
  border-style: solid;
  border-width: thin;
}

