..well cheer up as I've come across this nice bit of Javascript from Rafael Lima.
This code allows you to write a CSS selector based on the browser you wish the style to be applicable with, so for IE and Opera you would write in your CSS :
ie .example {
background-color: yellow
}
.opera .example {
background-color: green
}
and the JavaScript handles the rest. Very nice.