/* This is my first attempt at a style sheet.  I hope it works */

/* I don't think this body part does much because of the cascade, but it's here just in case. */
body {
	font: 8pt/12pt times;
	font-weight: normal;
	color: #e6e6fa;
	background: #e6e6fa;
	margin: 0px;
	text: #000;
	}
	
p{
	font: 14px arial;
	font-weight: normal;
	margin-top: 15px;
	background: #e6e6fa;
	margin-left: 100px;
	margin-bottom: 15px;
	text-align: right;
	color: #666; 
	}
blockquote 	 {font 14px arial;
		font-weight: normal;
	margin-top: 15px;
	background: #e6e6fa;
	margin-left: 150px;
	margin-bottom: 15px;
	text-align: right;
	color: #666; }
/*	table,tr,td {
	background: #e6e6fa;
	text: #000;
	} /*
/* this is the part that makes the wheel image line up the right way, so the last paragraph on the page should always have id="last" */

#last {
	font: 14px arial;
	font-weight: normal;
	margin-top: 15px;
	background: #e6e6fa;
	margin-left: 100px;
	margin-bottom: 120px;
	text-align: right;
	text: #000;
	} 

div > p:first-letter {
	COLOR: #666; 
	font-size: 150%;
	font-weight: bolder;
	margin: 0px 2px 0px 0px;
	}

#footer {
	font: 12pt times;
	margin-top: 12 px;
	font-weight: bold;
	color: #666;
	text-align: center;
	}
/* link stuff */	
a:link {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	}
a:hover {
	text-decoration: underline;
	color: #00F;
	}
a:visited {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	}
a:visited:hover {
	text-decoration: underline;
	color: #00F;
	}
	
/* this here div style puts the color-wheel image in at the bottom of each page and puts the dashed line across the bottom. */
div {
	background: #e6e6fa url(bottom-right.gif) bottom right no-repeat;
	border-color: #CCC;
	text: #000;
	border-style: none none dashed none;
	margin-bottom: 12px;
	}

/* this is pretty simple, I think. */	
H2 {
	font: 22pt arial;
	color: #000066;
	font-weight: bold;
	text-align: right;
	margin: 0px 0px 0px 150px;
	border-bottom: thin solid #ccc;
	
	}
h1 {color: #666666
	}
/* this h3 style means that the line underneath should always be the same length, and the text will be lowercased and obliqued(italicized)*/

H3 {
	font: 16pt times new roman;
	color: #8E2323;
	font-weight: bold;
	font-style: oblique;
	margin: 2px 0px 5px 300px;
	border-bottom: thin dashed #CCC;
	text-align: right;
	text-transform: lowercase;
	}