/* Sets up the background, frames, and tables to be white and borderless */
body {
	background-color: white;
	margin-left: 5%;
	margin-right: 5%;
	}
frame, frameset, body {
	border: 0 none white;
	border-color: white;
	}
table {
	border: 0 none blue;
	}

/* Any paragraph should like this. */
p {
	color: black;
	font-size: medium;
	text-indent: 5%;
	}

/* A Header for at the top of pages.  The color is dar brown/maroon. */
.header {
	text-align: center;
	color: #820707;
	font-weight: bold;
	font-size: x-large;
	}

/* Make a small note of something in the text.  If used in a paragraph of its
 * own then the  style will cascade and be indented.*/
.smallNote {
	font-size: smaller;
	font-style: italic;
	}

/* A topic is larger then surrounding text and stands out by being 
 * italic and blue.  Its also indented a bit. */
.topic 	{
	font-size: larger;
	font-style: italic;
	color: #0078ff;
	text-indent: 1%;
	}

/* A sub-topic is alos larger, but a different color and a bit more indented.*/
.subTopic {
	font-size: larger;
	color: #b1ccf7;
	text-indent: 2%;
	}

/* A links list is a row of links that go on the top and bottom of the page
 * and link to the document itself.  This makes them a little smaller, centered
 * and italic so they stand out. */
.linksList {
	font-size: smaller;
	font-style: italic;
	text-align: center;
	}
	
li {
	position: relative;
	left: 3%;
	}

