/*This sets the body with black text of medium size.  The background is light gray.  The background image is [insert name]  The font is in order of preference:  Verdana, Georgia, or Times New Roman. The image should repeat across the whole page.*/

body {
font-family : "Verdana", "Georgia", "Times New Roman", sans-serif;
font-size : medium;
color : #000000;
background-color : #e5e5e5;
}
/*All level one, two, are bold-faced Copperplate Gothic Light or Arial.  */

h1 , h2, h3{
font-family : "Copperplate Gothic Light", "Arial", sans-serif;
font-weight : bold;
}

h3 {
color: #000000;
font-size: medium;
}
/*Level one and two headers are centered and dark blue*/

h1 , h2 {
text-align : center;
color :#000080;
}

h1 {
font-size: x-large;
}

h2 {
font-size: large;
}

/*disclaimers are are black, Copperplate Gothic Light or Arial*/

.disclaimers, {font-family: "Copperplate Gothic Light", "Arial", san-serif;
font-size: medium;
color: #000000;
}

/*dividers are centered*/
.divider {text-align: center;}

/*offsite links are dark green and dark blue when hovered*/
a.offsite:link {
color: #008000;
}

a.offsite:visited {
color: #000080;
text-decoration: none;
}

a.offsite:hover {
color: #000080;
text-decoration: underline;
background-color: #C0C0C0;
}

a.offsite:active{
color: #000080;
}

/*links visited or not are dark blue visited links are not underlined*/

a:link, a:visited {
color: #0000C0;
}

a:visited: {
text-decoration: none;
color: #008000
}

/*active and hovered links are dark green and underlined*/
a:active, a:hover {
background-color: #C0C0C0;
color: #008000;
text-decoration: underline;
}

/*Fic ending paragraphs are centered and in italics*/
p.end {
font-style: italic;
text-align: center;
}

/*Text delineating thoughts, letters, foreign words, dream sequences, flashbacks or lyrics are italic*/
.thought, .letter, .lyrics, .dream, .foreign, .flashback {
font-style: italic;
}

/*emphasis within thoughts are bold*/
.thought em {
font-weight: bold;
}

/*Categories are labeled in boldface type*/
.category {
font-weight: bold;
}

/*Dictionary definitions are italic*/
p.definition	{
font-style: italic;
text-align: left;
}

/*anchors are like disclaimers but in bold*/
.anchor {font-family: "Copperplate Gothic Light", "Arial", san-serif;
font-size: medium;
color: #000080;
font-weight: bold;
}

/*Comments are brown*/
.comments	 {color: #808000;}
