
  /* allow room for 3 columns */
  ul
  {
    width: 750px;
  }

  /* float & allow room for the widest item */
  ul li
  {
    float: left;
    width: 250px;
  }

  /* stop the float */
  br
  {
    clear: left;
  }

  /* separate the list from subsequent markup */
  div.wrapper
  {
    margin-bottom: 1em;
  }
