/* body */  
body 
     {
      background-color: #dddddd;
      color:            black;
     }

/* division */
div.heading
    {
    padding: 8px;
    background-color: silver;
    }
div.center
    {
    text-align: center;
    }
div.linkIndex
    {
    padding:          8px;
    width:            400px;
    height:           400px;
    background-color: #ffffcc;
    font-size:        large;
    }
div.main
    {
    position:         absolute;
    left:             550px;
    top:              162px;
    width:            400px;
    height:           400px;
    padding:          8px;
    background-color: #ffffcc;
    font-size:        large;
    }

/* headings */
h1,
h2
    {
    text-align:     center;
    font-weight:    bold;
    color:          blue;
    }

/* links */
a:link    {  color: navy;     }
a:visited {  color: maroon;   }
a:focus   {  color: blue;  }
a:hover   {  color: red;  }
a:active  {  color: red;  }

/* lists */
ul.link  
    { 
     color: blue;
     list-style-position:   outside;
     list-style-type:       square; 
    }

/* tables */
table.link
    {
    border:  4px outset black;
    margin:  5px;
    padding: 5px;
    }
td.activity
    {
    width:  130px;  
    }
td.address
    {
    width:  380px;  
    }
td.name
    {
    width:  110px;  
    }
table.link th
    {
    border:  1px solid black;  
    margin:  10px;
    padding: 5px;  
    }
