I am experimenting with the Joomla CMS and looking at one of the example cascading style sheets found this bit of code
#maincol-normal-800{
float: left;
width: 450px !important;
margin-left: 0px !important;
margin-left: -5px;
width: 446px;
}
I am confused by it containing two lines for the width property and two lines for the margin-left property.
Can anyone tell me why there are two lines for each property , and in each case which takes precedence?