!important in CSS used to your advantage.
Code August 13, 2009
Good tidbit to know :
Firefox renders !important, Internet Explorer doesn’t.
For Example :
margin-left:10px !important;
margin-left:5px;
Firefox will push 10 pixels but Internet Explorer skips the line and renders the 5px margin. !important needs to be BEFORE the IE value.