<style type="text/css">



/* The ones below are slightly different.  They are creating classes for the
   anchor tag.  The first part after the A is the class name.  The last
   portion is the event.  So link is the class name.  :hover will be used
   when the mouse is held over the link, etc.  To use these, you would
   have to write your anchor tag slightly different:
   <a class='link' href='somepage.php'>Click me</a> */
A.link
{
    COLOR: #000000;
    FONT-FAMILY: Arial, Helvetica, sans-serif, Tahoma, Verdana;
    TEXT-DECORATION:none
    TEXT-TRANSFORM:uppercase
    FONT-WEIGHT:bold
}
A.link:link
{
    COLOR: red;
    FONT-FAMILY: Arial, Helvetica, sans-serif, Tahoma, Verdana;
    TEXT-DECORATION:none
    FONT-WEIGHT:bold
}
A.link:visited
{
    COLOR: red;
    FONT-FAMILY: Arial, Helvetica, sans-serif, Tahoma, Verdana;
    TEXT-DECORATION:none
    FONT-WEIGHT:em
}
A.link:hover
{
    COLOR: white;
    FONT-FAMILY: Arial, Helvetica, sans-serif, Tahoma, Verdana;
    TEXT-DECORATION:none
    FONT-WEIGHT:bold
}
.scrollbar 
{
    scrollbar-3dlight-color: #204080;
    scrollbar-arrow-color: ff0000;
    scrollbar-base-color: #204080;
    scrollbar-darkshadow-color: #204080;
    scrollbar-face-color:#ffffff;
    scrollbar-highlight-color: #FFFFFF;
    scrollbar-shadow-color: #204080
}

.ul
{
    list-style: circle outside
}
</style>
