/* separate lists from subsequent content */
div.outerwrap
{
  margin-bottom: 1em;
}

/* position list chunks side by side */
div.wrapper
{
  float: left;
  width: 10em;
}

/* clear float after lists */
br
{
  clear: left;
}

/* remove default spacing  to 
promote cross-browser consistency */
ol
{
	margin: 0;
	padding: 0;
	width: 150px;
}

/* suppress normal list item numbering */
ol li
{
  list-style-type: none;
}

/* generate new item numbers that 
continue from one list to the next */
ol li:before
{
  content: counter(item) ". ";
  counter-increment: item;
}

/* anchor styling */
ol li a
{
  text-decoration: none;
}
ol li a:hover
{
  color: #FFF; /* white */
  background-color: #A52A2A; /* brown */
}
