/*
 * Make fieldsets prettier in non-IE (IE for some reason creates nice rounded
 * borders on fieldsets without these rules)
 */

  fieldset
  {
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #000;
  }

  fieldset.collapsed
  {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }

