
body {
	font-family: arial, helvetica, sans-serif;
	font-size: 80%;
	color: black;
	background-color: #99CC99;
	margin: 3em;
	padding: .5em;
}

/* line-height controls the space between lines - or leading*/

p {
	line-height: 1.5em;
	margin-left: 15px
}

h1 {
	font-family: verdana;
	color: #00333;
	font-size: 4em;
	margin: 1em;
	margin-bottom: 40px;
	font-style: italic;
	text-align: center;
	letter-spacing: 0.1em;
}

/*Is it common to mix units of measure like ems and pixels - or is it better to just stick with one consistent unit in your code?*/


h2 {
	font-family: verdana;
	color: #003333;
	font-size: 1.5em;
	margin-top: 40px;
	margin-left: 10px;
	padding: 1px;
}

h3 {
	color: #333300;
	font-size: 1.25em;
	margin-top: 30px;
	margin-left: 3px;
	padding: 4px;
	border: dotted;
	border-width: 1px;
	border-color: #ffffff
}


/* underline my links*/

a {
	text-decoration: underline;
}

/* style for all text that needs to be italic*/

strong {
	font-style: italic;
}


/*This is my horizontal list from Listomatic*/
		
ul#navlist  {
	margin-left: 10px;
	padding-left: 0;
	white-space: nowrap;
}
		
#navlist li  {
	display: inline;
	list-style-type: none;
}
		
#navlist a { 
	padding: 3px 40px; 
	}
		
#navlist a:link, #navlist a:visited {
	color: #fff;
	background-color: #006666;
	text-decoration: none;
}
		
#navlist a:hover {
	color: #fff;
	background-color: #336633;
	text-decoration: none;
}

</style>