  /* allow room for 8 columns */
  ol
  {
    width: 72em;
  }

  /* float & allow room for the widest item */

ol li
  {
    float: left;
    width: 15em;
    font-size: .95em;
  }

  /* stop the float */
  br
  {
    clear: left;
  }

  /* separate the list from subsequent markup */
  div.wrapper
  {
     margin-top: -2.5em;
     margin-bottom: 1em;
  }


 



