Ok, I admit it. I'm tired of typing (or even cutting and pasting) the same style info into a document. It's time now for a better solution. 
Lucky for us there is a solution. Here's the code to put in your header: 

<link rel=stylesheet type="text/css" href="/styles/dynamic.css">

It's a pretty simple line of code but what it does is incredibly powerful. It links a stylesheet into your page. The stylesheet, in this case, is the file "styles/dynamic.css" It is ascii text and contains nothing but style rules for our page. The Web browser loads those rules and applies them to the current page. 
The stylesheet for this page (at this time) looks like this: 



H1 {font-size: 14px;
      font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
      color: #990000;
      z-index: 0; font-style: normal}
  
H2 {font-size: x-small;
      font-family: Verdana;
      font-weight: normal;
      margin-top: 0px;
      color: #000000; font-style: normal; font-variant: normal; z-index: 0; clip:  rect(   )
	  }
	  
h3 { font-size: small; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; margin-top: 0pt; color: #006699; font-style: normal; font-variant: small-caps}
body {  font-family: Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; background-color: #FFFFFF; border-style: none; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px}
a:link {  color: #999999}
a:active {  color: #999999; font-size: x-small}
a:hover {  color: #cc0033}
a:visited {  color: #999999}
H2W { font-size: small; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; margin-top: 0pt; color: #FFFFFF; font-style: normal; font-variant: normal }
h3n { font-size: 9px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; margin-top: 0pt; color: #006699; font-style: normal; font-variant: small-caps }

#Menulist{
   /*background-color: #000033;*/
   position : absolute;
    top : 500px;
    left : 10px;
    z-index : 50;

   /*padding-top : 5px;
   padding-bottom : 0px;
   padding-left : 5px;
   padding-right : 0;*/
}

