#feed {
  background: #fff;
  color: #000;
  font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 1em;
}

#feed a:link 
#feed a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #990000; 
}

#feed a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #990000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
#feed a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

#feed ul li {
  list-style:none;
  color: #000;
  list-style-type:none;
  margin-left:0px;
}

li span.when {
  color: #000;
}