You can use #right-inner at the start of your CSS, use the selector for the widgets themselves or perhaps a combination of both. You may have to add !important to the CSS in some cases. An example is if you wanted the links red in the right inner sidebar with a hover color of black the code could be.
HTML Code:
#text-3 a {
color: red;
}
#text-3 a:hover {
color: black;
}
Of course you could supply the hex codes for the colors of your choice.
If you want to target all widgets in the right inner sidebar you could use something like the following
HTML Code:
#right-inner a {
color: red;
}
#right-inner a:hover {
color: black;
}
I used Firebug in Firefox to determine the selectors. Also all the code would go in the CSS Inserts box.