/* Put this inside a @media qualifier so Netscape 4 ignores it */
/* CSS */
@media screen, print { 
       /* Turn off list bullets */
       ul.mktree  li { list-style: none; } 
       /* Control how "spaced out" the tree is */
       ul.mktree, ul.mktree ul , ul.mktree li { margin-left:10px; padding:0px; clear:both }
       /* Provide space for our own "bullet" inside the LI */
       ul.mktree  li           .bullet { padding-left: 15px; clear:both }
       /* Show "bullets" in the links, depending on the class of the LI that the link's in */
       ul.mktree  li.liOpen    .bullet { cursor: pointer; background: url(minus.gif)  center left no-repeat; }
       ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(plus.gif)   center left no-repeat; }
       ul.mktree  li.liBullet  .bullet { cursor: default; background: url(bullet.gif) center left no-repeat; }
       /* Sublists are visible or not based on class of parent LI */
       ul.mktree  li.liOpen    ul { display: block; clear:both }
       ul.mktree  li.liClosed  ul { display: none; clear:both  }
       /* Format menu items differently depending on what level of the tree they are in */
}
body{
font-family: Arial; font-weight: plain; font-size: 10pt;

}
a {
      text-decoration: none;
      color:blue;
      }

a:hover {
      border-bottom:1px dotted blue;
}
table {
 border:1px solid gray;
 border-collapse:collapse;
 margin-left:5px;
 margin-top:10px;
 margin-bottom:10px;
}
#p1
{
font-family: Arial; font-weight: plain; font-size: 12pt;
border-top:thin solid red; 
 color:blue;
clear:both;
padding-top:10px;
padding-bottom:5px;
}

#p2
{
font-family: Arial; font-weight: bold; font-size: 10pt;
 color:rgb(64,64,64); 
clear:both;
padding-top:2px;

padding-left:10px;
}
td.c3
{
background: rgb(255,255,255); 
 color: rgb(64,64,64); 
font-family: Arial; font-weight: plain; font-size: 10pt; 
height:20px;
}

td.c2
{
background: rgb(217,224,171); 
 color: rgb(64,64,64); 
font-family: Arial; font-weight: plain; font-size: 10pt; 
height:20px;
}

td.c1
{
background: rgb(102,102,255); 
 color: rgb(255,255,255); 
font-family: Arial; font-weight: bold; font-size: 10pt; 
height:20px;
}

