/* This file contains the style definitions for the site */
/* HTML files include this style sheet in order to get style definitions */

/* The FONT/TEXT Definitions: */
/*	font-family: Denotes typeface, e.g. arial. */
/*	font-style: Denotes the style of the text, e.g. normal, italic, small caps, or oblique. */
/*	font-size: Denotes the size of the text. Specify in points (e.g. 20pt), inches (in), centimeters  */
/*		(cm), pixels (px), or percentage (%).  */
/*	font-weight: Denotes text presence. */ */
/*		Specify in extra-light, light, demi-light, medium, bold, demi-bold, or extra-bold. */
/*	font-variant: Denotes a variant from the norm. */
/*		Specifiy normal and small-caps. */
/*	text-align: Justifies the alignment of text. */
/*		Specify as left, center, or right  */
/*	text-decoration: Decorate the text. */
/*		Specify as italic, blink, underline, line-through, overline, or none.  */
/*	text-indent: Denotes margins. Most often used with the <P>. Make sure you use </P also!>. */
/*		Specify in inches (e.g. 1in), centimeters (cm), or pixels (px).  */
/*	word-spacing: Denotes the amount of spaces between words. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (e.g. 10px), or percentage (%).  */
/*	letter-spacing: Denotes space between letters. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (px), or percentage (%).  */
/*	text-transform: Denotes a transformation of the text. */
/*		Specify capitalize, uppercase, lowercase.  */
/*	color: Denotes color of text. If you use the six digit hex codes (e.g. #FFFFFF), make sure you place a  */
/*		hash mark (#) in front.  */


/* The MARGIN/BACKGROUND Commands */
/* Note! When used with the "BODY" tag these commands affect the entire page! */
/*	margin-left, margin-right, margin-top: Denotes space around the "page". Specify in points (pt),  */
/*		inches (in), centimeters (cm), or pixels (px). Use with P or BODY. */
/*	margin: Denotes all three margin commands above in one command. The pattern follows top, right,  */
/*		and then left, e.g. P {margin: 3in 4cm 12px} (note no commas or semi-colons)  */
/*	line-height: Denotes space between lines of text. Specify in points (pt), inches (in),  */
/*		centimeters (cm), or pixels (px), or percentage (%).  */
/*	background-color: Denotes page's background color. Specify the color in hex (e.g. #FFFFFF) or word codes,  */
/*		or use "transparant"  */
/*	background-image: Denotes the background image for pages. Specify the image you want through that  */
/*		image's URL, e.g. BODY {background-image: http://www.page.com/dog.jpg}  */
/*	background-repeat: Denotes how the image will tile. Specify repeat-x, repeat-y, or no-repeat.  */
/*	background-attachment: Denotes how the image will react to a scroll. Specify scroll, or fixed.  */

/* The Positioning/Division Definitions: */
/* These commands come into play when you begin working with text and image positioning.  */
/* Note these examples are given using a specific item.  */
/*	position: Denotes the placement of an image or a division of the page. */
/*		Specify absolute for specific placement, or relative for a relative placement to other images.  */
/*		<IMG STYLE="position:absolute" SRC="joe.jpg">  */
/*	left: Denotes amount of space allowed from the left of the browser screen when positioning an item. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (px), or percentage (%).  */
/*		<IMG STYLE="position:absolute; LEFT: 20px;" SRC="joe.jpg">  */
/*	top: Denotes amount of space allowed from the top of the browser screen when positioning an item. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (px), or percentage (%).  */
/*		<IMG STYLE="position:absolute; LEFT: 20px; TOP: 200pt" SRC="joe.jpg">  */
/*	width: Denotes width of image or page division. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (px), or percentage (%).  */
/*		<IMG STYLE="position:absolute; WIDTH: 80px; LEFT: 20px; TOP: 200pt" SRC="joe.jpg">  */
/*	height: Denotes height of image or page division. */
/*		Specify in points (pt), inches (in), centimeters (cm), pixels (px), or percentage (%).  */
/*		<IMG STYLE="position:absolute; HEIGHT: 55px WIDTH:80px; LEFT: 20px; TOP: 200pt" SRC="joe.jpg">  */
/*	overflow: If the item is too large for the height and width specified, this tells the page what to do with the overflow. */
/*		Specify visible, hidden, or scroll.  */
/*		<IMG STYLE="position:absolute; overflow: hidden; WIDTH: 80px; LEFT: 20px; TOP: 200pt" SRC="joe.jpg">  */
/*	z-index: Denotes an item's position in the layering structure. The lower the number, the lower the layer. An image marker with a 20 would go overtop of an image marked with a 10.  */
/*		Specify by number.  */
/*		<IMG STYLE="position:absolute; Z-INDEX: 10; overflow: hidden; WIDTH: 80px; LEFT: 20px; TOP: 200pt" SRC="joe.jpg">-  */

/* Begin style definitions */
/* For some reason the first definition has no effect */
body
 {margin-left: 0.5 in; margin-right: 0.5 in; margin-top: 0 in;
 background-image: url('none');
 background-repeat: no-repeat;
 background-attachment: scroll;
 background-position-y:center}

body
 {margin-left: 0.5 in; margin-right: 0.5 in; margin-top: 0 in;
 background-image: url('none');
 background-repeat: no-repeat;
 background-attachment: scroll;
 background-position-y:center}

HR { color: navy; width: 720px}

DIV
{color: black}
.Menu {color: beige}
.Navigational {cursor: hand}

SPAN
{color: black}
.normal {color: black; font-family: Verdana, Arial; font-size: 9pt}
.tabletext {font-family: Verdana, Arial; font-size: 9pt}
.verse {color: navy; font-family: Verdana, Arial; font-style: italic; font-size: 9pt}
.verseorange {color: #FF9933; font-family: Verdana, Arial; font-style: italic; font-size: 9pt}
.links {font-family: Verdana, Arial; text-align: center}
.kids {font-family: Comic Sans MS, Arial}
.clicked {color: silver; font-family: Verdana, Arial; font-size: 9pt}

A
{color: navy}
.nodecoration {text-decoration: none;}

H1
{color: navy; font-family: Monotype Corsiva, Arial}

H2
{color: navy; font-family: Monotype Corsiva, Arial}

H3
{color: navy; font-family: Monotype Corsiva, Arial}
.maintext 
{font-size: 12px; color: #434343; font-family: Verdana, Arial}
.maintext A 
{font-size: 12px; color: #005daa; font-family: Verdana, Arial; text-decoration: underline}
.maintext A:hover 
{text-decoration: none}
.headerleft 
{background-color: lightblue}

P
{color: black; font-family: Verdana, Arial; font-size: 9pt}
.headerleft 
{font-weight: bold; font-size: 15px; margin-left: 5px; color: navy}
.Title
{background-color:lightblue; font-weight:bold; font-size:18pt; color:navy}
.Subtitle
{font-size:11pt; font-weight:bold; color:navy}
.Normal
{font-size:9pt}

th
{color: white; font-family: Verdana, Arial; font-size: 11pt; background-color:navy}

td
{font-family: Verdana, Arial; font-size: 9pt}
.smallcell {font-size: 9pt}
.indexcell {color: navy; font-size: 9pt; background-color:lightblue}

caption
{color: navy; font-family: Monotype Corsiva, Arial; font-size: 11pt}