To override another style, you can use "!important" like this:
a {color: red !important}
You can also use a more specific selector to ensure your style is applied:
* // a=0 b=0 c=0 -> specificity = 0
LI // a=0 b=0 c=1 -> specificity = 1
UL LI // a=0 b=0 c=2 -> specificity = 2
UL OL+LI // a=0 b=0 c=3 -> specificity = 3
H1 + *[REL=up] // a=0 b=1 c=1 -> specificity = 11
UL OL LI.red // a=0 b=1 c=3 -> specificity = 13
LI.red.level // a=0 b=2 c=1 -> specificity = 21
#x34y // a=1 b=0 c=0 -> specificity = 100
#s12:not(FOO) // a=1 b=0 c=1 -> specificity = 101
For more information on specificity, refer to the documentation here.
UPDATE:
For instance:
If you have a global rule that sets the color of links as blue:
a {color: blue}
But you want your links to be red, then you should add the following rule:
a {color: red !important}
In case the global rule already includes "!important", you will need to use a more specific selector, such as:
body a {color: red !important}