I am using jQuery ui dialog component where the dialog button is aligned to the right. The reason is because of the following property that gets set automatically.
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right;
}
If I clear this float: right property, the alignment looks fine. I tried it through Firebug. How do I clear this CSS property from my CSS file?