/*These styles are applied to the overall page.*/
body {
	margin: 0px;
	/* margin: 15px, 10px, 0px, 10px; */
	/* change to reflect page BG */
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: 12px; /* 10pt */
	font-size: 14px; /* 12pt */
}
p, td, tr, ol {
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: 12px; /* 10pt */
	font-size: 12px; /* 12pt */
	font-weight: normal;
}

ul, li {
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: 12px; /* 10pt */
	font-size: 12px; /* 12pt */
	font-weight: normal;
	line-height: 17px;
}
.title {
	font-size: 16px;
	font-weight: bold;
}
.footer {
	font-size: 10px;
	font-style: italic;
}
.sml {
	font-size: 11px;
}
.normal {
	font-size: 12px;
}
.smlWht {
	color: #FFFFFF;
	font-size: 11px;
}
.WhtBold {
	font-size: 13px;
	color: #FFFFFF;
	font-weight: bold; }
.RedBold {
	color: #FF0000;
	font-weight: bold; }

/*Default Link attributes
font-size: px;
color: # ;
font-style: normal; OR 	font-style: italic;
font-weight: normal; OR font-weight: bold;
text-decoration: none; OR text-decoration: underline;

Only use if you want a visited color for links 
a:visited {
	color: #000000;
	}

Font size by default is what you make it in the Global HTML tags,

NOTE: For each instance of an HTML class that you may want to create a link from
needs the link attributes in the following format;

a.ClassName {
	color: #FFFFFF;
	font-weight: normal;
	}
a.ClassName:hover {
	color: #000000;
	font-weight: normal;
	text-decoration: none;
	}
*/
a {
	/* color: #FFFFFF; */
	font-weight: normal;
}
a:hover {
	/* color: #000000;*/
	font-weight: normal;
	text-decoration: none;
}
a.footer {
	color: #FFFFFF;
	font-weight: normal;
}
a.footer:hover {
	color: #000000;
	font-weight: normal;
	text-decoration: none;
}
a.sml {
	/*color: #FFFFFF;*/
	font-weight: normal;
}
a.sml:hover {
	color: #000000;
	font-weight: normal;
	text-decoration: none;
}
