This line redefines the font size, & font family for h4 tags.
h4 {font-size: 14pt; font-family: Comic Sans MS, Verdana;}
This line redefines the font size, & font family for h3 tags.
h3 {font-size: 28pt; font-family:Verdana , bold;}
This line redefines the font size, font family & color for h2 tags.
h2 {font-size: 18pt; font-family:Comic Sans MS, Comic Sans, Verdana, bold; color: black;}
This line redefines the font size, font family & color for paragraph tags.
p {font-size: 12pt; font-family:Verdana; color: #000066;}
This line redefines the font size & text decoration for bold tags.
b {font-size: 10pt; text-decoration: underline;}
This line defines a new class of maincontent, with position, top location, left location, width, height, background-color, z-index & overflow.
#maincontent {position: absolute; top:51px; left: 42px; width:375px; height: 325px; background-color: white; z-index: 4; overflow:auto;}
This line defines a new class of linksContent with position, background-color, z-index, left position, top position, width and height.
#linksContent { position: absolute; background-color:#FFFFFF; z-index: 2; left: 9px; top: 516px; width: 722px; height: 39px;}
In these 4 lines I set the way the links look by setting the font weight, the text decorations and the size of the text
a:link { font-weight: bold; text-decoration:none; font-size:10pt;}
a:active { font-weight: bold; text-decoration:none; font-size:10pt;}
a:visited { font-weight: bold; text-decoration:none; font-size:10pt;}
a:hover { text-decoration:underline; font-size:10pt; }