/* This CSS file is included only for the cental main body frame. DO NOT use with any of the other frames. Explainations of each item follows. */


BODY		/* Rules for the entire body of the document. */
{
	
	left: 0%;						/* Left border starts at 0 percent. */
	top: 0%;						/* Top border starts at 0 percent. */
	margin: 0px;					/* 0 pixel margins all around */
	font-family: verdana, arial, sans-serif;	/* The default fonts to be used. */
	font-size: 10pt;				/* font size for the body */
}

H3			/* Rules for Level 3 Headers */
{
	background-color:black;			/* Dark Band in header */
	width:100%;						/* Width to span full 100% of page width */
	text-align:center;				/* Text inside to be in middle of the band */
	color:lime;						/* Color of text 	*/
	margin-left:15px;				/* Offset start of header 15 pixels from page border */
	font-size:12pt;					/* Higher than body font size */
}

A			/* Rules for Anchors (generic) */
{
    COLOR: blue;					/* Standard blue color anchors */
    FONT-WEIGHT: normal				/* Normal font */
}

A:link		/* Rules for Anchors (links) */
{
    COLOR: blue;
    FONT-WEIGHT: normal
}

A:active	/* Rules for Anchors (active) */
{
    COLOR: blue;
    FONT-WEIGHT: normal
}

A:visited	/* Rules for Anchors (visited) */
{
    COLOR: blue;
    FONT-WEIGHT: normal
}

P			/* Rules for Paragraphs */
{
	margin-left:15px;				/* Offset margin from Left border: 15 pixels */
	margin-top:10px;				/* Offset margin from Top border: 10 pixels */
}
