/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html,blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html,blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,html,p,blockquote,fieldset,input,body
{ margin:0; padding:0 }

body 
{
	font: 12px arial, sans-serif;
	font-weight:normal;
	background-color: #e7eec8;
	color: #007855;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no blue linked image borders*/
a img,:link img,:visited img { border:none }

/*Top Navigation Link Treatment */
a.navigation:link
{
	font: 12px arial, sans-serif;
	font-weight:normal;
	color:#000000;
}
a.navigation:visited
{
	font: 12px arial, sans-serif; 
	font-weight:normal;
	color:#000000;
}

a.navigation:hover
{
	font: 12px arial, sans-serif;
	font-weight:normal;
	color:#007855;
	text-decoration: underline;
}
a.navigation:active
{
	font: 12px arial, sans-serif;
	font-weight:normal;
	color:#000000;
}

