﻿
/* Elderlaw.CSS Overview...  Contains code to separate the navigational links
   on the left from the content links.  main=navlnks : content=contentlnks */


body, td, th
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: black;
}
a
{
    font-size: 12px;
    color: black;
}

.main a:link {color: #000000; text-decoration: none;} 
.main a:visited
{
    color: black;
    text-decoration: none;
}
.main a:hover
{
    color: #993300;
    text-decoration: underline;
}
.main a:active {color: #000000;text-decoration: none;}


.content a:link
{
    color: #993300;
    text-decoration: underlined;
    font-weight: bold;
} 
.content a:visited
{
    color: #993300;
    text-decoration: underlined;
    font-weight: bold;
}
.content a:hover
{
    color: #000000;
    text-decoration: underlined;
    font-weight: bold;
}
.content a:active {color: #000000;text-decoration: none;}

