ol
{
  width: 120px;  /* room for 3 columns */
}
ol li
{ 
  width: 120px;  /* accommodate the widest item */
  text-align: left;  
  font-weight: bold;  
  float: left;
  clear: none;
}
/* stop the floating after the list */
br
{
  clear: left;
}
/* separate the list from what follows it */
div.wrapper
{
  position: relative;
  right: 100px;
  float: right;
  
}
/* anchor styling */
ol li a
{
  display: block;
  width: 10px;
  text-decoration: none;
}
ol li a:hover
{
  color: #FFF; /* white */
  background-color: #A52A2A; /* brown */
}

