Thank GOD and GOD only, I found it after some trial and error. It now appears just a matter of cut and paste.
#primary a {
color:#000000;
}
#primary a:active,
#primary a:hover {
color: #0000ff;
}
#leader a {
color:#000000;
}
#leader a:active,
#leader a:hover {
color: #0000ff;
}
#secondary {
background:#ffcc00;
border:0px solid #ccc;
border-width:0 0px 0px 0px; /* keeping a border on the left for no-js */
margin-left:-1px; /* offsets the 1px border on the left */
padding:22px 0 11px 0;
width:356px;
}
#secondary a {
color:#000000;
}
#secondary a:active,
#secondary a:hover {
color: #0000ff;
}
To style a specific aside , foe ex: the 1st leader aside, you would add
#leader #first-leader a {
color:#99ffcc;
}
#leader #first-leader a:active,
#leader #first-leader a:hover {
color: #99ccff;
}
or to style the links of a specific subsidiary in footer
#subsidiary #second a {
color:#99ffcc;
}
#subsidiary #second a:active,
#subsidiary #second a:hover {
color: #99ccff;
}
and so on and on and on (at least for me)