/*
 CSS file  Use px for sizes because it makes the text look similar in size in NS and IE
 Also you can change color in :hover to get an color change when the cursor passes over the link
(IE ONLY)
 
I saw some post about  linking to a css file is better then puting it in the script which im not
sure about because linking slows the page load so having the style sheet embeded in the page
loads the page faster. Below is the embeded sheet which goes in between the HEAD tags you might
as well remove it if not used.
*/

/*
<style type=text/css>

<!--

a.top           {font-size : 12px;
                font-family: arial,helvetica;
                     color : white;
           text-decoration : none;}

a.top:hover     {font-size : 12px;
                font-family: arial,helvetica;
                     color : red;
           text-decoration : none;}

a.tiny           {font-size : 12px;
                font-family: arial,helvetica;
                     color : black;
           text-decoration : none;}

a.tiny:hover    {font-size : 12px;
                font-family: arial,helvetica;
                     color : black;
           text-decoration : none;}

font.title    {font-size : 30px;
                font-family: arial,helvetica;
                     color : black;
           text-decoration : none;
               font-weight : bold;}


font.search     {font-size : 12px;
                     color : black;}

-->
</style>

*/


a.top           {font-size : 12px;
                font-family: arial,helvetica;
                     color : white;
           text-decoration : none;}
               font-weight : bold;}

a.top:hover     {font-size : 12px;
                font-family: arial,helvetica;
                     color : orange;
           text-decoration : none;}

a.tiny           {font-size : 12px;
                font-family: arial,helvetica;
                     color : #000033;
           text-decoration : none;}

a.tiny:hover    {font-size : 12px;
                font-family: arial,helvetica;
                     color : yellow;
           text-decoration : none;}

font.title    {font-size : 30px;
                font-family: arial,helvetica;
                     color : black;
           text-decoration : none;
               font-weight : bold;}


font.search     {font-size : 12px;
                     color : black;}


