body {
 font-family: Arial, Helvetica, sans-serif;
 font-size: small;
}
body td {
 font-family: Arial, Helvetica, sans-serif;
 font-size: small;
}
/* small=2 */
/* inline font change...<p OR li, etc. style="font-size: medium"> */

/* browser will change colors; if put text-dec just under 'a' ALL text will be affected */
a:link { color: #000099; text-decoration: none}
a:visited { color: purple; text-decoration: none}
a:hover { color: #CC00DD; text-decoration: underline}
a:active { color: red; text-decoration: underline}
/* NB: overrides internal style sheet setting & padding inline setting */

h1 { font-family: Georgia, "Times New Roman", Times, serif; } /* TNR default */
h2 { font-family: Georgia, "Times New Roman", Times, serif; }
h3 { font-family: Georgia, "Times New Roman", Times, serif; }
h4 { font-family: Verdana, Arial, Helvetica, sans-serif; } /* arial default */
h5 { font-family: cursive; font-style: italic; }

.arab { list-style-type:arabic-numbers; } /* default */
.lwrR { list-style-type:lower-roman; }
.uprR { list-style-type:upper-roman; }
.lwrA { list-style-type:lower-alpha; }
.uprA { list-style-type:upper-alpha; }
/* in doc must have <ol OR li class="classname"> where 'classname' = arab|lwrR|uprA|etc. */

#list1 { list-style-type:disc; } /* default */
#list2 { list-style-type:circle; }
#list3 { list-style-type:square; }
/* in doc must have <ul OR li id="list[no.]"> */

p.indent {
 text-indent: 1.5em;
}
/* in doc must have <p class="indent">; written inline... <p style="text-indent: 1.5em"> */

textarea {
 font: 16px verdana, arial, helvetica, sans serif;
 background-image: url(.jpg);
 background-attachment: scroll;
}

input {font: bold 12px verdana, arial, helvetica, sans serif; }
/* sets appearance of linear text and buttons like 'submit' & 'reset' */

img.floatLeft {
 float: left;
 margin-right: 10px;
}
img.floatRight {
 float: right;
 margin-left: 10px;
}