@charset "utf-8";
/* CSS Document */

ol.names { width: 70em; }
  /* float & allow room for the widest item */
  ol.names  li
  {
    float: left;
    width: 10em;
  }

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

  /* separate the list from subsequent markup */
  div.wrapper1
  {
    margin-bottom: 1em;
  }
ol.articles
{ width: 60em; }

 ol.articles  li
  {
    float: left;
    width: 20em;
  }
