
ol
{

  position:relative;
  float:left;
  display:block;
  width: 250px;  /* room for 3 columns */

  margin:10px 5px;
  
  list-style-type:none;
  
  

  		
}
ol li
{
  float: left;
     width: 250px;   /* accommodate the widest item */
  text-align:left;
  
}
/* stop the floating after the list */
br
{
  clear: left;
}
/* separate the list from what follows it */
div.wrapper
{
  margin-bottom: 1em;
}
/* anchor styling */
ol li a
{


  text-decoration: none;
   color: #000;
   background: transparent url(images/arrow-list.gif) no-repeat left center;
   padding:0px 0px 0px 10px;
   font-size: 15px;
}
ol li a:hover
{
  color: #fdba21; 

  background: transparent url(images/arrow-list-red.gif) no-repeat left center;
  font-size: 15px;

}
