/*
 ________________________________________________________________________
|                  |                                                     |
|          Title:  |  Better Flickr Hyperlink Visited Color              |
|    Description:  |  Flickr is hard to see visited links, this helps    |
|         Author:  |  -=Ben=-                                            |
|   Date Created:  |  October 10, 2008                                   |
|   Last Updated:  |  December 9, 2008                                   |
|        Version:  |  1.0.0.2                                            |
|__________________|_____________________________________________________|

*/


@namespace url(http://www.w3.org/1999/xhtml);


@-moz-document domain(flickr.com) 
{

/* Colors all links that are visited purple: */
a:visited
{
  color: #551A8B !important;
}


/* Prevents the top navigation menu from turning purple: */
DIV#TopBar * a
{
    color: #3886E6 !important;
}


/* Prevents the bottom footer navigation area from turning purple: */
DIV.Footer * a
{
    color: #3886E6 !important;
}


}