  /* allow room for 3 columns */
  ul
  {
    width: 60em;
  }

  /* float & allow room for the widest item */
  ul li
  {
    list-style-type: none;
    float: left;
    width: 20em;
  }

  /* stop the float */
  br
  {
    clear: left;
  }

  /* separate the list from subsequent markup */
  div.wrapper
  {
    margin-bottom: 1em;
  }
